@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +5 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -2380,10 +2380,12 @@ declare enum AdditionalFeeSource {
|
|
|
2380
2380
|
/** The additional fee was added manually on the request */
|
|
2381
2381
|
MANUAL = "MANUAL",
|
|
2382
2382
|
/** The additional fee was added by the shipping provider */
|
|
2383
|
-
SHIPPING = "SHIPPING"
|
|
2383
|
+
SHIPPING = "SHIPPING",
|
|
2384
|
+
/** The additional fee was added by a Wix vertical and represents a Wix platform fee */
|
|
2385
|
+
PLATFORM_FEE = "PLATFORM_FEE"
|
|
2384
2386
|
}
|
|
2385
2387
|
/** @enumType */
|
|
2386
|
-
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING';
|
|
2388
|
+
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM_FEE';
|
|
2387
2389
|
interface Violation {
|
|
2388
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. */
|
|
2389
2391
|
severity?: SeverityWithLiterals;
|
package/build/cjs/meta.js
CHANGED
|
@@ -1011,6 +1011,7 @@ var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
|
1011
1011
|
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
1012
1012
|
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
1013
1013
|
AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
|
|
1014
|
+
AdditionalFeeSource2["PLATFORM_FEE"] = "PLATFORM_FEE";
|
|
1014
1015
|
return AdditionalFeeSource2;
|
|
1015
1016
|
})(AdditionalFeeSource || {});
|
|
1016
1017
|
var Severity = /* @__PURE__ */ ((Severity2) => {
|