@flowio/api-constants 2.13.39 → 2.13.40
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
|
@@ -1068,7 +1068,8 @@ export declare enum PaymentRequestReviewCheckType {
|
|
|
1068
1068
|
ORDER_RESTRICTED_GOODS = "order_restricted_goods",
|
|
1069
1069
|
ORDER_UNSUPPORTED_DESTINATION = "order_unsupported_destination",
|
|
1070
1070
|
ORDER_MISSING_INFORMATION = "order_missing_information",
|
|
1071
|
-
ORDER_DOMESTIC = "order_domestic"
|
|
1071
|
+
ORDER_DOMESTIC = "order_domestic",
|
|
1072
|
+
ORDER_MISMATCHED_CURRENCIES = "order_mismatched_currencies"
|
|
1072
1073
|
}
|
|
1073
1074
|
export declare enum PaymentRequestReviewStatus {
|
|
1074
1075
|
PENDING = "pending",
|
package/dist/api.js
CHANGED
|
@@ -1211,6 +1211,7 @@ var PaymentRequestReviewCheckType;
|
|
|
1211
1211
|
PaymentRequestReviewCheckType["ORDER_UNSUPPORTED_DESTINATION"] = "order_unsupported_destination";
|
|
1212
1212
|
PaymentRequestReviewCheckType["ORDER_MISSING_INFORMATION"] = "order_missing_information";
|
|
1213
1213
|
PaymentRequestReviewCheckType["ORDER_DOMESTIC"] = "order_domestic";
|
|
1214
|
+
PaymentRequestReviewCheckType["ORDER_MISMATCHED_CURRENCIES"] = "order_mismatched_currencies";
|
|
1214
1215
|
})(PaymentRequestReviewCheckType = exports.PaymentRequestReviewCheckType || (exports.PaymentRequestReviewCheckType = {}));
|
|
1215
1216
|
var PaymentRequestReviewStatus;
|
|
1216
1217
|
(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.40",
|
|
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": "8fbab724c6c2213e0635284f23a62cd0996693eb"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -1203,6 +1203,7 @@ export enum PaymentRequestReviewCheckType {
|
|
|
1203
1203
|
ORDER_UNSUPPORTED_DESTINATION = 'order_unsupported_destination',
|
|
1204
1204
|
ORDER_MISSING_INFORMATION = 'order_missing_information',
|
|
1205
1205
|
ORDER_DOMESTIC = 'order_domestic',
|
|
1206
|
+
ORDER_MISMATCHED_CURRENCIES = 'order_mismatched_currencies',
|
|
1206
1207
|
}
|
|
1207
1208
|
|
|
1208
1209
|
export enum PaymentRequestReviewStatus {
|