@wix/auto_sdk_ecom_cart-v-2 1.0.39 → 1.0.41

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.
@@ -1271,9 +1271,9 @@ async function createCart2(options) {
1271
1271
  cart: options?.cart,
1272
1272
  catalogItems: options?.catalogItems,
1273
1273
  customItems: options?.customItems,
1274
- couponCodes: options?.couponCodes,
1274
+ coupons: options?.coupons,
1275
1275
  deliveryMethod: options?.deliveryMethod,
1276
- giftCardCodes: options?.giftCardCodes
1276
+ giftCards: options?.giftCards
1277
1277
  }),
1278
1278
  [
1279
1279
  {
@@ -1337,9 +1337,9 @@ async function createCart2(options) {
1337
1337
  cart: "$[0].cart",
1338
1338
  catalogItems: "$[0].catalogItems",
1339
1339
  customItems: "$[0].customItems",
1340
- couponCodes: "$[0].couponCodes",
1340
+ coupons: "$[0].coupons",
1341
1341
  deliveryMethod: "$[0].deliveryMethod",
1342
- giftCardCodes: "$[0].giftCardCodes"
1342
+ giftCards: "$[0].giftCards"
1343
1343
  },
1344
1344
  singleArgumentUnchanged: false
1345
1345
  },
@@ -1809,11 +1809,11 @@ async function updateLineItems2(cartId, options) {
1809
1809
  throw transformedError;
1810
1810
  }
1811
1811
  }
1812
- async function addCoupon2(cartId, couponCode) {
1812
+ async function addCoupon2(cartId, coupon) {
1813
1813
  const { httpClient, sideEffects } = arguments[2];
1814
1814
  const payload = renameKeysFromSDKRequestToRESTRequest({
1815
1815
  cartId,
1816
- couponCode
1816
+ coupon
1817
1817
  });
1818
1818
  const reqOpts = addCoupon(payload);
1819
1819
  sideEffects?.onSiteCall?.();
@@ -1847,10 +1847,10 @@ async function addCoupon2(cartId, couponCode) {
1847
1847
  err,
1848
1848
  {
1849
1849
  spreadPathsToArguments: {},
1850
- explicitPathsToArguments: { cartId: "$[0]", couponCode: "$[1]" },
1850
+ explicitPathsToArguments: { cartId: "$[0]", coupon: "$[1]" },
1851
1851
  singleArgumentUnchanged: false
1852
1852
  },
1853
- ["cartId", "couponCode"]
1853
+ ["cartId", "coupon"]
1854
1854
  );
1855
1855
  sideEffects?.onError?.(err);
1856
1856
  throw transformedError;
@@ -1950,11 +1950,11 @@ async function setDeliveryMethod2(cartId, deliveryMethod) {
1950
1950
  throw transformedError;
1951
1951
  }
1952
1952
  }
1953
- async function addGiftCard2(cartId, giftCardCode) {
1953
+ async function addGiftCard2(cartId, giftCard) {
1954
1954
  const { httpClient, sideEffects } = arguments[2];
1955
1955
  const payload = renameKeysFromSDKRequestToRESTRequest({
1956
1956
  cartId,
1957
- giftCardCode
1957
+ giftCard
1958
1958
  });
1959
1959
  const reqOpts = addGiftCard(payload);
1960
1960
  sideEffects?.onSiteCall?.();
@@ -1988,10 +1988,10 @@ async function addGiftCard2(cartId, giftCardCode) {
1988
1988
  err,
1989
1989
  {
1990
1990
  spreadPathsToArguments: {},
1991
- explicitPathsToArguments: { cartId: "$[0]", giftCardCode: "$[1]" },
1991
+ explicitPathsToArguments: { cartId: "$[0]", giftCard: "$[1]" },
1992
1992
  singleArgumentUnchanged: false
1993
1993
  },
1994
- ["cartId", "giftCardCode"]
1994
+ ["cartId", "giftCard"]
1995
1995
  );
1996
1996
  sideEffects?.onError?.(err);
1997
1997
  throw transformedError;