@riocrypto/common 1.0.1415 → 1.0.1417
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/events/address-verification-initiated-event.d.ts +7 -0
- package/build/events/address-verification-initiated-event.js +2 -0
- package/build/events/subjects.d.ts +1 -0
- package/build/events/subjects.js +1 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +2 -0
- package/build/types/address-verification-status.d.ts +4 -0
- package/build/types/address-verification-status.js +8 -0
- package/package.json +1 -1
package/build/events/subjects.js
CHANGED
|
@@ -4,6 +4,7 @@ exports.Subjects = void 0;
|
|
|
4
4
|
var Subjects;
|
|
5
5
|
(function (Subjects) {
|
|
6
6
|
Subjects["AuthDeleted"] = "auth:deleted";
|
|
7
|
+
Subjects["AddressVerificationInitiated"] = "addressVerification:initiated";
|
|
7
8
|
Subjects["AddressCheckPassed"] = "addressCheck:passed";
|
|
8
9
|
Subjects["AddressCheckFailed"] = "addressCheck:Failed";
|
|
9
10
|
Subjects["CircleAddressReady"] = "circleAddress:ready";
|
package/build/index.d.ts
CHANGED
|
@@ -128,6 +128,7 @@ export * from "./events/ubo-onboarding-approved-event";
|
|
|
128
128
|
export * from "./events/ubo-onboarding-failed-event";
|
|
129
129
|
export * from "./events/ubo-updated-event";
|
|
130
130
|
export * from "./events/auth-deleted-event";
|
|
131
|
+
export * from "./events/address-verification-initiated-event";
|
|
131
132
|
export * from "./types/auth-payload";
|
|
132
133
|
export * from "./types/admin-auth-payload";
|
|
133
134
|
export * from "./types/admin-auth";
|
|
@@ -223,6 +224,7 @@ export * from "./types/KYC";
|
|
|
223
224
|
export * from "./types/bid";
|
|
224
225
|
export * from "./types/bid-status";
|
|
225
226
|
export * from "./types/auth-role";
|
|
227
|
+
export * from "./types/address-verification-status";
|
|
226
228
|
export * from "./classes/Asset";
|
|
227
229
|
export * from "./classes/KYCFieldClass";
|
|
228
230
|
export * from "./classes/KYCFileClass";
|
package/build/index.js
CHANGED
|
@@ -144,6 +144,7 @@ __exportStar(require("./events/ubo-onboarding-approved-event"), exports);
|
|
|
144
144
|
__exportStar(require("./events/ubo-onboarding-failed-event"), exports);
|
|
145
145
|
__exportStar(require("./events/ubo-updated-event"), exports);
|
|
146
146
|
__exportStar(require("./events/auth-deleted-event"), exports);
|
|
147
|
+
__exportStar(require("./events/address-verification-initiated-event"), exports);
|
|
147
148
|
__exportStar(require("./types/auth-payload"), exports);
|
|
148
149
|
__exportStar(require("./types/admin-auth-payload"), exports);
|
|
149
150
|
__exportStar(require("./types/admin-auth"), exports);
|
|
@@ -239,6 +240,7 @@ __exportStar(require("./types/KYC"), exports);
|
|
|
239
240
|
__exportStar(require("./types/bid"), exports);
|
|
240
241
|
__exportStar(require("./types/bid-status"), exports);
|
|
241
242
|
__exportStar(require("./types/auth-role"), exports);
|
|
243
|
+
__exportStar(require("./types/address-verification-status"), exports);
|
|
242
244
|
__exportStar(require("./classes/Asset"), exports);
|
|
243
245
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
244
246
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AddressVerificationStatus = void 0;
|
|
4
|
+
var AddressVerificationStatus;
|
|
5
|
+
(function (AddressVerificationStatus) {
|
|
6
|
+
AddressVerificationStatus["initiated"] = "initiated";
|
|
7
|
+
AddressVerificationStatus["passed"] = "passed";
|
|
8
|
+
})(AddressVerificationStatus = exports.AddressVerificationStatus || (exports.AddressVerificationStatus = {}));
|