@wix/auto_sdk_ecom_cart 1.0.108 → 1.0.110

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.
@@ -2382,10 +2382,10 @@ declare enum AdditionalFeeSource {
2382
2382
  /** The additional fee was added by the shipping provider */
2383
2383
  SHIPPING = "SHIPPING",
2384
2384
  /** The additional fee was added by a Wix vertical and represents a Wix platform fee */
2385
- PLATFORM_FEE = "PLATFORM_FEE"
2385
+ PLATFORM = "PLATFORM"
2386
2386
  }
2387
2387
  /** @enumType */
2388
- type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM_FEE';
2388
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
2389
2389
  interface Violation {
2390
2390
  /** Severity of the violation. The violations are shown on the cart and checkout pages. A warning is displayed as yellow, and allows a site visitor to proceed with caution. An error is displayed as red, and doesn't allow a site visitor to proceed with the eCommerce flow. */
2391
2391
  severity?: SeverityWithLiterals;
@@ -949,7 +949,7 @@ var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
949
949
  AdditionalFeeSource2["ITEM"] = "ITEM";
950
950
  AdditionalFeeSource2["MANUAL"] = "MANUAL";
951
951
  AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
952
- AdditionalFeeSource2["PLATFORM_FEE"] = "PLATFORM_FEE";
952
+ AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
953
953
  return AdditionalFeeSource2;
954
954
  })(AdditionalFeeSource || {});
955
955
  var Severity = /* @__PURE__ */ ((Severity2) => {