@stashfin/mysql2 1.4.55 → 1.4.56
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 +17 -0
- package/package.json +1 -1
package/models/Customer.d.ts
CHANGED
|
@@ -194,6 +194,21 @@ export interface SuspendedAppsTable {
|
|
|
194
194
|
app_id: string;
|
|
195
195
|
app_name: string;
|
|
196
196
|
}
|
|
197
|
+
export interface AaTransactionsTable {
|
|
198
|
+
id?: number;
|
|
199
|
+
vua_id?: string | null;
|
|
200
|
+
customer_id?: number | null;
|
|
201
|
+
loan_id?: number | null;
|
|
202
|
+
processed_by?: number | null;
|
|
203
|
+
reference_id?: string | null;
|
|
204
|
+
sub_status?: string | null;
|
|
205
|
+
template?: string | null;
|
|
206
|
+
tracking_id?: string | null;
|
|
207
|
+
trans_status?: string | null;
|
|
208
|
+
/** Defaults to: CURRENT_TIMESTAMP. */
|
|
209
|
+
updated_at?: Date | null;
|
|
210
|
+
created_at?: Date | null;
|
|
211
|
+
}
|
|
197
212
|
export interface CustomerModel extends CustomerTable, RowDataPacket {
|
|
198
213
|
}
|
|
199
214
|
export interface CustomerBanksModel extends CustomerBanksTable, RowDataPacket {
|
|
@@ -216,3 +231,5 @@ export interface CustomerRCProfileModel extends CustomerRCProfile, RowDataPacket
|
|
|
216
231
|
}
|
|
217
232
|
export interface SuspendedAppsModel extends SuspendedAppsTable, RowDataPacket {
|
|
218
233
|
}
|
|
234
|
+
export interface AaTransactionsModel extends AaTransactionsTable, RowDataPacket {
|
|
235
|
+
}
|