@wix/auto_sdk_ecom_checkout 1.0.48 → 1.0.50

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.
@@ -708,7 +708,7 @@ interface SubscriptionSettings {
708
708
  * Default: `1`.
709
709
  * If SubscriptionFrequency is Day the minimum interval is 7
710
710
  * @min 1
711
- * @max 50
711
+ * @max 3650
712
712
  */
713
713
  interval?: number | null;
714
714
  /** Whether subscription is renewed automatically at the end of each period. */
@@ -64,6 +64,12 @@ function resolveComWixEcomCheckoutApiV1CheckoutServiceUrl(opts) {
64
64
  srcPath: "/ecom/v1/checkouts",
65
65
  destPath: "/v1/checkouts"
66
66
  }
67
+ ],
68
+ "*.dev.wix-code.com": [
69
+ {
70
+ srcPath: "/ecom/v1/checkouts",
71
+ destPath: "/v1/checkouts"
72
+ }
67
73
  ]
68
74
  };
69
75
  return resolveUrl(Object.assign(opts, { domainToMappings }));