@wix/auto_sdk_ecom_cart-v-2 1.0.32 → 1.0.34
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.d.ts +1107 -185
- package/build/cjs/index.js +67 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +67 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1106 -184
- package/build/cjs/meta.js +67 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1107 -185
- package/build/es/index.mjs +59 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +59 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1106 -184
- package/build/es/meta.mjs +59 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +6 -4
- package/build/internal/cjs/index.js +67 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +1186 -198
- package/build/internal/cjs/index.typings.js +67 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1106 -184
- package/build/internal/cjs/meta.js +67 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +6 -4
- package/build/internal/es/index.mjs +59 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +1186 -198
- package/build/internal/es/index.typings.mjs +59 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1106 -184
- package/build/internal/es/meta.mjs +59 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -20,16 +20,24 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// index.typings.ts
|
|
21
21
|
var index_typings_exports = {};
|
|
22
22
|
__export(index_typings_exports, {
|
|
23
|
+
AdditionalFeeSource: () => AdditionalFeeSource,
|
|
23
24
|
ChannelType: () => ChannelType,
|
|
25
|
+
ChargeType: () => ChargeType,
|
|
24
26
|
DescriptionLineType: () => DescriptionLineType,
|
|
25
27
|
DiscountScope: () => DiscountScope,
|
|
26
28
|
DiscountSourceType: () => DiscountSourceType,
|
|
29
|
+
DiscountType: () => DiscountType,
|
|
30
|
+
FallbackReason: () => FallbackReason,
|
|
27
31
|
FileType: () => FileType,
|
|
28
32
|
ItemStatus: () => ItemStatus,
|
|
29
33
|
ItemTypeItemType: () => ItemTypeItemType,
|
|
34
|
+
JurisdictionType: () => JurisdictionType,
|
|
35
|
+
ManualCalculationReason: () => ManualCalculationReason,
|
|
30
36
|
NameInLineItem: () => NameInLineItem,
|
|
31
37
|
NameInOther: () => NameInOther,
|
|
32
38
|
PaymentOptionType: () => PaymentOptionType,
|
|
39
|
+
PickupMethod: () => PickupMethod,
|
|
40
|
+
RateType: () => RateType,
|
|
33
41
|
RuleType: () => RuleType,
|
|
34
42
|
Severity: () => Severity,
|
|
35
43
|
SubscriptionFrequency: () => SubscriptionFrequency,
|
|
@@ -1265,6 +1273,57 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1265
1273
|
WebhookIdentityType2["APP"] = "APP";
|
|
1266
1274
|
return WebhookIdentityType2;
|
|
1267
1275
|
})(WebhookIdentityType || {});
|
|
1276
|
+
var JurisdictionType = /* @__PURE__ */ ((JurisdictionType2) => {
|
|
1277
|
+
JurisdictionType2["UNDEFINED"] = "UNDEFINED";
|
|
1278
|
+
JurisdictionType2["COUNTRY"] = "COUNTRY";
|
|
1279
|
+
JurisdictionType2["STATE"] = "STATE";
|
|
1280
|
+
JurisdictionType2["COUNTY"] = "COUNTY";
|
|
1281
|
+
JurisdictionType2["CITY"] = "CITY";
|
|
1282
|
+
JurisdictionType2["SPECIAL"] = "SPECIAL";
|
|
1283
|
+
return JurisdictionType2;
|
|
1284
|
+
})(JurisdictionType || {});
|
|
1285
|
+
var RateType = /* @__PURE__ */ ((RateType2) => {
|
|
1286
|
+
RateType2["NO_TAX_COLLECTED"] = "NO_TAX_COLLECTED";
|
|
1287
|
+
RateType2["MANUAL_RATE"] = "MANUAL_RATE";
|
|
1288
|
+
RateType2["AUTO_RATE"] = "AUTO_RATE";
|
|
1289
|
+
RateType2["FALLBACK_RATE"] = "FALLBACK_RATE";
|
|
1290
|
+
return RateType2;
|
|
1291
|
+
})(RateType || {});
|
|
1292
|
+
var ManualCalculationReason = /* @__PURE__ */ ((ManualCalculationReason2) => {
|
|
1293
|
+
ManualCalculationReason2["GLOBAL_SETTING_TO_MANUAL"] = "GLOBAL_SETTING_TO_MANUAL";
|
|
1294
|
+
ManualCalculationReason2["REGION_SETTING_TO_MANUAL"] = "REGION_SETTING_TO_MANUAL";
|
|
1295
|
+
return ManualCalculationReason2;
|
|
1296
|
+
})(ManualCalculationReason || {});
|
|
1297
|
+
var FallbackReason = /* @__PURE__ */ ((FallbackReason2) => {
|
|
1298
|
+
FallbackReason2["AUTO_TAX_FAILED"] = "AUTO_TAX_FAILED";
|
|
1299
|
+
FallbackReason2["AUTO_TAX_DEACTIVATED"] = "AUTO_TAX_DEACTIVATED";
|
|
1300
|
+
return FallbackReason2;
|
|
1301
|
+
})(FallbackReason || {});
|
|
1302
|
+
var PickupMethod = /* @__PURE__ */ ((PickupMethod2) => {
|
|
1303
|
+
PickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
|
|
1304
|
+
PickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
|
|
1305
|
+
PickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
|
|
1306
|
+
return PickupMethod2;
|
|
1307
|
+
})(PickupMethod || {});
|
|
1308
|
+
var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
|
|
1309
|
+
ChargeType2["HANDLING_FEE"] = "HANDLING_FEE";
|
|
1310
|
+
ChargeType2["INSURANCE"] = "INSURANCE";
|
|
1311
|
+
return ChargeType2;
|
|
1312
|
+
})(ChargeType || {});
|
|
1313
|
+
var DiscountType = /* @__PURE__ */ ((DiscountType2) => {
|
|
1314
|
+
DiscountType2["GLOBAL"] = "GLOBAL";
|
|
1315
|
+
DiscountType2["SPECIFIC_ITEMS"] = "SPECIFIC_ITEMS";
|
|
1316
|
+
DiscountType2["SHIPPING"] = "SHIPPING";
|
|
1317
|
+
return DiscountType2;
|
|
1318
|
+
})(DiscountType || {});
|
|
1319
|
+
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
1320
|
+
AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
|
|
1321
|
+
AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
|
|
1322
|
+
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
1323
|
+
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
1324
|
+
AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
|
|
1325
|
+
return AdditionalFeeSource2;
|
|
1326
|
+
})(AdditionalFeeSource || {});
|
|
1268
1327
|
async function createCart2(options) {
|
|
1269
1328
|
const { httpClient, sideEffects } = arguments[1];
|
|
1270
1329
|
const payload = (0, import_transform_paths2.transformPaths)(
|
|
@@ -2117,16 +2176,24 @@ async function handleAsyncCheckoutCompletion2(token) {
|
|
|
2117
2176
|
}
|
|
2118
2177
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2119
2178
|
0 && (module.exports = {
|
|
2179
|
+
AdditionalFeeSource,
|
|
2120
2180
|
ChannelType,
|
|
2181
|
+
ChargeType,
|
|
2121
2182
|
DescriptionLineType,
|
|
2122
2183
|
DiscountScope,
|
|
2123
2184
|
DiscountSourceType,
|
|
2185
|
+
DiscountType,
|
|
2186
|
+
FallbackReason,
|
|
2124
2187
|
FileType,
|
|
2125
2188
|
ItemStatus,
|
|
2126
2189
|
ItemTypeItemType,
|
|
2190
|
+
JurisdictionType,
|
|
2191
|
+
ManualCalculationReason,
|
|
2127
2192
|
NameInLineItem,
|
|
2128
2193
|
NameInOther,
|
|
2129
2194
|
PaymentOptionType,
|
|
2195
|
+
PickupMethod,
|
|
2196
|
+
RateType,
|
|
2130
2197
|
RuleType,
|
|
2131
2198
|
Severity,
|
|
2132
2199
|
SubscriptionFrequency,
|