@riocrypto/common 1.0.1422 → 1.0.1423

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.
@@ -0,0 +1,7 @@
1
+ import { Subjects } from "./subjects";
2
+ export interface BankAccountVerificationInitiatedEvent {
3
+ subject: Subjects.BankAccountVerificationInitiated;
4
+ data: {
5
+ id: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { Subjects } from "./subjects";
2
+ export interface BankAccountVerificationSentEvent {
3
+ subject: Subjects.BankAccountVerificationSent;
4
+ data: {
5
+ id: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,6 +4,9 @@ export declare enum Subjects {
4
4
  AddressVerificationSent = "addressVerification:sent",
5
5
  AddressCheckPassed = "addressCheck:passed",
6
6
  AddressCheckFailed = "addressCheck:Failed",
7
+ BankAccountVerificationInitiated = "bankAccountVerification:initiated",
8
+ BankAccountVerificationSent = "bankAccountVerification:sent",
9
+ BankAccountCheckPassed = "bankAccountCheck:passed",
7
10
  CircleAddressReady = "circleAddress:ready",
8
11
  CircleAddressFailed = "circleAddress:failed",
9
12
  UBOCreated = "ubo:created",
@@ -8,6 +8,9 @@ var Subjects;
8
8
  Subjects["AddressVerificationSent"] = "addressVerification:sent";
9
9
  Subjects["AddressCheckPassed"] = "addressCheck:passed";
10
10
  Subjects["AddressCheckFailed"] = "addressCheck:Failed";
11
+ Subjects["BankAccountVerificationInitiated"] = "bankAccountVerification:initiated";
12
+ Subjects["BankAccountVerificationSent"] = "bankAccountVerification:sent";
13
+ Subjects["BankAccountCheckPassed"] = "bankAccountCheck:passed";
11
14
  Subjects["CircleAddressReady"] = "circleAddress:ready";
12
15
  Subjects["CircleAddressFailed"] = "circleAddress:failed";
13
16
  Subjects["UBOCreated"] = "ubo:created";
package/build/index.d.ts CHANGED
@@ -130,6 +130,8 @@ export * from "./events/ubo-updated-event";
130
130
  export * from "./events/auth-deleted-event";
131
131
  export * from "./events/address-verification-initiated-event";
132
132
  export * from "./events/address-verification-sent-event";
133
+ export * from "./events/bank-account-verification-initiated-event";
134
+ export * from "./events/bank-account-verification-sent-event";
133
135
  export * from "./types/auth-payload";
134
136
  export * from "./types/admin-auth-payload";
135
137
  export * from "./types/admin-auth";
package/build/index.js CHANGED
@@ -146,6 +146,8 @@ __exportStar(require("./events/ubo-updated-event"), exports);
146
146
  __exportStar(require("./events/auth-deleted-event"), exports);
147
147
  __exportStar(require("./events/address-verification-initiated-event"), exports);
148
148
  __exportStar(require("./events/address-verification-sent-event"), exports);
149
+ __exportStar(require("./events/bank-account-verification-initiated-event"), exports);
150
+ __exportStar(require("./events/bank-account-verification-sent-event"), exports);
149
151
  __exportStar(require("./types/auth-payload"), exports);
150
152
  __exportStar(require("./types/admin-auth-payload"), exports);
151
153
  __exportStar(require("./types/admin-auth"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1422",
3
+ "version": "1.0.1423",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",