@stashfin/mysql2 1.4.216 → 1.4.217
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/CholaEvents.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import { RowDataPacket } from 'mysql2';
|
|
2
2
|
export interface cholaEventsTable {
|
|
3
3
|
id: string;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
customer_id: number;
|
|
5
|
+
loan_id: number | null;
|
|
6
|
+
colender_id: number;
|
|
7
|
+
event_name?: string | null;
|
|
8
|
+
reference_id?: string | null;
|
|
9
|
+
message?: string | null;
|
|
10
|
+
status?: string | null;
|
|
8
11
|
}
|
|
9
12
|
export interface cholaEventsModel extends cholaEventsTable, RowDataPacket {
|
|
10
13
|
}
|
package/models/Colender.d.ts
CHANGED
package/models/Customer.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export interface CustomerTable {
|
|
|
48
48
|
enach_amount?: number | null;
|
|
49
49
|
max_loc_limit?: number | null;
|
|
50
50
|
sanction_amount?: number | null;
|
|
51
|
+
new_sanctioned_limit?: number | null;
|
|
51
52
|
lead_status?: string | null;
|
|
52
53
|
/** Defaults to: active. */
|
|
53
54
|
status?: 'active' | 'inactive' | null;
|
|
@@ -110,6 +111,7 @@ export interface DemographicsTable {
|
|
|
110
111
|
created_at?: Date | null;
|
|
111
112
|
updated_at?: Date | null;
|
|
112
113
|
nsdl_dob_matched?: number | null;
|
|
114
|
+
lamf_amount?: number | null;
|
|
113
115
|
okyc_dob?: string | null;
|
|
114
116
|
dob_attempts?: number | null;
|
|
115
117
|
cli_enabled?: number | null;
|
package/models/clDocuments.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { RowDataPacket } from 'mysql2';
|
|
2
2
|
export interface clDocumentsTable {
|
|
3
3
|
id?: bigint;
|
|
4
|
-
customer_id:
|
|
5
|
-
loan_id?:
|
|
4
|
+
customer_id: number;
|
|
5
|
+
loan_id?: number | null;
|
|
6
|
+
colender_id: number;
|
|
6
7
|
doc_name: string;
|
|
7
8
|
doc_path?: string;
|
|
8
9
|
doc_password?: string;
|
|
@@ -14,5 +15,5 @@ export interface clDocumentsTable {
|
|
|
14
15
|
created_at?: Date;
|
|
15
16
|
updated_at?: Date;
|
|
16
17
|
}
|
|
17
|
-
export interface
|
|
18
|
+
export interface clDocumentsModel extends clDocumentsTable, RowDataPacket {
|
|
18
19
|
}
|
|
@@ -17,7 +17,7 @@ export interface ClInstallmentsTable {
|
|
|
17
17
|
r_pif_penalty?: number | null;
|
|
18
18
|
status?: 'active' | 'closed' | 'delayed' | 'paid' | 'future' | 'foreclosed' | null;
|
|
19
19
|
dpd?: number | null;
|
|
20
|
-
due_date: Date |
|
|
20
|
+
due_date: Date | string;
|
|
21
21
|
discount?: number | null;
|
|
22
22
|
starting_balance?: number | null;
|
|
23
23
|
ending_balance?: number | null;
|
package/models/clPayments.d.ts
CHANGED