@flowio/api-constants 2.13.59 → 2.13.60
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 +6 -3
- package/dist/api.js +3 -0
- package/package.json +2 -2
- package/src/api.ts +3 -0
package/dist/api.d.ts
CHANGED
|
@@ -605,7 +605,8 @@ export declare enum FlowBehavior {
|
|
|
605
605
|
export declare enum FlowEntity {
|
|
606
606
|
FLOW_USA = "flow-usa",
|
|
607
607
|
FLOW_IRL = "flow-irl",
|
|
608
|
-
FLOW_CAN = "flow-can"
|
|
608
|
+
FLOW_CAN = "flow-can",
|
|
609
|
+
GE_USA = "ge-usa"
|
|
609
610
|
}
|
|
610
611
|
export declare enum FlowRole {
|
|
611
612
|
ORGANIZATION_ADMIN = "organization_admin",
|
|
@@ -1099,7 +1100,8 @@ export declare enum PaymentType {
|
|
|
1099
1100
|
AFTERPAY = "afterpay",
|
|
1100
1101
|
BANCONTACT = "bancontact",
|
|
1101
1102
|
TWINT = "twint",
|
|
1102
|
-
PRZELEWY_24 = "przelewy24"
|
|
1103
|
+
PRZELEWY_24 = "przelewy24",
|
|
1104
|
+
MOBILEPAY = "mobilepay"
|
|
1103
1105
|
}
|
|
1104
1106
|
export declare enum PayoutAttachmentType {
|
|
1105
1107
|
TRANSACTIONS = "transactions"
|
|
@@ -1565,7 +1567,8 @@ export declare enum TrueupSurchargeType {
|
|
|
1565
1567
|
SIGNATURE_REQUIRED = "signature_required",
|
|
1566
1568
|
DIRECT_DELIVERY = "direct_delivery",
|
|
1567
1569
|
SATURDAY_STOP = "saturday_stop",
|
|
1568
|
-
RESIDENTIAL_EXTENDED_AREA_PICKUP = "residential_extended_area_pickup"
|
|
1570
|
+
RESIDENTIAL_EXTENDED_AREA_PICKUP = "residential_extended_area_pickup",
|
|
1571
|
+
PACKAGE_LEVEL_DETAIL = "package_level_detail"
|
|
1569
1572
|
}
|
|
1570
1573
|
export declare enum UnitOfLength {
|
|
1571
1574
|
MILLIMETER = "millimeter",
|
package/dist/api.js
CHANGED
|
@@ -680,6 +680,7 @@ var FlowEntity;
|
|
|
680
680
|
FlowEntity["FLOW_USA"] = "flow-usa";
|
|
681
681
|
FlowEntity["FLOW_IRL"] = "flow-irl";
|
|
682
682
|
FlowEntity["FLOW_CAN"] = "flow-can";
|
|
683
|
+
FlowEntity["GE_USA"] = "ge-usa";
|
|
683
684
|
})(FlowEntity = exports.FlowEntity || (exports.FlowEntity = {}));
|
|
684
685
|
var FlowRole;
|
|
685
686
|
(function (FlowRole) {
|
|
@@ -1245,6 +1246,7 @@ var PaymentType;
|
|
|
1245
1246
|
PaymentType["BANCONTACT"] = "bancontact";
|
|
1246
1247
|
PaymentType["TWINT"] = "twint";
|
|
1247
1248
|
PaymentType["PRZELEWY_24"] = "przelewy24";
|
|
1249
|
+
PaymentType["MOBILEPAY"] = "mobilepay";
|
|
1248
1250
|
})(PaymentType = exports.PaymentType || (exports.PaymentType = {}));
|
|
1249
1251
|
var PayoutAttachmentType;
|
|
1250
1252
|
(function (PayoutAttachmentType) {
|
|
@@ -1778,6 +1780,7 @@ var TrueupSurchargeType;
|
|
|
1778
1780
|
TrueupSurchargeType["DIRECT_DELIVERY"] = "direct_delivery";
|
|
1779
1781
|
TrueupSurchargeType["SATURDAY_STOP"] = "saturday_stop";
|
|
1780
1782
|
TrueupSurchargeType["RESIDENTIAL_EXTENDED_AREA_PICKUP"] = "residential_extended_area_pickup";
|
|
1783
|
+
TrueupSurchargeType["PACKAGE_LEVEL_DETAIL"] = "package_level_detail";
|
|
1781
1784
|
})(TrueupSurchargeType = exports.TrueupSurchargeType || (exports.TrueupSurchargeType = {}));
|
|
1782
1785
|
var UnitOfLength;
|
|
1783
1786
|
(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.60",
|
|
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": "e3d3fbfffe0108db636d2d051ab48c20d6726685"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -672,6 +672,7 @@ export enum FlowEntity {
|
|
|
672
672
|
FLOW_USA = 'flow-usa',
|
|
673
673
|
FLOW_IRL = 'flow-irl',
|
|
674
674
|
FLOW_CAN = 'flow-can',
|
|
675
|
+
GE_USA = 'ge-usa',
|
|
675
676
|
}
|
|
676
677
|
|
|
677
678
|
export enum FlowRole {
|
|
@@ -1237,6 +1238,7 @@ export enum PaymentType {
|
|
|
1237
1238
|
BANCONTACT = 'bancontact',
|
|
1238
1239
|
TWINT = 'twint',
|
|
1239
1240
|
PRZELEWY_24 = 'przelewy24',
|
|
1241
|
+
MOBILEPAY = 'mobilepay',
|
|
1240
1242
|
}
|
|
1241
1243
|
|
|
1242
1244
|
export enum PayoutAttachmentType {
|
|
@@ -1770,6 +1772,7 @@ export enum TrueupSurchargeType {
|
|
|
1770
1772
|
DIRECT_DELIVERY = 'direct_delivery',
|
|
1771
1773
|
SATURDAY_STOP = 'saturday_stop',
|
|
1772
1774
|
RESIDENTIAL_EXTENDED_AREA_PICKUP = 'residential_extended_area_pickup',
|
|
1775
|
+
PACKAGE_LEVEL_DETAIL = 'package_level_detail',
|
|
1773
1776
|
}
|
|
1774
1777
|
|
|
1775
1778
|
export enum UnitOfLength {
|