@takentrade/takentrade-libs 4.0.1 → 4.0.3

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.
@@ -9,6 +9,7 @@ export declare const WEBHOOK_JOBS: {
9
9
  export declare const KYC_JOBS: {
10
10
  VERIFY_BVN: string;
11
11
  VERIFY_NIN: string;
12
+ UPDATE_ID: string;
12
13
  };
13
14
  export declare const STATEMENT_JOBS: {
14
15
  GENERATE_ACCOUNT_STATEMENT: string;
@@ -12,6 +12,7 @@ exports.WEBHOOK_JOBS = {
12
12
  exports.KYC_JOBS = {
13
13
  VERIFY_BVN: 'verify_bvn',
14
14
  VERIFY_NIN: 'verify_nin',
15
+ UPDATE_ID: 'update_id',
15
16
  };
16
17
  exports.STATEMENT_JOBS = {
17
18
  GENERATE_ACCOUNT_STATEMENT: 'generate_account_statement',
@@ -24,6 +24,7 @@ export declare enum NatsSubjects {
24
24
  PROVIDUS_DEBIT_CUSTOMER = "providus.customer.debit",
25
25
  PROVIDUS_CREDIT_CUSTOMER = "providus.customer.credit",
26
26
  CREATE_PROVIDUS_ACCOUNT = "providus.account.create",
27
+ UPDATE_PROVIDUS_ACCOUNT = "providus.account.update",
27
28
  KYC_VERIFIED = "kyc.verified",
28
29
  KYC_REJECTED = "kyc.rejected",
29
30
  VAS_TRANSACTION_SUCCESS = "vas.transaction.success",
@@ -32,6 +32,7 @@ var NatsSubjects;
32
32
  NatsSubjects["PROVIDUS_DEBIT_CUSTOMER"] = "providus.customer.debit";
33
33
  NatsSubjects["PROVIDUS_CREDIT_CUSTOMER"] = "providus.customer.credit";
34
34
  NatsSubjects["CREATE_PROVIDUS_ACCOUNT"] = "providus.account.create";
35
+ NatsSubjects["UPDATE_PROVIDUS_ACCOUNT"] = "providus.account.update";
35
36
  // KYC operations
36
37
  NatsSubjects["KYC_VERIFIED"] = "kyc.verified";
37
38
  NatsSubjects["KYC_REJECTED"] = "kyc.rejected";