@flowio/api-constants 2.13.42 → 2.13.43
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 +1 -1
- package/dist/api.js +1 -1
- package/package.json +2 -2
- package/src/api.ts +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1123,7 +1123,7 @@ export declare enum PendingPayoutTransactionReasonCode {
|
|
|
1123
1123
|
WAITING_FOR_FULFILLMENT = "waiting_for_fulfillment",
|
|
1124
1124
|
WAITING_FOR_IN_TRANSIT = "waiting_for_in_transit",
|
|
1125
1125
|
WAITING_FOR_NEXT_PAYOUT_DATE = "waiting_for_next_payout_date",
|
|
1126
|
-
|
|
1126
|
+
WAITING_FOR_TRACKING_INFO = "waiting_for_tracking_info",
|
|
1127
1127
|
WAITING_FOR_POSITIVE_ACCOUNT_BALANCE = "waiting_for_positive_account_balance"
|
|
1128
1128
|
}
|
|
1129
1129
|
export declare enum PermittedHttpMethod {
|
package/dist/api.js
CHANGED
|
@@ -1272,7 +1272,7 @@ var PendingPayoutTransactionReasonCode;
|
|
|
1272
1272
|
PendingPayoutTransactionReasonCode["WAITING_FOR_FULFILLMENT"] = "waiting_for_fulfillment";
|
|
1273
1273
|
PendingPayoutTransactionReasonCode["WAITING_FOR_IN_TRANSIT"] = "waiting_for_in_transit";
|
|
1274
1274
|
PendingPayoutTransactionReasonCode["WAITING_FOR_NEXT_PAYOUT_DATE"] = "waiting_for_next_payout_date";
|
|
1275
|
-
PendingPayoutTransactionReasonCode["
|
|
1275
|
+
PendingPayoutTransactionReasonCode["WAITING_FOR_TRACKING_INFO"] = "waiting_for_tracking_info";
|
|
1276
1276
|
PendingPayoutTransactionReasonCode["WAITING_FOR_POSITIVE_ACCOUNT_BALANCE"] = "waiting_for_positive_account_balance";
|
|
1277
1277
|
})(PendingPayoutTransactionReasonCode = exports.PendingPayoutTransactionReasonCode || (exports.PendingPayoutTransactionReasonCode = {}));
|
|
1278
1278
|
var 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.43",
|
|
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": "edaa4ef26aa5601691b51a50d20d45ef9071e43e"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -1264,7 +1264,7 @@ export enum PendingPayoutTransactionReasonCode {
|
|
|
1264
1264
|
WAITING_FOR_FULFILLMENT = 'waiting_for_fulfillment',
|
|
1265
1265
|
WAITING_FOR_IN_TRANSIT = 'waiting_for_in_transit',
|
|
1266
1266
|
WAITING_FOR_NEXT_PAYOUT_DATE = 'waiting_for_next_payout_date',
|
|
1267
|
-
|
|
1267
|
+
WAITING_FOR_TRACKING_INFO = 'waiting_for_tracking_info',
|
|
1268
1268
|
WAITING_FOR_POSITIVE_ACCOUNT_BALANCE = 'waiting_for_positive_account_balance',
|
|
1269
1269
|
}
|
|
1270
1270
|
|