@lightdash/common 0.2104.1 → 0.2104.3

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.
Files changed (24) hide show
  1. package/dist/cjs/ee/AiAgent/chartConfig/web/getWebAiChartConfig.d.ts +2 -2
  2. package/dist/cjs/ee/AiAgent/schemas/parser.d.ts +6 -6
  3. package/dist/cjs/ee/AiAgent/schemas/tools/toolDashboardV2Args.d.ts +42 -42
  4. package/dist/cjs/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts +24 -24
  5. package/dist/cjs/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts.map +1 -1
  6. package/dist/cjs/ee/AiAgent/schemas/tools/toolRunQueryArgs.js +0 -2
  7. package/dist/cjs/ee/AiAgent/schemas/tools/toolRunQueryArgs.js.map +1 -1
  8. package/dist/cjs/ee/AiAgent/utils.d.ts +2 -2
  9. package/dist/esm/ee/AiAgent/chartConfig/web/getWebAiChartConfig.d.ts +2 -2
  10. package/dist/esm/ee/AiAgent/schemas/parser.d.ts +6 -6
  11. package/dist/esm/ee/AiAgent/schemas/tools/toolDashboardV2Args.d.ts +42 -42
  12. package/dist/esm/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts +24 -24
  13. package/dist/esm/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts.map +1 -1
  14. package/dist/esm/ee/AiAgent/schemas/tools/toolRunQueryArgs.js +0 -2
  15. package/dist/esm/ee/AiAgent/schemas/tools/toolRunQueryArgs.js.map +1 -1
  16. package/dist/esm/ee/AiAgent/utils.d.ts +2 -2
  17. package/dist/tsconfig.types.tsbuildinfo +1 -1
  18. package/dist/types/ee/AiAgent/chartConfig/web/getWebAiChartConfig.d.ts +2 -2
  19. package/dist/types/ee/AiAgent/schemas/parser.d.ts +6 -6
  20. package/dist/types/ee/AiAgent/schemas/tools/toolDashboardV2Args.d.ts +42 -42
  21. package/dist/types/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts +24 -24
  22. package/dist/types/ee/AiAgent/schemas/tools/toolRunQueryArgs.d.ts.map +1 -1
  23. package/dist/types/ee/AiAgent/utils.d.ts +2 -2
  24. package/package.json +1 -1
@@ -52,16 +52,16 @@ declare const dashboardV2VisualizationSchema: z.ZodObject<{
52
52
  stackBars: z.ZodNullable<z.ZodBoolean>;
53
53
  lineType: z.ZodNullable<z.ZodEnum<["line", "area"]>>;
54
54
  funnelDataInput: z.ZodNullable<z.ZodEnum<["row", "column"]>>;
55
- xAxisLabel: z.ZodNullable<z.ZodString>;
56
- yAxisLabel: z.ZodNullable<z.ZodString>;
55
+ xAxisLabel: z.ZodString;
56
+ yAxisLabel: z.ZodString;
57
57
  secondaryYAxisMetric: z.ZodNullable<z.ZodString>;
58
58
  secondaryYAxisLabel: z.ZodNullable<z.ZodString>;
59
59
  }, "strip", z.ZodTypeAny, {
60
60
  groupBy: string[] | null;
61
61
  stackBars: boolean | null;
62
62
  xAxisType: "time" | "category" | null;
63
- xAxisLabel: string | null;
64
- yAxisLabel: string | null;
63
+ xAxisLabel: string;
64
+ yAxisLabel: string;
65
65
  lineType: "line" | "area" | null;
66
66
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
67
67
  xAxisDimension: string | null;
@@ -73,8 +73,8 @@ declare const dashboardV2VisualizationSchema: z.ZodObject<{
73
73
  groupBy: string[] | null;
74
74
  stackBars: boolean | null;
75
75
  xAxisType: "time" | "category" | null;
76
- xAxisLabel: string | null;
77
- yAxisLabel: string | null;
76
+ xAxisLabel: string;
77
+ yAxisLabel: string;
78
78
  lineType: "line" | "area" | null;
79
79
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
80
80
  xAxisDimension: string | null;
@@ -1677,8 +1677,8 @@ declare const dashboardV2VisualizationSchema: z.ZodObject<{
1677
1677
  groupBy: string[] | null;
1678
1678
  stackBars: boolean | null;
1679
1679
  xAxisType: "time" | "category" | null;
1680
- xAxisLabel: string | null;
1681
- yAxisLabel: string | null;
1680
+ xAxisLabel: string;
1681
+ yAxisLabel: string;
1682
1682
  lineType: "line" | "area" | null;
1683
1683
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
1684
1684
  xAxisDimension: string | null;
@@ -1976,8 +1976,8 @@ declare const dashboardV2VisualizationSchema: z.ZodObject<{
1976
1976
  groupBy: string[] | null;
1977
1977
  stackBars: boolean | null;
1978
1978
  xAxisType: "time" | "category" | null;
1979
- xAxisLabel: string | null;
1980
- yAxisLabel: string | null;
1979
+ xAxisLabel: string;
1980
+ yAxisLabel: string;
1981
1981
  lineType: "line" | "area" | null;
1982
1982
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
1983
1983
  xAxisDimension: string | null;
@@ -2056,16 +2056,16 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
2056
2056
  stackBars: z.ZodNullable<z.ZodBoolean>;
2057
2057
  lineType: z.ZodNullable<z.ZodEnum<["line", "area"]>>;
2058
2058
  funnelDataInput: z.ZodNullable<z.ZodEnum<["row", "column"]>>;
2059
- xAxisLabel: z.ZodNullable<z.ZodString>;
2060
- yAxisLabel: z.ZodNullable<z.ZodString>;
2059
+ xAxisLabel: z.ZodString;
2060
+ yAxisLabel: z.ZodString;
2061
2061
  secondaryYAxisMetric: z.ZodNullable<z.ZodString>;
2062
2062
  secondaryYAxisLabel: z.ZodNullable<z.ZodString>;
2063
2063
  }, "strip", z.ZodTypeAny, {
2064
2064
  groupBy: string[] | null;
2065
2065
  stackBars: boolean | null;
2066
2066
  xAxisType: "time" | "category" | null;
2067
- xAxisLabel: string | null;
2068
- yAxisLabel: string | null;
2067
+ xAxisLabel: string;
2068
+ yAxisLabel: string;
2069
2069
  lineType: "line" | "area" | null;
2070
2070
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
2071
2071
  xAxisDimension: string | null;
@@ -2077,8 +2077,8 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
2077
2077
  groupBy: string[] | null;
2078
2078
  stackBars: boolean | null;
2079
2079
  xAxisType: "time" | "category" | null;
2080
- xAxisLabel: string | null;
2081
- yAxisLabel: string | null;
2080
+ xAxisLabel: string;
2081
+ yAxisLabel: string;
2082
2082
  lineType: "line" | "area" | null;
2083
2083
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
2084
2084
  xAxisDimension: string | null;
@@ -3681,8 +3681,8 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
3681
3681
  groupBy: string[] | null;
3682
3682
  stackBars: boolean | null;
3683
3683
  xAxisType: "time" | "category" | null;
3684
- xAxisLabel: string | null;
3685
- yAxisLabel: string | null;
3684
+ xAxisLabel: string;
3685
+ yAxisLabel: string;
3686
3686
  lineType: "line" | "area" | null;
3687
3687
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
3688
3688
  xAxisDimension: string | null;
@@ -3980,8 +3980,8 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
3980
3980
  groupBy: string[] | null;
3981
3981
  stackBars: boolean | null;
3982
3982
  xAxisType: "time" | "category" | null;
3983
- xAxisLabel: string | null;
3984
- yAxisLabel: string | null;
3983
+ xAxisLabel: string;
3984
+ yAxisLabel: string;
3985
3985
  lineType: "line" | "area" | null;
3986
3986
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
3987
3987
  xAxisDimension: string | null;
@@ -4284,8 +4284,8 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
4284
4284
  groupBy: string[] | null;
4285
4285
  stackBars: boolean | null;
4286
4286
  xAxisType: "time" | "category" | null;
4287
- xAxisLabel: string | null;
4288
- yAxisLabel: string | null;
4287
+ xAxisLabel: string;
4288
+ yAxisLabel: string;
4289
4289
  lineType: "line" | "area" | null;
4290
4290
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
4291
4291
  xAxisDimension: string | null;
@@ -4588,8 +4588,8 @@ export declare const toolDashboardV2ArgsSchema: z.ZodObject<{
4588
4588
  groupBy: string[] | null;
4589
4589
  stackBars: boolean | null;
4590
4590
  xAxisType: "time" | "category" | null;
4591
- xAxisLabel: string | null;
4592
- yAxisLabel: string | null;
4591
+ xAxisLabel: string;
4592
+ yAxisLabel: string;
4593
4593
  lineType: "line" | "area" | null;
4594
4594
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
4595
4595
  xAxisDimension: string | null;
@@ -4669,16 +4669,16 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
4669
4669
  stackBars: z.ZodNullable<z.ZodBoolean>;
4670
4670
  lineType: z.ZodNullable<z.ZodEnum<["line", "area"]>>;
4671
4671
  funnelDataInput: z.ZodNullable<z.ZodEnum<["row", "column"]>>;
4672
- xAxisLabel: z.ZodNullable<z.ZodString>;
4673
- yAxisLabel: z.ZodNullable<z.ZodString>;
4672
+ xAxisLabel: z.ZodString;
4673
+ yAxisLabel: z.ZodString;
4674
4674
  secondaryYAxisMetric: z.ZodNullable<z.ZodString>;
4675
4675
  secondaryYAxisLabel: z.ZodNullable<z.ZodString>;
4676
4676
  }, "strip", z.ZodTypeAny, {
4677
4677
  groupBy: string[] | null;
4678
4678
  stackBars: boolean | null;
4679
4679
  xAxisType: "time" | "category" | null;
4680
- xAxisLabel: string | null;
4681
- yAxisLabel: string | null;
4680
+ xAxisLabel: string;
4681
+ yAxisLabel: string;
4682
4682
  lineType: "line" | "area" | null;
4683
4683
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
4684
4684
  xAxisDimension: string | null;
@@ -4690,8 +4690,8 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
4690
4690
  groupBy: string[] | null;
4691
4691
  stackBars: boolean | null;
4692
4692
  xAxisType: "time" | "category" | null;
4693
- xAxisLabel: string | null;
4694
- yAxisLabel: string | null;
4693
+ xAxisLabel: string;
4694
+ yAxisLabel: string;
4695
4695
  lineType: "line" | "area" | null;
4696
4696
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
4697
4697
  xAxisDimension: string | null;
@@ -6294,8 +6294,8 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
6294
6294
  groupBy: string[] | null;
6295
6295
  stackBars: boolean | null;
6296
6296
  xAxisType: "time" | "category" | null;
6297
- xAxisLabel: string | null;
6298
- yAxisLabel: string | null;
6297
+ xAxisLabel: string;
6298
+ yAxisLabel: string;
6299
6299
  lineType: "line" | "area" | null;
6300
6300
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
6301
6301
  xAxisDimension: string | null;
@@ -6593,8 +6593,8 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
6593
6593
  groupBy: string[] | null;
6594
6594
  stackBars: boolean | null;
6595
6595
  xAxisType: "time" | "category" | null;
6596
- xAxisLabel: string | null;
6597
- yAxisLabel: string | null;
6596
+ xAxisLabel: string;
6597
+ yAxisLabel: string;
6598
6598
  lineType: "line" | "area" | null;
6599
6599
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
6600
6600
  xAxisDimension: string | null;
@@ -6897,8 +6897,8 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
6897
6897
  groupBy: string[] | null;
6898
6898
  stackBars: boolean | null;
6899
6899
  xAxisType: "time" | "category" | null;
6900
- xAxisLabel: string | null;
6901
- yAxisLabel: string | null;
6900
+ xAxisLabel: string;
6901
+ yAxisLabel: string;
6902
6902
  lineType: "line" | "area" | null;
6903
6903
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
6904
6904
  xAxisDimension: string | null;
@@ -7201,8 +7201,8 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
7201
7201
  groupBy: string[] | null;
7202
7202
  stackBars: boolean | null;
7203
7203
  xAxisType: "time" | "category" | null;
7204
- xAxisLabel: string | null;
7205
- yAxisLabel: string | null;
7204
+ xAxisLabel: string;
7205
+ yAxisLabel: string;
7206
7206
  lineType: "line" | "area" | null;
7207
7207
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
7208
7208
  xAxisDimension: string | null;
@@ -7298,8 +7298,8 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
7298
7298
  groupBy: string[] | null;
7299
7299
  stackBars: boolean | null;
7300
7300
  xAxisType: "time" | "category" | null;
7301
- xAxisLabel: string | null;
7302
- yAxisLabel: string | null;
7301
+ xAxisLabel: string;
7302
+ yAxisLabel: string;
7303
7303
  lineType: "line" | "area" | null;
7304
7304
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
7305
7305
  xAxisDimension: string | null;
@@ -7605,8 +7605,8 @@ export declare const toolDashboardV2ArgsSchemaTransformed: z.ZodEffects<z.ZodObj
7605
7605
  groupBy: string[] | null;
7606
7606
  stackBars: boolean | null;
7607
7607
  xAxisType: "time" | "category" | null;
7608
- xAxisLabel: string | null;
7609
- yAxisLabel: string | null;
7608
+ xAxisLabel: string;
7609
+ yAxisLabel: string;
7610
7610
  lineType: "line" | "area" | null;
7611
7611
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
7612
7612
  xAxisDimension: string | null;
@@ -52,16 +52,16 @@ export declare const toolRunQueryArgsSchema: z.ZodObject<{
52
52
  stackBars: z.ZodNullable<z.ZodBoolean>;
53
53
  lineType: z.ZodNullable<z.ZodEnum<["line", "area"]>>;
54
54
  funnelDataInput: z.ZodNullable<z.ZodEnum<["row", "column"]>>;
55
- xAxisLabel: z.ZodNullable<z.ZodString>;
56
- yAxisLabel: z.ZodNullable<z.ZodString>;
55
+ xAxisLabel: z.ZodString;
56
+ yAxisLabel: z.ZodString;
57
57
  secondaryYAxisMetric: z.ZodNullable<z.ZodString>;
58
58
  secondaryYAxisLabel: z.ZodNullable<z.ZodString>;
59
59
  }, "strip", z.ZodTypeAny, {
60
60
  groupBy: string[] | null;
61
61
  stackBars: boolean | null;
62
62
  xAxisType: "time" | "category" | null;
63
- xAxisLabel: string | null;
64
- yAxisLabel: string | null;
63
+ xAxisLabel: string;
64
+ yAxisLabel: string;
65
65
  lineType: "line" | "area" | null;
66
66
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
67
67
  xAxisDimension: string | null;
@@ -73,8 +73,8 @@ export declare const toolRunQueryArgsSchema: z.ZodObject<{
73
73
  groupBy: string[] | null;
74
74
  stackBars: boolean | null;
75
75
  xAxisType: "time" | "category" | null;
76
- xAxisLabel: string | null;
77
- yAxisLabel: string | null;
76
+ xAxisLabel: string;
77
+ yAxisLabel: string;
78
78
  lineType: "line" | "area" | null;
79
79
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
80
80
  xAxisDimension: string | null;
@@ -1677,8 +1677,8 @@ export declare const toolRunQueryArgsSchema: z.ZodObject<{
1677
1677
  groupBy: string[] | null;
1678
1678
  stackBars: boolean | null;
1679
1679
  xAxisType: "time" | "category" | null;
1680
- xAxisLabel: string | null;
1681
- yAxisLabel: string | null;
1680
+ xAxisLabel: string;
1681
+ yAxisLabel: string;
1682
1682
  lineType: "line" | "area" | null;
1683
1683
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
1684
1684
  xAxisDimension: string | null;
@@ -1976,8 +1976,8 @@ export declare const toolRunQueryArgsSchema: z.ZodObject<{
1976
1976
  groupBy: string[] | null;
1977
1977
  stackBars: boolean | null;
1978
1978
  xAxisType: "time" | "category" | null;
1979
- xAxisLabel: string | null;
1980
- yAxisLabel: string | null;
1979
+ xAxisLabel: string;
1980
+ yAxisLabel: string;
1981
1981
  lineType: "line" | "area" | null;
1982
1982
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
1983
1983
  xAxisDimension: string | null;
@@ -3368,16 +3368,16 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
3368
3368
  stackBars: z.ZodNullable<z.ZodBoolean>;
3369
3369
  lineType: z.ZodNullable<z.ZodEnum<["line", "area"]>>;
3370
3370
  funnelDataInput: z.ZodNullable<z.ZodEnum<["row", "column"]>>;
3371
- xAxisLabel: z.ZodNullable<z.ZodString>;
3372
- yAxisLabel: z.ZodNullable<z.ZodString>;
3371
+ xAxisLabel: z.ZodString;
3372
+ yAxisLabel: z.ZodString;
3373
3373
  secondaryYAxisMetric: z.ZodNullable<z.ZodString>;
3374
3374
  secondaryYAxisLabel: z.ZodNullable<z.ZodString>;
3375
3375
  }, "strip", z.ZodTypeAny, {
3376
3376
  groupBy: string[] | null;
3377
3377
  stackBars: boolean | null;
3378
3378
  xAxisType: "time" | "category" | null;
3379
- xAxisLabel: string | null;
3380
- yAxisLabel: string | null;
3379
+ xAxisLabel: string;
3380
+ yAxisLabel: string;
3381
3381
  lineType: "line" | "area" | null;
3382
3382
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
3383
3383
  xAxisDimension: string | null;
@@ -3389,8 +3389,8 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
3389
3389
  groupBy: string[] | null;
3390
3390
  stackBars: boolean | null;
3391
3391
  xAxisType: "time" | "category" | null;
3392
- xAxisLabel: string | null;
3393
- yAxisLabel: string | null;
3392
+ xAxisLabel: string;
3393
+ yAxisLabel: string;
3394
3394
  lineType: "line" | "area" | null;
3395
3395
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
3396
3396
  xAxisDimension: string | null;
@@ -3676,8 +3676,8 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
3676
3676
  groupBy: string[] | null;
3677
3677
  stackBars: boolean | null;
3678
3678
  xAxisType: "time" | "category" | null;
3679
- xAxisLabel: string | null;
3680
- yAxisLabel: string | null;
3679
+ xAxisLabel: string;
3680
+ yAxisLabel: string;
3681
3681
  lineType: "line" | "area" | null;
3682
3682
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
3683
3683
  xAxisDimension: string | null;
@@ -3987,8 +3987,8 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
3987
3987
  groupBy: string[] | null;
3988
3988
  stackBars: boolean | null;
3989
3989
  xAxisType: "time" | "category" | null;
3990
- xAxisLabel: string | null;
3991
- yAxisLabel: string | null;
3990
+ xAxisLabel: string;
3991
+ yAxisLabel: string;
3992
3992
  lineType: "line" | "area" | null;
3993
3993
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
3994
3994
  xAxisDimension: string | null;
@@ -4070,8 +4070,8 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
4070
4070
  groupBy: string[] | null;
4071
4071
  stackBars: boolean | null;
4072
4072
  xAxisType: "time" | "category" | null;
4073
- xAxisLabel: string | null;
4074
- yAxisLabel: string | null;
4073
+ xAxisLabel: string;
4074
+ yAxisLabel: string;
4075
4075
  lineType: "line" | "area" | null;
4076
4076
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
4077
4077
  xAxisDimension: string | null;
@@ -4381,8 +4381,8 @@ export declare const toolRunQueryArgsSchemaTransformed: z.ZodEffects<z.ZodObject
4381
4381
  groupBy: string[] | null;
4382
4382
  stackBars: boolean | null;
4383
4383
  xAxisType: "time" | "category" | null;
4384
- xAxisLabel: string | null;
4385
- yAxisLabel: string | null;
4384
+ xAxisLabel: string;
4385
+ yAxisLabel: string;
4386
4386
  lineType: "line" | "area" | null;
4387
4387
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
4388
4388
  xAxisDimension: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"toolRunQueryArgs.d.ts","sourceRoot":"","sources":["../../../../../../src/ee/AiAgent/schemas/tools/toolRunQueryArgs.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASvC,CAAC;AAER,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,iCAAiC,CAC3C,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;EAGnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
1
+ {"version":3,"file":"toolRunQueryArgs.d.ts","sourceRoot":"","sources":["../../../../../../src/ee/AiAgent/schemas/tools/toolRunQueryArgs.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASvC,CAAC;AAER,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,iCAAiC,CAC3C,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;EAGnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
@@ -77,11 +77,9 @@ const chartConfigSchema = z
77
77
  // Common display properties
78
78
  xAxisLabel: z
79
79
  .string()
80
- .nullable()
81
80
  .describe('A helpful label to explain the x-axis'),
82
81
  yAxisLabel: z
83
82
  .string()
84
- .nullable()
85
83
  .describe('A helpful label to explain the y-axis'),
86
84
  secondaryYAxisMetric: z
87
85
  .string()
@@ -1 +1 @@
1
- {"version":3,"file":"toolRunQueryArgs.js","sourceRoot":"","sources":["../../../../../../src/ee/AiAgent/schemas/tools/toolRunQueryArgs.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"toolRunQueryArgs.js","sourceRoot":"","sources":["../../../../../../src/ee/AiAgent/schemas/tools/toolRunQueryArgs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,wBAAwB,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,mBAAmB,CAAC;AAC7D,OAAO,eAAe,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,2BAA2B,MAAM,0BAA0B,CAAC;AAEnE,kDAAkD;AAClD,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/B,WAAW,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CACL,mFAAmF,CACtF;IACL,UAAU,EAAE,CAAC;SACR,KAAK,CAAC,gBAAgB,CAAC,EAAE,qBAAqB,EAAE,IAAI,EAAE,CAAC,CAAC;SACxD,QAAQ,CACL,wKAAwK,CAC3K;IACL,OAAO,EAAE,CAAC;SACL,KAAK,CAAC,gBAAgB,CAAC,EAAE,qBAAqB,EAAE,IAAI,EAAE,CAAC,CAAC;SACxD,QAAQ,CACL,wFAAwF,CAC3F;IACL,KAAK,EAAE,CAAC;SACH,KAAK,CAAC,eAAe,CAAC;SACtB,QAAQ,CACL,uFAAuF,CAC1F;IACL,KAAK,EAAE,CAAC;SACH,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACL,8DAA8D,CACjE;CACR,CAAC,CAAC;AAEH,mDAAmD;AACnD,MAAM,iBAAiB,GAAG,CAAC;KACtB,MAAM,CAAC;IACJ,cAAc,EAAE,CAAC;SACZ,IAAI,CAAC;QACF,OAAO;QACP,KAAK;QACL,YAAY;QACZ,MAAM;QACN,SAAS;QACT,KAAK;QACL,QAAQ;KACX,CAAC;SACD,QAAQ,CAAC,0CAA0C,CAAC;IAEzD,uBAAuB;IACvB,cAAc,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACL,0FAA0F,CAC7F;IACL,YAAY,EAAE,CAAC;SACV,KAAK,CAAC,gBAAgB,CAAC,EAAE,qBAAqB,EAAE,IAAI,EAAE,CAAC,CAAC;SACxD,QAAQ,EAAE;SACV,QAAQ,CACL,uHAAuH,CAC1H;IAEL,0BAA0B;IAC1B,OAAO,EAAE,CAAC;SACL,KAAK,CAAC,gBAAgB,CAAC,EAAE,qBAAqB,EAAE,IAAI,EAAE,CAAC,CAAC;SACxD,QAAQ,EAAE;SACV,QAAQ,CACL,oZAAoZ,CACvZ;IAEL,wCAAwC;IACxC,SAAS,EAAE,CAAC;SACP,IAAI,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;SAC1B,QAAQ,EAAE;SACV,QAAQ,CACL,sJAAsJ,CACzJ;IACL,SAAS,EAAE,CAAC;SACP,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACL,0IAA0I,CAC7I;IAEL,sBAAsB;IACtB,QAAQ,EAAE,CAAC;SACN,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;SACtB,QAAQ,EAAE;SACV,QAAQ,CACL,oGAAoG,CACvG;IAEL,wBAAwB;IACxB,eAAe,EAAE,CAAC;SACb,IAAI,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;SACvB,QAAQ,EAAE;SACV,QAAQ,CACL,2JAA2J,CAC9J;IAEL,4BAA4B;IAC5B,UAAU,EAAE,CAAC;SACR,MAAM,EAAE;SACR,QAAQ,CAAC,uCAAuC,CAAC;IACtD,UAAU,EAAE,CAAC;SACR,MAAM,EAAE;SACR,QAAQ,CAAC,uCAAuC,CAAC;IACtD,oBAAoB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACL,6MAA6M,CAChN;IACL,mBAAmB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;CAC5D,CAAC;KACD,QAAQ,EAAE,CAAC;AAEhB,MAAM,CAAC,MAAM,0BAA0B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BzC,CAAC;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG,gBAAgB,CAAC;IACnD,IAAI,EAAE,YAAY,CAAC,YAAY;IAC/B,WAAW,EAAE,0BAA0B;CAC1C,CAAC;KACG,MAAM,CAAC;IACJ,GAAG,2BAA2B,CAAC,KAAK;IACpC,WAAW,EAAE,iBAAiB;IAC9B,WAAW,EAAE,iBAAiB;IAC9B,aAAa,EAAE,mBAAmB;IAClC,iBAAiB,EAAE,gBAAgB;IACnC,OAAO,EAAE,eAAe,CAAC,QAAQ,EAAE;CACtC,CAAC;KACD,KAAK,EAAE,CAAC;AAIb,MAAM,CAAC,MAAM,iCAAiC,GAAG,sBAAsB;KAClE,MAAM,CAAC;IACJ,aAAa,EAAE,mBAAmB,CAAC,OAAO,CAAC,IAAI,CAAC;IAChD,iBAAiB,EAAE,gBAAgB,CAAC,OAAO,CAAC,IAAI,CAAC;IACjD,WAAW,EAAE,iBAAiB,CAAC,OAAO,CAAC,IAAI,CAAC;CAC/C,CAAC;KACD,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;IAClB,GAAG,IAAI;IACP,OAAO,EAAE,wBAAwB,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC;CACxD,CAAC,CAAC,CAAC;AAMR,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,QAAQ,EAAE,wBAAwB;CACrC,CAAC,CAAC"}
@@ -341,8 +341,8 @@ export declare const parseVizConfig: (vizConfigUnknown: object | null, maxLimit?
341
341
  groupBy: string[] | null;
342
342
  stackBars: boolean | null;
343
343
  xAxisType: "time" | "category" | null;
344
- xAxisLabel: string | null;
345
- yAxisLabel: string | null;
344
+ xAxisLabel: string;
345
+ yAxisLabel: string;
346
346
  lineType: "line" | "area" | null;
347
347
  defaultVizType: "table" | "bar" | "line" | "scatter" | "pie" | "funnel" | "horizontal";
348
348
  xAxisDimension: string | null;