@databrainhq/plugin 0.7.18 → 0.7.20
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/dist/index.es.js +229 -58
- package/dist/index.umd.js +54 -54
- package/dist/style.css +1 -1
- package/dist/types/app.d.ts +10 -2
- package/package.json +1 -1
package/dist/types/app.d.ts
CHANGED
|
@@ -120,14 +120,22 @@ export declare type SqlError = {
|
|
|
120
120
|
explanation: string;
|
|
121
121
|
solution: string;
|
|
122
122
|
};
|
|
123
|
+
export declare type DateOptionType = {
|
|
124
|
+
id: string;
|
|
125
|
+
range: string;
|
|
126
|
+
time: string;
|
|
127
|
+
format: string;
|
|
128
|
+
name: string;
|
|
129
|
+
count: number;
|
|
130
|
+
};
|
|
123
131
|
export declare type RlsCondition = {
|
|
124
132
|
name: string;
|
|
125
133
|
columnName: string;
|
|
126
134
|
tableName: string;
|
|
127
135
|
datatype: string;
|
|
128
136
|
isAddOnMetrics: boolean;
|
|
129
|
-
options: string[] | number[];
|
|
130
|
-
value?: string;
|
|
137
|
+
options: string[] | number[] | DateOptionType[];
|
|
138
|
+
value?: string | DateOptionType;
|
|
131
139
|
dimensionColumn?: string;
|
|
132
140
|
measureColumn?: string;
|
|
133
141
|
};
|