@takentrade/takentrade-libs 4.1.17 → 4.1.19

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.
@@ -27,4 +27,5 @@ export declare const FINANCE_JOBS: {
27
27
  PROCESS_BATCH_DEBIT: string;
28
28
  PROCESS_BATCH_CREDIT: string;
29
29
  COLLECT_ARREARS: string;
30
+ PROCESS_BANK_TRANSFER: string;
30
31
  };
@@ -30,4 +30,5 @@ exports.FINANCE_JOBS = {
30
30
  PROCESS_BATCH_DEBIT: 'processBatchDebit',
31
31
  PROCESS_BATCH_CREDIT: 'processBatchCredit',
32
32
  COLLECT_ARREARS: 'collect_arrears',
33
+ PROCESS_BANK_TRANSFER: 'process_bank_transfer',
33
34
  };
@@ -29,6 +29,8 @@ export declare enum NatsSubjects {
29
29
  UPDATE_PROVIDUS_ACCOUNT = "providus.account.update",
30
30
  KYC_VERIFIED = "kyc.verified",
31
31
  KYC_REJECTED = "kyc.rejected",
32
+ GET_USER_KYC_STATUS = "user.get.kyc_status",
33
+ GET_USER_CREDIT_SCORE = "user.get.credit_score",
32
34
  VAS_TRANSACTION_SUCCESS = "vas.transaction.success",
33
35
  VAS_TRANSACTION_FAILED = "vas.transaction.failed",
34
36
  AJO_MEMBER_JOINED = "ajo.member.joined",
@@ -38,6 +38,8 @@ var NatsSubjects;
38
38
  // KYC operations
39
39
  NatsSubjects["KYC_VERIFIED"] = "kyc.verified";
40
40
  NatsSubjects["KYC_REJECTED"] = "kyc.rejected";
41
+ NatsSubjects["GET_USER_KYC_STATUS"] = "user.get.kyc_status";
42
+ NatsSubjects["GET_USER_CREDIT_SCORE"] = "user.get.credit_score";
41
43
  // VAS operations
42
44
  NatsSubjects["VAS_TRANSACTION_SUCCESS"] = "vas.transaction.success";
43
45
  NatsSubjects["VAS_TRANSACTION_FAILED"] = "vas.transaction.failed";