@flowio/api-constants 2.13.51 → 2.13.52
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/dist/api.d.ts +7 -5
- package/dist/api.js +6 -4
- package/package.json +2 -2
- package/src/api.ts +6 -4
package/dist/api.d.ts
CHANGED
|
@@ -1024,7 +1024,9 @@ export declare enum OrganizationType {
|
|
|
1024
1024
|
}
|
|
1025
1025
|
export declare enum PackageDimensionsSource {
|
|
1026
1026
|
PROVIDED = "provided",
|
|
1027
|
-
|
|
1027
|
+
ITEM_DIMENSIONS_ESTIMATED = "item_dimensions_estimated",
|
|
1028
|
+
DIMENSIONS_ESTIMATED = "dimensions_estimated",
|
|
1029
|
+
DEFAULT_ITEM_DIMENSIONS_ESTIMATED = "default_item_dimensions_estimated"
|
|
1028
1030
|
}
|
|
1029
1031
|
export declare enum PaymentActionType {
|
|
1030
1032
|
REDIRECT = "redirect",
|
|
@@ -1573,10 +1575,10 @@ export declare enum TrueupSurchargeType {
|
|
|
1573
1575
|
EMERGENCY = "emergency",
|
|
1574
1576
|
PEAK = "peak",
|
|
1575
1577
|
ADDRESS_CORRECTION = "address_correction",
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1578
|
+
SECURITY = "security",
|
|
1579
|
+
EEI_FILING = "eei_filing",
|
|
1580
|
+
FIXED_DDP = "fixed_ddp",
|
|
1581
|
+
FIXED_CURRENCY_CONVERSION = "fixed_currency_conversion"
|
|
1580
1582
|
}
|
|
1581
1583
|
export declare enum UnitOfLength {
|
|
1582
1584
|
MILLIMETER = "millimeter",
|
package/dist/api.js
CHANGED
|
@@ -1159,7 +1159,9 @@ var OrganizationType;
|
|
|
1159
1159
|
var PackageDimensionsSource;
|
|
1160
1160
|
(function (PackageDimensionsSource) {
|
|
1161
1161
|
PackageDimensionsSource["PROVIDED"] = "provided";
|
|
1162
|
+
PackageDimensionsSource["ITEM_DIMENSIONS_ESTIMATED"] = "item_dimensions_estimated";
|
|
1162
1163
|
PackageDimensionsSource["DIMENSIONS_ESTIMATED"] = "dimensions_estimated";
|
|
1164
|
+
PackageDimensionsSource["DEFAULT_ITEM_DIMENSIONS_ESTIMATED"] = "default_item_dimensions_estimated";
|
|
1163
1165
|
})(PackageDimensionsSource = exports.PackageDimensionsSource || (exports.PackageDimensionsSource = {}));
|
|
1164
1166
|
var PaymentActionType;
|
|
1165
1167
|
(function (PaymentActionType) {
|
|
@@ -1787,10 +1789,10 @@ var TrueupSurchargeType;
|
|
|
1787
1789
|
TrueupSurchargeType["EMERGENCY"] = "emergency";
|
|
1788
1790
|
TrueupSurchargeType["PEAK"] = "peak";
|
|
1789
1791
|
TrueupSurchargeType["ADDRESS_CORRECTION"] = "address_correction";
|
|
1790
|
-
TrueupSurchargeType["
|
|
1791
|
-
TrueupSurchargeType["
|
|
1792
|
-
TrueupSurchargeType["
|
|
1793
|
-
TrueupSurchargeType["
|
|
1792
|
+
TrueupSurchargeType["SECURITY"] = "security";
|
|
1793
|
+
TrueupSurchargeType["EEI_FILING"] = "eei_filing";
|
|
1794
|
+
TrueupSurchargeType["FIXED_DDP"] = "fixed_ddp";
|
|
1795
|
+
TrueupSurchargeType["FIXED_CURRENCY_CONVERSION"] = "fixed_currency_conversion";
|
|
1794
1796
|
})(TrueupSurchargeType = exports.TrueupSurchargeType || (exports.TrueupSurchargeType = {}));
|
|
1795
1797
|
var UnitOfLength;
|
|
1796
1798
|
(function (UnitOfLength) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.52",
|
|
4
4
|
"description": "Definitions for enumerations found in the Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"postgenerate": "npm run format",
|
|
27
27
|
"prepublish": "npm run clean && npm run build"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "11a5e37328905a965c20736d076f67c39a22ee86"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -1151,7 +1151,9 @@ export enum OrganizationType {
|
|
|
1151
1151
|
|
|
1152
1152
|
export enum PackageDimensionsSource {
|
|
1153
1153
|
PROVIDED = 'provided',
|
|
1154
|
+
ITEM_DIMENSIONS_ESTIMATED = 'item_dimensions_estimated',
|
|
1154
1155
|
DIMENSIONS_ESTIMATED = 'dimensions_estimated',
|
|
1156
|
+
DEFAULT_ITEM_DIMENSIONS_ESTIMATED = 'default_item_dimensions_estimated',
|
|
1155
1157
|
}
|
|
1156
1158
|
|
|
1157
1159
|
export enum PaymentActionType {
|
|
@@ -1779,10 +1781,10 @@ export enum TrueupSurchargeType {
|
|
|
1779
1781
|
EMERGENCY = 'emergency',
|
|
1780
1782
|
PEAK = 'peak',
|
|
1781
1783
|
ADDRESS_CORRECTION = 'address_correction',
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1784
|
+
SECURITY = 'security',
|
|
1785
|
+
EEI_FILING = 'eei_filing',
|
|
1786
|
+
FIXED_DDP = 'fixed_ddp',
|
|
1787
|
+
FIXED_CURRENCY_CONVERSION = 'fixed_currency_conversion',
|
|
1786
1788
|
}
|
|
1787
1789
|
|
|
1788
1790
|
export enum UnitOfLength {
|