@adminforth/dashboard 1.11.2 → 1.12.1
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/README.md +43 -2
- package/custom/api/dashboardApi.ts +72 -10
- package/custom/model/dashboard.types.ts +6 -0
- package/custom/runtime/DashboardGroup.vue +15 -68
- package/custom/runtime/DashboardToolbarButton.vue +32 -0
- package/custom/runtime/DashboardToolbarIcon.vue +52 -0
- package/custom/runtime/WidgetShell.vue +15 -68
- package/custom/skills/adminforth-dashboard/SKILL.md +63 -13
- package/custom/widgets/chart/StackedBarChart.vue +64 -7
- package/dist/custom/api/dashboardApi.js +59 -10
- package/dist/custom/api/dashboardApi.ts +72 -10
- package/dist/custom/model/dashboard.types.d.ts +9 -0
- package/dist/custom/model/dashboard.types.ts +6 -0
- package/dist/custom/queries/useDashboardConfig.d.ts +80 -0
- package/dist/custom/queries/useWidgetData.d.ts +80 -0
- package/dist/custom/runtime/DashboardGroup.vue +15 -68
- package/dist/custom/runtime/DashboardToolbarButton.vue +32 -0
- package/dist/custom/runtime/DashboardToolbarIcon.vue +52 -0
- package/dist/custom/runtime/WidgetShell.vue +15 -68
- package/dist/custom/skills/adminforth-dashboard/SKILL.md +63 -13
- package/dist/custom/widgets/chart/StackedBarChart.vue +64 -7
- package/dist/schema/api.d.ts +742 -802
- package/dist/schema/api.js +2 -2
- package/dist/schema/widget.d.ts +75 -81
- package/dist/schema/widget.js +1 -1
- package/dist/schema/widgets/charts.d.ts +84 -160
- package/dist/schema/widgets/charts.js +2 -2
- package/dist/schema/widgets/common.d.ts +115 -0
- package/dist/schema/widgets/common.js +17 -1
- package/dist/schema/widgets/gauge-card.d.ts +8 -0
- package/dist/schema/widgets/kpi-card.d.ts +8 -0
- package/dist/schema/widgets/pivot-table.d.ts +8 -0
- package/dist/schema/widgets/table.d.ts +8 -0
- package/dist/services/widgetDataService.js +42 -0
- package/package.json +3 -3
- package/schema/api.ts +2 -1
- package/schema/widget.ts +2 -0
- package/schema/widgets/charts.ts +2 -1
- package/schema/widgets/common.ts +19 -1
- package/services/widgetDataService.ts +68 -0
package/dist/schema/api.d.ts
CHANGED
|
@@ -167,6 +167,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
167
167
|
}, z.core.$strict>>;
|
|
168
168
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
169
169
|
}, z.core.$strict>>;
|
|
170
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
171
|
+
field: z.ZodString;
|
|
172
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
173
|
+
label: z.ZodString;
|
|
174
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
175
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
176
|
+
}, z.core.$strict>>;
|
|
177
|
+
}, z.core.$strict>>;
|
|
170
178
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
171
179
|
calc: z.ZodString;
|
|
172
180
|
as: z.ZodString;
|
|
@@ -333,6 +341,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
333
341
|
}, z.core.$strict>>;
|
|
334
342
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
335
343
|
}, z.core.$strict>>;
|
|
344
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
345
|
+
field: z.ZodString;
|
|
346
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
347
|
+
label: z.ZodString;
|
|
348
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
349
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
350
|
+
}, z.core.$strict>>;
|
|
351
|
+
}, z.core.$strict>>;
|
|
336
352
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
337
353
|
calc: z.ZodString;
|
|
338
354
|
as: z.ZodString;
|
|
@@ -494,6 +510,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
494
510
|
}, z.core.$strict>>;
|
|
495
511
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
496
512
|
}, z.core.$strict>>;
|
|
513
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
514
|
+
field: z.ZodString;
|
|
515
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
516
|
+
label: z.ZodString;
|
|
517
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
518
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
519
|
+
}, z.core.$strict>>;
|
|
520
|
+
}, z.core.$strict>>;
|
|
497
521
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
498
522
|
calc: z.ZodString;
|
|
499
523
|
as: z.ZodString;
|
|
@@ -672,6 +696,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
672
696
|
}, z.core.$strict>>;
|
|
673
697
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
674
698
|
}, z.core.$strict>>;
|
|
699
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
700
|
+
field: z.ZodString;
|
|
701
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
702
|
+
label: z.ZodString;
|
|
703
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
704
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
705
|
+
}, z.core.$strict>>;
|
|
706
|
+
}, z.core.$strict>>;
|
|
675
707
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
676
708
|
calc: z.ZodString;
|
|
677
709
|
as: z.ZodString;
|
|
@@ -833,6 +865,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
833
865
|
}, z.core.$strict>>;
|
|
834
866
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
835
867
|
}, z.core.$strict>>;
|
|
868
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
869
|
+
field: z.ZodString;
|
|
870
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
871
|
+
label: z.ZodString;
|
|
872
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
873
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
874
|
+
}, z.core.$strict>>;
|
|
875
|
+
}, z.core.$strict>>;
|
|
836
876
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
837
877
|
calc: z.ZodString;
|
|
838
878
|
as: z.ZodString;
|
|
@@ -904,7 +944,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
904
944
|
}, z.core.$strict>>>;
|
|
905
945
|
color: z.ZodOptional<z.ZodString>;
|
|
906
946
|
}, z.core.$strict>;
|
|
907
|
-
query: z.
|
|
947
|
+
query: z.ZodObject<{
|
|
908
948
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
909
949
|
resource: z.ZodString;
|
|
910
950
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -916,46 +956,11 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
916
956
|
month: "month";
|
|
917
957
|
year: "year";
|
|
918
958
|
}>>;
|
|
919
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
920
|
-
agg: z.ZodEnum<{
|
|
921
|
-
sum: "sum";
|
|
922
|
-
count: "count";
|
|
923
|
-
count_distinct: "count_distinct";
|
|
924
|
-
avg: "avg";
|
|
925
|
-
min: "min";
|
|
926
|
-
max: "max";
|
|
927
|
-
median: "median";
|
|
928
|
-
}>;
|
|
929
|
-
field: z.ZodOptional<z.ZodString>;
|
|
930
|
-
as: z.ZodString;
|
|
931
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
932
959
|
}, z.core.$strict>, z.ZodObject<{
|
|
933
960
|
calc: z.ZodString;
|
|
934
961
|
as: z.ZodString;
|
|
935
962
|
}, z.core.$strict>]>>>;
|
|
936
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
937
|
-
field: z.ZodString;
|
|
938
|
-
grain: z.ZodEnum<{
|
|
939
|
-
day: "day";
|
|
940
|
-
week: "week";
|
|
941
|
-
month: "month";
|
|
942
|
-
year: "year";
|
|
943
|
-
}>;
|
|
944
|
-
as: z.ZodString;
|
|
945
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
946
|
-
}, z.core.$strict>>;
|
|
947
963
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
948
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
949
|
-
field: z.ZodString;
|
|
950
|
-
as: z.ZodOptional<z.ZodString>;
|
|
951
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
952
|
-
day: "day";
|
|
953
|
-
week: "week";
|
|
954
|
-
month: "month";
|
|
955
|
-
year: "year";
|
|
956
|
-
}>>;
|
|
957
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
958
|
-
}, z.core.$strict>]>>>;
|
|
959
964
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
960
965
|
field: z.ZodString;
|
|
961
966
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -965,55 +970,12 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
965
970
|
}, z.core.$strict>>>;
|
|
966
971
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
967
972
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
968
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
969
|
-
field: z.ZodString;
|
|
970
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
971
|
-
label: z.ZodString;
|
|
972
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
973
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
974
|
-
}, z.core.$strict>>;
|
|
975
|
-
}, z.core.$strict>>;
|
|
976
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
977
|
-
calc: z.ZodString;
|
|
978
|
-
as: z.ZodString;
|
|
979
|
-
}, z.core.$strict>>>;
|
|
980
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
981
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
982
|
-
source: z.ZodLiteral<"steps">;
|
|
983
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
984
|
-
name: z.ZodString;
|
|
985
|
-
resource: z.ZodString;
|
|
986
|
-
select: z.ZodArray<z.ZodObject<{
|
|
987
|
-
agg: z.ZodEnum<{
|
|
988
|
-
sum: "sum";
|
|
989
|
-
count: "count";
|
|
990
|
-
count_distinct: "count_distinct";
|
|
991
|
-
avg: "avg";
|
|
992
|
-
min: "min";
|
|
993
|
-
max: "max";
|
|
994
|
-
median: "median";
|
|
995
|
-
}>;
|
|
996
|
-
field: z.ZodOptional<z.ZodString>;
|
|
997
|
-
as: z.ZodString;
|
|
998
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
999
|
-
}, z.core.$strict>>;
|
|
1000
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1001
|
-
}, z.core.$strict>>;
|
|
1002
973
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1003
974
|
calc: z.ZodString;
|
|
1004
975
|
as: z.ZodString;
|
|
1005
976
|
}, z.core.$strict>>>;
|
|
1006
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1007
|
-
field: z.ZodString;
|
|
1008
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
1009
|
-
asc: "asc";
|
|
1010
|
-
desc: "desc";
|
|
1011
|
-
}>>;
|
|
1012
|
-
}, z.core.$strict>>>;
|
|
1013
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
1014
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
1015
977
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1016
|
-
}, z.core.$strict
|
|
978
|
+
}, z.core.$strict>;
|
|
1017
979
|
}, z.core.$strict>, z.ZodObject<{
|
|
1018
980
|
id: z.ZodString;
|
|
1019
981
|
group_id: z.ZodString;
|
|
@@ -1160,6 +1122,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1160
1122
|
}, z.core.$strict>>;
|
|
1161
1123
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1162
1124
|
}, z.core.$strict>>;
|
|
1125
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
1126
|
+
field: z.ZodString;
|
|
1127
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
1128
|
+
label: z.ZodString;
|
|
1129
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1130
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1131
|
+
}, z.core.$strict>>;
|
|
1132
|
+
}, z.core.$strict>>;
|
|
1163
1133
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1164
1134
|
calc: z.ZodString;
|
|
1165
1135
|
as: z.ZodString;
|
|
@@ -1347,6 +1317,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1347
1317
|
}, z.core.$strict>>;
|
|
1348
1318
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1349
1319
|
}, z.core.$strict>>;
|
|
1320
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
1321
|
+
field: z.ZodString;
|
|
1322
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
1323
|
+
label: z.ZodString;
|
|
1324
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1325
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1326
|
+
}, z.core.$strict>>;
|
|
1327
|
+
}, z.core.$strict>>;
|
|
1350
1328
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1351
1329
|
calc: z.ZodString;
|
|
1352
1330
|
as: z.ZodString;
|
|
@@ -1514,6 +1492,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1514
1492
|
}, z.core.$strict>>;
|
|
1515
1493
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1516
1494
|
}, z.core.$strict>>;
|
|
1495
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
1496
|
+
field: z.ZodString;
|
|
1497
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
1498
|
+
label: z.ZodString;
|
|
1499
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1500
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1501
|
+
}, z.core.$strict>>;
|
|
1502
|
+
}, z.core.$strict>>;
|
|
1517
1503
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1518
1504
|
calc: z.ZodString;
|
|
1519
1505
|
as: z.ZodString;
|
|
@@ -1693,6 +1679,14 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1693
1679
|
}, z.core.$strict>>;
|
|
1694
1680
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1695
1681
|
}, z.core.$strict>>;
|
|
1682
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
1683
|
+
field: z.ZodString;
|
|
1684
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
1685
|
+
label: z.ZodString;
|
|
1686
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1687
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1688
|
+
}, z.core.$strict>>;
|
|
1689
|
+
}, z.core.$strict>>;
|
|
1696
1690
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1697
1691
|
calc: z.ZodString;
|
|
1698
1692
|
as: z.ZodString;
|
|
@@ -1871,6 +1865,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
1871
1865
|
}, z.core.$strict>>;
|
|
1872
1866
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1873
1867
|
}, z.core.$strict>>;
|
|
1868
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
1869
|
+
field: z.ZodString;
|
|
1870
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
1871
|
+
label: z.ZodString;
|
|
1872
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1873
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1874
|
+
}, z.core.$strict>>;
|
|
1875
|
+
}, z.core.$strict>>;
|
|
1874
1876
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1875
1877
|
calc: z.ZodString;
|
|
1876
1878
|
as: z.ZodString;
|
|
@@ -2037,6 +2039,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2037
2039
|
}, z.core.$strict>>;
|
|
2038
2040
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2039
2041
|
}, z.core.$strict>>;
|
|
2042
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
2043
|
+
field: z.ZodString;
|
|
2044
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
2045
|
+
label: z.ZodString;
|
|
2046
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2047
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2048
|
+
}, z.core.$strict>>;
|
|
2049
|
+
}, z.core.$strict>>;
|
|
2040
2050
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2041
2051
|
calc: z.ZodString;
|
|
2042
2052
|
as: z.ZodString;
|
|
@@ -2198,6 +2208,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2198
2208
|
}, z.core.$strict>>;
|
|
2199
2209
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2200
2210
|
}, z.core.$strict>>;
|
|
2211
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
2212
|
+
field: z.ZodString;
|
|
2213
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
2214
|
+
label: z.ZodString;
|
|
2215
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2216
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2217
|
+
}, z.core.$strict>>;
|
|
2218
|
+
}, z.core.$strict>>;
|
|
2201
2219
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2202
2220
|
calc: z.ZodString;
|
|
2203
2221
|
as: z.ZodString;
|
|
@@ -2376,6 +2394,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2376
2394
|
}, z.core.$strict>>;
|
|
2377
2395
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2378
2396
|
}, z.core.$strict>>;
|
|
2397
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
2398
|
+
field: z.ZodString;
|
|
2399
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
2400
|
+
label: z.ZodString;
|
|
2401
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2402
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2403
|
+
}, z.core.$strict>>;
|
|
2404
|
+
}, z.core.$strict>>;
|
|
2379
2405
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2380
2406
|
calc: z.ZodString;
|
|
2381
2407
|
as: z.ZodString;
|
|
@@ -2537,6 +2563,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2537
2563
|
}, z.core.$strict>>;
|
|
2538
2564
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2539
2565
|
}, z.core.$strict>>;
|
|
2566
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
2567
|
+
field: z.ZodString;
|
|
2568
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
2569
|
+
label: z.ZodString;
|
|
2570
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2571
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2572
|
+
}, z.core.$strict>>;
|
|
2573
|
+
}, z.core.$strict>>;
|
|
2540
2574
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2541
2575
|
calc: z.ZodString;
|
|
2542
2576
|
as: z.ZodString;
|
|
@@ -2608,7 +2642,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2608
2642
|
}, z.core.$strict>>>;
|
|
2609
2643
|
color: z.ZodOptional<z.ZodString>;
|
|
2610
2644
|
}, z.core.$strict>;
|
|
2611
|
-
query: z.
|
|
2645
|
+
query: z.ZodObject<{
|
|
2612
2646
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
2613
2647
|
resource: z.ZodString;
|
|
2614
2648
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -2620,46 +2654,11 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2620
2654
|
month: "month";
|
|
2621
2655
|
year: "year";
|
|
2622
2656
|
}>>;
|
|
2623
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2624
|
-
agg: z.ZodEnum<{
|
|
2625
|
-
sum: "sum";
|
|
2626
|
-
count: "count";
|
|
2627
|
-
count_distinct: "count_distinct";
|
|
2628
|
-
avg: "avg";
|
|
2629
|
-
min: "min";
|
|
2630
|
-
max: "max";
|
|
2631
|
-
median: "median";
|
|
2632
|
-
}>;
|
|
2633
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2634
|
-
as: z.ZodString;
|
|
2635
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2636
2657
|
}, z.core.$strict>, z.ZodObject<{
|
|
2637
2658
|
calc: z.ZodString;
|
|
2638
2659
|
as: z.ZodString;
|
|
2639
2660
|
}, z.core.$strict>]>>>;
|
|
2640
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
2641
|
-
field: z.ZodString;
|
|
2642
|
-
grain: z.ZodEnum<{
|
|
2643
|
-
day: "day";
|
|
2644
|
-
week: "week";
|
|
2645
|
-
month: "month";
|
|
2646
|
-
year: "year";
|
|
2647
|
-
}>;
|
|
2648
|
-
as: z.ZodString;
|
|
2649
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2650
|
-
}, z.core.$strict>>;
|
|
2651
2661
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2652
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2653
|
-
field: z.ZodString;
|
|
2654
|
-
as: z.ZodOptional<z.ZodString>;
|
|
2655
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
2656
|
-
day: "day";
|
|
2657
|
-
week: "week";
|
|
2658
|
-
month: "month";
|
|
2659
|
-
year: "year";
|
|
2660
|
-
}>>;
|
|
2661
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
2662
|
-
}, z.core.$strict>]>>>;
|
|
2663
2662
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2664
2663
|
field: z.ZodString;
|
|
2665
2664
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2669,55 +2668,12 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2669
2668
|
}, z.core.$strict>>>;
|
|
2670
2669
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
2671
2670
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
2672
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
2673
|
-
field: z.ZodString;
|
|
2674
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
2675
|
-
label: z.ZodString;
|
|
2676
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
2677
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
2678
|
-
}, z.core.$strict>>;
|
|
2679
|
-
}, z.core.$strict>>;
|
|
2680
2671
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2681
2672
|
calc: z.ZodString;
|
|
2682
2673
|
as: z.ZodString;
|
|
2683
2674
|
}, z.core.$strict>>>;
|
|
2684
2675
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2685
|
-
}, z.core.$strict
|
|
2686
|
-
source: z.ZodLiteral<"steps">;
|
|
2687
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
2688
|
-
name: z.ZodString;
|
|
2689
|
-
resource: z.ZodString;
|
|
2690
|
-
select: z.ZodArray<z.ZodObject<{
|
|
2691
|
-
agg: z.ZodEnum<{
|
|
2692
|
-
sum: "sum";
|
|
2693
|
-
count: "count";
|
|
2694
|
-
count_distinct: "count_distinct";
|
|
2695
|
-
avg: "avg";
|
|
2696
|
-
min: "min";
|
|
2697
|
-
max: "max";
|
|
2698
|
-
median: "median";
|
|
2699
|
-
}>;
|
|
2700
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2701
|
-
as: z.ZodString;
|
|
2702
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2703
|
-
}, z.core.$strict>>;
|
|
2704
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2705
|
-
}, z.core.$strict>>;
|
|
2706
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2707
|
-
calc: z.ZodString;
|
|
2708
|
-
as: z.ZodString;
|
|
2709
|
-
}, z.core.$strict>>>;
|
|
2710
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2711
|
-
field: z.ZodString;
|
|
2712
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
2713
|
-
asc: "asc";
|
|
2714
|
-
desc: "desc";
|
|
2715
|
-
}>>;
|
|
2716
|
-
}, z.core.$strict>>>;
|
|
2717
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
2718
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
2719
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2720
|
-
}, z.core.$strict>]>;
|
|
2676
|
+
}, z.core.$strict>;
|
|
2721
2677
|
}, z.core.$strict>, z.ZodObject<{
|
|
2722
2678
|
id: z.ZodString;
|
|
2723
2679
|
group_id: z.ZodString;
|
|
@@ -2864,6 +2820,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2864
2820
|
}, z.core.$strict>>;
|
|
2865
2821
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2866
2822
|
}, z.core.$strict>>;
|
|
2823
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
2824
|
+
field: z.ZodString;
|
|
2825
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
2826
|
+
label: z.ZodString;
|
|
2827
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2828
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2829
|
+
}, z.core.$strict>>;
|
|
2830
|
+
}, z.core.$strict>>;
|
|
2867
2831
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2868
2832
|
calc: z.ZodString;
|
|
2869
2833
|
as: z.ZodString;
|
|
@@ -3051,6 +3015,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3051
3015
|
}, z.core.$strict>>;
|
|
3052
3016
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3053
3017
|
}, z.core.$strict>>;
|
|
3018
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
3019
|
+
field: z.ZodString;
|
|
3020
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
3021
|
+
label: z.ZodString;
|
|
3022
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3023
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3024
|
+
}, z.core.$strict>>;
|
|
3025
|
+
}, z.core.$strict>>;
|
|
3054
3026
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3055
3027
|
calc: z.ZodString;
|
|
3056
3028
|
as: z.ZodString;
|
|
@@ -3218,6 +3190,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3218
3190
|
}, z.core.$strict>>;
|
|
3219
3191
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3220
3192
|
}, z.core.$strict>>;
|
|
3193
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
3194
|
+
field: z.ZodString;
|
|
3195
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
3196
|
+
label: z.ZodString;
|
|
3197
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3198
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3199
|
+
}, z.core.$strict>>;
|
|
3200
|
+
}, z.core.$strict>>;
|
|
3221
3201
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3222
3202
|
calc: z.ZodString;
|
|
3223
3203
|
as: z.ZodString;
|
|
@@ -3397,6 +3377,14 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3397
3377
|
}, z.core.$strict>>;
|
|
3398
3378
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3399
3379
|
}, z.core.$strict>>;
|
|
3380
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
3381
|
+
field: z.ZodString;
|
|
3382
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
3383
|
+
label: z.ZodString;
|
|
3384
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3385
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3386
|
+
}, z.core.$strict>>;
|
|
3387
|
+
}, z.core.$strict>>;
|
|
3400
3388
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3401
3389
|
calc: z.ZodString;
|
|
3402
3390
|
as: z.ZodString;
|
|
@@ -3576,6 +3564,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
3576
3564
|
}, z.core.$strict>>;
|
|
3577
3565
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3578
3566
|
}, z.core.$strict>>;
|
|
3567
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
3568
|
+
field: z.ZodString;
|
|
3569
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
3570
|
+
label: z.ZodString;
|
|
3571
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3572
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3573
|
+
}, z.core.$strict>>;
|
|
3574
|
+
}, z.core.$strict>>;
|
|
3579
3575
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3580
3576
|
calc: z.ZodString;
|
|
3581
3577
|
as: z.ZodString;
|
|
@@ -3742,6 +3738,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
3742
3738
|
}, z.core.$strict>>;
|
|
3743
3739
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3744
3740
|
}, z.core.$strict>>;
|
|
3741
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
3742
|
+
field: z.ZodString;
|
|
3743
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
3744
|
+
label: z.ZodString;
|
|
3745
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3746
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3747
|
+
}, z.core.$strict>>;
|
|
3748
|
+
}, z.core.$strict>>;
|
|
3745
3749
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3746
3750
|
calc: z.ZodString;
|
|
3747
3751
|
as: z.ZodString;
|
|
@@ -3903,6 +3907,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
3903
3907
|
}, z.core.$strict>>;
|
|
3904
3908
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3905
3909
|
}, z.core.$strict>>;
|
|
3910
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
3911
|
+
field: z.ZodString;
|
|
3912
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
3913
|
+
label: z.ZodString;
|
|
3914
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3915
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3916
|
+
}, z.core.$strict>>;
|
|
3917
|
+
}, z.core.$strict>>;
|
|
3906
3918
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3907
3919
|
calc: z.ZodString;
|
|
3908
3920
|
as: z.ZodString;
|
|
@@ -4081,6 +4093,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4081
4093
|
}, z.core.$strict>>;
|
|
4082
4094
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4083
4095
|
}, z.core.$strict>>;
|
|
4096
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
4097
|
+
field: z.ZodString;
|
|
4098
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
4099
|
+
label: z.ZodString;
|
|
4100
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
4101
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
4102
|
+
}, z.core.$strict>>;
|
|
4103
|
+
}, z.core.$strict>>;
|
|
4084
4104
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4085
4105
|
calc: z.ZodString;
|
|
4086
4106
|
as: z.ZodString;
|
|
@@ -4242,6 +4262,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4242
4262
|
}, z.core.$strict>>;
|
|
4243
4263
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4244
4264
|
}, z.core.$strict>>;
|
|
4265
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
4266
|
+
field: z.ZodString;
|
|
4267
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
4268
|
+
label: z.ZodString;
|
|
4269
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
4270
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
4271
|
+
}, z.core.$strict>>;
|
|
4272
|
+
}, z.core.$strict>>;
|
|
4245
4273
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4246
4274
|
calc: z.ZodString;
|
|
4247
4275
|
as: z.ZodString;
|
|
@@ -4313,7 +4341,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4313
4341
|
}, z.core.$strict>>>;
|
|
4314
4342
|
color: z.ZodOptional<z.ZodString>;
|
|
4315
4343
|
}, z.core.$strict>;
|
|
4316
|
-
query: z.
|
|
4344
|
+
query: z.ZodObject<{
|
|
4317
4345
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
4318
4346
|
resource: z.ZodString;
|
|
4319
4347
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -4325,46 +4353,11 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4325
4353
|
month: "month";
|
|
4326
4354
|
year: "year";
|
|
4327
4355
|
}>>;
|
|
4328
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4329
|
-
agg: z.ZodEnum<{
|
|
4330
|
-
sum: "sum";
|
|
4331
|
-
count: "count";
|
|
4332
|
-
count_distinct: "count_distinct";
|
|
4333
|
-
avg: "avg";
|
|
4334
|
-
min: "min";
|
|
4335
|
-
max: "max";
|
|
4336
|
-
median: "median";
|
|
4337
|
-
}>;
|
|
4338
|
-
field: z.ZodOptional<z.ZodString>;
|
|
4339
|
-
as: z.ZodString;
|
|
4340
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4341
4356
|
}, z.core.$strict>, z.ZodObject<{
|
|
4342
4357
|
calc: z.ZodString;
|
|
4343
4358
|
as: z.ZodString;
|
|
4344
4359
|
}, z.core.$strict>]>>>;
|
|
4345
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
4346
|
-
field: z.ZodString;
|
|
4347
|
-
grain: z.ZodEnum<{
|
|
4348
|
-
day: "day";
|
|
4349
|
-
week: "week";
|
|
4350
|
-
month: "month";
|
|
4351
|
-
year: "year";
|
|
4352
|
-
}>;
|
|
4353
|
-
as: z.ZodString;
|
|
4354
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4355
|
-
}, z.core.$strict>>;
|
|
4356
4360
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4357
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
4358
|
-
field: z.ZodString;
|
|
4359
|
-
as: z.ZodOptional<z.ZodString>;
|
|
4360
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
4361
|
-
day: "day";
|
|
4362
|
-
week: "week";
|
|
4363
|
-
month: "month";
|
|
4364
|
-
year: "year";
|
|
4365
|
-
}>>;
|
|
4366
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
4367
|
-
}, z.core.$strict>]>>>;
|
|
4368
4361
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4369
4362
|
field: z.ZodString;
|
|
4370
4363
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4374,55 +4367,12 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4374
4367
|
}, z.core.$strict>>>;
|
|
4375
4368
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
4376
4369
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
4377
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
4378
|
-
field: z.ZodString;
|
|
4379
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
4380
|
-
label: z.ZodString;
|
|
4381
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
4382
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
4383
|
-
}, z.core.$strict>>;
|
|
4384
|
-
}, z.core.$strict>>;
|
|
4385
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4386
|
-
calc: z.ZodString;
|
|
4387
|
-
as: z.ZodString;
|
|
4388
|
-
}, z.core.$strict>>>;
|
|
4389
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4390
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4391
|
-
source: z.ZodLiteral<"steps">;
|
|
4392
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
4393
|
-
name: z.ZodString;
|
|
4394
|
-
resource: z.ZodString;
|
|
4395
|
-
select: z.ZodArray<z.ZodObject<{
|
|
4396
|
-
agg: z.ZodEnum<{
|
|
4397
|
-
sum: "sum";
|
|
4398
|
-
count: "count";
|
|
4399
|
-
count_distinct: "count_distinct";
|
|
4400
|
-
avg: "avg";
|
|
4401
|
-
min: "min";
|
|
4402
|
-
max: "max";
|
|
4403
|
-
median: "median";
|
|
4404
|
-
}>;
|
|
4405
|
-
field: z.ZodOptional<z.ZodString>;
|
|
4406
|
-
as: z.ZodString;
|
|
4407
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4408
|
-
}, z.core.$strict>>;
|
|
4409
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4410
|
-
}, z.core.$strict>>;
|
|
4411
4370
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4412
4371
|
calc: z.ZodString;
|
|
4413
4372
|
as: z.ZodString;
|
|
4414
4373
|
}, z.core.$strict>>>;
|
|
4415
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4416
|
-
field: z.ZodString;
|
|
4417
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
4418
|
-
asc: "asc";
|
|
4419
|
-
desc: "desc";
|
|
4420
|
-
}>>;
|
|
4421
|
-
}, z.core.$strict>>>;
|
|
4422
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
4423
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
4424
4374
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4425
|
-
}, z.core.$strict
|
|
4375
|
+
}, z.core.$strict>;
|
|
4426
4376
|
}, z.core.$strict>, z.ZodObject<{
|
|
4427
4377
|
id: z.ZodString;
|
|
4428
4378
|
group_id: z.ZodString;
|
|
@@ -4569,6 +4519,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4569
4519
|
}, z.core.$strict>>;
|
|
4570
4520
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4571
4521
|
}, z.core.$strict>>;
|
|
4522
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
4523
|
+
field: z.ZodString;
|
|
4524
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
4525
|
+
label: z.ZodString;
|
|
4526
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
4527
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
4528
|
+
}, z.core.$strict>>;
|
|
4529
|
+
}, z.core.$strict>>;
|
|
4572
4530
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4573
4531
|
calc: z.ZodString;
|
|
4574
4532
|
as: z.ZodString;
|
|
@@ -4756,6 +4714,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4756
4714
|
}, z.core.$strict>>;
|
|
4757
4715
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4758
4716
|
}, z.core.$strict>>;
|
|
4717
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
4718
|
+
field: z.ZodString;
|
|
4719
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
4720
|
+
label: z.ZodString;
|
|
4721
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
4722
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
4723
|
+
}, z.core.$strict>>;
|
|
4724
|
+
}, z.core.$strict>>;
|
|
4759
4725
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4760
4726
|
calc: z.ZodString;
|
|
4761
4727
|
as: z.ZodString;
|
|
@@ -4923,6 +4889,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4923
4889
|
}, z.core.$strict>>;
|
|
4924
4890
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4925
4891
|
}, z.core.$strict>>;
|
|
4892
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
4893
|
+
field: z.ZodString;
|
|
4894
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
4895
|
+
label: z.ZodString;
|
|
4896
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
4897
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
4898
|
+
}, z.core.$strict>>;
|
|
4899
|
+
}, z.core.$strict>>;
|
|
4926
4900
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4927
4901
|
calc: z.ZodString;
|
|
4928
4902
|
as: z.ZodString;
|
|
@@ -5102,6 +5076,14 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5102
5076
|
}, z.core.$strict>>;
|
|
5103
5077
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5104
5078
|
}, z.core.$strict>>;
|
|
5079
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
5080
|
+
field: z.ZodString;
|
|
5081
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
5082
|
+
label: z.ZodString;
|
|
5083
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
5084
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
5085
|
+
}, z.core.$strict>>;
|
|
5086
|
+
}, z.core.$strict>>;
|
|
5105
5087
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5106
5088
|
calc: z.ZodString;
|
|
5107
5089
|
as: z.ZodString;
|
|
@@ -5276,6 +5258,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
5276
5258
|
}, z.core.$strict>>;
|
|
5277
5259
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5278
5260
|
}, z.core.$strict>>;
|
|
5261
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
5262
|
+
field: z.ZodString;
|
|
5263
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
5264
|
+
label: z.ZodString;
|
|
5265
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
5266
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
5267
|
+
}, z.core.$strict>>;
|
|
5268
|
+
}, z.core.$strict>>;
|
|
5279
5269
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5280
5270
|
calc: z.ZodString;
|
|
5281
5271
|
as: z.ZodString;
|
|
@@ -5442,6 +5432,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
5442
5432
|
}, z.core.$strict>>;
|
|
5443
5433
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5444
5434
|
}, z.core.$strict>>;
|
|
5435
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
5436
|
+
field: z.ZodString;
|
|
5437
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
5438
|
+
label: z.ZodString;
|
|
5439
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
5440
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
5441
|
+
}, z.core.$strict>>;
|
|
5442
|
+
}, z.core.$strict>>;
|
|
5445
5443
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5446
5444
|
calc: z.ZodString;
|
|
5447
5445
|
as: z.ZodString;
|
|
@@ -5603,6 +5601,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
5603
5601
|
}, z.core.$strict>>;
|
|
5604
5602
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5605
5603
|
}, z.core.$strict>>;
|
|
5604
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
5605
|
+
field: z.ZodString;
|
|
5606
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
5607
|
+
label: z.ZodString;
|
|
5608
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
5609
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
5610
|
+
}, z.core.$strict>>;
|
|
5611
|
+
}, z.core.$strict>>;
|
|
5606
5612
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5607
5613
|
calc: z.ZodString;
|
|
5608
5614
|
as: z.ZodString;
|
|
@@ -5781,6 +5787,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
5781
5787
|
}, z.core.$strict>>;
|
|
5782
5788
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5783
5789
|
}, z.core.$strict>>;
|
|
5790
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
5791
|
+
field: z.ZodString;
|
|
5792
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
5793
|
+
label: z.ZodString;
|
|
5794
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
5795
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
5796
|
+
}, z.core.$strict>>;
|
|
5797
|
+
}, z.core.$strict>>;
|
|
5784
5798
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5785
5799
|
calc: z.ZodString;
|
|
5786
5800
|
as: z.ZodString;
|
|
@@ -5942,6 +5956,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
5942
5956
|
}, z.core.$strict>>;
|
|
5943
5957
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5944
5958
|
}, z.core.$strict>>;
|
|
5959
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
5960
|
+
field: z.ZodString;
|
|
5961
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
5962
|
+
label: z.ZodString;
|
|
5963
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
5964
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
5965
|
+
}, z.core.$strict>>;
|
|
5966
|
+
}, z.core.$strict>>;
|
|
5945
5967
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5946
5968
|
calc: z.ZodString;
|
|
5947
5969
|
as: z.ZodString;
|
|
@@ -6013,7 +6035,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6013
6035
|
}, z.core.$strict>>>;
|
|
6014
6036
|
color: z.ZodOptional<z.ZodString>;
|
|
6015
6037
|
}, z.core.$strict>;
|
|
6016
|
-
query: z.
|
|
6038
|
+
query: z.ZodObject<{
|
|
6017
6039
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
6018
6040
|
resource: z.ZodString;
|
|
6019
6041
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -6026,45 +6048,10 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6026
6048
|
year: "year";
|
|
6027
6049
|
}>>;
|
|
6028
6050
|
}, z.core.$strict>, z.ZodObject<{
|
|
6029
|
-
|
|
6030
|
-
sum: "sum";
|
|
6031
|
-
count: "count";
|
|
6032
|
-
count_distinct: "count_distinct";
|
|
6033
|
-
avg: "avg";
|
|
6034
|
-
min: "min";
|
|
6035
|
-
max: "max";
|
|
6036
|
-
median: "median";
|
|
6037
|
-
}>;
|
|
6038
|
-
field: z.ZodOptional<z.ZodString>;
|
|
6039
|
-
as: z.ZodString;
|
|
6040
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6041
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6042
|
-
calc: z.ZodString;
|
|
6051
|
+
calc: z.ZodString;
|
|
6043
6052
|
as: z.ZodString;
|
|
6044
6053
|
}, z.core.$strict>]>>>;
|
|
6045
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
6046
|
-
field: z.ZodString;
|
|
6047
|
-
grain: z.ZodEnum<{
|
|
6048
|
-
day: "day";
|
|
6049
|
-
week: "week";
|
|
6050
|
-
month: "month";
|
|
6051
|
-
year: "year";
|
|
6052
|
-
}>;
|
|
6053
|
-
as: z.ZodString;
|
|
6054
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6055
|
-
}, z.core.$strict>>;
|
|
6056
6054
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6057
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
6058
|
-
field: z.ZodString;
|
|
6059
|
-
as: z.ZodOptional<z.ZodString>;
|
|
6060
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
6061
|
-
day: "day";
|
|
6062
|
-
week: "week";
|
|
6063
|
-
month: "month";
|
|
6064
|
-
year: "year";
|
|
6065
|
-
}>>;
|
|
6066
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
6067
|
-
}, z.core.$strict>]>>>;
|
|
6068
6055
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6069
6056
|
field: z.ZodString;
|
|
6070
6057
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6074,55 +6061,12 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6074
6061
|
}, z.core.$strict>>>;
|
|
6075
6062
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
6076
6063
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
6077
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
6078
|
-
field: z.ZodString;
|
|
6079
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
6080
|
-
label: z.ZodString;
|
|
6081
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
6082
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
6083
|
-
}, z.core.$strict>>;
|
|
6084
|
-
}, z.core.$strict>>;
|
|
6085
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6086
|
-
calc: z.ZodString;
|
|
6087
|
-
as: z.ZodString;
|
|
6088
|
-
}, z.core.$strict>>>;
|
|
6089
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6090
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6091
|
-
source: z.ZodLiteral<"steps">;
|
|
6092
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
6093
|
-
name: z.ZodString;
|
|
6094
|
-
resource: z.ZodString;
|
|
6095
|
-
select: z.ZodArray<z.ZodObject<{
|
|
6096
|
-
agg: z.ZodEnum<{
|
|
6097
|
-
sum: "sum";
|
|
6098
|
-
count: "count";
|
|
6099
|
-
count_distinct: "count_distinct";
|
|
6100
|
-
avg: "avg";
|
|
6101
|
-
min: "min";
|
|
6102
|
-
max: "max";
|
|
6103
|
-
median: "median";
|
|
6104
|
-
}>;
|
|
6105
|
-
field: z.ZodOptional<z.ZodString>;
|
|
6106
|
-
as: z.ZodString;
|
|
6107
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6108
|
-
}, z.core.$strict>>;
|
|
6109
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6110
|
-
}, z.core.$strict>>;
|
|
6111
6064
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6112
6065
|
calc: z.ZodString;
|
|
6113
6066
|
as: z.ZodString;
|
|
6114
6067
|
}, z.core.$strict>>>;
|
|
6115
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6116
|
-
field: z.ZodString;
|
|
6117
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
6118
|
-
asc: "asc";
|
|
6119
|
-
desc: "desc";
|
|
6120
|
-
}>>;
|
|
6121
|
-
}, z.core.$strict>>>;
|
|
6122
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
6123
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
6124
6068
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6125
|
-
}, z.core.$strict
|
|
6069
|
+
}, z.core.$strict>;
|
|
6126
6070
|
}, z.core.$strict>, z.ZodObject<{
|
|
6127
6071
|
id: z.ZodString;
|
|
6128
6072
|
group_id: z.ZodString;
|
|
@@ -6269,6 +6213,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6269
6213
|
}, z.core.$strict>>;
|
|
6270
6214
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6271
6215
|
}, z.core.$strict>>;
|
|
6216
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
6217
|
+
field: z.ZodString;
|
|
6218
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
6219
|
+
label: z.ZodString;
|
|
6220
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
6221
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
6222
|
+
}, z.core.$strict>>;
|
|
6223
|
+
}, z.core.$strict>>;
|
|
6272
6224
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6273
6225
|
calc: z.ZodString;
|
|
6274
6226
|
as: z.ZodString;
|
|
@@ -6456,6 +6408,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6456
6408
|
}, z.core.$strict>>;
|
|
6457
6409
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6458
6410
|
}, z.core.$strict>>;
|
|
6411
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
6412
|
+
field: z.ZodString;
|
|
6413
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
6414
|
+
label: z.ZodString;
|
|
6415
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
6416
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
6417
|
+
}, z.core.$strict>>;
|
|
6418
|
+
}, z.core.$strict>>;
|
|
6459
6419
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6460
6420
|
calc: z.ZodString;
|
|
6461
6421
|
as: z.ZodString;
|
|
@@ -6623,6 +6583,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6623
6583
|
}, z.core.$strict>>;
|
|
6624
6584
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6625
6585
|
}, z.core.$strict>>;
|
|
6586
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
6587
|
+
field: z.ZodString;
|
|
6588
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
6589
|
+
label: z.ZodString;
|
|
6590
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
6591
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
6592
|
+
}, z.core.$strict>>;
|
|
6593
|
+
}, z.core.$strict>>;
|
|
6626
6594
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6627
6595
|
calc: z.ZodString;
|
|
6628
6596
|
as: z.ZodString;
|
|
@@ -6802,6 +6770,14 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6802
6770
|
}, z.core.$strict>>;
|
|
6803
6771
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6804
6772
|
}, z.core.$strict>>;
|
|
6773
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
6774
|
+
field: z.ZodString;
|
|
6775
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
6776
|
+
label: z.ZodString;
|
|
6777
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
6778
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
6779
|
+
}, z.core.$strict>>;
|
|
6780
|
+
}, z.core.$strict>>;
|
|
6805
6781
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6806
6782
|
calc: z.ZodString;
|
|
6807
6783
|
as: z.ZodString;
|
|
@@ -7003,6 +6979,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7003
6979
|
}, z.core.$strict>>;
|
|
7004
6980
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7005
6981
|
}, z.core.$strict>>;
|
|
6982
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
6983
|
+
field: z.ZodString;
|
|
6984
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
6985
|
+
label: z.ZodString;
|
|
6986
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
6987
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
6988
|
+
}, z.core.$strict>>;
|
|
6989
|
+
}, z.core.$strict>>;
|
|
7006
6990
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7007
6991
|
calc: z.ZodString;
|
|
7008
6992
|
as: z.ZodString;
|
|
@@ -7187,6 +7171,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7187
7171
|
}, z.core.$strict>>;
|
|
7188
7172
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7189
7173
|
}, z.core.$strict>>;
|
|
7174
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
7175
|
+
field: z.ZodString;
|
|
7176
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
7177
|
+
label: z.ZodString;
|
|
7178
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7179
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7180
|
+
}, z.core.$strict>>;
|
|
7181
|
+
}, z.core.$strict>>;
|
|
7190
7182
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7191
7183
|
calc: z.ZodString;
|
|
7192
7184
|
as: z.ZodString;
|
|
@@ -7351,6 +7343,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7351
7343
|
}, z.core.$strict>>;
|
|
7352
7344
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7353
7345
|
}, z.core.$strict>>;
|
|
7346
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
7347
|
+
field: z.ZodString;
|
|
7348
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
7349
|
+
label: z.ZodString;
|
|
7350
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7351
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7352
|
+
}, z.core.$strict>>;
|
|
7353
|
+
}, z.core.$strict>>;
|
|
7354
7354
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7355
7355
|
calc: z.ZodString;
|
|
7356
7356
|
as: z.ZodString;
|
|
@@ -7514,6 +7514,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7514
7514
|
}, z.core.$strict>>;
|
|
7515
7515
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7516
7516
|
}, z.core.$strict>>;
|
|
7517
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
7518
|
+
field: z.ZodString;
|
|
7519
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
7520
|
+
label: z.ZodString;
|
|
7521
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7522
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7523
|
+
}, z.core.$strict>>;
|
|
7524
|
+
}, z.core.$strict>>;
|
|
7517
7525
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7518
7526
|
calc: z.ZodString;
|
|
7519
7527
|
as: z.ZodString;
|
|
@@ -7672,6 +7680,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7672
7680
|
}, z.core.$strict>>;
|
|
7673
7681
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7674
7682
|
}, z.core.$strict>>;
|
|
7683
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
7684
|
+
field: z.ZodString;
|
|
7685
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
7686
|
+
label: z.ZodString;
|
|
7687
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7688
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7689
|
+
}, z.core.$strict>>;
|
|
7690
|
+
}, z.core.$strict>>;
|
|
7675
7691
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7676
7692
|
calc: z.ZodString;
|
|
7677
7693
|
as: z.ZodString;
|
|
@@ -7847,6 +7863,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7847
7863
|
}, z.core.$strict>>;
|
|
7848
7864
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7849
7865
|
}, z.core.$strict>>;
|
|
7866
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
7867
|
+
field: z.ZodString;
|
|
7868
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
7869
|
+
label: z.ZodString;
|
|
7870
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7871
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7872
|
+
}, z.core.$strict>>;
|
|
7873
|
+
}, z.core.$strict>>;
|
|
7850
7874
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7851
7875
|
calc: z.ZodString;
|
|
7852
7876
|
as: z.ZodString;
|
|
@@ -8005,6 +8029,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8005
8029
|
}, z.core.$strict>>;
|
|
8006
8030
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8007
8031
|
}, z.core.$strict>>;
|
|
8032
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
8033
|
+
field: z.ZodString;
|
|
8034
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
8035
|
+
label: z.ZodString;
|
|
8036
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
8037
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
8038
|
+
}, z.core.$strict>>;
|
|
8039
|
+
}, z.core.$strict>>;
|
|
8008
8040
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8009
8041
|
calc: z.ZodString;
|
|
8010
8042
|
as: z.ZodString;
|
|
@@ -8073,7 +8105,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8073
8105
|
}, z.core.$strict>>>;
|
|
8074
8106
|
color: z.ZodOptional<z.ZodString>;
|
|
8075
8107
|
}, z.core.$strict>;
|
|
8076
|
-
query: z.
|
|
8108
|
+
query: z.ZodObject<{
|
|
8077
8109
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
8078
8110
|
resource: z.ZodString;
|
|
8079
8111
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -8085,46 +8117,11 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8085
8117
|
month: "month";
|
|
8086
8118
|
year: "year";
|
|
8087
8119
|
}>>;
|
|
8088
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
8089
|
-
agg: z.ZodEnum<{
|
|
8090
|
-
sum: "sum";
|
|
8091
|
-
count: "count";
|
|
8092
|
-
count_distinct: "count_distinct";
|
|
8093
|
-
avg: "avg";
|
|
8094
|
-
min: "min";
|
|
8095
|
-
max: "max";
|
|
8096
|
-
median: "median";
|
|
8097
|
-
}>;
|
|
8098
|
-
field: z.ZodOptional<z.ZodString>;
|
|
8099
|
-
as: z.ZodString;
|
|
8100
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8101
8120
|
}, z.core.$strict>, z.ZodObject<{
|
|
8102
8121
|
calc: z.ZodString;
|
|
8103
8122
|
as: z.ZodString;
|
|
8104
8123
|
}, z.core.$strict>]>>>;
|
|
8105
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
8106
|
-
field: z.ZodString;
|
|
8107
|
-
grain: z.ZodEnum<{
|
|
8108
|
-
day: "day";
|
|
8109
|
-
week: "week";
|
|
8110
|
-
month: "month";
|
|
8111
|
-
year: "year";
|
|
8112
|
-
}>;
|
|
8113
|
-
as: z.ZodString;
|
|
8114
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8115
|
-
}, z.core.$strict>>;
|
|
8116
8124
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8117
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
8118
|
-
field: z.ZodString;
|
|
8119
|
-
as: z.ZodOptional<z.ZodString>;
|
|
8120
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
8121
|
-
day: "day";
|
|
8122
|
-
week: "week";
|
|
8123
|
-
month: "month";
|
|
8124
|
-
year: "year";
|
|
8125
|
-
}>>;
|
|
8126
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
8127
|
-
}, z.core.$strict>]>>>;
|
|
8128
8125
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8129
8126
|
field: z.ZodString;
|
|
8130
8127
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8134,55 +8131,12 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8134
8131
|
}, z.core.$strict>>>;
|
|
8135
8132
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
8136
8133
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
8137
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
8138
|
-
field: z.ZodString;
|
|
8139
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
8140
|
-
label: z.ZodString;
|
|
8141
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
8142
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
8143
|
-
}, z.core.$strict>>;
|
|
8144
|
-
}, z.core.$strict>>;
|
|
8145
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8146
|
-
calc: z.ZodString;
|
|
8147
|
-
as: z.ZodString;
|
|
8148
|
-
}, z.core.$strict>>>;
|
|
8149
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8150
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
8151
|
-
source: z.ZodLiteral<"steps">;
|
|
8152
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
8153
|
-
name: z.ZodString;
|
|
8154
|
-
resource: z.ZodString;
|
|
8155
|
-
select: z.ZodArray<z.ZodObject<{
|
|
8156
|
-
agg: z.ZodEnum<{
|
|
8157
|
-
sum: "sum";
|
|
8158
|
-
count: "count";
|
|
8159
|
-
count_distinct: "count_distinct";
|
|
8160
|
-
avg: "avg";
|
|
8161
|
-
min: "min";
|
|
8162
|
-
max: "max";
|
|
8163
|
-
median: "median";
|
|
8164
|
-
}>;
|
|
8165
|
-
field: z.ZodOptional<z.ZodString>;
|
|
8166
|
-
as: z.ZodString;
|
|
8167
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8168
|
-
}, z.core.$strict>>;
|
|
8169
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8170
|
-
}, z.core.$strict>>;
|
|
8171
8134
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8172
8135
|
calc: z.ZodString;
|
|
8173
8136
|
as: z.ZodString;
|
|
8174
8137
|
}, z.core.$strict>>>;
|
|
8175
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8176
|
-
field: z.ZodString;
|
|
8177
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
8178
|
-
asc: "asc";
|
|
8179
|
-
desc: "desc";
|
|
8180
|
-
}>>;
|
|
8181
|
-
}, z.core.$strict>>>;
|
|
8182
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
8183
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
8184
8138
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8185
|
-
}, z.core.$strict
|
|
8139
|
+
}, z.core.$strict>;
|
|
8186
8140
|
}, z.core.$strict>, z.ZodObject<{
|
|
8187
8141
|
label: z.ZodOptional<z.ZodString>;
|
|
8188
8142
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -8326,6 +8280,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8326
8280
|
}, z.core.$strict>>;
|
|
8327
8281
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8328
8282
|
}, z.core.$strict>>;
|
|
8283
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
8284
|
+
field: z.ZodString;
|
|
8285
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
8286
|
+
label: z.ZodString;
|
|
8287
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
8288
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
8289
|
+
}, z.core.$strict>>;
|
|
8290
|
+
}, z.core.$strict>>;
|
|
8329
8291
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8330
8292
|
calc: z.ZodString;
|
|
8331
8293
|
as: z.ZodString;
|
|
@@ -8502,6 +8464,14 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8502
8464
|
}, z.core.$strict>>;
|
|
8503
8465
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8504
8466
|
}, z.core.$strict>>;
|
|
8467
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
8468
|
+
field: z.ZodString;
|
|
8469
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
8470
|
+
label: z.ZodString;
|
|
8471
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
8472
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
8473
|
+
}, z.core.$strict>>;
|
|
8474
|
+
}, z.core.$strict>>;
|
|
8505
8475
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8506
8476
|
calc: z.ZodString;
|
|
8507
8477
|
as: z.ZodString;
|
|
@@ -8649,7 +8619,15 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
8649
8619
|
}, z.core.$strict>>;
|
|
8650
8620
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8651
8621
|
}, z.core.$strict>>;
|
|
8652
|
-
|
|
8622
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
8623
|
+
field: z.ZodString;
|
|
8624
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
8625
|
+
label: z.ZodString;
|
|
8626
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
8627
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
8628
|
+
}, z.core.$strict>>;
|
|
8629
|
+
}, z.core.$strict>>;
|
|
8630
|
+
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8653
8631
|
calc: z.ZodString;
|
|
8654
8632
|
as: z.ZodString;
|
|
8655
8633
|
}, z.core.$strict>>>;
|
|
@@ -8833,6 +8811,14 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
8833
8811
|
}, z.core.$strict>>;
|
|
8834
8812
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8835
8813
|
}, z.core.$strict>>;
|
|
8814
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
8815
|
+
field: z.ZodString;
|
|
8816
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
8817
|
+
label: z.ZodString;
|
|
8818
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
8819
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
8820
|
+
}, z.core.$strict>>;
|
|
8821
|
+
}, z.core.$strict>>;
|
|
8836
8822
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8837
8823
|
calc: z.ZodString;
|
|
8838
8824
|
as: z.ZodString;
|
|
@@ -8997,6 +8983,14 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
8997
8983
|
}, z.core.$strict>>;
|
|
8998
8984
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8999
8985
|
}, z.core.$strict>>;
|
|
8986
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
8987
|
+
field: z.ZodString;
|
|
8988
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
8989
|
+
label: z.ZodString;
|
|
8990
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
8991
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
8992
|
+
}, z.core.$strict>>;
|
|
8993
|
+
}, z.core.$strict>>;
|
|
9000
8994
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9001
8995
|
calc: z.ZodString;
|
|
9002
8996
|
as: z.ZodString;
|
|
@@ -9160,6 +9154,14 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9160
9154
|
}, z.core.$strict>>;
|
|
9161
9155
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9162
9156
|
}, z.core.$strict>>;
|
|
9157
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
9158
|
+
field: z.ZodString;
|
|
9159
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
9160
|
+
label: z.ZodString;
|
|
9161
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
9162
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
9163
|
+
}, z.core.$strict>>;
|
|
9164
|
+
}, z.core.$strict>>;
|
|
9163
9165
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9164
9166
|
calc: z.ZodString;
|
|
9165
9167
|
as: z.ZodString;
|
|
@@ -9318,6 +9320,14 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9318
9320
|
}, z.core.$strict>>;
|
|
9319
9321
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9320
9322
|
}, z.core.$strict>>;
|
|
9323
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
9324
|
+
field: z.ZodString;
|
|
9325
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
9326
|
+
label: z.ZodString;
|
|
9327
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
9328
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
9329
|
+
}, z.core.$strict>>;
|
|
9330
|
+
}, z.core.$strict>>;
|
|
9321
9331
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9322
9332
|
calc: z.ZodString;
|
|
9323
9333
|
as: z.ZodString;
|
|
@@ -9493,6 +9503,14 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9493
9503
|
}, z.core.$strict>>;
|
|
9494
9504
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9495
9505
|
}, z.core.$strict>>;
|
|
9506
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
9507
|
+
field: z.ZodString;
|
|
9508
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
9509
|
+
label: z.ZodString;
|
|
9510
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
9511
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
9512
|
+
}, z.core.$strict>>;
|
|
9513
|
+
}, z.core.$strict>>;
|
|
9496
9514
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9497
9515
|
calc: z.ZodString;
|
|
9498
9516
|
as: z.ZodString;
|
|
@@ -9651,6 +9669,14 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9651
9669
|
}, z.core.$strict>>;
|
|
9652
9670
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9653
9671
|
}, z.core.$strict>>;
|
|
9672
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
9673
|
+
field: z.ZodString;
|
|
9674
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
9675
|
+
label: z.ZodString;
|
|
9676
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
9677
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
9678
|
+
}, z.core.$strict>>;
|
|
9679
|
+
}, z.core.$strict>>;
|
|
9654
9680
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9655
9681
|
calc: z.ZodString;
|
|
9656
9682
|
as: z.ZodString;
|
|
@@ -9719,7 +9745,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9719
9745
|
}, z.core.$strict>>>;
|
|
9720
9746
|
color: z.ZodOptional<z.ZodString>;
|
|
9721
9747
|
}, z.core.$strict>;
|
|
9722
|
-
query: z.
|
|
9748
|
+
query: z.ZodObject<{
|
|
9723
9749
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
9724
9750
|
resource: z.ZodString;
|
|
9725
9751
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -9731,46 +9757,11 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9731
9757
|
month: "month";
|
|
9732
9758
|
year: "year";
|
|
9733
9759
|
}>>;
|
|
9734
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9735
|
-
agg: z.ZodEnum<{
|
|
9736
|
-
sum: "sum";
|
|
9737
|
-
count: "count";
|
|
9738
|
-
count_distinct: "count_distinct";
|
|
9739
|
-
avg: "avg";
|
|
9740
|
-
min: "min";
|
|
9741
|
-
max: "max";
|
|
9742
|
-
median: "median";
|
|
9743
|
-
}>;
|
|
9744
|
-
field: z.ZodOptional<z.ZodString>;
|
|
9745
|
-
as: z.ZodString;
|
|
9746
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9747
9760
|
}, z.core.$strict>, z.ZodObject<{
|
|
9748
9761
|
calc: z.ZodString;
|
|
9749
9762
|
as: z.ZodString;
|
|
9750
9763
|
}, z.core.$strict>]>>>;
|
|
9751
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
9752
|
-
field: z.ZodString;
|
|
9753
|
-
grain: z.ZodEnum<{
|
|
9754
|
-
day: "day";
|
|
9755
|
-
week: "week";
|
|
9756
|
-
month: "month";
|
|
9757
|
-
year: "year";
|
|
9758
|
-
}>;
|
|
9759
|
-
as: z.ZodString;
|
|
9760
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9761
|
-
}, z.core.$strict>>;
|
|
9762
9764
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9763
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
9764
|
-
field: z.ZodString;
|
|
9765
|
-
as: z.ZodOptional<z.ZodString>;
|
|
9766
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
9767
|
-
day: "day";
|
|
9768
|
-
week: "week";
|
|
9769
|
-
month: "month";
|
|
9770
|
-
year: "year";
|
|
9771
|
-
}>>;
|
|
9772
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
9773
|
-
}, z.core.$strict>]>>>;
|
|
9774
9765
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9775
9766
|
field: z.ZodString;
|
|
9776
9767
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -9780,55 +9771,12 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9780
9771
|
}, z.core.$strict>>>;
|
|
9781
9772
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
9782
9773
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
9783
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
9784
|
-
field: z.ZodString;
|
|
9785
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
9786
|
-
label: z.ZodString;
|
|
9787
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
9788
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
9789
|
-
}, z.core.$strict>>;
|
|
9790
|
-
}, z.core.$strict>>;
|
|
9791
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9792
|
-
calc: z.ZodString;
|
|
9793
|
-
as: z.ZodString;
|
|
9794
|
-
}, z.core.$strict>>>;
|
|
9795
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9796
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9797
|
-
source: z.ZodLiteral<"steps">;
|
|
9798
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
9799
|
-
name: z.ZodString;
|
|
9800
|
-
resource: z.ZodString;
|
|
9801
|
-
select: z.ZodArray<z.ZodObject<{
|
|
9802
|
-
agg: z.ZodEnum<{
|
|
9803
|
-
sum: "sum";
|
|
9804
|
-
count: "count";
|
|
9805
|
-
count_distinct: "count_distinct";
|
|
9806
|
-
avg: "avg";
|
|
9807
|
-
min: "min";
|
|
9808
|
-
max: "max";
|
|
9809
|
-
median: "median";
|
|
9810
|
-
}>;
|
|
9811
|
-
field: z.ZodOptional<z.ZodString>;
|
|
9812
|
-
as: z.ZodString;
|
|
9813
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9814
|
-
}, z.core.$strict>>;
|
|
9815
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9816
|
-
}, z.core.$strict>>;
|
|
9817
9774
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9818
9775
|
calc: z.ZodString;
|
|
9819
9776
|
as: z.ZodString;
|
|
9820
9777
|
}, z.core.$strict>>>;
|
|
9821
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9822
|
-
field: z.ZodString;
|
|
9823
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
9824
|
-
asc: "asc";
|
|
9825
|
-
desc: "desc";
|
|
9826
|
-
}>>;
|
|
9827
|
-
}, z.core.$strict>>>;
|
|
9828
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
9829
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
9830
9778
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9831
|
-
}, z.core.$strict
|
|
9779
|
+
}, z.core.$strict>;
|
|
9832
9780
|
}, z.core.$strict>, z.ZodObject<{
|
|
9833
9781
|
label: z.ZodOptional<z.ZodString>;
|
|
9834
9782
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -9972,6 +9920,14 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9972
9920
|
}, z.core.$strict>>;
|
|
9973
9921
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9974
9922
|
}, z.core.$strict>>;
|
|
9923
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
9924
|
+
field: z.ZodString;
|
|
9925
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
9926
|
+
label: z.ZodString;
|
|
9927
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
9928
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
9929
|
+
}, z.core.$strict>>;
|
|
9930
|
+
}, z.core.$strict>>;
|
|
9975
9931
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9976
9932
|
calc: z.ZodString;
|
|
9977
9933
|
as: z.ZodString;
|
|
@@ -10148,6 +10104,14 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10148
10104
|
}, z.core.$strict>>;
|
|
10149
10105
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10150
10106
|
}, z.core.$strict>>;
|
|
10107
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
10108
|
+
field: z.ZodString;
|
|
10109
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
10110
|
+
label: z.ZodString;
|
|
10111
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
10112
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
10113
|
+
}, z.core.$strict>>;
|
|
10114
|
+
}, z.core.$strict>>;
|
|
10151
10115
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10152
10116
|
calc: z.ZodString;
|
|
10153
10117
|
as: z.ZodString;
|
|
@@ -10296,6 +10260,14 @@ export declare const ConfigureTableWidgetRequestZodSchema: z.ZodObject<{
|
|
|
10296
10260
|
}, z.core.$strict>>;
|
|
10297
10261
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10298
10262
|
}, z.core.$strict>>;
|
|
10263
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
10264
|
+
field: z.ZodString;
|
|
10265
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
10266
|
+
label: z.ZodString;
|
|
10267
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
10268
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
10269
|
+
}, z.core.$strict>>;
|
|
10270
|
+
}, z.core.$strict>>;
|
|
10299
10271
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10300
10272
|
calc: z.ZodString;
|
|
10301
10273
|
as: z.ZodString;
|
|
@@ -10485,6 +10457,14 @@ export declare const ConfigureKpiCardWidgetRequestZodSchema: z.ZodObject<{
|
|
|
10485
10457
|
}, z.core.$strict>>;
|
|
10486
10458
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10487
10459
|
}, z.core.$strict>>;
|
|
10460
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
10461
|
+
field: z.ZodString;
|
|
10462
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
10463
|
+
label: z.ZodString;
|
|
10464
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
10465
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
10466
|
+
}, z.core.$strict>>;
|
|
10467
|
+
}, z.core.$strict>>;
|
|
10488
10468
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10489
10469
|
calc: z.ZodString;
|
|
10490
10470
|
as: z.ZodString;
|
|
@@ -10654,6 +10634,14 @@ export declare const ConfigureGaugeCardWidgetRequestZodSchema: z.ZodObject<{
|
|
|
10654
10634
|
}, z.core.$strict>>;
|
|
10655
10635
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10656
10636
|
}, z.core.$strict>>;
|
|
10637
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
10638
|
+
field: z.ZodString;
|
|
10639
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
10640
|
+
label: z.ZodString;
|
|
10641
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
10642
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
10643
|
+
}, z.core.$strict>>;
|
|
10644
|
+
}, z.core.$strict>>;
|
|
10657
10645
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10658
10646
|
calc: z.ZodString;
|
|
10659
10647
|
as: z.ZodString;
|
|
@@ -10822,6 +10810,14 @@ export declare const ConfigureLineChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
10822
10810
|
}, z.core.$strict>>;
|
|
10823
10811
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10824
10812
|
}, z.core.$strict>>;
|
|
10813
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
10814
|
+
field: z.ZodString;
|
|
10815
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
10816
|
+
label: z.ZodString;
|
|
10817
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
10818
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
10819
|
+
}, z.core.$strict>>;
|
|
10820
|
+
}, z.core.$strict>>;
|
|
10825
10821
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10826
10822
|
calc: z.ZodString;
|
|
10827
10823
|
as: z.ZodString;
|
|
@@ -10985,6 +10981,14 @@ export declare const ConfigureBarChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
10985
10981
|
}, z.core.$strict>>;
|
|
10986
10982
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10987
10983
|
}, z.core.$strict>>;
|
|
10984
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
10985
|
+
field: z.ZodString;
|
|
10986
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
10987
|
+
label: z.ZodString;
|
|
10988
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
10989
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
10990
|
+
}, z.core.$strict>>;
|
|
10991
|
+
}, z.core.$strict>>;
|
|
10988
10992
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10989
10993
|
calc: z.ZodString;
|
|
10990
10994
|
as: z.ZodString;
|
|
@@ -11165,6 +11169,14 @@ export declare const ConfigureStackedBarChartWidgetRequestZodSchema: z.ZodObject
|
|
|
11165
11169
|
}, z.core.$strict>>;
|
|
11166
11170
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11167
11171
|
}, z.core.$strict>>;
|
|
11172
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
11173
|
+
field: z.ZodString;
|
|
11174
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
11175
|
+
label: z.ZodString;
|
|
11176
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
11177
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
11178
|
+
}, z.core.$strict>>;
|
|
11179
|
+
}, z.core.$strict>>;
|
|
11168
11180
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11169
11181
|
calc: z.ZodString;
|
|
11170
11182
|
as: z.ZodString;
|
|
@@ -11328,6 +11340,14 @@ export declare const ConfigurePieChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11328
11340
|
}, z.core.$strict>>;
|
|
11329
11341
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11330
11342
|
}, z.core.$strict>>;
|
|
11343
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
11344
|
+
field: z.ZodString;
|
|
11345
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
11346
|
+
label: z.ZodString;
|
|
11347
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
11348
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
11349
|
+
}, z.core.$strict>>;
|
|
11350
|
+
}, z.core.$strict>>;
|
|
11331
11351
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11332
11352
|
calc: z.ZodString;
|
|
11333
11353
|
as: z.ZodString;
|
|
@@ -11401,7 +11421,7 @@ export declare const ConfigureHistogramChartWidgetRequestZodSchema: z.ZodObject<
|
|
|
11401
11421
|
}, z.core.$strict>>>;
|
|
11402
11422
|
color: z.ZodOptional<z.ZodString>;
|
|
11403
11423
|
}, z.core.$strict>;
|
|
11404
|
-
query: z.
|
|
11424
|
+
query: z.ZodObject<{
|
|
11405
11425
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
11406
11426
|
resource: z.ZodString;
|
|
11407
11427
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -11413,46 +11433,11 @@ export declare const ConfigureHistogramChartWidgetRequestZodSchema: z.ZodObject<
|
|
|
11413
11433
|
month: "month";
|
|
11414
11434
|
year: "year";
|
|
11415
11435
|
}>>;
|
|
11416
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
11417
|
-
agg: z.ZodEnum<{
|
|
11418
|
-
sum: "sum";
|
|
11419
|
-
count: "count";
|
|
11420
|
-
count_distinct: "count_distinct";
|
|
11421
|
-
avg: "avg";
|
|
11422
|
-
min: "min";
|
|
11423
|
-
max: "max";
|
|
11424
|
-
median: "median";
|
|
11425
|
-
}>;
|
|
11426
|
-
field: z.ZodOptional<z.ZodString>;
|
|
11427
|
-
as: z.ZodString;
|
|
11428
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11429
11436
|
}, z.core.$strict>, z.ZodObject<{
|
|
11430
11437
|
calc: z.ZodString;
|
|
11431
11438
|
as: z.ZodString;
|
|
11432
11439
|
}, z.core.$strict>]>>>;
|
|
11433
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
11434
|
-
field: z.ZodString;
|
|
11435
|
-
grain: z.ZodEnum<{
|
|
11436
|
-
day: "day";
|
|
11437
|
-
week: "week";
|
|
11438
|
-
month: "month";
|
|
11439
|
-
year: "year";
|
|
11440
|
-
}>;
|
|
11441
|
-
as: z.ZodString;
|
|
11442
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11443
|
-
}, z.core.$strict>>;
|
|
11444
11440
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11445
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
11446
|
-
field: z.ZodString;
|
|
11447
|
-
as: z.ZodOptional<z.ZodString>;
|
|
11448
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
11449
|
-
day: "day";
|
|
11450
|
-
week: "week";
|
|
11451
|
-
month: "month";
|
|
11452
|
-
year: "year";
|
|
11453
|
-
}>>;
|
|
11454
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
11455
|
-
}, z.core.$strict>]>>>;
|
|
11456
11441
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11457
11442
|
field: z.ZodString;
|
|
11458
11443
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -11462,55 +11447,12 @@ export declare const ConfigureHistogramChartWidgetRequestZodSchema: z.ZodObject<
|
|
|
11462
11447
|
}, z.core.$strict>>>;
|
|
11463
11448
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
11464
11449
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
11465
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
11466
|
-
field: z.ZodString;
|
|
11467
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
11468
|
-
label: z.ZodString;
|
|
11469
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
11470
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
11471
|
-
}, z.core.$strict>>;
|
|
11472
|
-
}, z.core.$strict>>;
|
|
11473
11450
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11474
11451
|
calc: z.ZodString;
|
|
11475
11452
|
as: z.ZodString;
|
|
11476
11453
|
}, z.core.$strict>>>;
|
|
11477
11454
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11478
|
-
}, z.core.$strict
|
|
11479
|
-
source: z.ZodLiteral<"steps">;
|
|
11480
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
11481
|
-
name: z.ZodString;
|
|
11482
|
-
resource: z.ZodString;
|
|
11483
|
-
select: z.ZodArray<z.ZodObject<{
|
|
11484
|
-
agg: z.ZodEnum<{
|
|
11485
|
-
sum: "sum";
|
|
11486
|
-
count: "count";
|
|
11487
|
-
count_distinct: "count_distinct";
|
|
11488
|
-
avg: "avg";
|
|
11489
|
-
min: "min";
|
|
11490
|
-
max: "max";
|
|
11491
|
-
median: "median";
|
|
11492
|
-
}>;
|
|
11493
|
-
field: z.ZodOptional<z.ZodString>;
|
|
11494
|
-
as: z.ZodString;
|
|
11495
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11496
|
-
}, z.core.$strict>>;
|
|
11497
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11498
|
-
}, z.core.$strict>>;
|
|
11499
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11500
|
-
calc: z.ZodString;
|
|
11501
|
-
as: z.ZodString;
|
|
11502
|
-
}, z.core.$strict>>>;
|
|
11503
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11504
|
-
field: z.ZodString;
|
|
11505
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
11506
|
-
asc: "asc";
|
|
11507
|
-
desc: "desc";
|
|
11508
|
-
}>>;
|
|
11509
|
-
}, z.core.$strict>>>;
|
|
11510
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
11511
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
11512
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11513
|
-
}, z.core.$strict>]>;
|
|
11455
|
+
}, z.core.$strict>;
|
|
11514
11456
|
}, z.core.$strict>;
|
|
11515
11457
|
}, z.core.$strict>;
|
|
11516
11458
|
export declare const ConfigureFunnelChartWidgetRequestZodSchema: z.ZodObject<{
|
|
@@ -11659,6 +11601,14 @@ export declare const ConfigureFunnelChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11659
11601
|
}, z.core.$strict>>;
|
|
11660
11602
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11661
11603
|
}, z.core.$strict>>;
|
|
11604
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
11605
|
+
field: z.ZodString;
|
|
11606
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
11607
|
+
label: z.ZodString;
|
|
11608
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
11609
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
11610
|
+
}, z.core.$strict>>;
|
|
11611
|
+
}, z.core.$strict>>;
|
|
11662
11612
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11663
11613
|
calc: z.ZodString;
|
|
11664
11614
|
as: z.ZodString;
|
|
@@ -11840,6 +11790,14 @@ export declare const ConfigurePivotTableWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11840
11790
|
}, z.core.$strict>>;
|
|
11841
11791
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11842
11792
|
}, z.core.$strict>>;
|
|
11793
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
11794
|
+
field: z.ZodString;
|
|
11795
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
11796
|
+
label: z.ZodString;
|
|
11797
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
11798
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
11799
|
+
}, z.core.$strict>>;
|
|
11800
|
+
}, z.core.$strict>>;
|
|
11843
11801
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11844
11802
|
calc: z.ZodString;
|
|
11845
11803
|
as: z.ZodString;
|
|
@@ -12014,6 +11972,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
12014
11972
|
}, z.core.$strict>>;
|
|
12015
11973
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12016
11974
|
}, z.core.$strict>>;
|
|
11975
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
11976
|
+
field: z.ZodString;
|
|
11977
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
11978
|
+
label: z.ZodString;
|
|
11979
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
11980
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
11981
|
+
}, z.core.$strict>>;
|
|
11982
|
+
}, z.core.$strict>>;
|
|
12017
11983
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12018
11984
|
calc: z.ZodString;
|
|
12019
11985
|
as: z.ZodString;
|
|
@@ -12180,6 +12146,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
12180
12146
|
}, z.core.$strict>>;
|
|
12181
12147
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12182
12148
|
}, z.core.$strict>>;
|
|
12149
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
12150
|
+
field: z.ZodString;
|
|
12151
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
12152
|
+
label: z.ZodString;
|
|
12153
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
12154
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12155
|
+
}, z.core.$strict>>;
|
|
12156
|
+
}, z.core.$strict>>;
|
|
12183
12157
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12184
12158
|
calc: z.ZodString;
|
|
12185
12159
|
as: z.ZodString;
|
|
@@ -12341,6 +12315,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
12341
12315
|
}, z.core.$strict>>;
|
|
12342
12316
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12343
12317
|
}, z.core.$strict>>;
|
|
12318
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
12319
|
+
field: z.ZodString;
|
|
12320
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
12321
|
+
label: z.ZodString;
|
|
12322
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
12323
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12324
|
+
}, z.core.$strict>>;
|
|
12325
|
+
}, z.core.$strict>>;
|
|
12344
12326
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12345
12327
|
calc: z.ZodString;
|
|
12346
12328
|
as: z.ZodString;
|
|
@@ -12519,6 +12501,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
12519
12501
|
}, z.core.$strict>>;
|
|
12520
12502
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12521
12503
|
}, z.core.$strict>>;
|
|
12504
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
12505
|
+
field: z.ZodString;
|
|
12506
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
12507
|
+
label: z.ZodString;
|
|
12508
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
12509
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12510
|
+
}, z.core.$strict>>;
|
|
12511
|
+
}, z.core.$strict>>;
|
|
12522
12512
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12523
12513
|
calc: z.ZodString;
|
|
12524
12514
|
as: z.ZodString;
|
|
@@ -12680,6 +12670,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
12680
12670
|
}, z.core.$strict>>;
|
|
12681
12671
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12682
12672
|
}, z.core.$strict>>;
|
|
12673
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
12674
|
+
field: z.ZodString;
|
|
12675
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
12676
|
+
label: z.ZodString;
|
|
12677
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
12678
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12679
|
+
}, z.core.$strict>>;
|
|
12680
|
+
}, z.core.$strict>>;
|
|
12683
12681
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12684
12682
|
calc: z.ZodString;
|
|
12685
12683
|
as: z.ZodString;
|
|
@@ -12751,7 +12749,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
12751
12749
|
}, z.core.$strict>>>;
|
|
12752
12750
|
color: z.ZodOptional<z.ZodString>;
|
|
12753
12751
|
}, z.core.$strict>;
|
|
12754
|
-
query: z.
|
|
12752
|
+
query: z.ZodObject<{
|
|
12755
12753
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
12756
12754
|
resource: z.ZodString;
|
|
12757
12755
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -12763,46 +12761,11 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
12763
12761
|
month: "month";
|
|
12764
12762
|
year: "year";
|
|
12765
12763
|
}>>;
|
|
12766
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12767
|
-
agg: z.ZodEnum<{
|
|
12768
|
-
sum: "sum";
|
|
12769
|
-
count: "count";
|
|
12770
|
-
count_distinct: "count_distinct";
|
|
12771
|
-
avg: "avg";
|
|
12772
|
-
min: "min";
|
|
12773
|
-
max: "max";
|
|
12774
|
-
median: "median";
|
|
12775
|
-
}>;
|
|
12776
|
-
field: z.ZodOptional<z.ZodString>;
|
|
12777
|
-
as: z.ZodString;
|
|
12778
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12779
12764
|
}, z.core.$strict>, z.ZodObject<{
|
|
12780
12765
|
calc: z.ZodString;
|
|
12781
12766
|
as: z.ZodString;
|
|
12782
12767
|
}, z.core.$strict>]>>>;
|
|
12783
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
12784
|
-
field: z.ZodString;
|
|
12785
|
-
grain: z.ZodEnum<{
|
|
12786
|
-
day: "day";
|
|
12787
|
-
week: "week";
|
|
12788
|
-
month: "month";
|
|
12789
|
-
year: "year";
|
|
12790
|
-
}>;
|
|
12791
|
-
as: z.ZodString;
|
|
12792
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12793
|
-
}, z.core.$strict>>;
|
|
12794
12768
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12795
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
12796
|
-
field: z.ZodString;
|
|
12797
|
-
as: z.ZodOptional<z.ZodString>;
|
|
12798
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
12799
|
-
day: "day";
|
|
12800
|
-
week: "week";
|
|
12801
|
-
month: "month";
|
|
12802
|
-
year: "year";
|
|
12803
|
-
}>>;
|
|
12804
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
12805
|
-
}, z.core.$strict>]>>>;
|
|
12806
12769
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12807
12770
|
field: z.ZodString;
|
|
12808
12771
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -12812,55 +12775,12 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
12812
12775
|
}, z.core.$strict>>>;
|
|
12813
12776
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
12814
12777
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
12815
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
12816
|
-
field: z.ZodString;
|
|
12817
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
12818
|
-
label: z.ZodString;
|
|
12819
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
12820
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
12821
|
-
}, z.core.$strict>>;
|
|
12822
|
-
}, z.core.$strict>>;
|
|
12823
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12824
|
-
calc: z.ZodString;
|
|
12825
|
-
as: z.ZodString;
|
|
12826
|
-
}, z.core.$strict>>>;
|
|
12827
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12828
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12829
|
-
source: z.ZodLiteral<"steps">;
|
|
12830
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
12831
|
-
name: z.ZodString;
|
|
12832
|
-
resource: z.ZodString;
|
|
12833
|
-
select: z.ZodArray<z.ZodObject<{
|
|
12834
|
-
agg: z.ZodEnum<{
|
|
12835
|
-
sum: "sum";
|
|
12836
|
-
count: "count";
|
|
12837
|
-
count_distinct: "count_distinct";
|
|
12838
|
-
avg: "avg";
|
|
12839
|
-
min: "min";
|
|
12840
|
-
max: "max";
|
|
12841
|
-
median: "median";
|
|
12842
|
-
}>;
|
|
12843
|
-
field: z.ZodOptional<z.ZodString>;
|
|
12844
|
-
as: z.ZodString;
|
|
12845
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12846
|
-
}, z.core.$strict>>;
|
|
12847
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12848
|
-
}, z.core.$strict>>;
|
|
12849
12778
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12850
12779
|
calc: z.ZodString;
|
|
12851
12780
|
as: z.ZodString;
|
|
12852
12781
|
}, z.core.$strict>>>;
|
|
12853
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12854
|
-
field: z.ZodString;
|
|
12855
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
12856
|
-
asc: "asc";
|
|
12857
|
-
desc: "desc";
|
|
12858
|
-
}>>;
|
|
12859
|
-
}, z.core.$strict>>>;
|
|
12860
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
12861
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
12862
12782
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12863
|
-
}, z.core.$strict
|
|
12783
|
+
}, z.core.$strict>;
|
|
12864
12784
|
}, z.core.$strict>, z.ZodObject<{
|
|
12865
12785
|
id: z.ZodString;
|
|
12866
12786
|
group_id: z.ZodString;
|
|
@@ -13007,6 +12927,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
13007
12927
|
}, z.core.$strict>>;
|
|
13008
12928
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13009
12929
|
}, z.core.$strict>>;
|
|
12930
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
12931
|
+
field: z.ZodString;
|
|
12932
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
12933
|
+
label: z.ZodString;
|
|
12934
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
12935
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12936
|
+
}, z.core.$strict>>;
|
|
12937
|
+
}, z.core.$strict>>;
|
|
13010
12938
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13011
12939
|
calc: z.ZodString;
|
|
13012
12940
|
as: z.ZodString;
|
|
@@ -13194,6 +13122,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
13194
13122
|
}, z.core.$strict>>;
|
|
13195
13123
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13196
13124
|
}, z.core.$strict>>;
|
|
13125
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
13126
|
+
field: z.ZodString;
|
|
13127
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
13128
|
+
label: z.ZodString;
|
|
13129
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
13130
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
13131
|
+
}, z.core.$strict>>;
|
|
13132
|
+
}, z.core.$strict>>;
|
|
13197
13133
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13198
13134
|
calc: z.ZodString;
|
|
13199
13135
|
as: z.ZodString;
|
|
@@ -13361,6 +13297,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
13361
13297
|
}, z.core.$strict>>;
|
|
13362
13298
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13363
13299
|
}, z.core.$strict>>;
|
|
13300
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
13301
|
+
field: z.ZodString;
|
|
13302
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
13303
|
+
label: z.ZodString;
|
|
13304
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
13305
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
13306
|
+
}, z.core.$strict>>;
|
|
13307
|
+
}, z.core.$strict>>;
|
|
13364
13308
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13365
13309
|
calc: z.ZodString;
|
|
13366
13310
|
as: z.ZodString;
|
|
@@ -13540,6 +13484,14 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
13540
13484
|
}, z.core.$strict>>;
|
|
13541
13485
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13542
13486
|
}, z.core.$strict>>;
|
|
13487
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
13488
|
+
field: z.ZodString;
|
|
13489
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
13490
|
+
label: z.ZodString;
|
|
13491
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
13492
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
13493
|
+
}, z.core.$strict>>;
|
|
13494
|
+
}, z.core.$strict>>;
|
|
13543
13495
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13544
13496
|
calc: z.ZodString;
|
|
13545
13497
|
as: z.ZodString;
|
|
@@ -13747,6 +13699,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
13747
13699
|
}, z.core.$strict>>;
|
|
13748
13700
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13749
13701
|
}, z.core.$strict>>;
|
|
13702
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
13703
|
+
field: z.ZodString;
|
|
13704
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
13705
|
+
label: z.ZodString;
|
|
13706
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
13707
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
13708
|
+
}, z.core.$strict>>;
|
|
13709
|
+
}, z.core.$strict>>;
|
|
13750
13710
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13751
13711
|
calc: z.ZodString;
|
|
13752
13712
|
as: z.ZodString;
|
|
@@ -13931,6 +13891,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
13931
13891
|
}, z.core.$strict>>;
|
|
13932
13892
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13933
13893
|
}, z.core.$strict>>;
|
|
13894
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
13895
|
+
field: z.ZodString;
|
|
13896
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
13897
|
+
label: z.ZodString;
|
|
13898
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
13899
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
13900
|
+
}, z.core.$strict>>;
|
|
13901
|
+
}, z.core.$strict>>;
|
|
13934
13902
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13935
13903
|
calc: z.ZodString;
|
|
13936
13904
|
as: z.ZodString;
|
|
@@ -14095,6 +14063,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
14095
14063
|
}, z.core.$strict>>;
|
|
14096
14064
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14097
14065
|
}, z.core.$strict>>;
|
|
14066
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
14067
|
+
field: z.ZodString;
|
|
14068
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
14069
|
+
label: z.ZodString;
|
|
14070
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
14071
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
14072
|
+
}, z.core.$strict>>;
|
|
14073
|
+
}, z.core.$strict>>;
|
|
14098
14074
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14099
14075
|
calc: z.ZodString;
|
|
14100
14076
|
as: z.ZodString;
|
|
@@ -14258,6 +14234,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
14258
14234
|
}, z.core.$strict>>;
|
|
14259
14235
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14260
14236
|
}, z.core.$strict>>;
|
|
14237
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
14238
|
+
field: z.ZodString;
|
|
14239
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
14240
|
+
label: z.ZodString;
|
|
14241
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
14242
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
14243
|
+
}, z.core.$strict>>;
|
|
14244
|
+
}, z.core.$strict>>;
|
|
14261
14245
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14262
14246
|
calc: z.ZodString;
|
|
14263
14247
|
as: z.ZodString;
|
|
@@ -14416,6 +14400,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
14416
14400
|
}, z.core.$strict>>;
|
|
14417
14401
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14418
14402
|
}, z.core.$strict>>;
|
|
14403
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
14404
|
+
field: z.ZodString;
|
|
14405
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
14406
|
+
label: z.ZodString;
|
|
14407
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
14408
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
14409
|
+
}, z.core.$strict>>;
|
|
14410
|
+
}, z.core.$strict>>;
|
|
14419
14411
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14420
14412
|
calc: z.ZodString;
|
|
14421
14413
|
as: z.ZodString;
|
|
@@ -14591,6 +14583,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
14591
14583
|
}, z.core.$strict>>;
|
|
14592
14584
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14593
14585
|
}, z.core.$strict>>;
|
|
14586
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
14587
|
+
field: z.ZodString;
|
|
14588
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
14589
|
+
label: z.ZodString;
|
|
14590
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
14591
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
14592
|
+
}, z.core.$strict>>;
|
|
14593
|
+
}, z.core.$strict>>;
|
|
14594
14594
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14595
14595
|
calc: z.ZodString;
|
|
14596
14596
|
as: z.ZodString;
|
|
@@ -14749,6 +14749,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
14749
14749
|
}, z.core.$strict>>;
|
|
14750
14750
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14751
14751
|
}, z.core.$strict>>;
|
|
14752
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
14753
|
+
field: z.ZodString;
|
|
14754
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
14755
|
+
label: z.ZodString;
|
|
14756
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
14757
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
14758
|
+
}, z.core.$strict>>;
|
|
14759
|
+
}, z.core.$strict>>;
|
|
14752
14760
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14753
14761
|
calc: z.ZodString;
|
|
14754
14762
|
as: z.ZodString;
|
|
@@ -14817,7 +14825,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
14817
14825
|
}, z.core.$strict>>>;
|
|
14818
14826
|
color: z.ZodOptional<z.ZodString>;
|
|
14819
14827
|
}, z.core.$strict>;
|
|
14820
|
-
query: z.
|
|
14828
|
+
query: z.ZodObject<{
|
|
14821
14829
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
14822
14830
|
resource: z.ZodString;
|
|
14823
14831
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -14829,46 +14837,11 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
14829
14837
|
month: "month";
|
|
14830
14838
|
year: "year";
|
|
14831
14839
|
}>>;
|
|
14832
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
14833
|
-
agg: z.ZodEnum<{
|
|
14834
|
-
sum: "sum";
|
|
14835
|
-
count: "count";
|
|
14836
|
-
count_distinct: "count_distinct";
|
|
14837
|
-
avg: "avg";
|
|
14838
|
-
min: "min";
|
|
14839
|
-
max: "max";
|
|
14840
|
-
median: "median";
|
|
14841
|
-
}>;
|
|
14842
|
-
field: z.ZodOptional<z.ZodString>;
|
|
14843
|
-
as: z.ZodString;
|
|
14844
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14845
14840
|
}, z.core.$strict>, z.ZodObject<{
|
|
14846
14841
|
calc: z.ZodString;
|
|
14847
14842
|
as: z.ZodString;
|
|
14848
14843
|
}, z.core.$strict>]>>>;
|
|
14849
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
14850
|
-
field: z.ZodString;
|
|
14851
|
-
grain: z.ZodEnum<{
|
|
14852
|
-
day: "day";
|
|
14853
|
-
week: "week";
|
|
14854
|
-
month: "month";
|
|
14855
|
-
year: "year";
|
|
14856
|
-
}>;
|
|
14857
|
-
as: z.ZodString;
|
|
14858
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14859
|
-
}, z.core.$strict>>;
|
|
14860
14844
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14861
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
14862
|
-
field: z.ZodString;
|
|
14863
|
-
as: z.ZodOptional<z.ZodString>;
|
|
14864
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
14865
|
-
day: "day";
|
|
14866
|
-
week: "week";
|
|
14867
|
-
month: "month";
|
|
14868
|
-
year: "year";
|
|
14869
|
-
}>>;
|
|
14870
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
14871
|
-
}, z.core.$strict>]>>>;
|
|
14872
14845
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14873
14846
|
field: z.ZodString;
|
|
14874
14847
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -14878,55 +14851,12 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
14878
14851
|
}, z.core.$strict>>>;
|
|
14879
14852
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
14880
14853
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
14881
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
14882
|
-
field: z.ZodString;
|
|
14883
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
14884
|
-
label: z.ZodString;
|
|
14885
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
14886
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
14887
|
-
}, z.core.$strict>>;
|
|
14888
|
-
}, z.core.$strict>>;
|
|
14889
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14890
|
-
calc: z.ZodString;
|
|
14891
|
-
as: z.ZodString;
|
|
14892
|
-
}, z.core.$strict>>>;
|
|
14893
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14894
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
14895
|
-
source: z.ZodLiteral<"steps">;
|
|
14896
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
14897
|
-
name: z.ZodString;
|
|
14898
|
-
resource: z.ZodString;
|
|
14899
|
-
select: z.ZodArray<z.ZodObject<{
|
|
14900
|
-
agg: z.ZodEnum<{
|
|
14901
|
-
sum: "sum";
|
|
14902
|
-
count: "count";
|
|
14903
|
-
count_distinct: "count_distinct";
|
|
14904
|
-
avg: "avg";
|
|
14905
|
-
min: "min";
|
|
14906
|
-
max: "max";
|
|
14907
|
-
median: "median";
|
|
14908
|
-
}>;
|
|
14909
|
-
field: z.ZodOptional<z.ZodString>;
|
|
14910
|
-
as: z.ZodString;
|
|
14911
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14912
|
-
}, z.core.$strict>>;
|
|
14913
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14914
|
-
}, z.core.$strict>>;
|
|
14915
14854
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14916
14855
|
calc: z.ZodString;
|
|
14917
14856
|
as: z.ZodString;
|
|
14918
14857
|
}, z.core.$strict>>>;
|
|
14919
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14920
|
-
field: z.ZodString;
|
|
14921
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
14922
|
-
asc: "asc";
|
|
14923
|
-
desc: "desc";
|
|
14924
|
-
}>>;
|
|
14925
|
-
}, z.core.$strict>>>;
|
|
14926
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
14927
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
14928
14858
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14929
|
-
}, z.core.$strict
|
|
14859
|
+
}, z.core.$strict>;
|
|
14930
14860
|
}, z.core.$strict>, z.ZodObject<{
|
|
14931
14861
|
label: z.ZodOptional<z.ZodString>;
|
|
14932
14862
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -15070,6 +15000,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
15070
15000
|
}, z.core.$strict>>;
|
|
15071
15001
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15072
15002
|
}, z.core.$strict>>;
|
|
15003
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
15004
|
+
field: z.ZodString;
|
|
15005
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
15006
|
+
label: z.ZodString;
|
|
15007
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
15008
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
15009
|
+
}, z.core.$strict>>;
|
|
15010
|
+
}, z.core.$strict>>;
|
|
15073
15011
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15074
15012
|
calc: z.ZodString;
|
|
15075
15013
|
as: z.ZodString;
|
|
@@ -15246,6 +15184,14 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
15246
15184
|
}, z.core.$strict>>;
|
|
15247
15185
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15248
15186
|
}, z.core.$strict>>;
|
|
15187
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
15188
|
+
field: z.ZodString;
|
|
15189
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
15190
|
+
label: z.ZodString;
|
|
15191
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
15192
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
15193
|
+
}, z.core.$strict>>;
|
|
15194
|
+
}, z.core.$strict>>;
|
|
15249
15195
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15250
15196
|
calc: z.ZodString;
|
|
15251
15197
|
as: z.ZodString;
|
|
@@ -15394,6 +15340,14 @@ export declare const ConfigureTableWidgetRequestSchema: z.core.ZodStandardJSONSc
|
|
|
15394
15340
|
}, z.core.$strict>>;
|
|
15395
15341
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15396
15342
|
}, z.core.$strict>>;
|
|
15343
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
15344
|
+
field: z.ZodString;
|
|
15345
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
15346
|
+
label: z.ZodString;
|
|
15347
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
15348
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
15349
|
+
}, z.core.$strict>>;
|
|
15350
|
+
}, z.core.$strict>>;
|
|
15397
15351
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15398
15352
|
calc: z.ZodString;
|
|
15399
15353
|
as: z.ZodString;
|
|
@@ -15583,6 +15537,14 @@ export declare const ConfigureKpiCardWidgetRequestSchema: z.core.ZodStandardJSON
|
|
|
15583
15537
|
}, z.core.$strict>>;
|
|
15584
15538
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15585
15539
|
}, z.core.$strict>>;
|
|
15540
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
15541
|
+
field: z.ZodString;
|
|
15542
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
15543
|
+
label: z.ZodString;
|
|
15544
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
15545
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
15546
|
+
}, z.core.$strict>>;
|
|
15547
|
+
}, z.core.$strict>>;
|
|
15586
15548
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15587
15549
|
calc: z.ZodString;
|
|
15588
15550
|
as: z.ZodString;
|
|
@@ -15752,6 +15714,14 @@ export declare const ConfigureGaugeCardWidgetRequestSchema: z.core.ZodStandardJS
|
|
|
15752
15714
|
}, z.core.$strict>>;
|
|
15753
15715
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15754
15716
|
}, z.core.$strict>>;
|
|
15717
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
15718
|
+
field: z.ZodString;
|
|
15719
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
15720
|
+
label: z.ZodString;
|
|
15721
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
15722
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
15723
|
+
}, z.core.$strict>>;
|
|
15724
|
+
}, z.core.$strict>>;
|
|
15755
15725
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15756
15726
|
calc: z.ZodString;
|
|
15757
15727
|
as: z.ZodString;
|
|
@@ -15920,6 +15890,14 @@ export declare const ConfigureLineChartWidgetRequestSchema: z.core.ZodStandardJS
|
|
|
15920
15890
|
}, z.core.$strict>>;
|
|
15921
15891
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15922
15892
|
}, z.core.$strict>>;
|
|
15893
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
15894
|
+
field: z.ZodString;
|
|
15895
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
15896
|
+
label: z.ZodString;
|
|
15897
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
15898
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
15899
|
+
}, z.core.$strict>>;
|
|
15900
|
+
}, z.core.$strict>>;
|
|
15923
15901
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15924
15902
|
calc: z.ZodString;
|
|
15925
15903
|
as: z.ZodString;
|
|
@@ -16083,6 +16061,14 @@ export declare const ConfigureBarChartWidgetRequestSchema: z.core.ZodStandardJSO
|
|
|
16083
16061
|
}, z.core.$strict>>;
|
|
16084
16062
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16085
16063
|
}, z.core.$strict>>;
|
|
16064
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
16065
|
+
field: z.ZodString;
|
|
16066
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
16067
|
+
label: z.ZodString;
|
|
16068
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
16069
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
16070
|
+
}, z.core.$strict>>;
|
|
16071
|
+
}, z.core.$strict>>;
|
|
16086
16072
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16087
16073
|
calc: z.ZodString;
|
|
16088
16074
|
as: z.ZodString;
|
|
@@ -16263,6 +16249,14 @@ export declare const ConfigureStackedBarChartWidgetRequestSchema: z.core.ZodStan
|
|
|
16263
16249
|
}, z.core.$strict>>;
|
|
16264
16250
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16265
16251
|
}, z.core.$strict>>;
|
|
16252
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
16253
|
+
field: z.ZodString;
|
|
16254
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
16255
|
+
label: z.ZodString;
|
|
16256
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
16257
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
16258
|
+
}, z.core.$strict>>;
|
|
16259
|
+
}, z.core.$strict>>;
|
|
16266
16260
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16267
16261
|
calc: z.ZodString;
|
|
16268
16262
|
as: z.ZodString;
|
|
@@ -16426,6 +16420,14 @@ export declare const ConfigurePieChartWidgetRequestSchema: z.core.ZodStandardJSO
|
|
|
16426
16420
|
}, z.core.$strict>>;
|
|
16427
16421
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16428
16422
|
}, z.core.$strict>>;
|
|
16423
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
16424
|
+
field: z.ZodString;
|
|
16425
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
16426
|
+
label: z.ZodString;
|
|
16427
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
16428
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
16429
|
+
}, z.core.$strict>>;
|
|
16430
|
+
}, z.core.$strict>>;
|
|
16429
16431
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16430
16432
|
calc: z.ZodString;
|
|
16431
16433
|
as: z.ZodString;
|
|
@@ -16499,7 +16501,7 @@ export declare const ConfigureHistogramChartWidgetRequestSchema: z.core.ZodStand
|
|
|
16499
16501
|
}, z.core.$strict>>>;
|
|
16500
16502
|
color: z.ZodOptional<z.ZodString>;
|
|
16501
16503
|
}, z.core.$strict>;
|
|
16502
|
-
query: z.
|
|
16504
|
+
query: z.ZodObject<{
|
|
16503
16505
|
source: z.ZodOptional<z.ZodLiteral<"resource">>;
|
|
16504
16506
|
resource: z.ZodString;
|
|
16505
16507
|
select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -16511,46 +16513,11 @@ export declare const ConfigureHistogramChartWidgetRequestSchema: z.core.ZodStand
|
|
|
16511
16513
|
month: "month";
|
|
16512
16514
|
year: "year";
|
|
16513
16515
|
}>>;
|
|
16514
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
16515
|
-
agg: z.ZodEnum<{
|
|
16516
|
-
sum: "sum";
|
|
16517
|
-
count: "count";
|
|
16518
|
-
count_distinct: "count_distinct";
|
|
16519
|
-
avg: "avg";
|
|
16520
|
-
min: "min";
|
|
16521
|
-
max: "max";
|
|
16522
|
-
median: "median";
|
|
16523
|
-
}>;
|
|
16524
|
-
field: z.ZodOptional<z.ZodString>;
|
|
16525
|
-
as: z.ZodString;
|
|
16526
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16527
16516
|
}, z.core.$strict>, z.ZodObject<{
|
|
16528
16517
|
calc: z.ZodString;
|
|
16529
16518
|
as: z.ZodString;
|
|
16530
16519
|
}, z.core.$strict>]>>>;
|
|
16531
|
-
sparkline: z.ZodOptional<z.ZodObject<{
|
|
16532
|
-
field: z.ZodString;
|
|
16533
|
-
grain: z.ZodEnum<{
|
|
16534
|
-
day: "day";
|
|
16535
|
-
week: "week";
|
|
16536
|
-
month: "month";
|
|
16537
|
-
year: "year";
|
|
16538
|
-
}>;
|
|
16539
|
-
as: z.ZodString;
|
|
16540
|
-
fill_missing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16541
|
-
}, z.core.$strict>>;
|
|
16542
16520
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16543
|
-
group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
16544
|
-
field: z.ZodString;
|
|
16545
|
-
as: z.ZodOptional<z.ZodString>;
|
|
16546
|
-
grain: z.ZodOptional<z.ZodEnum<{
|
|
16547
|
-
day: "day";
|
|
16548
|
-
week: "week";
|
|
16549
|
-
month: "month";
|
|
16550
|
-
year: "year";
|
|
16551
|
-
}>>;
|
|
16552
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
16553
|
-
}, z.core.$strict>]>>>;
|
|
16554
16521
|
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16555
16522
|
field: z.ZodString;
|
|
16556
16523
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
@@ -16560,55 +16527,12 @@ export declare const ConfigureHistogramChartWidgetRequestSchema: z.core.ZodStand
|
|
|
16560
16527
|
}, z.core.$strict>>>;
|
|
16561
16528
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
16562
16529
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
16563
|
-
bucket: z.ZodOptional<z.ZodObject<{
|
|
16564
|
-
field: z.ZodString;
|
|
16565
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
16566
|
-
label: z.ZodString;
|
|
16567
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
16568
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
16569
|
-
}, z.core.$strict>>;
|
|
16570
|
-
}, z.core.$strict>>;
|
|
16571
16530
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16572
16531
|
calc: z.ZodString;
|
|
16573
16532
|
as: z.ZodString;
|
|
16574
16533
|
}, z.core.$strict>>>;
|
|
16575
16534
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16576
|
-
}, z.core.$strict
|
|
16577
|
-
source: z.ZodLiteral<"steps">;
|
|
16578
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
16579
|
-
name: z.ZodString;
|
|
16580
|
-
resource: z.ZodString;
|
|
16581
|
-
select: z.ZodArray<z.ZodObject<{
|
|
16582
|
-
agg: z.ZodEnum<{
|
|
16583
|
-
sum: "sum";
|
|
16584
|
-
count: "count";
|
|
16585
|
-
count_distinct: "count_distinct";
|
|
16586
|
-
avg: "avg";
|
|
16587
|
-
min: "min";
|
|
16588
|
-
max: "max";
|
|
16589
|
-
median: "median";
|
|
16590
|
-
}>;
|
|
16591
|
-
field: z.ZodOptional<z.ZodString>;
|
|
16592
|
-
as: z.ZodString;
|
|
16593
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16594
|
-
}, z.core.$strict>>;
|
|
16595
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16596
|
-
}, z.core.$strict>>;
|
|
16597
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16598
|
-
calc: z.ZodString;
|
|
16599
|
-
as: z.ZodString;
|
|
16600
|
-
}, z.core.$strict>>>;
|
|
16601
|
-
order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16602
|
-
field: z.ZodString;
|
|
16603
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
16604
|
-
asc: "asc";
|
|
16605
|
-
desc: "desc";
|
|
16606
|
-
}>>;
|
|
16607
|
-
}, z.core.$strict>>>;
|
|
16608
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
16609
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
16610
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16611
|
-
}, z.core.$strict>]>;
|
|
16535
|
+
}, z.core.$strict>;
|
|
16612
16536
|
}, z.core.$strict>;
|
|
16613
16537
|
}, z.core.$strict>>;
|
|
16614
16538
|
export declare const ConfigureFunnelChartWidgetRequestSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
@@ -16757,6 +16681,14 @@ export declare const ConfigureFunnelChartWidgetRequestSchema: z.core.ZodStandard
|
|
|
16757
16681
|
}, z.core.$strict>>;
|
|
16758
16682
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16759
16683
|
}, z.core.$strict>>;
|
|
16684
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
16685
|
+
field: z.ZodString;
|
|
16686
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
16687
|
+
label: z.ZodString;
|
|
16688
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
16689
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
16690
|
+
}, z.core.$strict>>;
|
|
16691
|
+
}, z.core.$strict>>;
|
|
16760
16692
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16761
16693
|
calc: z.ZodString;
|
|
16762
16694
|
as: z.ZodString;
|
|
@@ -16938,6 +16870,14 @@ export declare const ConfigurePivotTableWidgetRequestSchema: z.core.ZodStandardJ
|
|
|
16938
16870
|
}, z.core.$strict>>;
|
|
16939
16871
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16940
16872
|
}, z.core.$strict>>;
|
|
16873
|
+
bucket: z.ZodOptional<z.ZodObject<{
|
|
16874
|
+
field: z.ZodString;
|
|
16875
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
16876
|
+
label: z.ZodString;
|
|
16877
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
16878
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
16879
|
+
}, z.core.$strict>>;
|
|
16880
|
+
}, z.core.$strict>>;
|
|
16941
16881
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16942
16882
|
calc: z.ZodString;
|
|
16943
16883
|
as: z.ZodString;
|