@stashfin/mysql2 1.4.121 → 1.4.123
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/BBPSBanners.d.ts +12 -0
- package/models/BBPSBanners.js +2 -0
- package/models/Enach.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export interface BBPSBannersTable {
|
|
3
|
+
id: number;
|
|
4
|
+
name: string;
|
|
5
|
+
image: string;
|
|
6
|
+
created_at: Date;
|
|
7
|
+
updated_at: Date;
|
|
8
|
+
is_active: number;
|
|
9
|
+
is_deleted: number;
|
|
10
|
+
}
|
|
11
|
+
export interface BBPSBannersModel extends BBPSBannersTable, RowDataPacket {
|
|
12
|
+
}
|
package/models/Enach.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RowDataPacket } from 'mysql2';
|
|
2
|
-
export interface
|
|
2
|
+
export interface EnachTransactionsTable {
|
|
3
3
|
id?: number;
|
|
4
4
|
created_at?: Date | null;
|
|
5
5
|
customer_id?: number | null;
|
|
@@ -7,5 +7,5 @@ export interface EnachTransactions {
|
|
|
7
7
|
txn_id?: string | null;
|
|
8
8
|
updated_at?: Date | null;
|
|
9
9
|
}
|
|
10
|
-
export interface EnachTransactionsModel extends
|
|
10
|
+
export interface EnachTransactionsModel extends EnachTransactionsTable, RowDataPacket {
|
|
11
11
|
}
|