@flowio/api-constants 2.13.56 → 2.13.57
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 +2 -1
- package/dist/api.js +1 -0
- package/package.json +2 -2
- package/src/api.ts +1 -0
package/dist/api.d.ts
CHANGED
|
@@ -1061,7 +1061,8 @@ export declare enum PaymentRequestReviewCheckType {
|
|
|
1061
1061
|
ORDER_UNSUPPORTED_DESTINATION = "order_unsupported_destination",
|
|
1062
1062
|
ORDER_MISSING_INFORMATION = "order_missing_information",
|
|
1063
1063
|
ORDER_DOMESTIC = "order_domestic",
|
|
1064
|
-
ORDER_MISMATCHED_CURRENCIES = "order_mismatched_currencies"
|
|
1064
|
+
ORDER_MISMATCHED_CURRENCIES = "order_mismatched_currencies",
|
|
1065
|
+
ORDER_MISSING = "order_missing"
|
|
1065
1066
|
}
|
|
1066
1067
|
export declare enum PaymentRequestReviewStatus {
|
|
1067
1068
|
PENDING = "pending",
|
package/dist/api.js
CHANGED
|
@@ -1203,6 +1203,7 @@ var PaymentRequestReviewCheckType;
|
|
|
1203
1203
|
PaymentRequestReviewCheckType["ORDER_MISSING_INFORMATION"] = "order_missing_information";
|
|
1204
1204
|
PaymentRequestReviewCheckType["ORDER_DOMESTIC"] = "order_domestic";
|
|
1205
1205
|
PaymentRequestReviewCheckType["ORDER_MISMATCHED_CURRENCIES"] = "order_mismatched_currencies";
|
|
1206
|
+
PaymentRequestReviewCheckType["ORDER_MISSING"] = "order_missing";
|
|
1206
1207
|
})(PaymentRequestReviewCheckType = exports.PaymentRequestReviewCheckType || (exports.PaymentRequestReviewCheckType = {}));
|
|
1207
1208
|
var PaymentRequestReviewStatus;
|
|
1208
1209
|
(function (PaymentRequestReviewStatus) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.57",
|
|
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": "25d6ba675365a3fb318abcc4bc935dd549089238"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -1195,6 +1195,7 @@ export enum PaymentRequestReviewCheckType {
|
|
|
1195
1195
|
ORDER_MISSING_INFORMATION = 'order_missing_information',
|
|
1196
1196
|
ORDER_DOMESTIC = 'order_domestic',
|
|
1197
1197
|
ORDER_MISMATCHED_CURRENCIES = 'order_mismatched_currencies',
|
|
1198
|
+
ORDER_MISSING = 'order_missing',
|
|
1198
1199
|
}
|
|
1199
1200
|
|
|
1200
1201
|
export enum PaymentRequestReviewStatus {
|