@wix/auto_sdk_ecom_checkout-templates 1.0.46 → 1.0.47

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.
@@ -1864,6 +1864,8 @@ interface GiftCard {
1864
1864
  * @maxLength 50
1865
1865
  */
1866
1866
  externalId?: string | null;
1867
+ /** Requested amount to redeem from the gift card. */
1868
+ requestedAmount?: MultiCurrencyPrice;
1867
1869
  }
1868
1870
  interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
1869
1871
  /** Coupon details. */
@@ -41,6 +41,12 @@ function resolveWixEcomCheckoutTemplateApiV1CheckoutTemplateServiceUrl(opts) {
41
41
  srcPath: "/ecom/v1/checkout-templates",
42
42
  destPath: "/v1/checkout-templates"
43
43
  }
44
+ ],
45
+ "api._api_base_domain_": [
46
+ {
47
+ srcPath: "/checkout-template",
48
+ destPath: ""
49
+ }
44
50
  ]
45
51
  };
46
52
  return resolveUrl(Object.assign(opts, { domainToMappings }));