@wix/auto_sdk_ecom_current-cart 1.0.143 → 1.0.145
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 +9 -4
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +9 -4
- 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 +9 -4
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +9 -4
- 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 +9 -4
- 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 +9 -4
- 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 +9 -4
- 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 +9 -4
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -639,10 +639,11 @@ declare enum FileType {
|
|
|
639
639
|
SECURE_VIDEO = "SECURE_VIDEO",
|
|
640
640
|
SECURE_DOCUMENT = "SECURE_DOCUMENT",
|
|
641
641
|
SECURE_MUSIC = "SECURE_MUSIC",
|
|
642
|
-
SECURE_ARCHIVE = "SECURE_ARCHIVE"
|
|
642
|
+
SECURE_ARCHIVE = "SECURE_ARCHIVE",
|
|
643
|
+
SECURE_RAW = "SECURE_RAW"
|
|
643
644
|
}
|
|
644
645
|
/** @enumType */
|
|
645
|
-
type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE';
|
|
646
|
+
type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE' | 'SECURE_RAW';
|
|
646
647
|
/** Type of selected payment option for catalog item */
|
|
647
648
|
declare enum PaymentOptionType {
|
|
648
649
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -2177,8 +2178,10 @@ interface ItemCombinationLineItem {
|
|
|
2177
2178
|
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
2178
2179
|
/** General shipping calculation error. */
|
|
2179
2180
|
generalShippingCalculationError?: Details;
|
|
2180
|
-
/**
|
|
2181
|
+
/** Errors related to the delivery carrier. */
|
|
2181
2182
|
carrierErrors?: CarrierErrors;
|
|
2183
|
+
/** Error related to the selected shipping option. */
|
|
2184
|
+
selectedShippingOptionError?: Details;
|
|
2182
2185
|
/** Tax calculation error. */
|
|
2183
2186
|
taxCalculationError?: Details;
|
|
2184
2187
|
/** Coupon calculation error. */
|
|
@@ -2199,8 +2202,10 @@ interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOne
|
|
|
2199
2202
|
interface CalculationErrorsShippingCalculationErrorOneOf {
|
|
2200
2203
|
/** General shipping calculation error. */
|
|
2201
2204
|
generalShippingCalculationError?: Details;
|
|
2202
|
-
/**
|
|
2205
|
+
/** Errors related to the delivery carrier. */
|
|
2203
2206
|
carrierErrors?: CarrierErrors;
|
|
2207
|
+
/** Error related to the selected shipping option. */
|
|
2208
|
+
selectedShippingOptionError?: Details;
|
|
2204
2209
|
}
|
|
2205
2210
|
interface Details extends DetailsKindOneOf {
|
|
2206
2211
|
applicationError?: ApplicationError;
|
|
@@ -739,6 +739,7 @@ var FileType = /* @__PURE__ */ ((FileType2) => {
|
|
|
739
739
|
FileType2["SECURE_DOCUMENT"] = "SECURE_DOCUMENT";
|
|
740
740
|
FileType2["SECURE_MUSIC"] = "SECURE_MUSIC";
|
|
741
741
|
FileType2["SECURE_ARCHIVE"] = "SECURE_ARCHIVE";
|
|
742
|
+
FileType2["SECURE_RAW"] = "SECURE_RAW";
|
|
742
743
|
return FileType2;
|
|
743
744
|
})(FileType || {});
|
|
744
745
|
var PaymentOptionType = /* @__PURE__ */ ((PaymentOptionType2) => {
|