@riocrypto/common 1.0.1453 → 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 +2 -0
- package/build/index.js +2 -0
- package/build/types/address-verification-status.d.ts +2 -1
- package/build/types/address-verification-status.js +1 -0
- package/build/types/address-verification.d.ts +7 -0
- package/build/types/address-verification.js +2 -0
- package/build/types/bank-account-verification-status.d.ts +2 -1
- package/build/types/bank-account-verification-status.js +1 -0
- package/build/types/bank-account-verification.d.ts +7 -0
- package/build/types/bank-account-verification.js +2 -0
- package/build/types/crypto-address.d.ts +0 -5
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -233,6 +233,8 @@ export * from "./types/bank-account-verification-status";
|
|
|
233
233
|
export * from "./types/rio-bank-account";
|
|
234
234
|
export * from "./types/swap-provider";
|
|
235
235
|
export * from "./types/swap-origin";
|
|
236
|
+
export * from "./types/address-verification";
|
|
237
|
+
export * from "./types/bank-account-verification";
|
|
236
238
|
export * from "./classes/Asset";
|
|
237
239
|
export * from "./classes/KYCFieldClass";
|
|
238
240
|
export * from "./classes/KYCFileClass";
|
package/build/index.js
CHANGED
|
@@ -249,6 +249,8 @@ __exportStar(require("./types/bank-account-verification-status"), exports);
|
|
|
249
249
|
__exportStar(require("./types/rio-bank-account"), exports);
|
|
250
250
|
__exportStar(require("./types/swap-provider"), exports);
|
|
251
251
|
__exportStar(require("./types/swap-origin"), exports);
|
|
252
|
+
__exportStar(require("./types/address-verification"), exports);
|
|
253
|
+
__exportStar(require("./types/bank-account-verification"), exports);
|
|
252
254
|
__exportStar(require("./classes/Asset"), exports);
|
|
253
255
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
254
256
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
@@ -6,4 +6,5 @@ var AddressVerificationStatus;
|
|
|
6
6
|
AddressVerificationStatus["initiated"] = "initiated";
|
|
7
7
|
AddressVerificationStatus["sent"] = "sent";
|
|
8
8
|
AddressVerificationStatus["passed"] = "passed";
|
|
9
|
+
AddressVerificationStatus["cancelled"] = "cancelled";
|
|
9
10
|
})(AddressVerificationStatus = exports.AddressVerificationStatus || (exports.AddressVerificationStatus = {}));
|
|
@@ -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 = {}));
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AddressVerificationStatus } from "./address-verification-status";
|
|
2
1
|
import { Crypto } from "./crypto";
|
|
3
2
|
export interface CryptoAddress {
|
|
4
3
|
id: string;
|
|
@@ -9,8 +8,4 @@ export interface CryptoAddress {
|
|
|
9
8
|
userApproved: boolean;
|
|
10
9
|
lastChecked: Date;
|
|
11
10
|
label?: string;
|
|
12
|
-
verification?: {
|
|
13
|
-
status?: AddressVerificationStatus;
|
|
14
|
-
amount?: number;
|
|
15
|
-
};
|
|
16
11
|
}
|