@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.
@@ -2458,10 +2458,10 @@ declare enum AdditionalFeeSource {
2458
2458
  /** The additional fee was added by the shipping provider */
2459
2459
  SHIPPING = "SHIPPING",
2460
2460
  /** The additional fee was added by a Wix vertical and represents a Wix platform fee */
2461
- PLATFORM_FEE = "PLATFORM_FEE"
2461
+ PLATFORM = "PLATFORM"
2462
2462
  }
2463
2463
  /** @enumType */
2464
- type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM_FEE';
2464
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
2465
2465
  interface Violation {
2466
2466
  /** 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. */
2467
2467
  severity?: SeverityWithLiterals;
@@ -3120,6 +3120,7 @@ declare function onCartDeleted(handler: (event: CartDeletedEnvelope) => void | P
3120
3120
  interface CartUpdatedEnvelope {
3121
3121
  entity: Cart;
3122
3122
  metadata: EventMetadata;
3123
+ /** @hidden */
3123
3124
  modifiedFields: Record<string, any>;
3124
3125
  }
3125
3126
  /** @permissionScope Manage Stores - all permissions
@@ -1022,7 +1022,7 @@ var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
1022
1022
  AdditionalFeeSource2["ITEM"] = "ITEM";
1023
1023
  AdditionalFeeSource2["MANUAL"] = "MANUAL";
1024
1024
  AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
1025
- AdditionalFeeSource2["PLATFORM_FEE"] = "PLATFORM_FEE";
1025
+ AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
1026
1026
  return AdditionalFeeSource2;
1027
1027
  })(AdditionalFeeSource || {});
1028
1028
  var Severity = /* @__PURE__ */ ((Severity2) => {