@flowio/api-constants 2.13.58 → 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 +8 -3
- package/dist/api.js +5 -0
- package/package.json +2 -2
- package/src/api.ts +5 -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",
|
|
@@ -1097,7 +1098,10 @@ export declare enum PaymentType {
|
|
|
1097
1098
|
IDEAL = "ideal",
|
|
1098
1099
|
SOFORT = "sofort",
|
|
1099
1100
|
AFTERPAY = "afterpay",
|
|
1100
|
-
BANCONTACT = "bancontact"
|
|
1101
|
+
BANCONTACT = "bancontact",
|
|
1102
|
+
TWINT = "twint",
|
|
1103
|
+
PRZELEWY_24 = "przelewy24",
|
|
1104
|
+
MOBILEPAY = "mobilepay"
|
|
1101
1105
|
}
|
|
1102
1106
|
export declare enum PayoutAttachmentType {
|
|
1103
1107
|
TRANSACTIONS = "transactions"
|
|
@@ -1563,7 +1567,8 @@ export declare enum TrueupSurchargeType {
|
|
|
1563
1567
|
SIGNATURE_REQUIRED = "signature_required",
|
|
1564
1568
|
DIRECT_DELIVERY = "direct_delivery",
|
|
1565
1569
|
SATURDAY_STOP = "saturday_stop",
|
|
1566
|
-
RESIDENTIAL_EXTENDED_AREA_PICKUP = "residential_extended_area_pickup"
|
|
1570
|
+
RESIDENTIAL_EXTENDED_AREA_PICKUP = "residential_extended_area_pickup",
|
|
1571
|
+
PACKAGE_LEVEL_DETAIL = "package_level_detail"
|
|
1567
1572
|
}
|
|
1568
1573
|
export declare enum UnitOfLength {
|
|
1569
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) {
|
|
@@ -1243,6 +1244,9 @@ var PaymentType;
|
|
|
1243
1244
|
PaymentType["SOFORT"] = "sofort";
|
|
1244
1245
|
PaymentType["AFTERPAY"] = "afterpay";
|
|
1245
1246
|
PaymentType["BANCONTACT"] = "bancontact";
|
|
1247
|
+
PaymentType["TWINT"] = "twint";
|
|
1248
|
+
PaymentType["PRZELEWY_24"] = "przelewy24";
|
|
1249
|
+
PaymentType["MOBILEPAY"] = "mobilepay";
|
|
1246
1250
|
})(PaymentType = exports.PaymentType || (exports.PaymentType = {}));
|
|
1247
1251
|
var PayoutAttachmentType;
|
|
1248
1252
|
(function (PayoutAttachmentType) {
|
|
@@ -1776,6 +1780,7 @@ var TrueupSurchargeType;
|
|
|
1776
1780
|
TrueupSurchargeType["DIRECT_DELIVERY"] = "direct_delivery";
|
|
1777
1781
|
TrueupSurchargeType["SATURDAY_STOP"] = "saturday_stop";
|
|
1778
1782
|
TrueupSurchargeType["RESIDENTIAL_EXTENDED_AREA_PICKUP"] = "residential_extended_area_pickup";
|
|
1783
|
+
TrueupSurchargeType["PACKAGE_LEVEL_DETAIL"] = "package_level_detail";
|
|
1779
1784
|
})(TrueupSurchargeType = exports.TrueupSurchargeType || (exports.TrueupSurchargeType = {}));
|
|
1780
1785
|
var UnitOfLength;
|
|
1781
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 {
|
|
@@ -1235,6 +1236,9 @@ export enum PaymentType {
|
|
|
1235
1236
|
SOFORT = 'sofort',
|
|
1236
1237
|
AFTERPAY = 'afterpay',
|
|
1237
1238
|
BANCONTACT = 'bancontact',
|
|
1239
|
+
TWINT = 'twint',
|
|
1240
|
+
PRZELEWY_24 = 'przelewy24',
|
|
1241
|
+
MOBILEPAY = 'mobilepay',
|
|
1238
1242
|
}
|
|
1239
1243
|
|
|
1240
1244
|
export enum PayoutAttachmentType {
|
|
@@ -1768,6 +1772,7 @@ export enum TrueupSurchargeType {
|
|
|
1768
1772
|
DIRECT_DELIVERY = 'direct_delivery',
|
|
1769
1773
|
SATURDAY_STOP = 'saturday_stop',
|
|
1770
1774
|
RESIDENTIAL_EXTENDED_AREA_PICKUP = 'residential_extended_area_pickup',
|
|
1775
|
+
PACKAGE_LEVEL_DETAIL = 'package_level_detail',
|
|
1771
1776
|
}
|
|
1772
1777
|
|
|
1773
1778
|
export enum UnitOfLength {
|