@stashfin/mysql2 1.4.48 → 1.4.50
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 +2 -2
- package/package.json +1 -1
package/models/Customer.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ export interface DemographicsTable {
|
|
|
103
103
|
nsdl_dob?: Date | null;
|
|
104
104
|
state?: string | null;
|
|
105
105
|
avg_salary?: number | null;
|
|
106
|
+
suspended_apps?: number | null;
|
|
106
107
|
}
|
|
107
108
|
export interface CustomerBanksTable {
|
|
108
109
|
id?: number;
|
|
@@ -174,7 +175,7 @@ export interface CustomerContactsTable {
|
|
|
174
175
|
customer_id: number;
|
|
175
176
|
mobile: string;
|
|
176
177
|
}
|
|
177
|
-
interface CustomerRCProfile {
|
|
178
|
+
export interface CustomerRCProfile {
|
|
178
179
|
id?: number;
|
|
179
180
|
customerId: number;
|
|
180
181
|
requestId: string;
|
|
@@ -208,4 +209,3 @@ export interface CustomerContactsModel extends CustomerContactsTable, RowDataPac
|
|
|
208
209
|
}
|
|
209
210
|
export interface CustomerRCProfileModel extends CustomerRCProfile, RowDataPacket {
|
|
210
211
|
}
|
|
211
|
-
export {};
|