From 5e98f0cb32747a4247d8175c08834b412b282bd3 Mon Sep 17 00:00:00 2001 From: Birk Johansson Date: Tue, 29 Oct 2024 14:57:26 +0100 Subject: [PATCH] fix: fix type issue --- src/lib/form/createJsonPatchOperations.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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[] }