@stashfin/mysql2 1.4.130 → 1.4.132
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.
- package/models/Customer.d.ts +9 -0
- package/package.json +1 -1
package/models/Customer.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ export interface CustomerTable {
|
|
|
42
42
|
journey_status?: string | null;
|
|
43
43
|
category?: Category | null;
|
|
44
44
|
loc_limit?: number | null;
|
|
45
|
+
max_loc_limit?: number | null;
|
|
46
|
+
lead_status?: string | null;
|
|
45
47
|
/** Defaults to: active. */
|
|
46
48
|
status?: 'active' | 'inactive' | null;
|
|
47
49
|
loc_disabled?: boolean;
|
|
@@ -69,6 +71,7 @@ export interface CustomerTable {
|
|
|
69
71
|
/** Defaults to: 0. */
|
|
70
72
|
is_deleted?: number | null;
|
|
71
73
|
journey_updated_at?: Date | null;
|
|
74
|
+
emi_date?: number | null;
|
|
72
75
|
}
|
|
73
76
|
export interface DemographicsTable {
|
|
74
77
|
id?: number;
|
|
@@ -86,6 +89,7 @@ export interface DemographicsTable {
|
|
|
86
89
|
office_addr?: JSONValue | null;
|
|
87
90
|
organization?: string | null;
|
|
88
91
|
pan_url?: string | null;
|
|
92
|
+
pan_name?: string | null;
|
|
89
93
|
perm_addr?: JSONValue | null;
|
|
90
94
|
res_addr?: JSONValue | null;
|
|
91
95
|
salary?: number | null;
|
|
@@ -113,6 +117,8 @@ export interface DemographicsTable {
|
|
|
113
117
|
selfie_match?: number | null;
|
|
114
118
|
selfie_match_score?: number | null;
|
|
115
119
|
limit_option?: string | null;
|
|
120
|
+
name_matched?: boolean | null;
|
|
121
|
+
additional_phones?: JSONValue | null;
|
|
116
122
|
}
|
|
117
123
|
export interface CustomerBanksTable {
|
|
118
124
|
id?: number;
|
|
@@ -121,6 +127,8 @@ export interface CustomerBanksTable {
|
|
|
121
127
|
address?: string | null;
|
|
122
128
|
bank_name?: string | null;
|
|
123
129
|
ifsc_code?: string | null;
|
|
130
|
+
holder_name?: string | null;
|
|
131
|
+
source?: string | null;
|
|
124
132
|
/** Defaults to: active. */
|
|
125
133
|
status?: 'active' | 'inactive';
|
|
126
134
|
is_primary?: boolean;
|
|
@@ -218,6 +226,7 @@ export interface AaTransactionsTable {
|
|
|
218
226
|
reference?: string | null;
|
|
219
227
|
sub_category?: string | null;
|
|
220
228
|
txn_date?: string | null;
|
|
229
|
+
details_id?: number | null;
|
|
221
230
|
txn_id?: string | null;
|
|
222
231
|
type?: string | null;
|
|
223
232
|
created_at?: Date | null;
|