@shipengine/alchemy 6.0.9 → 6.0.10
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/index.js +16 -5
- package/index.mjs +16 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -11062,6 +11062,8 @@ var CustomsNonDeliveryType = /* @__PURE__ */ ((CustomsNonDeliveryType2) => {
|
|
|
11062
11062
|
})(CustomsNonDeliveryType || {});
|
|
11063
11063
|
var InsuranceProviderType = /* @__PURE__ */ ((InsuranceProviderType2) => {
|
|
11064
11064
|
InsuranceProviderType2["FUNDING_SOURCE"] = "funding_source";
|
|
11065
|
+
InsuranceProviderType2["PARCELGUARD"] = "parcelguard";
|
|
11066
|
+
InsuranceProviderType2["X_COVER"] = "x_cover";
|
|
11065
11067
|
InsuranceProviderType2["SHIPSURANCE"] = "shipsurance";
|
|
11066
11068
|
InsuranceProviderType2["CARRIER"] = "carrier";
|
|
11067
11069
|
InsuranceProviderType2["THIRD_PARTY"] = "third_party";
|
|
@@ -12482,13 +12484,22 @@ var transformData$1 = function transformData(data, headers, fns) {
|
|
|
12482
12484
|
return data;
|
|
12483
12485
|
};
|
|
12484
12486
|
|
|
12485
|
-
var isCancel$1
|
|
12486
|
-
|
|
12487
|
-
|
|
12487
|
+
var isCancel$1;
|
|
12488
|
+
var hasRequiredIsCancel;
|
|
12489
|
+
|
|
12490
|
+
function requireIsCancel () {
|
|
12491
|
+
if (hasRequiredIsCancel) return isCancel$1;
|
|
12492
|
+
hasRequiredIsCancel = 1;
|
|
12493
|
+
|
|
12494
|
+
isCancel$1 = function isCancel(value) {
|
|
12495
|
+
return !!(value && value.__CANCEL__);
|
|
12496
|
+
};
|
|
12497
|
+
return isCancel$1;
|
|
12498
|
+
}
|
|
12488
12499
|
|
|
12489
12500
|
var utils$6 = utils$c;
|
|
12490
12501
|
var transformData = transformData$1;
|
|
12491
|
-
var isCancel =
|
|
12502
|
+
var isCancel = requireIsCancel();
|
|
12492
12503
|
var defaults$4 = defaults_1;
|
|
12493
12504
|
var Cancel = requireCancel();
|
|
12494
12505
|
|
|
@@ -13132,7 +13143,7 @@ axios$1.Axios = Axios;
|
|
|
13132
13143
|
// Expose Cancel & CancelToken
|
|
13133
13144
|
axios$1.Cancel = requireCancel();
|
|
13134
13145
|
axios$1.CancelToken = requireCancelToken();
|
|
13135
|
-
axios$1.isCancel =
|
|
13146
|
+
axios$1.isCancel = requireIsCancel();
|
|
13136
13147
|
axios$1.VERSION = requireData().version;
|
|
13137
13148
|
|
|
13138
13149
|
// Expose all/spread
|
package/index.mjs
CHANGED
|
@@ -11040,6 +11040,8 @@ var CustomsNonDeliveryType = /* @__PURE__ */ ((CustomsNonDeliveryType2) => {
|
|
|
11040
11040
|
})(CustomsNonDeliveryType || {});
|
|
11041
11041
|
var InsuranceProviderType = /* @__PURE__ */ ((InsuranceProviderType2) => {
|
|
11042
11042
|
InsuranceProviderType2["FUNDING_SOURCE"] = "funding_source";
|
|
11043
|
+
InsuranceProviderType2["PARCELGUARD"] = "parcelguard";
|
|
11044
|
+
InsuranceProviderType2["X_COVER"] = "x_cover";
|
|
11043
11045
|
InsuranceProviderType2["SHIPSURANCE"] = "shipsurance";
|
|
11044
11046
|
InsuranceProviderType2["CARRIER"] = "carrier";
|
|
11045
11047
|
InsuranceProviderType2["THIRD_PARTY"] = "third_party";
|
|
@@ -12460,13 +12462,22 @@ var transformData$1 = function transformData(data, headers, fns) {
|
|
|
12460
12462
|
return data;
|
|
12461
12463
|
};
|
|
12462
12464
|
|
|
12463
|
-
var isCancel$1
|
|
12464
|
-
|
|
12465
|
-
|
|
12465
|
+
var isCancel$1;
|
|
12466
|
+
var hasRequiredIsCancel;
|
|
12467
|
+
|
|
12468
|
+
function requireIsCancel () {
|
|
12469
|
+
if (hasRequiredIsCancel) return isCancel$1;
|
|
12470
|
+
hasRequiredIsCancel = 1;
|
|
12471
|
+
|
|
12472
|
+
isCancel$1 = function isCancel(value) {
|
|
12473
|
+
return !!(value && value.__CANCEL__);
|
|
12474
|
+
};
|
|
12475
|
+
return isCancel$1;
|
|
12476
|
+
}
|
|
12466
12477
|
|
|
12467
12478
|
var utils$6 = utils$c;
|
|
12468
12479
|
var transformData = transformData$1;
|
|
12469
|
-
var isCancel =
|
|
12480
|
+
var isCancel = requireIsCancel();
|
|
12470
12481
|
var defaults$4 = defaults_1;
|
|
12471
12482
|
var Cancel = requireCancel();
|
|
12472
12483
|
|
|
@@ -13110,7 +13121,7 @@ axios$1.Axios = Axios;
|
|
|
13110
13121
|
// Expose Cancel & CancelToken
|
|
13111
13122
|
axios$1.Cancel = requireCancel();
|
|
13112
13123
|
axios$1.CancelToken = requireCancelToken();
|
|
13113
|
-
axios$1.isCancel =
|
|
13124
|
+
axios$1.isCancel = requireIsCancel();
|
|
13114
13125
|
axios$1.VERSION = requireData().version;
|
|
13115
13126
|
|
|
13116
13127
|
// Expose all/spread
|