@stashfin/mysql2 1.4.644 → 1.4.645
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.
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export interface EqxBusinessEnginesTable {
|
|
3
|
+
id: number;
|
|
4
|
+
name: string;
|
|
5
|
+
data_query: string | null;
|
|
6
|
+
fallback_data_query: string | null;
|
|
7
|
+
action: string;
|
|
8
|
+
is_active: number;
|
|
9
|
+
engine_id: number;
|
|
10
|
+
created_at: Date;
|
|
11
|
+
updated_at: Date;
|
|
12
|
+
}
|
|
13
|
+
export interface BusinessEnginesModel extends EqxBusinessEnginesTable, RowDataPacket {
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export interface EqxBusinessRulesTable {
|
|
3
|
+
id: number;
|
|
4
|
+
name: string;
|
|
5
|
+
version: number;
|
|
6
|
+
is_active: number;
|
|
7
|
+
created_at: Date;
|
|
8
|
+
updated_at: Date;
|
|
9
|
+
}
|
|
10
|
+
export interface BusinessRulesModel extends EqxBusinessRulesTable, RowDataPacket {
|
|
11
|
+
}
|