@stashfin/mysql2 1.4.25 → 1.4.26
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 +11 -0
- package/package.json +1 -1
package/models/Customer.d.ts
CHANGED
|
@@ -118,10 +118,21 @@ export interface CustomerReferenceTable {
|
|
|
118
118
|
pincode: string;
|
|
119
119
|
created_at?: Date | null;
|
|
120
120
|
}
|
|
121
|
+
export interface CustomerDocumentsTable {
|
|
122
|
+
id?: number;
|
|
123
|
+
customer_id?: number | null;
|
|
124
|
+
pan_url?: string | null;
|
|
125
|
+
aadhaar_url?: string | null;
|
|
126
|
+
address_proof_url?: string | null;
|
|
127
|
+
created_at?: Date | null;
|
|
128
|
+
updated_at?: Date | null;
|
|
129
|
+
}
|
|
121
130
|
export interface CustomerModel extends CustomerTable, RowDataPacket {
|
|
122
131
|
}
|
|
123
132
|
export interface CustomerBanksModel extends CustomerBanksTable, RowDataPacket {
|
|
124
133
|
}
|
|
134
|
+
export interface CustomerDocumentsModel extends CustomerDocumentsTable, RowDataPacket {
|
|
135
|
+
}
|
|
125
136
|
export interface DemographicsModel extends DemographicsTable, RowDataPacket {
|
|
126
137
|
}
|
|
127
138
|
export interface CustomerReferenceModel extends CustomerReferenceTable, RowDataPacket {
|