react-semaphor 0.0.211 → 0.0.212
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/types/main.d.ts
CHANGED
|
@@ -487,7 +487,9 @@ export declare function Surfboard({ showControls, showFooter, ...rest }: Dashboa
|
|
|
487
487
|
export declare type TBaseQuery = {
|
|
488
488
|
id: string;
|
|
489
489
|
name: string;
|
|
490
|
+
connectionId: string;
|
|
490
491
|
sql: string;
|
|
492
|
+
context?: string;
|
|
491
493
|
description?: string;
|
|
492
494
|
};
|
|
493
495
|
|
|
@@ -1261,7 +1263,9 @@ export declare const useDashboardStore: UseBoundStore<Omit<StoreApi<DashboardSto
|
|
|
1261
1263
|
baseQueries?: {
|
|
1262
1264
|
id: string;
|
|
1263
1265
|
name: string;
|
|
1266
|
+
connectionId: string;
|
|
1264
1267
|
sql: string;
|
|
1268
|
+
context?: string | undefined;
|
|
1265
1269
|
description?: string | undefined;
|
|
1266
1270
|
}[] | undefined;
|
|
1267
1271
|
aiScopeTables?: {
|
|
@@ -222,7 +222,9 @@ export declare function Surfboard({ showControls, showFooter, ...rest }: Dashboa
|
|
|
222
222
|
export declare type TBaseQuery = {
|
|
223
223
|
id: string;
|
|
224
224
|
name: string;
|
|
225
|
+
connectionId: string;
|
|
225
226
|
sql: string;
|
|
227
|
+
context?: string;
|
|
226
228
|
description?: string;
|
|
227
229
|
};
|
|
228
230
|
|
package/dist/types/types.d.ts
CHANGED