@devtable/dashboard 4.16.6 → 4.16.8
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.
|
@@ -33,6 +33,13 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
33
33
|
};
|
|
34
34
|
} & {
|
|
35
35
|
readonly formattedSQL: any;
|
|
36
|
+
} & {
|
|
37
|
+
readonly json: {
|
|
38
|
+
id: string;
|
|
39
|
+
type: import("./types").DataSourceType;
|
|
40
|
+
key: string;
|
|
41
|
+
sql: string;
|
|
42
|
+
};
|
|
36
43
|
} & {
|
|
37
44
|
setID(id: string): void;
|
|
38
45
|
setKey(key: string): void;
|
|
@@ -63,6 +70,13 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
63
70
|
};
|
|
64
71
|
} & {
|
|
65
72
|
readonly formattedSQL: any;
|
|
73
|
+
} & {
|
|
74
|
+
readonly json: {
|
|
75
|
+
id: string;
|
|
76
|
+
type: import("./types").DataSourceType;
|
|
77
|
+
key: string;
|
|
78
|
+
sql: string;
|
|
79
|
+
};
|
|
66
80
|
} & {
|
|
67
81
|
setID(id: string): void;
|
|
68
82
|
setKey(key: string): void;
|
|
@@ -90,6 +104,13 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
90
104
|
};
|
|
91
105
|
} & {
|
|
92
106
|
readonly formattedSQL: any;
|
|
107
|
+
} & {
|
|
108
|
+
readonly json: {
|
|
109
|
+
id: string;
|
|
110
|
+
type: import("./types").DataSourceType;
|
|
111
|
+
key: string;
|
|
112
|
+
sql: string;
|
|
113
|
+
};
|
|
93
114
|
} & {
|
|
94
115
|
setID(id: string): void;
|
|
95
116
|
setKey(key: string): void;
|
|
@@ -103,6 +124,13 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
103
124
|
value: string;
|
|
104
125
|
label: string;
|
|
105
126
|
}[];
|
|
127
|
+
} & {
|
|
128
|
+
readonly json: {
|
|
129
|
+
id: string;
|
|
130
|
+
type: import("./types").DataSourceType;
|
|
131
|
+
key: string;
|
|
132
|
+
sql: string;
|
|
133
|
+
}[];
|
|
106
134
|
} & {
|
|
107
135
|
reset(): void;
|
|
108
136
|
replace(current: Array<QueryModelInstance>): void;
|
|
@@ -19,6 +19,13 @@ export declare const QueryModel: import("mobx-state-tree").IModelType<{
|
|
|
19
19
|
};
|
|
20
20
|
} & {
|
|
21
21
|
readonly formattedSQL: any;
|
|
22
|
+
} & {
|
|
23
|
+
readonly json: {
|
|
24
|
+
id: string;
|
|
25
|
+
type: DataSourceType;
|
|
26
|
+
key: string;
|
|
27
|
+
sql: string;
|
|
28
|
+
};
|
|
22
29
|
} & {
|
|
23
30
|
setID(id: string): void;
|
|
24
31
|
setKey(key: string): void;
|
|
@@ -4,6 +4,11 @@ export declare const SQLSnippetsModel: import("mobx-state-tree").IModelType<{
|
|
|
4
4
|
key: import("mobx-state-tree").ISimpleType<string>;
|
|
5
5
|
value: import("mobx-state-tree").ISimpleType<string>;
|
|
6
6
|
}, {
|
|
7
|
+
readonly json: {
|
|
8
|
+
key: string;
|
|
9
|
+
value: string;
|
|
10
|
+
};
|
|
11
|
+
} & {
|
|
7
12
|
setKey(key: string): void;
|
|
8
13
|
setValue(value: string): void;
|
|
9
14
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
@@ -11,11 +16,20 @@ export declare const SQLSnippetsModel: import("mobx-state-tree").IModelType<{
|
|
|
11
16
|
key: import("mobx-state-tree").ISimpleType<string>;
|
|
12
17
|
value: import("mobx-state-tree").ISimpleType<string>;
|
|
13
18
|
}, {
|
|
19
|
+
readonly json: {
|
|
20
|
+
key: string;
|
|
21
|
+
value: string;
|
|
22
|
+
};
|
|
23
|
+
} & {
|
|
14
24
|
setKey(key: string): void;
|
|
15
25
|
setValue(value: string): void;
|
|
16
26
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
17
27
|
}, {
|
|
18
28
|
readonly changed: boolean;
|
|
29
|
+
readonly json: {
|
|
30
|
+
key: string;
|
|
31
|
+
value: string;
|
|
32
|
+
}[];
|
|
19
33
|
} & {
|
|
20
34
|
reset(): void;
|
|
21
35
|
replace(current: Array<SQLSnippetModelInstance>): void;
|
|
@@ -3,6 +3,11 @@ export declare const SQLSnippetModel: import("mobx-state-tree").IModelType<{
|
|
|
3
3
|
key: import("mobx-state-tree").ISimpleType<string>;
|
|
4
4
|
value: import("mobx-state-tree").ISimpleType<string>;
|
|
5
5
|
}, {
|
|
6
|
+
readonly json: {
|
|
7
|
+
key: string;
|
|
8
|
+
value: string;
|
|
9
|
+
};
|
|
10
|
+
} & {
|
|
6
11
|
setKey(key: string): void;
|
|
7
12
|
setValue(value: string): void;
|
|
8
13
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|