@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
|
@@ -1357,22 +1357,22 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
1357
1357
|
dimensions: string[];
|
|
1358
1358
|
metrics: string[];
|
|
1359
1359
|
limit: number | null;
|
|
1360
|
+
exploreName: string;
|
|
1360
1361
|
sorts: {
|
|
1361
1362
|
fieldId: string;
|
|
1362
1363
|
descending: boolean;
|
|
1363
1364
|
nullsFirst: boolean | null;
|
|
1364
1365
|
}[];
|
|
1365
|
-
exploreName: string;
|
|
1366
1366
|
}, {
|
|
1367
1367
|
dimensions: string[];
|
|
1368
1368
|
metrics: string[];
|
|
1369
1369
|
limit: number | null;
|
|
1370
|
+
exploreName: string;
|
|
1370
1371
|
sorts: {
|
|
1371
1372
|
fieldId: string;
|
|
1372
1373
|
descending: boolean;
|
|
1373
1374
|
nullsFirst: boolean | null;
|
|
1374
1375
|
}[];
|
|
1375
|
-
exploreName: string;
|
|
1376
1376
|
}>;
|
|
1377
1377
|
}, "strip", z.ZodTypeAny, {
|
|
1378
1378
|
tableCalculations: ({
|
|
@@ -1652,12 +1652,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
1652
1652
|
dimensions: string[];
|
|
1653
1653
|
metrics: string[];
|
|
1654
1654
|
limit: number | null;
|
|
1655
|
+
exploreName: string;
|
|
1655
1656
|
sorts: {
|
|
1656
1657
|
fieldId: string;
|
|
1657
1658
|
descending: boolean;
|
|
1658
1659
|
nullsFirst: boolean | null;
|
|
1659
1660
|
}[];
|
|
1660
|
-
exploreName: string;
|
|
1661
1661
|
};
|
|
1662
1662
|
}, {
|
|
1663
1663
|
tableCalculations: ({
|
|
@@ -1937,12 +1937,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
1937
1937
|
dimensions: string[];
|
|
1938
1938
|
metrics: string[];
|
|
1939
1939
|
limit: number | null;
|
|
1940
|
+
exploreName: string;
|
|
1940
1941
|
sorts: {
|
|
1941
1942
|
fieldId: string;
|
|
1942
1943
|
descending: boolean;
|
|
1943
1944
|
nullsFirst: boolean | null;
|
|
1944
1945
|
}[];
|
|
1945
|
-
exploreName: string;
|
|
1946
1946
|
};
|
|
1947
1947
|
}>, z.ZodObject<{
|
|
1948
1948
|
customMetrics: z.ZodNullable<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
@@ -3302,12 +3302,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
3302
3302
|
yAxisLabel: z.ZodNullable<z.ZodString>;
|
|
3303
3303
|
}, "strip", z.ZodTypeAny, {
|
|
3304
3304
|
limit: number | null;
|
|
3305
|
+
exploreName: string;
|
|
3305
3306
|
sorts: {
|
|
3306
3307
|
fieldId: string;
|
|
3307
3308
|
descending: boolean;
|
|
3308
3309
|
nullsFirst: boolean | null;
|
|
3309
3310
|
}[];
|
|
3310
|
-
exploreName: string;
|
|
3311
3311
|
xDimension: string;
|
|
3312
3312
|
yMetrics: string[];
|
|
3313
3313
|
breakdownByDimension: string | null;
|
|
@@ -3316,12 +3316,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
3316
3316
|
lineType: "line" | "area";
|
|
3317
3317
|
}, {
|
|
3318
3318
|
limit: number | null;
|
|
3319
|
+
exploreName: string;
|
|
3319
3320
|
sorts: {
|
|
3320
3321
|
fieldId: string;
|
|
3321
3322
|
descending: boolean;
|
|
3322
3323
|
nullsFirst: boolean | null;
|
|
3323
3324
|
}[];
|
|
3324
|
-
exploreName: string;
|
|
3325
3325
|
xDimension: string;
|
|
3326
3326
|
yMetrics: string[];
|
|
3327
3327
|
breakdownByDimension: string | null;
|
|
@@ -3605,12 +3605,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
3605
3605
|
}[] | null;
|
|
3606
3606
|
vizConfig: {
|
|
3607
3607
|
limit: number | null;
|
|
3608
|
+
exploreName: string;
|
|
3608
3609
|
sorts: {
|
|
3609
3610
|
fieldId: string;
|
|
3610
3611
|
descending: boolean;
|
|
3611
3612
|
nullsFirst: boolean | null;
|
|
3612
3613
|
}[];
|
|
3613
|
-
exploreName: string;
|
|
3614
3614
|
xDimension: string;
|
|
3615
3615
|
yMetrics: string[];
|
|
3616
3616
|
breakdownByDimension: string | null;
|
|
@@ -3894,12 +3894,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
3894
3894
|
}[] | null;
|
|
3895
3895
|
vizConfig: {
|
|
3896
3896
|
limit: number | null;
|
|
3897
|
+
exploreName: string;
|
|
3897
3898
|
sorts: {
|
|
3898
3899
|
fieldId: string;
|
|
3899
3900
|
descending: boolean;
|
|
3900
3901
|
nullsFirst: boolean | null;
|
|
3901
3902
|
}[];
|
|
3902
|
-
exploreName: string;
|
|
3903
3903
|
xDimension: string;
|
|
3904
3904
|
yMetrics: string[];
|
|
3905
3905
|
breakdownByDimension: string | null;
|
|
@@ -5266,12 +5266,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
5266
5266
|
yAxisLabel: z.ZodNullable<z.ZodString>;
|
|
5267
5267
|
}, "strip", z.ZodTypeAny, {
|
|
5268
5268
|
limit: number | null;
|
|
5269
|
+
exploreName: string;
|
|
5269
5270
|
sorts: {
|
|
5270
5271
|
fieldId: string;
|
|
5271
5272
|
descending: boolean;
|
|
5272
5273
|
nullsFirst: boolean | null;
|
|
5273
5274
|
}[];
|
|
5274
|
-
exploreName: string;
|
|
5275
5275
|
xDimension: string;
|
|
5276
5276
|
yMetrics: string[];
|
|
5277
5277
|
breakdownByDimension: string | null;
|
|
@@ -5281,12 +5281,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
5281
5281
|
yAxisLabel: string | null;
|
|
5282
5282
|
}, {
|
|
5283
5283
|
limit: number | null;
|
|
5284
|
+
exploreName: string;
|
|
5284
5285
|
sorts: {
|
|
5285
5286
|
fieldId: string;
|
|
5286
5287
|
descending: boolean;
|
|
5287
5288
|
nullsFirst: boolean | null;
|
|
5288
5289
|
}[];
|
|
5289
|
-
exploreName: string;
|
|
5290
5290
|
xDimension: string;
|
|
5291
5291
|
yMetrics: string[];
|
|
5292
5292
|
breakdownByDimension: string | null;
|
|
@@ -5571,12 +5571,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
5571
5571
|
}[] | null;
|
|
5572
5572
|
vizConfig: {
|
|
5573
5573
|
limit: number | null;
|
|
5574
|
+
exploreName: string;
|
|
5574
5575
|
sorts: {
|
|
5575
5576
|
fieldId: string;
|
|
5576
5577
|
descending: boolean;
|
|
5577
5578
|
nullsFirst: boolean | null;
|
|
5578
5579
|
}[];
|
|
5579
|
-
exploreName: string;
|
|
5580
5580
|
xDimension: string;
|
|
5581
5581
|
yMetrics: string[];
|
|
5582
5582
|
breakdownByDimension: string | null;
|
|
@@ -5861,12 +5861,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
5861
5861
|
}[] | null;
|
|
5862
5862
|
vizConfig: {
|
|
5863
5863
|
limit: number | null;
|
|
5864
|
+
exploreName: string;
|
|
5864
5865
|
sorts: {
|
|
5865
5866
|
fieldId: string;
|
|
5866
5867
|
descending: boolean;
|
|
5867
5868
|
nullsFirst: boolean | null;
|
|
5868
5869
|
}[];
|
|
5869
|
-
exploreName: string;
|
|
5870
5870
|
xDimension: string;
|
|
5871
5871
|
yMetrics: string[];
|
|
5872
5872
|
breakdownByDimension: string | null;
|
|
@@ -6154,12 +6154,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
6154
6154
|
dimensions: string[];
|
|
6155
6155
|
metrics: string[];
|
|
6156
6156
|
limit: number | null;
|
|
6157
|
+
exploreName: string;
|
|
6157
6158
|
sorts: {
|
|
6158
6159
|
fieldId: string;
|
|
6159
6160
|
descending: boolean;
|
|
6160
6161
|
nullsFirst: boolean | null;
|
|
6161
6162
|
}[];
|
|
6162
|
-
exploreName: string;
|
|
6163
6163
|
};
|
|
6164
6164
|
} | {
|
|
6165
6165
|
followUpTools: never[];
|
|
@@ -6438,12 +6438,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
6438
6438
|
}[] | null;
|
|
6439
6439
|
vizConfig: {
|
|
6440
6440
|
limit: number | null;
|
|
6441
|
+
exploreName: string;
|
|
6441
6442
|
sorts: {
|
|
6442
6443
|
fieldId: string;
|
|
6443
6444
|
descending: boolean;
|
|
6444
6445
|
nullsFirst: boolean | null;
|
|
6445
6446
|
}[];
|
|
6446
|
-
exploreName: string;
|
|
6447
6447
|
xDimension: string;
|
|
6448
6448
|
yMetrics: string[];
|
|
6449
6449
|
breakdownByDimension: string | null;
|
|
@@ -6728,12 +6728,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
6728
6728
|
}[] | null;
|
|
6729
6729
|
vizConfig: {
|
|
6730
6730
|
limit: number | null;
|
|
6731
|
+
exploreName: string;
|
|
6731
6732
|
sorts: {
|
|
6732
6733
|
fieldId: string;
|
|
6733
6734
|
descending: boolean;
|
|
6734
6735
|
nullsFirst: boolean | null;
|
|
6735
6736
|
}[];
|
|
6736
|
-
exploreName: string;
|
|
6737
6737
|
xDimension: string;
|
|
6738
6738
|
yMetrics: string[];
|
|
6739
6739
|
breakdownByDimension: string | null;
|
|
@@ -7020,12 +7020,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
7020
7020
|
dimensions: string[];
|
|
7021
7021
|
metrics: string[];
|
|
7022
7022
|
limit: number | null;
|
|
7023
|
+
exploreName: string;
|
|
7023
7024
|
sorts: {
|
|
7024
7025
|
fieldId: string;
|
|
7025
7026
|
descending: boolean;
|
|
7026
7027
|
nullsFirst: boolean | null;
|
|
7027
7028
|
}[];
|
|
7028
|
-
exploreName: string;
|
|
7029
7029
|
};
|
|
7030
7030
|
} | {
|
|
7031
7031
|
tableCalculations: ({
|
|
@@ -7303,12 +7303,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
7303
7303
|
}[] | null;
|
|
7304
7304
|
vizConfig: {
|
|
7305
7305
|
limit: number | null;
|
|
7306
|
+
exploreName: string;
|
|
7306
7307
|
sorts: {
|
|
7307
7308
|
fieldId: string;
|
|
7308
7309
|
descending: boolean;
|
|
7309
7310
|
nullsFirst: boolean | null;
|
|
7310
7311
|
}[];
|
|
7311
|
-
exploreName: string;
|
|
7312
7312
|
xDimension: string;
|
|
7313
7313
|
yMetrics: string[];
|
|
7314
7314
|
breakdownByDimension: string | null;
|
|
@@ -7592,12 +7592,12 @@ declare const dashboardVisualizationSchema: z.ZodEffects<z.ZodUnion<[z.ZodObject
|
|
|
7592
7592
|
}[] | null;
|
|
7593
7593
|
vizConfig: {
|
|
7594
7594
|
limit: number | null;
|
|
7595
|
+
exploreName: string;
|
|
7595
7596
|
sorts: {
|
|
7596
7597
|
fieldId: string;
|
|
7597
7598
|
descending: boolean;
|
|
7598
7599
|
nullsFirst: boolean | null;
|
|
7599
7600
|
}[];
|
|
7600
|
-
exploreName: string;
|
|
7601
7601
|
xDimension: string;
|
|
7602
7602
|
yMetrics: string[];
|
|
7603
7603
|
breakdownByDimension: string | null;
|
|
@@ -8967,22 +8967,22 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
8967
8967
|
dimensions: string[];
|
|
8968
8968
|
metrics: string[];
|
|
8969
8969
|
limit: number | null;
|
|
8970
|
+
exploreName: string;
|
|
8970
8971
|
sorts: {
|
|
8971
8972
|
fieldId: string;
|
|
8972
8973
|
descending: boolean;
|
|
8973
8974
|
nullsFirst: boolean | null;
|
|
8974
8975
|
}[];
|
|
8975
|
-
exploreName: string;
|
|
8976
8976
|
}, {
|
|
8977
8977
|
dimensions: string[];
|
|
8978
8978
|
metrics: string[];
|
|
8979
8979
|
limit: number | null;
|
|
8980
|
+
exploreName: string;
|
|
8980
8981
|
sorts: {
|
|
8981
8982
|
fieldId: string;
|
|
8982
8983
|
descending: boolean;
|
|
8983
8984
|
nullsFirst: boolean | null;
|
|
8984
8985
|
}[];
|
|
8985
|
-
exploreName: string;
|
|
8986
8986
|
}>;
|
|
8987
8987
|
}, "strip", z.ZodTypeAny, {
|
|
8988
8988
|
tableCalculations: ({
|
|
@@ -9262,12 +9262,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
9262
9262
|
dimensions: string[];
|
|
9263
9263
|
metrics: string[];
|
|
9264
9264
|
limit: number | null;
|
|
9265
|
+
exploreName: string;
|
|
9265
9266
|
sorts: {
|
|
9266
9267
|
fieldId: string;
|
|
9267
9268
|
descending: boolean;
|
|
9268
9269
|
nullsFirst: boolean | null;
|
|
9269
9270
|
}[];
|
|
9270
|
-
exploreName: string;
|
|
9271
9271
|
};
|
|
9272
9272
|
}, {
|
|
9273
9273
|
tableCalculations: ({
|
|
@@ -9547,12 +9547,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
9547
9547
|
dimensions: string[];
|
|
9548
9548
|
metrics: string[];
|
|
9549
9549
|
limit: number | null;
|
|
9550
|
+
exploreName: string;
|
|
9550
9551
|
sorts: {
|
|
9551
9552
|
fieldId: string;
|
|
9552
9553
|
descending: boolean;
|
|
9553
9554
|
nullsFirst: boolean | null;
|
|
9554
9555
|
}[];
|
|
9555
|
-
exploreName: string;
|
|
9556
9556
|
};
|
|
9557
9557
|
}>, z.ZodObject<{
|
|
9558
9558
|
customMetrics: z.ZodNullable<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
@@ -10912,12 +10912,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
10912
10912
|
yAxisLabel: z.ZodNullable<z.ZodString>;
|
|
10913
10913
|
}, "strip", z.ZodTypeAny, {
|
|
10914
10914
|
limit: number | null;
|
|
10915
|
+
exploreName: string;
|
|
10915
10916
|
sorts: {
|
|
10916
10917
|
fieldId: string;
|
|
10917
10918
|
descending: boolean;
|
|
10918
10919
|
nullsFirst: boolean | null;
|
|
10919
10920
|
}[];
|
|
10920
|
-
exploreName: string;
|
|
10921
10921
|
xDimension: string;
|
|
10922
10922
|
yMetrics: string[];
|
|
10923
10923
|
breakdownByDimension: string | null;
|
|
@@ -10926,12 +10926,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
10926
10926
|
lineType: "line" | "area";
|
|
10927
10927
|
}, {
|
|
10928
10928
|
limit: number | null;
|
|
10929
|
+
exploreName: string;
|
|
10929
10930
|
sorts: {
|
|
10930
10931
|
fieldId: string;
|
|
10931
10932
|
descending: boolean;
|
|
10932
10933
|
nullsFirst: boolean | null;
|
|
10933
10934
|
}[];
|
|
10934
|
-
exploreName: string;
|
|
10935
10935
|
xDimension: string;
|
|
10936
10936
|
yMetrics: string[];
|
|
10937
10937
|
breakdownByDimension: string | null;
|
|
@@ -11215,12 +11215,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
11215
11215
|
}[] | null;
|
|
11216
11216
|
vizConfig: {
|
|
11217
11217
|
limit: number | null;
|
|
11218
|
+
exploreName: string;
|
|
11218
11219
|
sorts: {
|
|
11219
11220
|
fieldId: string;
|
|
11220
11221
|
descending: boolean;
|
|
11221
11222
|
nullsFirst: boolean | null;
|
|
11222
11223
|
}[];
|
|
11223
|
-
exploreName: string;
|
|
11224
11224
|
xDimension: string;
|
|
11225
11225
|
yMetrics: string[];
|
|
11226
11226
|
breakdownByDimension: string | null;
|
|
@@ -11504,12 +11504,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
11504
11504
|
}[] | null;
|
|
11505
11505
|
vizConfig: {
|
|
11506
11506
|
limit: number | null;
|
|
11507
|
+
exploreName: string;
|
|
11507
11508
|
sorts: {
|
|
11508
11509
|
fieldId: string;
|
|
11509
11510
|
descending: boolean;
|
|
11510
11511
|
nullsFirst: boolean | null;
|
|
11511
11512
|
}[];
|
|
11512
|
-
exploreName: string;
|
|
11513
11513
|
xDimension: string;
|
|
11514
11514
|
yMetrics: string[];
|
|
11515
11515
|
breakdownByDimension: string | null;
|
|
@@ -12876,12 +12876,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
12876
12876
|
yAxisLabel: z.ZodNullable<z.ZodString>;
|
|
12877
12877
|
}, "strip", z.ZodTypeAny, {
|
|
12878
12878
|
limit: number | null;
|
|
12879
|
+
exploreName: string;
|
|
12879
12880
|
sorts: {
|
|
12880
12881
|
fieldId: string;
|
|
12881
12882
|
descending: boolean;
|
|
12882
12883
|
nullsFirst: boolean | null;
|
|
12883
12884
|
}[];
|
|
12884
|
-
exploreName: string;
|
|
12885
12885
|
xDimension: string;
|
|
12886
12886
|
yMetrics: string[];
|
|
12887
12887
|
breakdownByDimension: string | null;
|
|
@@ -12891,12 +12891,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
12891
12891
|
yAxisLabel: string | null;
|
|
12892
12892
|
}, {
|
|
12893
12893
|
limit: number | null;
|
|
12894
|
+
exploreName: string;
|
|
12894
12895
|
sorts: {
|
|
12895
12896
|
fieldId: string;
|
|
12896
12897
|
descending: boolean;
|
|
12897
12898
|
nullsFirst: boolean | null;
|
|
12898
12899
|
}[];
|
|
12899
|
-
exploreName: string;
|
|
12900
12900
|
xDimension: string;
|
|
12901
12901
|
yMetrics: string[];
|
|
12902
12902
|
breakdownByDimension: string | null;
|
|
@@ -13181,12 +13181,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
13181
13181
|
}[] | null;
|
|
13182
13182
|
vizConfig: {
|
|
13183
13183
|
limit: number | null;
|
|
13184
|
+
exploreName: string;
|
|
13184
13185
|
sorts: {
|
|
13185
13186
|
fieldId: string;
|
|
13186
13187
|
descending: boolean;
|
|
13187
13188
|
nullsFirst: boolean | null;
|
|
13188
13189
|
}[];
|
|
13189
|
-
exploreName: string;
|
|
13190
13190
|
xDimension: string;
|
|
13191
13191
|
yMetrics: string[];
|
|
13192
13192
|
breakdownByDimension: string | null;
|
|
@@ -13471,12 +13471,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
13471
13471
|
}[] | null;
|
|
13472
13472
|
vizConfig: {
|
|
13473
13473
|
limit: number | null;
|
|
13474
|
+
exploreName: string;
|
|
13474
13475
|
sorts: {
|
|
13475
13476
|
fieldId: string;
|
|
13476
13477
|
descending: boolean;
|
|
13477
13478
|
nullsFirst: boolean | null;
|
|
13478
13479
|
}[];
|
|
13479
|
-
exploreName: string;
|
|
13480
13480
|
xDimension: string;
|
|
13481
13481
|
yMetrics: string[];
|
|
13482
13482
|
breakdownByDimension: string | null;
|
|
@@ -13764,12 +13764,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
13764
13764
|
dimensions: string[];
|
|
13765
13765
|
metrics: string[];
|
|
13766
13766
|
limit: number | null;
|
|
13767
|
+
exploreName: string;
|
|
13767
13768
|
sorts: {
|
|
13768
13769
|
fieldId: string;
|
|
13769
13770
|
descending: boolean;
|
|
13770
13771
|
nullsFirst: boolean | null;
|
|
13771
13772
|
}[];
|
|
13772
|
-
exploreName: string;
|
|
13773
13773
|
};
|
|
13774
13774
|
} | {
|
|
13775
13775
|
followUpTools: never[];
|
|
@@ -14048,12 +14048,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
14048
14048
|
}[] | null;
|
|
14049
14049
|
vizConfig: {
|
|
14050
14050
|
limit: number | null;
|
|
14051
|
+
exploreName: string;
|
|
14051
14052
|
sorts: {
|
|
14052
14053
|
fieldId: string;
|
|
14053
14054
|
descending: boolean;
|
|
14054
14055
|
nullsFirst: boolean | null;
|
|
14055
14056
|
}[];
|
|
14056
|
-
exploreName: string;
|
|
14057
14057
|
xDimension: string;
|
|
14058
14058
|
yMetrics: string[];
|
|
14059
14059
|
breakdownByDimension: string | null;
|
|
@@ -14338,12 +14338,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
14338
14338
|
}[] | null;
|
|
14339
14339
|
vizConfig: {
|
|
14340
14340
|
limit: number | null;
|
|
14341
|
+
exploreName: string;
|
|
14341
14342
|
sorts: {
|
|
14342
14343
|
fieldId: string;
|
|
14343
14344
|
descending: boolean;
|
|
14344
14345
|
nullsFirst: boolean | null;
|
|
14345
14346
|
}[];
|
|
14346
|
-
exploreName: string;
|
|
14347
14347
|
xDimension: string;
|
|
14348
14348
|
yMetrics: string[];
|
|
14349
14349
|
breakdownByDimension: string | null;
|
|
@@ -14630,12 +14630,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
14630
14630
|
dimensions: string[];
|
|
14631
14631
|
metrics: string[];
|
|
14632
14632
|
limit: number | null;
|
|
14633
|
+
exploreName: string;
|
|
14633
14634
|
sorts: {
|
|
14634
14635
|
fieldId: string;
|
|
14635
14636
|
descending: boolean;
|
|
14636
14637
|
nullsFirst: boolean | null;
|
|
14637
14638
|
}[];
|
|
14638
|
-
exploreName: string;
|
|
14639
14639
|
};
|
|
14640
14640
|
} | {
|
|
14641
14641
|
tableCalculations: ({
|
|
@@ -14913,12 +14913,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
14913
14913
|
}[] | null;
|
|
14914
14914
|
vizConfig: {
|
|
14915
14915
|
limit: number | null;
|
|
14916
|
+
exploreName: string;
|
|
14916
14917
|
sorts: {
|
|
14917
14918
|
fieldId: string;
|
|
14918
14919
|
descending: boolean;
|
|
14919
14920
|
nullsFirst: boolean | null;
|
|
14920
14921
|
}[];
|
|
14921
|
-
exploreName: string;
|
|
14922
14922
|
xDimension: string;
|
|
14923
14923
|
yMetrics: string[];
|
|
14924
14924
|
breakdownByDimension: string | null;
|
|
@@ -15202,12 +15202,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
15202
15202
|
}[] | null;
|
|
15203
15203
|
vizConfig: {
|
|
15204
15204
|
limit: number | null;
|
|
15205
|
+
exploreName: string;
|
|
15205
15206
|
sorts: {
|
|
15206
15207
|
fieldId: string;
|
|
15207
15208
|
descending: boolean;
|
|
15208
15209
|
nullsFirst: boolean | null;
|
|
15209
15210
|
}[];
|
|
15210
|
-
exploreName: string;
|
|
15211
15211
|
xDimension: string;
|
|
15212
15212
|
yMetrics: string[];
|
|
15213
15213
|
breakdownByDimension: string | null;
|
|
@@ -15499,12 +15499,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
15499
15499
|
dimensions: string[];
|
|
15500
15500
|
metrics: string[];
|
|
15501
15501
|
limit: number | null;
|
|
15502
|
+
exploreName: string;
|
|
15502
15503
|
sorts: {
|
|
15503
15504
|
fieldId: string;
|
|
15504
15505
|
descending: boolean;
|
|
15505
15506
|
nullsFirst: boolean | null;
|
|
15506
15507
|
}[];
|
|
15507
|
-
exploreName: string;
|
|
15508
15508
|
};
|
|
15509
15509
|
} | {
|
|
15510
15510
|
followUpTools: never[];
|
|
@@ -15783,12 +15783,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
15783
15783
|
}[] | null;
|
|
15784
15784
|
vizConfig: {
|
|
15785
15785
|
limit: number | null;
|
|
15786
|
+
exploreName: string;
|
|
15786
15787
|
sorts: {
|
|
15787
15788
|
fieldId: string;
|
|
15788
15789
|
descending: boolean;
|
|
15789
15790
|
nullsFirst: boolean | null;
|
|
15790
15791
|
}[];
|
|
15791
|
-
exploreName: string;
|
|
15792
15792
|
xDimension: string;
|
|
15793
15793
|
yMetrics: string[];
|
|
15794
15794
|
breakdownByDimension: string | null;
|
|
@@ -16073,12 +16073,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
16073
16073
|
}[] | null;
|
|
16074
16074
|
vizConfig: {
|
|
16075
16075
|
limit: number | null;
|
|
16076
|
+
exploreName: string;
|
|
16076
16077
|
sorts: {
|
|
16077
16078
|
fieldId: string;
|
|
16078
16079
|
descending: boolean;
|
|
16079
16080
|
nullsFirst: boolean | null;
|
|
16080
16081
|
}[];
|
|
16081
|
-
exploreName: string;
|
|
16082
16082
|
xDimension: string;
|
|
16083
16083
|
yMetrics: string[];
|
|
16084
16084
|
breakdownByDimension: string | null;
|
|
@@ -16369,12 +16369,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
16369
16369
|
dimensions: string[];
|
|
16370
16370
|
metrics: string[];
|
|
16371
16371
|
limit: number | null;
|
|
16372
|
+
exploreName: string;
|
|
16372
16373
|
sorts: {
|
|
16373
16374
|
fieldId: string;
|
|
16374
16375
|
descending: boolean;
|
|
16375
16376
|
nullsFirst: boolean | null;
|
|
16376
16377
|
}[];
|
|
16377
|
-
exploreName: string;
|
|
16378
16378
|
};
|
|
16379
16379
|
} | {
|
|
16380
16380
|
tableCalculations: ({
|
|
@@ -16652,12 +16652,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
16652
16652
|
}[] | null;
|
|
16653
16653
|
vizConfig: {
|
|
16654
16654
|
limit: number | null;
|
|
16655
|
+
exploreName: string;
|
|
16655
16656
|
sorts: {
|
|
16656
16657
|
fieldId: string;
|
|
16657
16658
|
descending: boolean;
|
|
16658
16659
|
nullsFirst: boolean | null;
|
|
16659
16660
|
}[];
|
|
16660
|
-
exploreName: string;
|
|
16661
16661
|
xDimension: string;
|
|
16662
16662
|
yMetrics: string[];
|
|
16663
16663
|
breakdownByDimension: string | null;
|
|
@@ -16941,12 +16941,12 @@ export declare const toolDashboardArgsSchema: z.ZodObject<{
|
|
|
16941
16941
|
}[] | null;
|
|
16942
16942
|
vizConfig: {
|
|
16943
16943
|
limit: number | null;
|
|
16944
|
+
exploreName: string;
|
|
16944
16945
|
sorts: {
|
|
16945
16946
|
fieldId: string;
|
|
16946
16947
|
descending: boolean;
|
|
16947
16948
|
nullsFirst: boolean | null;
|
|
16948
16949
|
}[];
|
|
16949
|
-
exploreName: string;
|
|
16950
16950
|
xDimension: string;
|
|
16951
16951
|
yMetrics: string[];
|
|
16952
16952
|
breakdownByDimension: string | null;
|
|
@@ -18317,22 +18317,22 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
18317
18317
|
dimensions: string[];
|
|
18318
18318
|
metrics: string[];
|
|
18319
18319
|
limit: number | null;
|
|
18320
|
+
exploreName: string;
|
|
18320
18321
|
sorts: {
|
|
18321
18322
|
fieldId: string;
|
|
18322
18323
|
descending: boolean;
|
|
18323
18324
|
nullsFirst: boolean | null;
|
|
18324
18325
|
}[];
|
|
18325
|
-
exploreName: string;
|
|
18326
18326
|
}, {
|
|
18327
18327
|
dimensions: string[];
|
|
18328
18328
|
metrics: string[];
|
|
18329
18329
|
limit: number | null;
|
|
18330
|
+
exploreName: string;
|
|
18330
18331
|
sorts: {
|
|
18331
18332
|
fieldId: string;
|
|
18332
18333
|
descending: boolean;
|
|
18333
18334
|
nullsFirst: boolean | null;
|
|
18334
18335
|
}[];
|
|
18335
|
-
exploreName: string;
|
|
18336
18336
|
}>;
|
|
18337
18337
|
}, "strip", z.ZodTypeAny, {
|
|
18338
18338
|
tableCalculations: ({
|
|
@@ -18612,12 +18612,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
18612
18612
|
dimensions: string[];
|
|
18613
18613
|
metrics: string[];
|
|
18614
18614
|
limit: number | null;
|
|
18615
|
+
exploreName: string;
|
|
18615
18616
|
sorts: {
|
|
18616
18617
|
fieldId: string;
|
|
18617
18618
|
descending: boolean;
|
|
18618
18619
|
nullsFirst: boolean | null;
|
|
18619
18620
|
}[];
|
|
18620
|
-
exploreName: string;
|
|
18621
18621
|
};
|
|
18622
18622
|
}, {
|
|
18623
18623
|
tableCalculations: ({
|
|
@@ -18897,12 +18897,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
18897
18897
|
dimensions: string[];
|
|
18898
18898
|
metrics: string[];
|
|
18899
18899
|
limit: number | null;
|
|
18900
|
+
exploreName: string;
|
|
18900
18901
|
sorts: {
|
|
18901
18902
|
fieldId: string;
|
|
18902
18903
|
descending: boolean;
|
|
18903
18904
|
nullsFirst: boolean | null;
|
|
18904
18905
|
}[];
|
|
18905
|
-
exploreName: string;
|
|
18906
18906
|
};
|
|
18907
18907
|
}>, z.ZodObject<{
|
|
18908
18908
|
customMetrics: z.ZodNullable<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
@@ -20262,12 +20262,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
20262
20262
|
yAxisLabel: z.ZodNullable<z.ZodString>;
|
|
20263
20263
|
}, "strip", z.ZodTypeAny, {
|
|
20264
20264
|
limit: number | null;
|
|
20265
|
+
exploreName: string;
|
|
20265
20266
|
sorts: {
|
|
20266
20267
|
fieldId: string;
|
|
20267
20268
|
descending: boolean;
|
|
20268
20269
|
nullsFirst: boolean | null;
|
|
20269
20270
|
}[];
|
|
20270
|
-
exploreName: string;
|
|
20271
20271
|
xDimension: string;
|
|
20272
20272
|
yMetrics: string[];
|
|
20273
20273
|
breakdownByDimension: string | null;
|
|
@@ -20276,12 +20276,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
20276
20276
|
lineType: "line" | "area";
|
|
20277
20277
|
}, {
|
|
20278
20278
|
limit: number | null;
|
|
20279
|
+
exploreName: string;
|
|
20279
20280
|
sorts: {
|
|
20280
20281
|
fieldId: string;
|
|
20281
20282
|
descending: boolean;
|
|
20282
20283
|
nullsFirst: boolean | null;
|
|
20283
20284
|
}[];
|
|
20284
|
-
exploreName: string;
|
|
20285
20285
|
xDimension: string;
|
|
20286
20286
|
yMetrics: string[];
|
|
20287
20287
|
breakdownByDimension: string | null;
|
|
@@ -20565,12 +20565,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
20565
20565
|
}[] | null;
|
|
20566
20566
|
vizConfig: {
|
|
20567
20567
|
limit: number | null;
|
|
20568
|
+
exploreName: string;
|
|
20568
20569
|
sorts: {
|
|
20569
20570
|
fieldId: string;
|
|
20570
20571
|
descending: boolean;
|
|
20571
20572
|
nullsFirst: boolean | null;
|
|
20572
20573
|
}[];
|
|
20573
|
-
exploreName: string;
|
|
20574
20574
|
xDimension: string;
|
|
20575
20575
|
yMetrics: string[];
|
|
20576
20576
|
breakdownByDimension: string | null;
|
|
@@ -20854,12 +20854,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
20854
20854
|
}[] | null;
|
|
20855
20855
|
vizConfig: {
|
|
20856
20856
|
limit: number | null;
|
|
20857
|
+
exploreName: string;
|
|
20857
20858
|
sorts: {
|
|
20858
20859
|
fieldId: string;
|
|
20859
20860
|
descending: boolean;
|
|
20860
20861
|
nullsFirst: boolean | null;
|
|
20861
20862
|
}[];
|
|
20862
|
-
exploreName: string;
|
|
20863
20863
|
xDimension: string;
|
|
20864
20864
|
yMetrics: string[];
|
|
20865
20865
|
breakdownByDimension: string | null;
|
|
@@ -22226,12 +22226,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
22226
22226
|
yAxisLabel: z.ZodNullable<z.ZodString>;
|
|
22227
22227
|
}, "strip", z.ZodTypeAny, {
|
|
22228
22228
|
limit: number | null;
|
|
22229
|
+
exploreName: string;
|
|
22229
22230
|
sorts: {
|
|
22230
22231
|
fieldId: string;
|
|
22231
22232
|
descending: boolean;
|
|
22232
22233
|
nullsFirst: boolean | null;
|
|
22233
22234
|
}[];
|
|
22234
|
-
exploreName: string;
|
|
22235
22235
|
xDimension: string;
|
|
22236
22236
|
yMetrics: string[];
|
|
22237
22237
|
breakdownByDimension: string | null;
|
|
@@ -22241,12 +22241,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
22241
22241
|
yAxisLabel: string | null;
|
|
22242
22242
|
}, {
|
|
22243
22243
|
limit: number | null;
|
|
22244
|
+
exploreName: string;
|
|
22244
22245
|
sorts: {
|
|
22245
22246
|
fieldId: string;
|
|
22246
22247
|
descending: boolean;
|
|
22247
22248
|
nullsFirst: boolean | null;
|
|
22248
22249
|
}[];
|
|
22249
|
-
exploreName: string;
|
|
22250
22250
|
xDimension: string;
|
|
22251
22251
|
yMetrics: string[];
|
|
22252
22252
|
breakdownByDimension: string | null;
|
|
@@ -22531,12 +22531,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
22531
22531
|
}[] | null;
|
|
22532
22532
|
vizConfig: {
|
|
22533
22533
|
limit: number | null;
|
|
22534
|
+
exploreName: string;
|
|
22534
22535
|
sorts: {
|
|
22535
22536
|
fieldId: string;
|
|
22536
22537
|
descending: boolean;
|
|
22537
22538
|
nullsFirst: boolean | null;
|
|
22538
22539
|
}[];
|
|
22539
|
-
exploreName: string;
|
|
22540
22540
|
xDimension: string;
|
|
22541
22541
|
yMetrics: string[];
|
|
22542
22542
|
breakdownByDimension: string | null;
|
|
@@ -22821,12 +22821,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
22821
22821
|
}[] | null;
|
|
22822
22822
|
vizConfig: {
|
|
22823
22823
|
limit: number | null;
|
|
22824
|
+
exploreName: string;
|
|
22824
22825
|
sorts: {
|
|
22825
22826
|
fieldId: string;
|
|
22826
22827
|
descending: boolean;
|
|
22827
22828
|
nullsFirst: boolean | null;
|
|
22828
22829
|
}[];
|
|
22829
|
-
exploreName: string;
|
|
22830
22830
|
xDimension: string;
|
|
22831
22831
|
yMetrics: string[];
|
|
22832
22832
|
breakdownByDimension: string | null;
|
|
@@ -23114,12 +23114,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
23114
23114
|
dimensions: string[];
|
|
23115
23115
|
metrics: string[];
|
|
23116
23116
|
limit: number | null;
|
|
23117
|
+
exploreName: string;
|
|
23117
23118
|
sorts: {
|
|
23118
23119
|
fieldId: string;
|
|
23119
23120
|
descending: boolean;
|
|
23120
23121
|
nullsFirst: boolean | null;
|
|
23121
23122
|
}[];
|
|
23122
|
-
exploreName: string;
|
|
23123
23123
|
};
|
|
23124
23124
|
} | {
|
|
23125
23125
|
followUpTools: never[];
|
|
@@ -23398,12 +23398,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
23398
23398
|
}[] | null;
|
|
23399
23399
|
vizConfig: {
|
|
23400
23400
|
limit: number | null;
|
|
23401
|
+
exploreName: string;
|
|
23401
23402
|
sorts: {
|
|
23402
23403
|
fieldId: string;
|
|
23403
23404
|
descending: boolean;
|
|
23404
23405
|
nullsFirst: boolean | null;
|
|
23405
23406
|
}[];
|
|
23406
|
-
exploreName: string;
|
|
23407
23407
|
xDimension: string;
|
|
23408
23408
|
yMetrics: string[];
|
|
23409
23409
|
breakdownByDimension: string | null;
|
|
@@ -23688,12 +23688,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
23688
23688
|
}[] | null;
|
|
23689
23689
|
vizConfig: {
|
|
23690
23690
|
limit: number | null;
|
|
23691
|
+
exploreName: string;
|
|
23691
23692
|
sorts: {
|
|
23692
23693
|
fieldId: string;
|
|
23693
23694
|
descending: boolean;
|
|
23694
23695
|
nullsFirst: boolean | null;
|
|
23695
23696
|
}[];
|
|
23696
|
-
exploreName: string;
|
|
23697
23697
|
xDimension: string;
|
|
23698
23698
|
yMetrics: string[];
|
|
23699
23699
|
breakdownByDimension: string | null;
|
|
@@ -23980,12 +23980,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
23980
23980
|
dimensions: string[];
|
|
23981
23981
|
metrics: string[];
|
|
23982
23982
|
limit: number | null;
|
|
23983
|
+
exploreName: string;
|
|
23983
23984
|
sorts: {
|
|
23984
23985
|
fieldId: string;
|
|
23985
23986
|
descending: boolean;
|
|
23986
23987
|
nullsFirst: boolean | null;
|
|
23987
23988
|
}[];
|
|
23988
|
-
exploreName: string;
|
|
23989
23989
|
};
|
|
23990
23990
|
} | {
|
|
23991
23991
|
tableCalculations: ({
|
|
@@ -24263,12 +24263,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
24263
24263
|
}[] | null;
|
|
24264
24264
|
vizConfig: {
|
|
24265
24265
|
limit: number | null;
|
|
24266
|
+
exploreName: string;
|
|
24266
24267
|
sorts: {
|
|
24267
24268
|
fieldId: string;
|
|
24268
24269
|
descending: boolean;
|
|
24269
24270
|
nullsFirst: boolean | null;
|
|
24270
24271
|
}[];
|
|
24271
|
-
exploreName: string;
|
|
24272
24272
|
xDimension: string;
|
|
24273
24273
|
yMetrics: string[];
|
|
24274
24274
|
breakdownByDimension: string | null;
|
|
@@ -24552,12 +24552,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
24552
24552
|
}[] | null;
|
|
24553
24553
|
vizConfig: {
|
|
24554
24554
|
limit: number | null;
|
|
24555
|
+
exploreName: string;
|
|
24555
24556
|
sorts: {
|
|
24556
24557
|
fieldId: string;
|
|
24557
24558
|
descending: boolean;
|
|
24558
24559
|
nullsFirst: boolean | null;
|
|
24559
24560
|
}[];
|
|
24560
|
-
exploreName: string;
|
|
24561
24561
|
xDimension: string;
|
|
24562
24562
|
yMetrics: string[];
|
|
24563
24563
|
breakdownByDimension: string | null;
|
|
@@ -24849,12 +24849,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
24849
24849
|
dimensions: string[];
|
|
24850
24850
|
metrics: string[];
|
|
24851
24851
|
limit: number | null;
|
|
24852
|
+
exploreName: string;
|
|
24852
24853
|
sorts: {
|
|
24853
24854
|
fieldId: string;
|
|
24854
24855
|
descending: boolean;
|
|
24855
24856
|
nullsFirst: boolean | null;
|
|
24856
24857
|
}[];
|
|
24857
|
-
exploreName: string;
|
|
24858
24858
|
};
|
|
24859
24859
|
} | {
|
|
24860
24860
|
followUpTools: never[];
|
|
@@ -25133,12 +25133,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
25133
25133
|
}[] | null;
|
|
25134
25134
|
vizConfig: {
|
|
25135
25135
|
limit: number | null;
|
|
25136
|
+
exploreName: string;
|
|
25136
25137
|
sorts: {
|
|
25137
25138
|
fieldId: string;
|
|
25138
25139
|
descending: boolean;
|
|
25139
25140
|
nullsFirst: boolean | null;
|
|
25140
25141
|
}[];
|
|
25141
|
-
exploreName: string;
|
|
25142
25142
|
xDimension: string;
|
|
25143
25143
|
yMetrics: string[];
|
|
25144
25144
|
breakdownByDimension: string | null;
|
|
@@ -25423,12 +25423,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
25423
25423
|
}[] | null;
|
|
25424
25424
|
vizConfig: {
|
|
25425
25425
|
limit: number | null;
|
|
25426
|
+
exploreName: string;
|
|
25426
25427
|
sorts: {
|
|
25427
25428
|
fieldId: string;
|
|
25428
25429
|
descending: boolean;
|
|
25429
25430
|
nullsFirst: boolean | null;
|
|
25430
25431
|
}[];
|
|
25431
|
-
exploreName: string;
|
|
25432
25432
|
xDimension: string;
|
|
25433
25433
|
yMetrics: string[];
|
|
25434
25434
|
breakdownByDimension: string | null;
|
|
@@ -25719,12 +25719,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
25719
25719
|
dimensions: string[];
|
|
25720
25720
|
metrics: string[];
|
|
25721
25721
|
limit: number | null;
|
|
25722
|
+
exploreName: string;
|
|
25722
25723
|
sorts: {
|
|
25723
25724
|
fieldId: string;
|
|
25724
25725
|
descending: boolean;
|
|
25725
25726
|
nullsFirst: boolean | null;
|
|
25726
25727
|
}[];
|
|
25727
|
-
exploreName: string;
|
|
25728
25728
|
};
|
|
25729
25729
|
} | {
|
|
25730
25730
|
tableCalculations: ({
|
|
@@ -26002,12 +26002,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
26002
26002
|
}[] | null;
|
|
26003
26003
|
vizConfig: {
|
|
26004
26004
|
limit: number | null;
|
|
26005
|
+
exploreName: string;
|
|
26005
26006
|
sorts: {
|
|
26006
26007
|
fieldId: string;
|
|
26007
26008
|
descending: boolean;
|
|
26008
26009
|
nullsFirst: boolean | null;
|
|
26009
26010
|
}[];
|
|
26010
|
-
exploreName: string;
|
|
26011
26011
|
xDimension: string;
|
|
26012
26012
|
yMetrics: string[];
|
|
26013
26013
|
breakdownByDimension: string | null;
|
|
@@ -26291,12 +26291,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
26291
26291
|
}[] | null;
|
|
26292
26292
|
vizConfig: {
|
|
26293
26293
|
limit: number | null;
|
|
26294
|
+
exploreName: string;
|
|
26294
26295
|
sorts: {
|
|
26295
26296
|
fieldId: string;
|
|
26296
26297
|
descending: boolean;
|
|
26297
26298
|
nullsFirst: boolean | null;
|
|
26298
26299
|
}[];
|
|
26299
|
-
exploreName: string;
|
|
26300
26300
|
xDimension: string;
|
|
26301
26301
|
yMetrics: string[];
|
|
26302
26302
|
breakdownByDimension: string | null;
|
|
@@ -26381,12 +26381,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
26381
26381
|
dimensions: string[];
|
|
26382
26382
|
metrics: string[];
|
|
26383
26383
|
limit: number | null;
|
|
26384
|
+
exploreName: string;
|
|
26384
26385
|
sorts: {
|
|
26385
26386
|
fieldId: string;
|
|
26386
26387
|
descending: boolean;
|
|
26387
26388
|
nullsFirst: boolean | null;
|
|
26388
26389
|
}[];
|
|
26389
|
-
exploreName: string;
|
|
26390
26390
|
};
|
|
26391
26391
|
} | {
|
|
26392
26392
|
followUpTools: AiResultType[];
|
|
@@ -26460,12 +26460,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
26460
26460
|
}[] | null;
|
|
26461
26461
|
vizConfig: {
|
|
26462
26462
|
limit: number | null;
|
|
26463
|
+
exploreName: string;
|
|
26463
26464
|
sorts: {
|
|
26464
26465
|
fieldId: string;
|
|
26465
26466
|
descending: boolean;
|
|
26466
26467
|
nullsFirst: boolean | null;
|
|
26467
26468
|
}[];
|
|
26468
|
-
exploreName: string;
|
|
26469
26469
|
xDimension: string;
|
|
26470
26470
|
yMetrics: string[];
|
|
26471
26471
|
breakdownByDimension: string | null;
|
|
@@ -26545,12 +26545,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
26545
26545
|
}[] | null;
|
|
26546
26546
|
vizConfig: {
|
|
26547
26547
|
limit: number | null;
|
|
26548
|
+
exploreName: string;
|
|
26548
26549
|
sorts: {
|
|
26549
26550
|
fieldId: string;
|
|
26550
26551
|
descending: boolean;
|
|
26551
26552
|
nullsFirst: boolean | null;
|
|
26552
26553
|
}[];
|
|
26553
|
-
exploreName: string;
|
|
26554
26554
|
xDimension: string;
|
|
26555
26555
|
yMetrics: string[];
|
|
26556
26556
|
breakdownByDimension: string | null;
|
|
@@ -26843,12 +26843,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
26843
26843
|
dimensions: string[];
|
|
26844
26844
|
metrics: string[];
|
|
26845
26845
|
limit: number | null;
|
|
26846
|
+
exploreName: string;
|
|
26846
26847
|
sorts: {
|
|
26847
26848
|
fieldId: string;
|
|
26848
26849
|
descending: boolean;
|
|
26849
26850
|
nullsFirst: boolean | null;
|
|
26850
26851
|
}[];
|
|
26851
|
-
exploreName: string;
|
|
26852
26852
|
};
|
|
26853
26853
|
} | {
|
|
26854
26854
|
tableCalculations: ({
|
|
@@ -27126,12 +27126,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
27126
27126
|
}[] | null;
|
|
27127
27127
|
vizConfig: {
|
|
27128
27128
|
limit: number | null;
|
|
27129
|
+
exploreName: string;
|
|
27129
27130
|
sorts: {
|
|
27130
27131
|
fieldId: string;
|
|
27131
27132
|
descending: boolean;
|
|
27132
27133
|
nullsFirst: boolean | null;
|
|
27133
27134
|
}[];
|
|
27134
|
-
exploreName: string;
|
|
27135
27135
|
xDimension: string;
|
|
27136
27136
|
yMetrics: string[];
|
|
27137
27137
|
breakdownByDimension: string | null;
|
|
@@ -27415,12 +27415,12 @@ export declare const toolDashboardArgsSchemaTransformed: z.ZodEffects<z.ZodObjec
|
|
|
27415
27415
|
}[] | null;
|
|
27416
27416
|
vizConfig: {
|
|
27417
27417
|
limit: number | null;
|
|
27418
|
+
exploreName: string;
|
|
27418
27419
|
sorts: {
|
|
27419
27420
|
fieldId: string;
|
|
27420
27421
|
descending: boolean;
|
|
27421
27422
|
nullsFirst: boolean | null;
|
|
27422
27423
|
}[];
|
|
27423
|
-
exploreName: string;
|
|
27424
27424
|
xDimension: string;
|
|
27425
27425
|
yMetrics: string[];
|
|
27426
27426
|
breakdownByDimension: string | null;
|