@wix/auto_sdk_ecom_current-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 +974 -58
- 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 +974 -58
- package/build/cjs/meta.js +67 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +974 -58
- 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 +974 -58
- package/build/es/meta.mjs +59 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- 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 +1038 -58
- 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 +974 -58
- package/build/internal/cjs/meta.js +67 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- 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 +1038 -58
- 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 +974 -58
- package/build/internal/es/meta.mjs +59 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -20,16 +20,24 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// index.ts
|
|
21
21
|
var index_exports = {};
|
|
22
22
|
__export(index_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,
|
|
@@ -1138,6 +1146,57 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1138
1146
|
WebhookIdentityType2["APP"] = "APP";
|
|
1139
1147
|
return WebhookIdentityType2;
|
|
1140
1148
|
})(WebhookIdentityType || {});
|
|
1149
|
+
var JurisdictionType = /* @__PURE__ */ ((JurisdictionType2) => {
|
|
1150
|
+
JurisdictionType2["UNDEFINED"] = "UNDEFINED";
|
|
1151
|
+
JurisdictionType2["COUNTRY"] = "COUNTRY";
|
|
1152
|
+
JurisdictionType2["STATE"] = "STATE";
|
|
1153
|
+
JurisdictionType2["COUNTY"] = "COUNTY";
|
|
1154
|
+
JurisdictionType2["CITY"] = "CITY";
|
|
1155
|
+
JurisdictionType2["SPECIAL"] = "SPECIAL";
|
|
1156
|
+
return JurisdictionType2;
|
|
1157
|
+
})(JurisdictionType || {});
|
|
1158
|
+
var RateType = /* @__PURE__ */ ((RateType2) => {
|
|
1159
|
+
RateType2["NO_TAX_COLLECTED"] = "NO_TAX_COLLECTED";
|
|
1160
|
+
RateType2["MANUAL_RATE"] = "MANUAL_RATE";
|
|
1161
|
+
RateType2["AUTO_RATE"] = "AUTO_RATE";
|
|
1162
|
+
RateType2["FALLBACK_RATE"] = "FALLBACK_RATE";
|
|
1163
|
+
return RateType2;
|
|
1164
|
+
})(RateType || {});
|
|
1165
|
+
var ManualCalculationReason = /* @__PURE__ */ ((ManualCalculationReason2) => {
|
|
1166
|
+
ManualCalculationReason2["GLOBAL_SETTING_TO_MANUAL"] = "GLOBAL_SETTING_TO_MANUAL";
|
|
1167
|
+
ManualCalculationReason2["REGION_SETTING_TO_MANUAL"] = "REGION_SETTING_TO_MANUAL";
|
|
1168
|
+
return ManualCalculationReason2;
|
|
1169
|
+
})(ManualCalculationReason || {});
|
|
1170
|
+
var FallbackReason = /* @__PURE__ */ ((FallbackReason2) => {
|
|
1171
|
+
FallbackReason2["AUTO_TAX_FAILED"] = "AUTO_TAX_FAILED";
|
|
1172
|
+
FallbackReason2["AUTO_TAX_DEACTIVATED"] = "AUTO_TAX_DEACTIVATED";
|
|
1173
|
+
return FallbackReason2;
|
|
1174
|
+
})(FallbackReason || {});
|
|
1175
|
+
var PickupMethod = /* @__PURE__ */ ((PickupMethod2) => {
|
|
1176
|
+
PickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
|
|
1177
|
+
PickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
|
|
1178
|
+
PickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
|
|
1179
|
+
return PickupMethod2;
|
|
1180
|
+
})(PickupMethod || {});
|
|
1181
|
+
var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
|
|
1182
|
+
ChargeType2["HANDLING_FEE"] = "HANDLING_FEE";
|
|
1183
|
+
ChargeType2["INSURANCE"] = "INSURANCE";
|
|
1184
|
+
return ChargeType2;
|
|
1185
|
+
})(ChargeType || {});
|
|
1186
|
+
var DiscountType = /* @__PURE__ */ ((DiscountType2) => {
|
|
1187
|
+
DiscountType2["GLOBAL"] = "GLOBAL";
|
|
1188
|
+
DiscountType2["SPECIFIC_ITEMS"] = "SPECIFIC_ITEMS";
|
|
1189
|
+
DiscountType2["SHIPPING"] = "SHIPPING";
|
|
1190
|
+
return DiscountType2;
|
|
1191
|
+
})(DiscountType || {});
|
|
1192
|
+
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
1193
|
+
AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
|
|
1194
|
+
AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
|
|
1195
|
+
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
1196
|
+
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
1197
|
+
AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
|
|
1198
|
+
return AdditionalFeeSource2;
|
|
1199
|
+
})(AdditionalFeeSource || {});
|
|
1141
1200
|
async function createCurrentCart2(options) {
|
|
1142
1201
|
const { httpClient, sideEffects } = arguments[1];
|
|
1143
1202
|
const payload = (0, import_transform_paths2.transformPaths)(
|
|
@@ -1952,16 +2011,24 @@ var addGiftCardToCurrentCart4 = /* @__PURE__ */ (0, import_rest_modules3.createR
|
|
|
1952
2011
|
var removeGiftCardFromCurrentCart4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(removeGiftCardFromCurrentCart3);
|
|
1953
2012
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1954
2013
|
0 && (module.exports = {
|
|
2014
|
+
AdditionalFeeSource,
|
|
1955
2015
|
ChannelType,
|
|
2016
|
+
ChargeType,
|
|
1956
2017
|
DescriptionLineType,
|
|
1957
2018
|
DiscountScope,
|
|
1958
2019
|
DiscountSourceType,
|
|
2020
|
+
DiscountType,
|
|
2021
|
+
FallbackReason,
|
|
1959
2022
|
FileType,
|
|
1960
2023
|
ItemStatus,
|
|
1961
2024
|
ItemTypeItemType,
|
|
2025
|
+
JurisdictionType,
|
|
2026
|
+
ManualCalculationReason,
|
|
1962
2027
|
NameInLineItem,
|
|
1963
2028
|
NameInOther,
|
|
1964
2029
|
PaymentOptionType,
|
|
2030
|
+
PickupMethod,
|
|
2031
|
+
RateType,
|
|
1965
2032
|
RuleType,
|
|
1966
2033
|
Severity,
|
|
1967
2034
|
SubscriptionFrequency,
|