@riocrypto/common 1.0.2437 → 1.0.2438
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
|
@@ -446,6 +446,7 @@ export * from "./types/STP-mxn-withdrawal-status";
|
|
|
446
446
|
export * from "./types/bitso-mxn-withdrawal-status";
|
|
447
447
|
export * from "./types/fireblocks-transfer-status";
|
|
448
448
|
export * from "./types/mexico-invoicing-method";
|
|
449
|
+
export * from "./types/auth-kyc-status";
|
|
449
450
|
export * from "./classes/KYCFieldClass";
|
|
450
451
|
export * from "./classes/KYCFileClass";
|
|
451
452
|
export * from "./classes/CountryAsset";
|
package/build/index.js
CHANGED
|
@@ -462,6 +462,7 @@ __exportStar(require("./types/STP-mxn-withdrawal-status"), exports);
|
|
|
462
462
|
__exportStar(require("./types/bitso-mxn-withdrawal-status"), exports);
|
|
463
463
|
__exportStar(require("./types/fireblocks-transfer-status"), exports);
|
|
464
464
|
__exportStar(require("./types/mexico-invoicing-method"), exports);
|
|
465
|
+
__exportStar(require("./types/auth-kyc-status"), exports);
|
|
465
466
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
466
467
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
467
468
|
__exportStar(require("./classes/CountryAsset"), exports);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AuthKYCStatus = void 0;
|
|
4
|
+
var AuthKYCStatus;
|
|
5
|
+
(function (AuthKYCStatus) {
|
|
6
|
+
AuthKYCStatus["Approved"] = "approved";
|
|
7
|
+
AuthKYCStatus["Rejected"] = "rejected";
|
|
8
|
+
AuthKYCStatus["Pending"] = "pending";
|
|
9
|
+
})(AuthKYCStatus = exports.AuthKYCStatus || (exports.AuthKYCStatus = {}));
|
package/build/types/auth.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { APIKey } from "./api-key";
|
|
2
2
|
import { AuthPermission } from "./auth-permission";
|
|
3
3
|
import { AuthRole } from "./auth-role";
|
|
4
|
+
import { AuthKYCStatus } from "./auth-kyc-status";
|
|
4
5
|
import { SecurityQuestion } from "./security-question";
|
|
5
6
|
export interface Auth {
|
|
6
7
|
id: string;
|
|
@@ -31,4 +32,5 @@ export interface Auth {
|
|
|
31
32
|
secondLastName?: string;
|
|
32
33
|
role?: AuthRole;
|
|
33
34
|
permissions?: AuthPermission[];
|
|
35
|
+
KYCStatus?: AuthKYCStatus;
|
|
34
36
|
}
|