@flowio/api-constants 2.13.61 → 2.13.63

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 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",
@@ -1226,6 +1228,7 @@ export declare enum ProductRestrictionRule {
1226
1228
  OVERSIZED = "Oversized",
1227
1229
  RESTRICT_BY_DEFAULT = "Restrict by Default",
1228
1230
  SUPPLEMENTS = "Supplements",
1231
+ TATTOO_INK_AND_PMU = "Tattoo Ink And PMU",
1229
1232
  WEAPON = "Weapon",
1230
1233
  WOOD = "Wood"
1231
1234
  }
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) {
@@ -1385,6 +1387,7 @@ var ProductRestrictionRule;
1385
1387
  ProductRestrictionRule["OVERSIZED"] = "Oversized";
1386
1388
  ProductRestrictionRule["RESTRICT_BY_DEFAULT"] = "Restrict by Default";
1387
1389
  ProductRestrictionRule["SUPPLEMENTS"] = "Supplements";
1390
+ ProductRestrictionRule["TATTOO_INK_AND_PMU"] = "Tattoo Ink And PMU";
1388
1391
  ProductRestrictionRule["WEAPON"] = "Weapon";
1389
1392
  ProductRestrictionRule["WOOD"] = "Wood";
1390
1393
  })(ProductRestrictionRule = exports.ProductRestrictionRule || (exports.ProductRestrictionRule = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.61",
3
+ "version": "2.13.63",
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": "186c2bb75e0d707e7d5df6a6b87e63a9be573e4d"
29
+ "gitHead": "0dd960b5d48f8ac9f314c8593a3597630199ba40"
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 {
@@ -1377,6 +1379,7 @@ export enum ProductRestrictionRule {
1377
1379
  OVERSIZED = 'Oversized',
1378
1380
  RESTRICT_BY_DEFAULT = 'Restrict by Default',
1379
1381
  SUPPLEMENTS = 'Supplements',
1382
+ TATTOO_INK_AND_PMU = 'Tattoo Ink And PMU',
1380
1383
  WEAPON = 'Weapon',
1381
1384
  WOOD = 'Wood',
1382
1385
  }