@flowio/api-constants 2.13.61 → 2.13.62
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
|
@@ -1123,7 +1123,9 @@ export declare enum PendingPayoutTransactionReasonCode {
|
|
|
1123
1123
|
WAITING_FOR_IN_TRANSIT = "waiting_for_in_transit",
|
|
1124
1124
|
WAITING_FOR_NEXT_PAYOUT_DATE = "waiting_for_next_payout_date",
|
|
1125
1125
|
WAITING_FOR_TRACKING_INFO = "waiting_for_tracking_info",
|
|
1126
|
-
WAITING_FOR_POSITIVE_ACCOUNT_BALANCE = "waiting_for_positive_account_balance"
|
|
1126
|
+
WAITING_FOR_POSITIVE_ACCOUNT_BALANCE = "waiting_for_positive_account_balance",
|
|
1127
|
+
UNFULFILLED_AMOUNT_GREATER_THAN_NEGATIVE_BALANCE = "unfulfilled_amount_greater_than_negative_balance",
|
|
1128
|
+
ACCOUNT_PAYMENT_HOLD = "account_payment_hold"
|
|
1127
1129
|
}
|
|
1128
1130
|
export declare enum PermittedHttpMethod {
|
|
1129
1131
|
GET = "GET",
|
package/dist/api.js
CHANGED
|
@@ -1272,6 +1272,8 @@ var PendingPayoutTransactionReasonCode;
|
|
|
1272
1272
|
PendingPayoutTransactionReasonCode["WAITING_FOR_NEXT_PAYOUT_DATE"] = "waiting_for_next_payout_date";
|
|
1273
1273
|
PendingPayoutTransactionReasonCode["WAITING_FOR_TRACKING_INFO"] = "waiting_for_tracking_info";
|
|
1274
1274
|
PendingPayoutTransactionReasonCode["WAITING_FOR_POSITIVE_ACCOUNT_BALANCE"] = "waiting_for_positive_account_balance";
|
|
1275
|
+
PendingPayoutTransactionReasonCode["UNFULFILLED_AMOUNT_GREATER_THAN_NEGATIVE_BALANCE"] = "unfulfilled_amount_greater_than_negative_balance";
|
|
1276
|
+
PendingPayoutTransactionReasonCode["ACCOUNT_PAYMENT_HOLD"] = "account_payment_hold";
|
|
1275
1277
|
})(PendingPayoutTransactionReasonCode = exports.PendingPayoutTransactionReasonCode || (exports.PendingPayoutTransactionReasonCode = {}));
|
|
1276
1278
|
var PermittedHttpMethod;
|
|
1277
1279
|
(function (PermittedHttpMethod) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.62",
|
|
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": "f75564e8d259c34e55cd55031e0f18ad6abc6a96"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -1264,6 +1264,8 @@ export enum PendingPayoutTransactionReasonCode {
|
|
|
1264
1264
|
WAITING_FOR_NEXT_PAYOUT_DATE = 'waiting_for_next_payout_date',
|
|
1265
1265
|
WAITING_FOR_TRACKING_INFO = 'waiting_for_tracking_info',
|
|
1266
1266
|
WAITING_FOR_POSITIVE_ACCOUNT_BALANCE = 'waiting_for_positive_account_balance',
|
|
1267
|
+
UNFULFILLED_AMOUNT_GREATER_THAN_NEGATIVE_BALANCE = 'unfulfilled_amount_greater_than_negative_balance',
|
|
1268
|
+
ACCOUNT_PAYMENT_HOLD = 'account_payment_hold',
|
|
1267
1269
|
}
|
|
1268
1270
|
|
|
1269
1271
|
export enum PermittedHttpMethod {
|