commerce-sdk-isomorphic 1.10.3 → 1.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v1.10.4
4
+
5
+ #### Bug fixes
6
+
7
+ - Mark `expand` query parameter for `getProduct` endpoint as optional instead of required
8
+
3
9
  ## v1.10.3
4
10
 
5
11
  #### Bug fixes
@@ -22368,7 +22368,7 @@ declare class ShopperProducts<ConfigParameters extends ShopperProductsParameters
22368
22368
  select?: string;
22369
22369
  inventoryIds?: string;
22370
22370
  currency?: string;
22371
- expand: Array<string>;
22371
+ expand?: Array<string>;
22372
22372
  locale?: string;
22373
22373
  allImages?: boolean;
22374
22374
  perPricebook?: boolean;
@@ -22406,7 +22406,7 @@ declare class ShopperProducts<ConfigParameters extends ShopperProductsParameters
22406
22406
  select?: string;
22407
22407
  inventoryIds?: string;
22408
22408
  currency?: string;
22409
- expand: Array<string>;
22409
+ expand?: Array<string>;
22410
22410
  locale?: string;
22411
22411
  allImages?: boolean;
22412
22412
  perPricebook?: boolean;
@@ -23300,7 +23300,7 @@ declare namespace ShopperProductsTypes {
23300
23300
  select?: string;
23301
23301
  inventoryIds?: string;
23302
23302
  currency?: string;
23303
- expand: Array<string>;
23303
+ expand?: Array<string>;
23304
23304
  locale?: string;
23305
23305
  allImages?: boolean;
23306
23306
  perPricebook?: boolean;
@@ -23338,7 +23338,7 @@ declare namespace ShopperProductsTypes {
23338
23338
  select?: string;
23339
23339
  inventoryIds?: string;
23340
23340
  currency?: string;
23341
- expand: Array<string>;
23341
+ expand?: Array<string>;
23342
23342
  locale?: string;
23343
23343
  allImages?: boolean;
23344
23344
  perPricebook?: boolean;