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