@flowio/api-constants 2.13.37 → 2.13.38

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
@@ -1104,6 +1104,7 @@ export declare enum PayoutAttachmentType {
1104
1104
  }
1105
1105
  export declare enum PayoutStatusFailureCode {
1106
1106
  INVALID_ACCOUNT_NUMBER = "invalid_account_number",
1107
+ ACCOUNT_CLOSED = "account_closed",
1107
1108
  COULD_NOT_PROCESS = "could_not_process"
1108
1109
  }
1109
1110
  export declare enum PermittedHttpMethod {
package/dist/api.js CHANGED
@@ -1251,6 +1251,7 @@ var PayoutAttachmentType;
1251
1251
  var PayoutStatusFailureCode;
1252
1252
  (function (PayoutStatusFailureCode) {
1253
1253
  PayoutStatusFailureCode["INVALID_ACCOUNT_NUMBER"] = "invalid_account_number";
1254
+ PayoutStatusFailureCode["ACCOUNT_CLOSED"] = "account_closed";
1254
1255
  PayoutStatusFailureCode["COULD_NOT_PROCESS"] = "could_not_process";
1255
1256
  })(PayoutStatusFailureCode = exports.PayoutStatusFailureCode || (exports.PayoutStatusFailureCode = {}));
1256
1257
  var PermittedHttpMethod;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.37",
3
+ "version": "2.13.38",
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": "bc548be3553cff4232e1a8c5d37e7a2baeab2c73"
29
+ "gitHead": "da7211cba1d8423ba244292d986d596a1a431354"
30
30
  }
package/src/api.ts CHANGED
@@ -1243,6 +1243,7 @@ export enum PayoutAttachmentType {
1243
1243
 
1244
1244
  export enum PayoutStatusFailureCode {
1245
1245
  INVALID_ACCOUNT_NUMBER = 'invalid_account_number',
1246
+ ACCOUNT_CLOSED = 'account_closed',
1246
1247
  COULD_NOT_PROCESS = 'could_not_process',
1247
1248
  }
1248
1249