diff --git a/src/lib/form/createJsonPatchOperations.ts b/src/lib/form/createJsonPatchOperations.ts index 8c95ec72..451f47cc 100644 --- a/src/lib/form/createJsonPatchOperations.ts +++ b/src/lib/form/createJsonPatchOperations.ts @@ -15,7 +15,8 @@ type PatchAttributeValue = { value: AttributeValue['value'] } -export type ModelWithAttributeValues = IdentifiableObject & { +export type ModelWithAttributeValues = { + id?: string attributeValues?: PatchAttributeValue[] }