From d2897107237be24d1035e2cafd665b8758822d7b Mon Sep 17 00:00:00 2001 From: Basile Beldame Date: Sun, 24 Jan 2021 01:09:26 +0100 Subject: [PATCH] OptionSelections type move in array I guess it's a typo in the code, I had this problem using optionSelections in a add cart on my project. --- framework/bigcommerce/api/cart/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/bigcommerce/api/cart/index.ts b/framework/bigcommerce/api/cart/index.ts index 5ff2d975b..88b660d29 100644 --- a/framework/bigcommerce/api/cart/index.ts +++ b/framework/bigcommerce/api/cart/index.ts @@ -18,7 +18,7 @@ export type ItemBody = { productId: number variantId: number quantity?: number - optionSelections?: OptionSelections + optionSelections?: Array } export type AddItemBody = { item: ItemBody }