@riocrypto/common 1.0.2570 → 1.0.2574

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,8 @@
1
+ import { Subjects } from "./subjects";
2
+ export interface BankAccountVerificationActualAccountHolderNameObtainedEvent {
3
+ subject: Subjects.BankAccountVerificationActualAccountHolderNameObtained;
4
+ data: {
5
+ id: string;
6
+ actualAccountHolderName: string;
7
+ };
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,7 +3,6 @@ export interface BankAccountVerificationSentEvent {
3
3
  subject: Subjects.BankAccountVerificationSent;
4
4
  data: {
5
5
  id: string;
6
- actualAccountHolderName: string;
7
- SPEITrackingNumber?: string;
6
+ SPEITrackingNumber: string;
8
7
  };
9
8
  }
@@ -30,6 +30,7 @@ export declare enum Subjects {
30
30
  BankAccountNeedsReview = "bankAccount:needsReview",
31
31
  BankAccountVerificationInitiated = "bankAccountVerification:initiated",
32
32
  BankAccountVerificationSent = "bankAccountVerification:sent",
33
+ BankAccountVerificationActualAccountHolderNameObtained = "bankAccountVerification:actualAccountHolderNameObtained",
33
34
  BankAccountVerificationDispatched = "bankAccountVerification:dispatched",
34
35
  BankAccountAccountHolderNameValidated = "bankAccount:accountHolderNameValidated",
35
36
  BankAccountCheckPassed = "bankAccountCheck:passed",
@@ -34,6 +34,7 @@ var Subjects;
34
34
  Subjects["BankAccountNeedsReview"] = "bankAccount:needsReview";
35
35
  Subjects["BankAccountVerificationInitiated"] = "bankAccountVerification:initiated";
36
36
  Subjects["BankAccountVerificationSent"] = "bankAccountVerification:sent";
37
+ Subjects["BankAccountVerificationActualAccountHolderNameObtained"] = "bankAccountVerification:actualAccountHolderNameObtained";
37
38
  Subjects["BankAccountVerificationDispatched"] = "bankAccountVerification:dispatched";
38
39
  Subjects["BankAccountAccountHolderNameValidated"] = "bankAccount:accountHolderNameValidated";
39
40
  Subjects["BankAccountCheckPassed"] = "bankAccountCheck:passed";
package/build/index.d.ts CHANGED
@@ -256,6 +256,7 @@ export * from "./events/bank-account-verification-dispatched-event";
256
256
  export * from "./events/external-trade-updated-event";
257
257
  export * from "./events/stonex-trade-updated-event";
258
258
  export * from "./events/binance-rfq-order-settlement-completed-event";
259
+ export * from "./events/bank-account-verification-actual-account-holder-name-obtained-event";
259
260
  export * from "./types/auth-payload";
260
261
  export * from "./types/admin-auth-payload";
261
262
  export * from "./types/admin-auth";
package/build/index.js CHANGED
@@ -272,6 +272,7 @@ __exportStar(require("./events/bank-account-verification-dispatched-event"), exp
272
272
  __exportStar(require("./events/external-trade-updated-event"), exports);
273
273
  __exportStar(require("./events/stonex-trade-updated-event"), exports);
274
274
  __exportStar(require("./events/binance-rfq-order-settlement-completed-event"), exports);
275
+ __exportStar(require("./events/bank-account-verification-actual-account-holder-name-obtained-event"), exports);
275
276
  __exportStar(require("./types/auth-payload"), exports);
276
277
  __exportStar(require("./types/admin-auth-payload"), exports);
277
278
  __exportStar(require("./types/admin-auth"), exports);
@@ -7,4 +7,5 @@ export interface AddressVerification {
7
7
  status: AddressVerificationStatus;
8
8
  amount: number;
9
9
  blockchainTxId?: string;
10
+ sentAt?: Date;
10
11
  }
@@ -11,4 +11,5 @@ export interface BankAccountVerification {
11
11
  providerWithdrawalId?: string;
12
12
  SPEITrackingNumber?: string;
13
13
  CEPLink?: string;
14
+ sentAt?: Date;
14
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2570",
3
+ "version": "1.0.2574",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",