@lightdash/common 0.2236.1 → 0.2236.2
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/cjs/.tsbuildinfo +1 -1
- package/dist/cjs/ee/AiAgent/chartConfig/web/getWebAiChartConfig.d.ts +4 -4
- package/dist/cjs/ee/AiAgent/schemas/tools/toolDashboardArgs.d.ts +72 -72
- package/dist/cjs/ee/AiAgent/schemas/tools/toolDashboardV2Args.d.ts +18 -18
- package/dist/cjs/ee/AiAgent/schemas/tools/toolRunMetricQueryArgs.d.ts +10 -10
- package/dist/cjs/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts +10 -10
- package/dist/cjs/ee/AiAgent/schemas/tools/toolTableVizArgs.d.ts +10 -10
- package/dist/cjs/ee/AiAgent/schemas/tools/toolTimeSeriesArgs.d.ts +10 -10
- package/dist/cjs/ee/AiAgent/schemas/tools/toolVerticalBarArgs.d.ts +10 -10
- package/dist/cjs/ee/AiAgent/schemas/visualizations/tableViz.d.ts +2 -2
- package/dist/cjs/ee/AiAgent/schemas/visualizations/timeSeriesViz.d.ts +2 -2
- package/dist/cjs/ee/AiAgent/schemas/visualizations/verticalBarViz.d.ts +2 -2
- package/dist/cjs/ee/AiAgent/utils.d.ts +4 -4
- package/dist/cjs/types/savedCharts.d.ts +2 -0
- package/dist/cjs/types/savedCharts.d.ts.map +1 -1
- package/dist/cjs/types/savedCharts.js.map +1 -1
- package/dist/esm/.tsbuildinfo +1 -1
- package/dist/esm/ee/AiAgent/chartConfig/web/getWebAiChartConfig.d.ts +4 -4
- package/dist/esm/ee/AiAgent/schemas/tools/toolDashboardArgs.d.ts +72 -72
- package/dist/esm/ee/AiAgent/schemas/tools/toolDashboardV2Args.d.ts +18 -18
- package/dist/esm/ee/AiAgent/schemas/tools/toolRunMetricQueryArgs.d.ts +10 -10
- package/dist/esm/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts +10 -10
- package/dist/esm/ee/AiAgent/schemas/tools/toolTableVizArgs.d.ts +10 -10
- package/dist/esm/ee/AiAgent/schemas/tools/toolTimeSeriesArgs.d.ts +10 -10
- package/dist/esm/ee/AiAgent/schemas/tools/toolVerticalBarArgs.d.ts +10 -10
- package/dist/esm/ee/AiAgent/schemas/visualizations/tableViz.d.ts +2 -2
- package/dist/esm/ee/AiAgent/schemas/visualizations/timeSeriesViz.d.ts +2 -2
- package/dist/esm/ee/AiAgent/schemas/visualizations/verticalBarViz.d.ts +2 -2
- package/dist/esm/ee/AiAgent/utils.d.ts +4 -4
- package/dist/esm/types/savedCharts.d.ts +2 -0
- package/dist/esm/types/savedCharts.d.ts.map +1 -1
- package/dist/esm/types/savedCharts.js.map +1 -1
- package/dist/types/.tsbuildinfo +1 -1
- package/dist/types/ee/AiAgent/chartConfig/web/getWebAiChartConfig.d.ts +4 -4
- package/dist/types/ee/AiAgent/schemas/tools/toolDashboardArgs.d.ts +72 -72
- package/dist/types/ee/AiAgent/schemas/tools/toolDashboardV2Args.d.ts +18 -18
- package/dist/types/ee/AiAgent/schemas/tools/toolRunMetricQueryArgs.d.ts +10 -10
- package/dist/types/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts +10 -10
- package/dist/types/ee/AiAgent/schemas/tools/toolTableVizArgs.d.ts +10 -10
- package/dist/types/ee/AiAgent/schemas/tools/toolTimeSeriesArgs.d.ts +10 -10
- package/dist/types/ee/AiAgent/schemas/tools/toolVerticalBarArgs.d.ts +10 -10
- package/dist/types/ee/AiAgent/schemas/visualizations/tableViz.d.ts +2 -2
- package/dist/types/ee/AiAgent/schemas/visualizations/timeSeriesViz.d.ts +2 -2
- package/dist/types/ee/AiAgent/schemas/visualizations/verticalBarViz.d.ts +2 -2
- package/dist/types/ee/AiAgent/utils.d.ts +4 -4
- package/dist/types/types/savedCharts.d.ts +2 -0
- package/dist/types/types/savedCharts.d.ts.map +1 -1
- package/dist/types/types/savedCharts.js.map +1 -1
- package/package.json +1 -1
|
@@ -284,22 +284,22 @@ declare const dashboardV2VisualizationSchema: z.ZodObject<{
|
|
|
284
284
|
dimensions: string[];
|
|
285
285
|
metrics: string[];
|
|
286
286
|
limit: number | null;
|
|
287
|
+
exploreName: string;
|
|
287
288
|
sorts: {
|
|
288
289
|
fieldId: string;
|
|
289
290
|
descending: boolean;
|
|
290
291
|
nullsFirst: boolean | null;
|
|
291
292
|
}[];
|
|
292
|
-
exploreName: string;
|
|
293
293
|
}, {
|
|
294
294
|
dimensions: string[];
|
|
295
295
|
metrics: string[];
|
|
296
296
|
limit: number | null;
|
|
297
|
+
exploreName: string;
|
|
297
298
|
sorts: {
|
|
298
299
|
fieldId: string;
|
|
299
300
|
descending: boolean;
|
|
300
301
|
nullsFirst: boolean | null;
|
|
301
302
|
}[];
|
|
302
|
-
exploreName: string;
|
|
303
303
|
}>;
|
|
304
304
|
chartConfig: z.ZodNullable<z.ZodObject<{
|
|
305
305
|
defaultVizType: z.ZodEnum<["table", "bar", "horizontal", "line", "scatter", "pie", "funnel"]>;
|
|
@@ -1702,12 +1702,12 @@ declare const dashboardV2VisualizationSchema: z.ZodObject<{
|
|
|
1702
1702
|
dimensions: string[];
|
|
1703
1703
|
metrics: string[];
|
|
1704
1704
|
limit: number | null;
|
|
1705
|
+
exploreName: string;
|
|
1705
1706
|
sorts: {
|
|
1706
1707
|
fieldId: string;
|
|
1707
1708
|
descending: boolean;
|
|
1708
1709
|
nullsFirst: boolean | null;
|
|
1709
1710
|
}[];
|
|
1710
|
-
exploreName: string;
|
|
1711
1711
|
};
|
|
1712
1712
|
}, {
|
|
1713
1713
|
tableCalculations: ({
|
|
@@ -2000,12 +2000,12 @@ declare const dashboardV2VisualizationSchema: z.ZodObject<{
|
|
|
2000
2000
|
dimensions: string[];
|
|
2001
2001
|
metrics: string[];
|
|
2002
2002
|
limit: number | null;
|
|
2003
|
+
exploreName: string;
|
|
2003
2004
|
sorts: {
|
|
2004
2005
|
fieldId: string;
|
|
2005
2006
|
descending: boolean;
|
|
2006
2007
|
nullsFirst: boolean | null;
|
|
2007
2008
|
}[];
|
|
2008
|
-
exploreName: string;
|
|
2009
2009
|
};
|
|
2010
2010
|
}>;
|
|
2011
2011
|
export type DashboardV2Visualization = z.infer<typeof dashboardV2VisualizationSchema>;
|
|
@@ -2296,22 +2296,22 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
|
|
|
2296
2296
|
dimensions: string[];
|
|
2297
2297
|
metrics: string[];
|
|
2298
2298
|
limit: number | null;
|
|
2299
|
+
exploreName: string;
|
|
2299
2300
|
sorts: {
|
|
2300
2301
|
fieldId: string;
|
|
2301
2302
|
descending: boolean;
|
|
2302
2303
|
nullsFirst: boolean | null;
|
|
2303
2304
|
}[];
|
|
2304
|
-
exploreName: string;
|
|
2305
2305
|
}, {
|
|
2306
2306
|
dimensions: string[];
|
|
2307
2307
|
metrics: string[];
|
|
2308
2308
|
limit: number | null;
|
|
2309
|
+
exploreName: string;
|
|
2309
2310
|
sorts: {
|
|
2310
2311
|
fieldId: string;
|
|
2311
2312
|
descending: boolean;
|
|
2312
2313
|
nullsFirst: boolean | null;
|
|
2313
2314
|
}[];
|
|
2314
|
-
exploreName: string;
|
|
2315
2315
|
}>;
|
|
2316
2316
|
chartConfig: z.ZodNullable<z.ZodObject<{
|
|
2317
2317
|
defaultVizType: z.ZodEnum<["table", "bar", "horizontal", "line", "scatter", "pie", "funnel"]>;
|
|
@@ -3714,12 +3714,12 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
|
|
|
3714
3714
|
dimensions: string[];
|
|
3715
3715
|
metrics: string[];
|
|
3716
3716
|
limit: number | null;
|
|
3717
|
+
exploreName: string;
|
|
3717
3718
|
sorts: {
|
|
3718
3719
|
fieldId: string;
|
|
3719
3720
|
descending: boolean;
|
|
3720
3721
|
nullsFirst: boolean | null;
|
|
3721
3722
|
}[];
|
|
3722
|
-
exploreName: string;
|
|
3723
3723
|
};
|
|
3724
3724
|
}, {
|
|
3725
3725
|
tableCalculations: ({
|
|
@@ -4012,12 +4012,12 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
|
|
|
4012
4012
|
dimensions: string[];
|
|
4013
4013
|
metrics: string[];
|
|
4014
4014
|
limit: number | null;
|
|
4015
|
+
exploreName: string;
|
|
4015
4016
|
sorts: {
|
|
4016
4017
|
fieldId: string;
|
|
4017
4018
|
descending: boolean;
|
|
4018
4019
|
nullsFirst: boolean | null;
|
|
4019
4020
|
}[];
|
|
4020
|
-
exploreName: string;
|
|
4021
4021
|
};
|
|
4022
4022
|
}>, "many">;
|
|
4023
4023
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -4314,12 +4314,12 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
|
|
|
4314
4314
|
dimensions: string[];
|
|
4315
4315
|
metrics: string[];
|
|
4316
4316
|
limit: number | null;
|
|
4317
|
+
exploreName: string;
|
|
4317
4318
|
sorts: {
|
|
4318
4319
|
fieldId: string;
|
|
4319
4320
|
descending: boolean;
|
|
4320
4321
|
nullsFirst: boolean | null;
|
|
4321
4322
|
}[];
|
|
4322
|
-
exploreName: string;
|
|
4323
4323
|
};
|
|
4324
4324
|
}[];
|
|
4325
4325
|
}, {
|
|
@@ -4616,12 +4616,12 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
|
|
|
4616
4616
|
dimensions: string[];
|
|
4617
4617
|
metrics: string[];
|
|
4618
4618
|
limit: number | null;
|
|
4619
|
+
exploreName: string;
|
|
4619
4620
|
sorts: {
|
|
4620
4621
|
fieldId: string;
|
|
4621
4622
|
descending: boolean;
|
|
4622
4623
|
nullsFirst: boolean | null;
|
|
4623
4624
|
}[];
|
|
4624
|
-
exploreName: string;
|
|
4625
4625
|
};
|
|
4626
4626
|
}[];
|
|
4627
4627
|
}>;
|
|
@@ -4913,22 +4913,22 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
|
|
|
4913
4913
|
dimensions: string[];
|
|
4914
4914
|
metrics: string[];
|
|
4915
4915
|
limit: number | null;
|
|
4916
|
+
exploreName: string;
|
|
4916
4917
|
sorts: {
|
|
4917
4918
|
fieldId: string;
|
|
4918
4919
|
descending: boolean;
|
|
4919
4920
|
nullsFirst: boolean | null;
|
|
4920
4921
|
}[];
|
|
4921
|
-
exploreName: string;
|
|
4922
4922
|
}, {
|
|
4923
4923
|
dimensions: string[];
|
|
4924
4924
|
metrics: string[];
|
|
4925
4925
|
limit: number | null;
|
|
4926
|
+
exploreName: string;
|
|
4926
4927
|
sorts: {
|
|
4927
4928
|
fieldId: string;
|
|
4928
4929
|
descending: boolean;
|
|
4929
4930
|
nullsFirst: boolean | null;
|
|
4930
4931
|
}[];
|
|
4931
|
-
exploreName: string;
|
|
4932
4932
|
}>;
|
|
4933
4933
|
chartConfig: z.ZodNullable<z.ZodObject<{
|
|
4934
4934
|
defaultVizType: z.ZodEnum<["table", "bar", "horizontal", "line", "scatter", "pie", "funnel"]>;
|
|
@@ -6331,12 +6331,12 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
|
|
|
6331
6331
|
dimensions: string[];
|
|
6332
6332
|
metrics: string[];
|
|
6333
6333
|
limit: number | null;
|
|
6334
|
+
exploreName: string;
|
|
6334
6335
|
sorts: {
|
|
6335
6336
|
fieldId: string;
|
|
6336
6337
|
descending: boolean;
|
|
6337
6338
|
nullsFirst: boolean | null;
|
|
6338
6339
|
}[];
|
|
6339
|
-
exploreName: string;
|
|
6340
6340
|
};
|
|
6341
6341
|
}, {
|
|
6342
6342
|
tableCalculations: ({
|
|
@@ -6629,12 +6629,12 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
|
|
|
6629
6629
|
dimensions: string[];
|
|
6630
6630
|
metrics: string[];
|
|
6631
6631
|
limit: number | null;
|
|
6632
|
+
exploreName: string;
|
|
6632
6633
|
sorts: {
|
|
6633
6634
|
fieldId: string;
|
|
6634
6635
|
descending: boolean;
|
|
6635
6636
|
nullsFirst: boolean | null;
|
|
6636
6637
|
}[];
|
|
6637
|
-
exploreName: string;
|
|
6638
6638
|
};
|
|
6639
6639
|
}>, "many">;
|
|
6640
6640
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -6931,12 +6931,12 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
|
|
|
6931
6931
|
dimensions: string[];
|
|
6932
6932
|
metrics: string[];
|
|
6933
6933
|
limit: number | null;
|
|
6934
|
+
exploreName: string;
|
|
6934
6935
|
sorts: {
|
|
6935
6936
|
fieldId: string;
|
|
6936
6937
|
descending: boolean;
|
|
6937
6938
|
nullsFirst: boolean | null;
|
|
6938
6939
|
}[];
|
|
6939
|
-
exploreName: string;
|
|
6940
6940
|
};
|
|
6941
6941
|
}[];
|
|
6942
6942
|
}, {
|
|
@@ -7233,12 +7233,12 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
|
|
|
7233
7233
|
dimensions: string[];
|
|
7234
7234
|
metrics: string[];
|
|
7235
7235
|
limit: number | null;
|
|
7236
|
+
exploreName: string;
|
|
7236
7237
|
sorts: {
|
|
7237
7238
|
fieldId: string;
|
|
7238
7239
|
descending: boolean;
|
|
7239
7240
|
nullsFirst: boolean | null;
|
|
7240
7241
|
}[];
|
|
7241
|
-
exploreName: string;
|
|
7242
7242
|
};
|
|
7243
7243
|
}[];
|
|
7244
7244
|
}>, {
|
|
@@ -7329,12 +7329,12 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
|
|
|
7329
7329
|
dimensions: string[];
|
|
7330
7330
|
metrics: string[];
|
|
7331
7331
|
limit: number | null;
|
|
7332
|
+
exploreName: string;
|
|
7332
7333
|
sorts: {
|
|
7333
7334
|
fieldId: string;
|
|
7334
7335
|
descending: boolean;
|
|
7335
7336
|
nullsFirst: boolean | null;
|
|
7336
7337
|
}[];
|
|
7337
|
-
exploreName: string;
|
|
7338
7338
|
};
|
|
7339
7339
|
}[];
|
|
7340
7340
|
description: string;
|
|
@@ -7633,12 +7633,12 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
|
|
|
7633
7633
|
dimensions: string[];
|
|
7634
7634
|
metrics: string[];
|
|
7635
7635
|
limit: number | null;
|
|
7636
|
+
exploreName: string;
|
|
7636
7637
|
sorts: {
|
|
7637
7638
|
fieldId: string;
|
|
7638
7639
|
descending: boolean;
|
|
7639
7640
|
nullsFirst: boolean | null;
|
|
7640
7641
|
}[];
|
|
7641
|
-
exploreName: string;
|
|
7642
7642
|
};
|
|
7643
7643
|
}[];
|
|
7644
7644
|
}>;
|
|
@@ -23,22 +23,22 @@ export declare const toolRunMetricQueryArgsSchema: z.ZodObject<{
|
|
|
23
23
|
dimensions: string[];
|
|
24
24
|
metrics: string[];
|
|
25
25
|
limit: number | null;
|
|
26
|
+
exploreName: string;
|
|
26
27
|
sorts: {
|
|
27
28
|
fieldId: string;
|
|
28
29
|
descending: boolean;
|
|
29
30
|
nullsFirst: boolean | null;
|
|
30
31
|
}[];
|
|
31
|
-
exploreName: string;
|
|
32
32
|
}, {
|
|
33
33
|
dimensions: string[];
|
|
34
34
|
metrics: string[];
|
|
35
35
|
limit: number | null;
|
|
36
|
+
exploreName: string;
|
|
36
37
|
sorts: {
|
|
37
38
|
fieldId: string;
|
|
38
39
|
descending: boolean;
|
|
39
40
|
nullsFirst: boolean | null;
|
|
40
41
|
}[];
|
|
41
|
-
exploreName: string;
|
|
42
42
|
}>;
|
|
43
43
|
customMetrics: z.ZodNullable<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
44
44
|
name: z.ZodString;
|
|
@@ -1644,12 +1644,12 @@ export declare const toolRunMetricQueryArgsSchema: z.ZodObject<{
|
|
|
1644
1644
|
dimensions: string[];
|
|
1645
1645
|
metrics: string[];
|
|
1646
1646
|
limit: number | null;
|
|
1647
|
+
exploreName: string;
|
|
1647
1648
|
sorts: {
|
|
1648
1649
|
fieldId: string;
|
|
1649
1650
|
descending: boolean;
|
|
1650
1651
|
nullsFirst: boolean | null;
|
|
1651
1652
|
}[];
|
|
1652
|
-
exploreName: string;
|
|
1653
1653
|
};
|
|
1654
1654
|
}, {
|
|
1655
1655
|
tableCalculations: ({
|
|
@@ -1926,12 +1926,12 @@ export declare const toolRunMetricQueryArgsSchema: z.ZodObject<{
|
|
|
1926
1926
|
dimensions: string[];
|
|
1927
1927
|
metrics: string[];
|
|
1928
1928
|
limit: number | null;
|
|
1929
|
+
exploreName: string;
|
|
1929
1930
|
sorts: {
|
|
1930
1931
|
fieldId: string;
|
|
1931
1932
|
descending: boolean;
|
|
1932
1933
|
nullsFirst: boolean | null;
|
|
1933
1934
|
}[];
|
|
1934
|
-
exploreName: string;
|
|
1935
1935
|
};
|
|
1936
1936
|
}>;
|
|
1937
1937
|
export declare const toolRunMetricQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject<{
|
|
@@ -1957,22 +1957,22 @@ export declare const toolRunMetricQueryArgsSchemaTransformed: z.ZodEffects<z.Zod
|
|
|
1957
1957
|
dimensions: string[];
|
|
1958
1958
|
metrics: string[];
|
|
1959
1959
|
limit: number | null;
|
|
1960
|
+
exploreName: string;
|
|
1960
1961
|
sorts: {
|
|
1961
1962
|
fieldId: string;
|
|
1962
1963
|
descending: boolean;
|
|
1963
1964
|
nullsFirst: boolean | null;
|
|
1964
1965
|
}[];
|
|
1965
|
-
exploreName: string;
|
|
1966
1966
|
}, {
|
|
1967
1967
|
dimensions: string[];
|
|
1968
1968
|
metrics: string[];
|
|
1969
1969
|
limit: number | null;
|
|
1970
|
+
exploreName: string;
|
|
1970
1971
|
sorts: {
|
|
1971
1972
|
fieldId: string;
|
|
1972
1973
|
descending: boolean;
|
|
1973
1974
|
nullsFirst: boolean | null;
|
|
1974
1975
|
}[];
|
|
1975
|
-
exploreName: string;
|
|
1976
1976
|
}>;
|
|
1977
1977
|
customMetrics: z.ZodNullable<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1978
1978
|
name: z.ZodString;
|
|
@@ -3578,12 +3578,12 @@ export declare const toolRunMetricQueryArgsSchemaTransformed: z.ZodEffects<z.Zod
|
|
|
3578
3578
|
dimensions: string[];
|
|
3579
3579
|
metrics: string[];
|
|
3580
3580
|
limit: number | null;
|
|
3581
|
+
exploreName: string;
|
|
3581
3582
|
sorts: {
|
|
3582
3583
|
fieldId: string;
|
|
3583
3584
|
descending: boolean;
|
|
3584
3585
|
nullsFirst: boolean | null;
|
|
3585
3586
|
}[];
|
|
3586
|
-
exploreName: string;
|
|
3587
3587
|
};
|
|
3588
3588
|
}, {
|
|
3589
3589
|
tableCalculations: ({
|
|
@@ -3860,12 +3860,12 @@ export declare const toolRunMetricQueryArgsSchemaTransformed: z.ZodEffects<z.Zod
|
|
|
3860
3860
|
dimensions: string[];
|
|
3861
3861
|
metrics: string[];
|
|
3862
3862
|
limit: number | null;
|
|
3863
|
+
exploreName: string;
|
|
3863
3864
|
sorts: {
|
|
3864
3865
|
fieldId: string;
|
|
3865
3866
|
descending: boolean;
|
|
3866
3867
|
nullsFirst: boolean | null;
|
|
3867
3868
|
}[];
|
|
3868
|
-
exploreName: string;
|
|
3869
3869
|
};
|
|
3870
3870
|
}>, {
|
|
3871
3871
|
customMetrics: {
|
|
@@ -3938,12 +3938,12 @@ export declare const toolRunMetricQueryArgsSchemaTransformed: z.ZodEffects<z.Zod
|
|
|
3938
3938
|
dimensions: string[];
|
|
3939
3939
|
metrics: string[];
|
|
3940
3940
|
limit: number | null;
|
|
3941
|
+
exploreName: string;
|
|
3941
3942
|
sorts: {
|
|
3942
3943
|
fieldId: string;
|
|
3943
3944
|
descending: boolean;
|
|
3944
3945
|
nullsFirst: boolean | null;
|
|
3945
3946
|
}[];
|
|
3946
|
-
exploreName: string;
|
|
3947
3947
|
};
|
|
3948
3948
|
}, {
|
|
3949
3949
|
tableCalculations: ({
|
|
@@ -4220,12 +4220,12 @@ export declare const toolRunMetricQueryArgsSchemaTransformed: z.ZodEffects<z.Zod
|
|
|
4220
4220
|
dimensions: string[];
|
|
4221
4221
|
metrics: string[];
|
|
4222
4222
|
limit: number | null;
|
|
4223
|
+
exploreName: string;
|
|
4223
4224
|
sorts: {
|
|
4224
4225
|
fieldId: string;
|
|
4225
4226
|
descending: boolean;
|
|
4226
4227
|
nullsFirst: boolean | null;
|
|
4227
4228
|
}[];
|
|
4228
|
-
exploreName: string;
|
|
4229
4229
|
};
|
|
4230
4230
|
}>;
|
|
4231
4231
|
export declare const toolRunMetricQueryOutputSchema: z.ZodObject<{
|
|
@@ -284,22 +284,22 @@ export declare const toolRunQueryArgsSchema: z.ZodObject<{
|
|
|
284
284
|
dimensions: string[];
|
|
285
285
|
metrics: string[];
|
|
286
286
|
limit: number | null;
|
|
287
|
+
exploreName: string;
|
|
287
288
|
sorts: {
|
|
288
289
|
fieldId: string;
|
|
289
290
|
descending: boolean;
|
|
290
291
|
nullsFirst: boolean | null;
|
|
291
292
|
}[];
|
|
292
|
-
exploreName: string;
|
|
293
293
|
}, {
|
|
294
294
|
dimensions: string[];
|
|
295
295
|
metrics: string[];
|
|
296
296
|
limit: number | null;
|
|
297
|
+
exploreName: string;
|
|
297
298
|
sorts: {
|
|
298
299
|
fieldId: string;
|
|
299
300
|
descending: boolean;
|
|
300
301
|
nullsFirst: boolean | null;
|
|
301
302
|
}[];
|
|
302
|
-
exploreName: string;
|
|
303
303
|
}>;
|
|
304
304
|
chartConfig: z.ZodNullable<z.ZodObject<{
|
|
305
305
|
defaultVizType: z.ZodEnum<["table", "bar", "horizontal", "line", "scatter", "pie", "funnel"]>;
|
|
@@ -1702,12 +1702,12 @@ export declare const toolRunQueryArgsSchema: z.ZodObject<{
|
|
|
1702
1702
|
dimensions: string[];
|
|
1703
1703
|
metrics: string[];
|
|
1704
1704
|
limit: number | null;
|
|
1705
|
+
exploreName: string;
|
|
1705
1706
|
sorts: {
|
|
1706
1707
|
fieldId: string;
|
|
1707
1708
|
descending: boolean;
|
|
1708
1709
|
nullsFirst: boolean | null;
|
|
1709
1710
|
}[];
|
|
1710
|
-
exploreName: string;
|
|
1711
1711
|
};
|
|
1712
1712
|
}, {
|
|
1713
1713
|
tableCalculations: ({
|
|
@@ -2000,12 +2000,12 @@ export declare const toolRunQueryArgsSchema: z.ZodObject<{
|
|
|
2000
2000
|
dimensions: string[];
|
|
2001
2001
|
metrics: string[];
|
|
2002
2002
|
limit: number | null;
|
|
2003
|
+
exploreName: string;
|
|
2003
2004
|
sorts: {
|
|
2004
2005
|
fieldId: string;
|
|
2005
2006
|
descending: boolean;
|
|
2006
2007
|
nullsFirst: boolean | null;
|
|
2007
2008
|
}[];
|
|
2008
|
-
exploreName: string;
|
|
2009
2009
|
};
|
|
2010
2010
|
}>;
|
|
2011
2011
|
export type ToolRunQueryArgs = z.infer<typeof toolRunQueryArgsSchema>;
|
|
@@ -2032,22 +2032,22 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
2032
2032
|
dimensions: string[];
|
|
2033
2033
|
metrics: string[];
|
|
2034
2034
|
limit: number | null;
|
|
2035
|
+
exploreName: string;
|
|
2035
2036
|
sorts: {
|
|
2036
2037
|
fieldId: string;
|
|
2037
2038
|
descending: boolean;
|
|
2038
2039
|
nullsFirst: boolean | null;
|
|
2039
2040
|
}[];
|
|
2040
|
-
exploreName: string;
|
|
2041
2041
|
}, {
|
|
2042
2042
|
dimensions: string[];
|
|
2043
2043
|
metrics: string[];
|
|
2044
2044
|
limit: number | null;
|
|
2045
|
+
exploreName: string;
|
|
2045
2046
|
sorts: {
|
|
2046
2047
|
fieldId: string;
|
|
2047
2048
|
descending: boolean;
|
|
2048
2049
|
nullsFirst: boolean | null;
|
|
2049
2050
|
}[];
|
|
2050
|
-
exploreName: string;
|
|
2051
2051
|
}>;
|
|
2052
2052
|
filters: z.ZodNullable<z.ZodObject<{
|
|
2053
2053
|
type: z.ZodUnion<[z.ZodLiteral<"and">, z.ZodLiteral<"or">]>;
|
|
@@ -3712,12 +3712,12 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
3712
3712
|
dimensions: string[];
|
|
3713
3713
|
metrics: string[];
|
|
3714
3714
|
limit: number | null;
|
|
3715
|
+
exploreName: string;
|
|
3715
3716
|
sorts: {
|
|
3716
3717
|
fieldId: string;
|
|
3717
3718
|
descending: boolean;
|
|
3718
3719
|
nullsFirst: boolean | null;
|
|
3719
3720
|
}[];
|
|
3720
|
-
exploreName: string;
|
|
3721
3721
|
};
|
|
3722
3722
|
}, {
|
|
3723
3723
|
description: string;
|
|
@@ -3931,12 +3931,12 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
3931
3931
|
dimensions: string[];
|
|
3932
3932
|
metrics: string[];
|
|
3933
3933
|
limit: number | null;
|
|
3934
|
+
exploreName: string;
|
|
3934
3935
|
sorts: {
|
|
3935
3936
|
fieldId: string;
|
|
3936
3937
|
descending: boolean;
|
|
3937
3938
|
nullsFirst: boolean | null;
|
|
3938
3939
|
}[];
|
|
3939
|
-
exploreName: string;
|
|
3940
3940
|
};
|
|
3941
3941
|
tableCalculations?: ({
|
|
3942
3942
|
name: string;
|
|
@@ -4104,12 +4104,12 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
4104
4104
|
dimensions: string[];
|
|
4105
4105
|
metrics: string[];
|
|
4106
4106
|
limit: number | null;
|
|
4107
|
+
exploreName: string;
|
|
4107
4108
|
sorts: {
|
|
4108
4109
|
fieldId: string;
|
|
4109
4110
|
descending: boolean;
|
|
4110
4111
|
nullsFirst: boolean | null;
|
|
4111
4112
|
}[];
|
|
4112
|
-
exploreName: string;
|
|
4113
4113
|
};
|
|
4114
4114
|
}, {
|
|
4115
4115
|
description: string;
|
|
@@ -4323,12 +4323,12 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
4323
4323
|
dimensions: string[];
|
|
4324
4324
|
metrics: string[];
|
|
4325
4325
|
limit: number | null;
|
|
4326
|
+
exploreName: string;
|
|
4326
4327
|
sorts: {
|
|
4327
4328
|
fieldId: string;
|
|
4328
4329
|
descending: boolean;
|
|
4329
4330
|
nullsFirst: boolean | null;
|
|
4330
4331
|
}[];
|
|
4331
|
-
exploreName: string;
|
|
4332
4332
|
};
|
|
4333
4333
|
tableCalculations?: ({
|
|
4334
4334
|
name: string;
|
|
@@ -286,22 +286,22 @@ export declare const toolTableVizArgsSchema: z.ZodObject<{
|
|
|
286
286
|
dimensions: string[];
|
|
287
287
|
metrics: string[];
|
|
288
288
|
limit: number | null;
|
|
289
|
+
exploreName: string;
|
|
289
290
|
sorts: {
|
|
290
291
|
fieldId: string;
|
|
291
292
|
descending: boolean;
|
|
292
293
|
nullsFirst: boolean | null;
|
|
293
294
|
}[];
|
|
294
|
-
exploreName: string;
|
|
295
295
|
}, {
|
|
296
296
|
dimensions: string[];
|
|
297
297
|
metrics: string[];
|
|
298
298
|
limit: number | null;
|
|
299
|
+
exploreName: string;
|
|
299
300
|
sorts: {
|
|
300
301
|
fieldId: string;
|
|
301
302
|
descending: boolean;
|
|
302
303
|
nullsFirst: boolean | null;
|
|
303
304
|
}[];
|
|
304
|
-
exploreName: string;
|
|
305
305
|
}>;
|
|
306
306
|
filters: z.ZodNullable<z.ZodObject<{
|
|
307
307
|
type: z.ZodUnion<[z.ZodLiteral<"and">, z.ZodLiteral<"or">]>;
|
|
@@ -1651,12 +1651,12 @@ export declare const toolTableVizArgsSchema: z.ZodObject<{
|
|
|
1651
1651
|
dimensions: string[];
|
|
1652
1652
|
metrics: string[];
|
|
1653
1653
|
limit: number | null;
|
|
1654
|
+
exploreName: string;
|
|
1654
1655
|
sorts: {
|
|
1655
1656
|
fieldId: string;
|
|
1656
1657
|
descending: boolean;
|
|
1657
1658
|
nullsFirst: boolean | null;
|
|
1658
1659
|
}[];
|
|
1659
|
-
exploreName: string;
|
|
1660
1660
|
};
|
|
1661
1661
|
followUpTools: (AiResultType.TIME_SERIES_RESULT | AiResultType.VERTICAL_BAR_RESULT)[];
|
|
1662
1662
|
}, {
|
|
@@ -1936,12 +1936,12 @@ export declare const toolTableVizArgsSchema: z.ZodObject<{
|
|
|
1936
1936
|
dimensions: string[];
|
|
1937
1937
|
metrics: string[];
|
|
1938
1938
|
limit: number | null;
|
|
1939
|
+
exploreName: string;
|
|
1939
1940
|
sorts: {
|
|
1940
1941
|
fieldId: string;
|
|
1941
1942
|
descending: boolean;
|
|
1942
1943
|
nullsFirst: boolean | null;
|
|
1943
1944
|
}[];
|
|
1944
|
-
exploreName: string;
|
|
1945
1945
|
};
|
|
1946
1946
|
followUpTools: (AiResultType.TIME_SERIES_RESULT | AiResultType.VERTICAL_BAR_RESULT)[];
|
|
1947
1947
|
}>;
|
|
@@ -1969,22 +1969,22 @@ export declare const toolTableVizArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
1969
1969
|
dimensions: string[];
|
|
1970
1970
|
metrics: string[];
|
|
1971
1971
|
limit: number | null;
|
|
1972
|
+
exploreName: string;
|
|
1972
1973
|
sorts: {
|
|
1973
1974
|
fieldId: string;
|
|
1974
1975
|
descending: boolean;
|
|
1975
1976
|
nullsFirst: boolean | null;
|
|
1976
1977
|
}[];
|
|
1977
|
-
exploreName: string;
|
|
1978
1978
|
}, {
|
|
1979
1979
|
dimensions: string[];
|
|
1980
1980
|
metrics: string[];
|
|
1981
1981
|
limit: number | null;
|
|
1982
|
+
exploreName: string;
|
|
1982
1983
|
sorts: {
|
|
1983
1984
|
fieldId: string;
|
|
1984
1985
|
descending: boolean;
|
|
1985
1986
|
nullsFirst: boolean | null;
|
|
1986
1987
|
}[];
|
|
1987
|
-
exploreName: string;
|
|
1988
1988
|
}>;
|
|
1989
1989
|
title: z.ZodString;
|
|
1990
1990
|
description: z.ZodString;
|
|
@@ -5132,12 +5132,12 @@ export declare const toolTableVizArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
5132
5132
|
dimensions: string[];
|
|
5133
5133
|
metrics: string[];
|
|
5134
5134
|
limit: number | null;
|
|
5135
|
+
exploreName: string;
|
|
5135
5136
|
sorts: {
|
|
5136
5137
|
fieldId: string;
|
|
5137
5138
|
descending: boolean;
|
|
5138
5139
|
nullsFirst: boolean | null;
|
|
5139
5140
|
}[];
|
|
5140
|
-
exploreName: string;
|
|
5141
5141
|
};
|
|
5142
5142
|
followUpTools: (AiResultType.TIME_SERIES_RESULT | AiResultType.VERTICAL_BAR_RESULT | LegacyFollowUpTools.GENERATE_BAR_VIZ | LegacyFollowUpTools.GENERATE_TIME_SERIES_VIZ)[];
|
|
5143
5143
|
}, {
|
|
@@ -5597,12 +5597,12 @@ export declare const toolTableVizArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
5597
5597
|
dimensions: string[];
|
|
5598
5598
|
metrics: string[];
|
|
5599
5599
|
limit: number | null;
|
|
5600
|
+
exploreName: string;
|
|
5600
5601
|
sorts: {
|
|
5601
5602
|
fieldId: string;
|
|
5602
5603
|
descending: boolean;
|
|
5603
5604
|
nullsFirst: boolean | null;
|
|
5604
5605
|
}[];
|
|
5605
|
-
exploreName: string;
|
|
5606
5606
|
};
|
|
5607
5607
|
followUpTools: (AiResultType.TIME_SERIES_RESULT | AiResultType.VERTICAL_BAR_RESULT | LegacyFollowUpTools.GENERATE_BAR_VIZ | LegacyFollowUpTools.GENERATE_TIME_SERIES_VIZ)[];
|
|
5608
5608
|
tableCalculations?: ({
|
|
@@ -5744,12 +5744,12 @@ export declare const toolTableVizArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
5744
5744
|
dimensions: string[];
|
|
5745
5745
|
metrics: string[];
|
|
5746
5746
|
limit: number | null;
|
|
5747
|
+
exploreName: string;
|
|
5747
5748
|
sorts: {
|
|
5748
5749
|
fieldId: string;
|
|
5749
5750
|
descending: boolean;
|
|
5750
5751
|
nullsFirst: boolean | null;
|
|
5751
5752
|
}[];
|
|
5752
|
-
exploreName: string;
|
|
5753
5753
|
};
|
|
5754
5754
|
}, {
|
|
5755
5755
|
description: string;
|
|
@@ -6208,12 +6208,12 @@ export declare const toolTableVizArgsSchemaTransformed: z.ZodEffects<z.ZodObject
|
|
|
6208
6208
|
dimensions: string[];
|
|
6209
6209
|
metrics: string[];
|
|
6210
6210
|
limit: number | null;
|
|
6211
|
+
exploreName: string;
|
|
6211
6212
|
sorts: {
|
|
6212
6213
|
fieldId: string;
|
|
6213
6214
|
descending: boolean;
|
|
6214
6215
|
nullsFirst: boolean | null;
|
|
6215
6216
|
}[];
|
|
6216
|
-
exploreName: string;
|
|
6217
6217
|
};
|
|
6218
6218
|
followUpTools: (AiResultType.TIME_SERIES_RESULT | AiResultType.VERTICAL_BAR_RESULT | LegacyFollowUpTools.GENERATE_BAR_VIZ | LegacyFollowUpTools.GENERATE_TIME_SERIES_VIZ)[];
|
|
6219
6219
|
tableCalculations?: ({
|