squarefi-bff-api-module 1.34.13 → 1.34.14

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.
@@ -1109,6 +1109,9 @@ export interface components {
1109
1109
  invite_code?: string;
1110
1110
  referrer?: string;
1111
1111
  };
1112
+ UserDataRefEntity: {
1113
+ uuid: string;
1114
+ };
1112
1115
  UserDataEntity: {
1113
1116
  can_invite: boolean;
1114
1117
  created_at: string;
@@ -1119,7 +1122,7 @@ export interface components {
1119
1122
  * @default UNVERIFIED
1120
1123
  * @enum {string|null}
1121
1124
  */
1122
- kyc_status: "APPROVED" | "DECLINED" | "PENDING" | "HOLD" | "DOUBLE" | "SOFT_REJECT" | "REJECT" | "UNVERIFIED" | "WAITING_ON_UBOS" | "WAITING_ON_REVIEW" | null;
1125
+ kyc_status: "APPROVED" | "DECLINED" | "PENDING" | "PROCESSING" | "HOLD" | "DOUBLE" | "SOFT_REJECT" | "REJECT" | "UNVERIFIED" | "WAITING_ON_UBOS" | "WAITING_ON_REVIEW" | null;
1123
1126
  referral_name: string | null;
1124
1127
  tenant_id: string;
1125
1128
  user_id: string;
@@ -1136,6 +1139,8 @@ export interface components {
1136
1139
  readonly uuid: string;
1137
1140
  readonly email: string | null;
1138
1141
  readonly phone: string | null;
1142
+ referred_by?: components["schemas"]["UserDataRefEntity"] | null;
1143
+ invited_by?: components["schemas"]["UserDataRefEntity"] | null;
1139
1144
  };
1140
1145
  VerifyEmailDto: {
1141
1146
  email: string;
@@ -1378,7 +1383,7 @@ export interface components {
1378
1383
  * @default UNVERIFIED
1379
1384
  * @enum {string}
1380
1385
  */
1381
- status: "APPROVED" | "DECLINED" | "PENDING" | "HOLD" | "DOUBLE" | "SOFT_REJECT" | "REJECT" | "UNVERIFIED" | "WAITING_ON_UBOS" | "WAITING_ON_REVIEW";
1386
+ status: "APPROVED" | "DECLINED" | "PENDING" | "PROCESSING" | "HOLD" | "DOUBLE" | "SOFT_REJECT" | "REJECT" | "UNVERIFIED" | "WAITING_ON_UBOS" | "WAITING_ON_REVIEW";
1382
1387
  readonly business_name?: string;
1383
1388
  readonly first_name?: string;
1384
1389
  readonly last_name?: string;
@@ -1760,7 +1765,7 @@ export interface components {
1760
1765
  * @default UNVERIFIED
1761
1766
  * @enum {string}
1762
1767
  */
1763
- status: "APPROVED" | "DECLINED" | "PENDING" | "HOLD" | "DOUBLE" | "SOFT_REJECT" | "REJECT" | "UNVERIFIED" | "WAITING_ON_UBOS" | "WAITING_ON_REVIEW";
1768
+ status: "APPROVED" | "DECLINED" | "PENDING" | "PROCESSING" | "HOLD" | "DOUBLE" | "SOFT_REJECT" | "REJECT" | "UNVERIFIED" | "WAITING_ON_UBOS" | "WAITING_ON_REVIEW";
1764
1769
  /** @enum {string|null} */
1765
1770
  employment_status?: "EMPLOYEE" | "SELF_EMPLOYED" | "RETIRED" | "UNEMPLOYED" | "OTHER" | null;
1766
1771
  employment_description?: string | null;
@@ -1907,7 +1912,7 @@ export interface components {
1907
1912
  WalletKycRailDto: {
1908
1913
  message: string | null;
1909
1914
  /** @enum {string} */
1910
- readonly status: "APPROVED" | "DECLINED" | "PENDING" | "HOLD" | "DOUBLE" | "SOFT_REJECT" | "REJECT" | "UNVERIFIED" | "WAITING_ON_UBOS" | "WAITING_ON_REVIEW";
1915
+ readonly status: "APPROVED" | "DECLINED" | "PENDING" | "PROCESSING" | "HOLD" | "DOUBLE" | "SOFT_REJECT" | "REJECT" | "UNVERIFIED" | "WAITING_ON_UBOS" | "WAITING_ON_REVIEW";
1911
1916
  /** @default false */
1912
1917
  terms_confirmed: boolean;
1913
1918
  extra_actions?: components["schemas"]["WalletKycRailExtraActionDto"][];
@@ -236,6 +236,7 @@ export declare enum KYCStatuses {
236
236
  APPROVED = "APPROVED",
237
237
  DECLINED = "DECLINED",
238
238
  PENDING = "PENDING",
239
+ PROCESSING = "PROCESSING",
239
240
  HOLD = "HOLD",
240
241
  DOUBLE = "DOUBLE",
241
242
  SOFT_REJECT = "SOFT_REJECT",
package/dist/constants.js CHANGED
@@ -252,6 +252,7 @@ export var KYCStatuses;
252
252
  KYCStatuses["APPROVED"] = "APPROVED";
253
253
  KYCStatuses["DECLINED"] = "DECLINED";
254
254
  KYCStatuses["PENDING"] = "PENDING";
255
+ KYCStatuses["PROCESSING"] = "PROCESSING";
255
256
  KYCStatuses["HOLD"] = "HOLD";
256
257
  KYCStatuses["DOUBLE"] = "DOUBLE";
257
258
  KYCStatuses["SOFT_REJECT"] = "SOFT_REJECT";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.34.13",
3
+ "version": "1.34.14",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",