@wix/auto_sdk_ecom_current-cart-v-2 1.0.52 → 1.0.53
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.
- package/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +2 -2
- package/build/cjs/meta.js +1 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +2 -2
- package/build/es/meta.mjs +1 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +1 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +2 -2
- package/build/internal/cjs/meta.js +1 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +1 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +2 -2
- package/build/internal/es/meta.mjs +1 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3915,10 +3915,10 @@ declare enum AdditionalFeeSource {
|
|
|
3915
3915
|
/** The additional fee was added by the shipping provider */
|
|
3916
3916
|
SHIPPING = "SHIPPING",
|
|
3917
3917
|
/** The additional fee was added by a Wix vertical and represents a Wix platform fee */
|
|
3918
|
-
|
|
3918
|
+
PLATFORM = "PLATFORM"
|
|
3919
3919
|
}
|
|
3920
3920
|
/** @enumType */
|
|
3921
|
-
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | '
|
|
3921
|
+
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
|
|
3922
3922
|
interface PlatformFeeSummary {
|
|
3923
3923
|
/** Total platform fee amount. */
|
|
3924
3924
|
total?: MultiCurrencyPrice;
|
|
@@ -1226,7 +1226,7 @@ var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
|
1226
1226
|
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
1227
1227
|
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
1228
1228
|
AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
|
|
1229
|
-
AdditionalFeeSource2["
|
|
1229
|
+
AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
|
|
1230
1230
|
return AdditionalFeeSource2;
|
|
1231
1231
|
})(AdditionalFeeSource || {});
|
|
1232
1232
|
var PlatformFeeChargeType = /* @__PURE__ */ ((PlatformFeeChargeType2) => {
|