@wix/auto_sdk_ecom_cart 1.0.107 → 1.0.109

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.
@@ -2343,10 +2343,10 @@ declare enum AdditionalFeeSource {
2343
2343
  /** The additional fee was added by the shipping provider */
2344
2344
  SHIPPING = "SHIPPING",
2345
2345
  /** The additional fee was added by a Wix vertical and represents a Wix platform fee */
2346
- PLATFORM_FEE = "PLATFORM_FEE"
2346
+ PLATFORM = "PLATFORM"
2347
2347
  }
2348
2348
  /** @enumType */
2349
- type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM_FEE';
2349
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
2350
2350
  interface Violation {
2351
2351
  /** 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. */
2352
2352
  severity?: SeverityWithLiterals;
@@ -3000,7 +3000,6 @@ declare function onCartDeleted(handler: (event: CartDeletedEnvelope) => void | P
3000
3000
  interface CartUpdatedEnvelope {
3001
3001
  entity: Cart;
3002
3002
  metadata: EventMetadata;
3003
- /** @hidden */
3004
3003
  modifiedFields: Record<string, any>;
3005
3004
  }
3006
3005
  /** @permissionScope Manage Stores - all permissions
@@ -963,7 +963,7 @@ var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
963
963
  AdditionalFeeSource2["ITEM"] = "ITEM";
964
964
  AdditionalFeeSource2["MANUAL"] = "MANUAL";
965
965
  AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
966
- AdditionalFeeSource2["PLATFORM_FEE"] = "PLATFORM_FEE";
966
+ AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
967
967
  return AdditionalFeeSource2;
968
968
  })(AdditionalFeeSource || {});
969
969
  var Severity = /* @__PURE__ */ ((Severity2) => {