@stashfin/mysql2 1.4.165 → 1.4.166

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.
@@ -259,6 +259,26 @@ export interface ThirdPartyLogTable {
259
259
  provider: string;
260
260
  logs: string;
261
261
  }
262
+ export interface CustomerAppTable {
263
+ id: number;
264
+ customer_id: number;
265
+ device_id: string;
266
+ name: string;
267
+ app_code: string;
268
+ created_at?: Date;
269
+ updated_at?: Date;
270
+ }
271
+ export interface CommentsTable {
272
+ id: number;
273
+ customer_id: number;
274
+ loan_id?: number | null;
275
+ comment: string;
276
+ created_at?: Date;
277
+ }
278
+ export interface CommentsModel extends CommentsTable, RowDataPacket {
279
+ }
280
+ export interface CustomerAppModel extends CustomerAppTable, RowDataPacket {
281
+ }
262
282
  export interface CustomerModel extends CustomerTable, RowDataPacket {
263
283
  }
264
284
  export interface CustomerBanksModel extends CustomerBanksTable, RowDataPacket {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.165",
3
+ "version": "1.4.166",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",