@wix/auto_sdk_ecom_cart 1.0.104 → 1.0.105

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