@flowio/api-constants 2.13.58 → 2.13.59
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 +3 -1
- package/dist/api.js +2 -0
- package/package.json +2 -2
- package/src/api.ts +2 -0
package/dist/api.d.ts
CHANGED
|
@@ -1097,7 +1097,9 @@ export declare enum PaymentType {
|
|
|
1097
1097
|
IDEAL = "ideal",
|
|
1098
1098
|
SOFORT = "sofort",
|
|
1099
1099
|
AFTERPAY = "afterpay",
|
|
1100
|
-
BANCONTACT = "bancontact"
|
|
1100
|
+
BANCONTACT = "bancontact",
|
|
1101
|
+
TWINT = "twint",
|
|
1102
|
+
PRZELEWY_24 = "przelewy24"
|
|
1101
1103
|
}
|
|
1102
1104
|
export declare enum PayoutAttachmentType {
|
|
1103
1105
|
TRANSACTIONS = "transactions"
|
package/dist/api.js
CHANGED
|
@@ -1243,6 +1243,8 @@ var PaymentType;
|
|
|
1243
1243
|
PaymentType["SOFORT"] = "sofort";
|
|
1244
1244
|
PaymentType["AFTERPAY"] = "afterpay";
|
|
1245
1245
|
PaymentType["BANCONTACT"] = "bancontact";
|
|
1246
|
+
PaymentType["TWINT"] = "twint";
|
|
1247
|
+
PaymentType["PRZELEWY_24"] = "przelewy24";
|
|
1246
1248
|
})(PaymentType = exports.PaymentType || (exports.PaymentType = {}));
|
|
1247
1249
|
var PayoutAttachmentType;
|
|
1248
1250
|
(function (PayoutAttachmentType) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.59",
|
|
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": "54b0e72a2a2a004dbc68536fa4f47e566426a56a"
|
|
30
30
|
}
|