From 7cb40a03003090447bab22471d0dfa5e2adcaa71 Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Tue, 20 Feb 2024 15:17:57 +0000 Subject: [PATCH] chore: generated code for commit 4f6e2d0b. [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/algolia/api-clients-automation/commit/4f6e2d0b384f7c61efb69aac76e655bdbc63d5af Co-authored-by: algolia-bot Co-authored-by: Clément Vannicatte Co-authored-by: Pierre Millot --- packages/ingestion/model/commercetoolsCustomFields.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ingestion/model/commercetoolsCustomFields.ts b/packages/ingestion/model/commercetoolsCustomFields.ts index e4126f3ed..0b790d2f0 100644 --- a/packages/ingestion/model/commercetoolsCustomFields.ts +++ b/packages/ingestion/model/commercetoolsCustomFields.ts @@ -7,15 +7,15 @@ export type CommercetoolsCustomFields = { /** * Inventory custom fields. */ - inventory?: string[]; + inventory?: string[] | null; /** * Price custom fields. */ - price?: string[]; + price?: string[] | null; /** * Category custom fields. */ - category?: string[]; + category?: string[] | null; };