@riocrypto/common 1.0.1454 → 1.0.1455

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/build/index.d.ts CHANGED
@@ -234,6 +234,7 @@ export * from "./types/rio-bank-account";
234
234
  export * from "./types/swap-provider";
235
235
  export * from "./types/swap-origin";
236
236
  export * from "./types/address-verification";
237
+ export * from "./types/bank-account-verification";
237
238
  export * from "./classes/Asset";
238
239
  export * from "./classes/KYCFieldClass";
239
240
  export * from "./classes/KYCFileClass";
package/build/index.js CHANGED
@@ -250,6 +250,7 @@ __exportStar(require("./types/rio-bank-account"), exports);
250
250
  __exportStar(require("./types/swap-provider"), exports);
251
251
  __exportStar(require("./types/swap-origin"), exports);
252
252
  __exportStar(require("./types/address-verification"), exports);
253
+ __exportStar(require("./types/bank-account-verification"), exports);
253
254
  __exportStar(require("./classes/Asset"), exports);
254
255
  __exportStar(require("./classes/KYCFieldClass"), exports);
255
256
  __exportStar(require("./classes/KYCFileClass"), exports);
@@ -1,5 +1,6 @@
1
1
  export declare enum BankAccountVerificationStatus {
2
2
  initiated = "initiated",
3
3
  sent = "sent",
4
- passed = "passed"
4
+ passed = "passed",
5
+ cancelled = "cancelled"
5
6
  }
@@ -6,4 +6,5 @@ var BankAccountVerificationStatus;
6
6
  BankAccountVerificationStatus["initiated"] = "initiated";
7
7
  BankAccountVerificationStatus["sent"] = "sent";
8
8
  BankAccountVerificationStatus["passed"] = "passed";
9
+ BankAccountVerificationStatus["cancelled"] = "cancelled";
9
10
  })(BankAccountVerificationStatus = exports.BankAccountVerificationStatus || (exports.BankAccountVerificationStatus = {}));
@@ -0,0 +1,7 @@
1
+ import { BankAccountVerificationStatus } from "./bank-account-verification-status";
2
+ export interface BankAccountVerification {
3
+ id: string;
4
+ bankAccountId: string;
5
+ status: BankAccountVerificationStatus;
6
+ amount: number;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1454",
3
+ "version": "1.0.1455",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",