@adminforth/dashboard 1.8.0 → 1.9.0
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 +81 -55
- package/custom/model/dashboard.types.ts +6 -13
- package/custom/skills/adminforth-dashboard/SKILL.md +13 -20
- package/dist/custom/model/dashboard.types.d.ts +0 -5
- package/dist/custom/model/dashboard.types.ts +6 -13
- package/dist/custom/queries/useDashboardConfig.d.ts +20 -120
- package/dist/custom/queries/useWidgetData.d.ts +20 -120
- package/dist/custom/skills/adminforth-dashboard/SKILL.md +13 -20
- package/dist/schema/api.d.ts +243 -2223
- package/dist/schema/widget.d.ts +20 -200
- package/dist/schema/widgets/charts.d.ts +24 -240
- package/dist/schema/widgets/common.d.ts +2 -20
- package/dist/schema/widgets/common.js +1 -10
- package/dist/schema/widgets/gauge-card.d.ts +2 -20
- package/dist/schema/widgets/kpi-card.d.ts +2 -20
- package/dist/schema/widgets/pivot-table.d.ts +2 -20
- package/dist/schema/widgets/table.d.ts +2 -20
- package/dist/services/calc-evaluator.d.ts +1 -0
- package/dist/services/calc-evaluator.js +28 -0
- package/dist/services/dashboardFilterService.d.ts +5 -0
- package/dist/services/dashboardFilterService.js +125 -0
- package/dist/services/widgetDataService.js +17 -170
- package/package.json +2 -1
- package/schema/widgets/common.ts +1 -11
- package/services/calc-evaluator.ts +33 -0
- package/services/dashboardFilterService.ts +162 -0
- package/services/widgetDataService.ts +28 -215
package/dist/schema/api.d.ts
CHANGED
|
@@ -148,25 +148,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
148
148
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
149
149
|
}, z.core.$strict>, z.ZodObject<{
|
|
150
150
|
source: z.ZodLiteral<"steps">;
|
|
151
|
-
steps: z.ZodArray<z.
|
|
152
|
-
name: z.ZodString;
|
|
153
|
-
resource: z.ZodString;
|
|
154
|
-
metric: z.ZodObject<{
|
|
155
|
-
agg: z.ZodEnum<{
|
|
156
|
-
sum: "sum";
|
|
157
|
-
count: "count";
|
|
158
|
-
count_distinct: "count_distinct";
|
|
159
|
-
avg: "avg";
|
|
160
|
-
min: "min";
|
|
161
|
-
max: "max";
|
|
162
|
-
median: "median";
|
|
163
|
-
}>;
|
|
164
|
-
field: z.ZodOptional<z.ZodString>;
|
|
165
|
-
as: z.ZodString;
|
|
166
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
167
|
-
}, z.core.$strict>;
|
|
168
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
169
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
151
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
170
152
|
name: z.ZodString;
|
|
171
153
|
resource: z.ZodString;
|
|
172
154
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -184,7 +166,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
184
166
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
185
167
|
}, z.core.$strict>>;
|
|
186
168
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
187
|
-
}, z.core.$strict
|
|
169
|
+
}, z.core.$strict>>;
|
|
188
170
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
189
171
|
calc: z.ZodString;
|
|
190
172
|
as: z.ZodString;
|
|
@@ -332,25 +314,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
332
314
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
333
315
|
}, z.core.$strict>, z.ZodObject<{
|
|
334
316
|
source: z.ZodLiteral<"steps">;
|
|
335
|
-
steps: z.ZodArray<z.
|
|
336
|
-
name: z.ZodString;
|
|
337
|
-
resource: z.ZodString;
|
|
338
|
-
metric: z.ZodObject<{
|
|
339
|
-
agg: z.ZodEnum<{
|
|
340
|
-
sum: "sum";
|
|
341
|
-
count: "count";
|
|
342
|
-
count_distinct: "count_distinct";
|
|
343
|
-
avg: "avg";
|
|
344
|
-
min: "min";
|
|
345
|
-
max: "max";
|
|
346
|
-
median: "median";
|
|
347
|
-
}>;
|
|
348
|
-
field: z.ZodOptional<z.ZodString>;
|
|
349
|
-
as: z.ZodString;
|
|
350
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
351
|
-
}, z.core.$strict>;
|
|
352
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
353
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
317
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
354
318
|
name: z.ZodString;
|
|
355
319
|
resource: z.ZodString;
|
|
356
320
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -368,7 +332,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
368
332
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
369
333
|
}, z.core.$strict>>;
|
|
370
334
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
371
|
-
}, z.core.$strict
|
|
335
|
+
}, z.core.$strict>>;
|
|
372
336
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
373
337
|
calc: z.ZodString;
|
|
374
338
|
as: z.ZodString;
|
|
@@ -511,25 +475,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
511
475
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
512
476
|
}, z.core.$strict>, z.ZodObject<{
|
|
513
477
|
source: z.ZodLiteral<"steps">;
|
|
514
|
-
steps: z.ZodArray<z.
|
|
515
|
-
name: z.ZodString;
|
|
516
|
-
resource: z.ZodString;
|
|
517
|
-
metric: z.ZodObject<{
|
|
518
|
-
agg: z.ZodEnum<{
|
|
519
|
-
sum: "sum";
|
|
520
|
-
count: "count";
|
|
521
|
-
count_distinct: "count_distinct";
|
|
522
|
-
avg: "avg";
|
|
523
|
-
min: "min";
|
|
524
|
-
max: "max";
|
|
525
|
-
median: "median";
|
|
526
|
-
}>;
|
|
527
|
-
field: z.ZodOptional<z.ZodString>;
|
|
528
|
-
as: z.ZodString;
|
|
529
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
530
|
-
}, z.core.$strict>;
|
|
531
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
532
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
478
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
533
479
|
name: z.ZodString;
|
|
534
480
|
resource: z.ZodString;
|
|
535
481
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -547,7 +493,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
547
493
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
548
494
|
}, z.core.$strict>>;
|
|
549
495
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
550
|
-
}, z.core.$strict
|
|
496
|
+
}, z.core.$strict>>;
|
|
551
497
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
552
498
|
calc: z.ZodString;
|
|
553
499
|
as: z.ZodString;
|
|
@@ -707,25 +653,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
707
653
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
708
654
|
}, z.core.$strict>, z.ZodObject<{
|
|
709
655
|
source: z.ZodLiteral<"steps">;
|
|
710
|
-
steps: z.ZodArray<z.
|
|
711
|
-
name: z.ZodString;
|
|
712
|
-
resource: z.ZodString;
|
|
713
|
-
metric: z.ZodObject<{
|
|
714
|
-
agg: z.ZodEnum<{
|
|
715
|
-
sum: "sum";
|
|
716
|
-
count: "count";
|
|
717
|
-
count_distinct: "count_distinct";
|
|
718
|
-
avg: "avg";
|
|
719
|
-
min: "min";
|
|
720
|
-
max: "max";
|
|
721
|
-
median: "median";
|
|
722
|
-
}>;
|
|
723
|
-
field: z.ZodOptional<z.ZodString>;
|
|
724
|
-
as: z.ZodString;
|
|
725
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
726
|
-
}, z.core.$strict>;
|
|
727
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
728
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
656
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
729
657
|
name: z.ZodString;
|
|
730
658
|
resource: z.ZodString;
|
|
731
659
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -743,7 +671,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
743
671
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
744
672
|
}, z.core.$strict>>;
|
|
745
673
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
746
|
-
}, z.core.$strict
|
|
674
|
+
}, z.core.$strict>>;
|
|
747
675
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
748
676
|
calc: z.ZodString;
|
|
749
677
|
as: z.ZodString;
|
|
@@ -886,25 +814,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
886
814
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
887
815
|
}, z.core.$strict>, z.ZodObject<{
|
|
888
816
|
source: z.ZodLiteral<"steps">;
|
|
889
|
-
steps: z.ZodArray<z.
|
|
890
|
-
name: z.ZodString;
|
|
891
|
-
resource: z.ZodString;
|
|
892
|
-
metric: z.ZodObject<{
|
|
893
|
-
agg: z.ZodEnum<{
|
|
894
|
-
sum: "sum";
|
|
895
|
-
count: "count";
|
|
896
|
-
count_distinct: "count_distinct";
|
|
897
|
-
avg: "avg";
|
|
898
|
-
min: "min";
|
|
899
|
-
max: "max";
|
|
900
|
-
median: "median";
|
|
901
|
-
}>;
|
|
902
|
-
field: z.ZodOptional<z.ZodString>;
|
|
903
|
-
as: z.ZodString;
|
|
904
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
905
|
-
}, z.core.$strict>;
|
|
906
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
907
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
817
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
908
818
|
name: z.ZodString;
|
|
909
819
|
resource: z.ZodString;
|
|
910
820
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -922,7 +832,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
922
832
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
923
833
|
}, z.core.$strict>>;
|
|
924
834
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
925
|
-
}, z.core.$strict
|
|
835
|
+
}, z.core.$strict>>;
|
|
926
836
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
927
837
|
calc: z.ZodString;
|
|
928
838
|
as: z.ZodString;
|
|
@@ -1070,25 +980,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1070
980
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1071
981
|
}, z.core.$strict>, z.ZodObject<{
|
|
1072
982
|
source: z.ZodLiteral<"steps">;
|
|
1073
|
-
steps: z.ZodArray<z.
|
|
1074
|
-
name: z.ZodString;
|
|
1075
|
-
resource: z.ZodString;
|
|
1076
|
-
metric: z.ZodObject<{
|
|
1077
|
-
agg: z.ZodEnum<{
|
|
1078
|
-
sum: "sum";
|
|
1079
|
-
count: "count";
|
|
1080
|
-
count_distinct: "count_distinct";
|
|
1081
|
-
avg: "avg";
|
|
1082
|
-
min: "min";
|
|
1083
|
-
max: "max";
|
|
1084
|
-
median: "median";
|
|
1085
|
-
}>;
|
|
1086
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1087
|
-
as: z.ZodString;
|
|
1088
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1089
|
-
}, z.core.$strict>;
|
|
1090
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1091
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
983
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1092
984
|
name: z.ZodString;
|
|
1093
985
|
resource: z.ZodString;
|
|
1094
986
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1106,7 +998,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1106
998
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1107
999
|
}, z.core.$strict>>;
|
|
1108
1000
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1109
|
-
}, z.core.$strict
|
|
1001
|
+
}, z.core.$strict>>;
|
|
1110
1002
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1111
1003
|
calc: z.ZodString;
|
|
1112
1004
|
as: z.ZodString;
|
|
@@ -1249,25 +1141,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1249
1141
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1250
1142
|
}, z.core.$strict>, z.ZodObject<{
|
|
1251
1143
|
source: z.ZodLiteral<"steps">;
|
|
1252
|
-
steps: z.ZodArray<z.
|
|
1253
|
-
name: z.ZodString;
|
|
1254
|
-
resource: z.ZodString;
|
|
1255
|
-
metric: z.ZodObject<{
|
|
1256
|
-
agg: z.ZodEnum<{
|
|
1257
|
-
sum: "sum";
|
|
1258
|
-
count: "count";
|
|
1259
|
-
count_distinct: "count_distinct";
|
|
1260
|
-
avg: "avg";
|
|
1261
|
-
min: "min";
|
|
1262
|
-
max: "max";
|
|
1263
|
-
median: "median";
|
|
1264
|
-
}>;
|
|
1265
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1266
|
-
as: z.ZodString;
|
|
1267
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1268
|
-
}, z.core.$strict>;
|
|
1269
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1270
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1144
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1271
1145
|
name: z.ZodString;
|
|
1272
1146
|
resource: z.ZodString;
|
|
1273
1147
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1285,7 +1159,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1285
1159
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1286
1160
|
}, z.core.$strict>>;
|
|
1287
1161
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1288
|
-
}, z.core.$strict
|
|
1162
|
+
}, z.core.$strict>>;
|
|
1289
1163
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1290
1164
|
calc: z.ZodString;
|
|
1291
1165
|
as: z.ZodString;
|
|
@@ -1454,25 +1328,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1454
1328
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1455
1329
|
}, z.core.$strict>, z.ZodObject<{
|
|
1456
1330
|
source: z.ZodLiteral<"steps">;
|
|
1457
|
-
steps: z.ZodArray<z.
|
|
1458
|
-
name: z.ZodString;
|
|
1459
|
-
resource: z.ZodString;
|
|
1460
|
-
metric: z.ZodObject<{
|
|
1461
|
-
agg: z.ZodEnum<{
|
|
1462
|
-
sum: "sum";
|
|
1463
|
-
count: "count";
|
|
1464
|
-
count_distinct: "count_distinct";
|
|
1465
|
-
avg: "avg";
|
|
1466
|
-
min: "min";
|
|
1467
|
-
max: "max";
|
|
1468
|
-
median: "median";
|
|
1469
|
-
}>;
|
|
1470
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1471
|
-
as: z.ZodString;
|
|
1472
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1473
|
-
}, z.core.$strict>;
|
|
1474
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1475
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1331
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1476
1332
|
name: z.ZodString;
|
|
1477
1333
|
resource: z.ZodString;
|
|
1478
1334
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1490,7 +1346,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1490
1346
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1491
1347
|
}, z.core.$strict>>;
|
|
1492
1348
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1493
|
-
}, z.core.$strict
|
|
1349
|
+
}, z.core.$strict>>;
|
|
1494
1350
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1495
1351
|
calc: z.ZodString;
|
|
1496
1352
|
as: z.ZodString;
|
|
@@ -1639,25 +1495,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1639
1495
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1640
1496
|
}, z.core.$strict>, z.ZodObject<{
|
|
1641
1497
|
source: z.ZodLiteral<"steps">;
|
|
1642
|
-
steps: z.ZodArray<z.
|
|
1643
|
-
name: z.ZodString;
|
|
1644
|
-
resource: z.ZodString;
|
|
1645
|
-
metric: z.ZodObject<{
|
|
1646
|
-
agg: z.ZodEnum<{
|
|
1647
|
-
sum: "sum";
|
|
1648
|
-
count: "count";
|
|
1649
|
-
count_distinct: "count_distinct";
|
|
1650
|
-
avg: "avg";
|
|
1651
|
-
min: "min";
|
|
1652
|
-
max: "max";
|
|
1653
|
-
median: "median";
|
|
1654
|
-
}>;
|
|
1655
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1656
|
-
as: z.ZodString;
|
|
1657
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1658
|
-
}, z.core.$strict>;
|
|
1659
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1660
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1498
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1661
1499
|
name: z.ZodString;
|
|
1662
1500
|
resource: z.ZodString;
|
|
1663
1501
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1675,7 +1513,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1675
1513
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1676
1514
|
}, z.core.$strict>>;
|
|
1677
1515
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1678
|
-
}, z.core.$strict
|
|
1516
|
+
}, z.core.$strict>>;
|
|
1679
1517
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1680
1518
|
calc: z.ZodString;
|
|
1681
1519
|
as: z.ZodString;
|
|
@@ -1836,25 +1674,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1836
1674
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1837
1675
|
}, z.core.$strict>, z.ZodObject<{
|
|
1838
1676
|
source: z.ZodLiteral<"steps">;
|
|
1839
|
-
steps: z.ZodArray<z.
|
|
1840
|
-
name: z.ZodString;
|
|
1841
|
-
resource: z.ZodString;
|
|
1842
|
-
metric: z.ZodObject<{
|
|
1843
|
-
agg: z.ZodEnum<{
|
|
1844
|
-
sum: "sum";
|
|
1845
|
-
count: "count";
|
|
1846
|
-
count_distinct: "count_distinct";
|
|
1847
|
-
avg: "avg";
|
|
1848
|
-
min: "min";
|
|
1849
|
-
max: "max";
|
|
1850
|
-
median: "median";
|
|
1851
|
-
}>;
|
|
1852
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1853
|
-
as: z.ZodString;
|
|
1854
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1855
|
-
}, z.core.$strict>;
|
|
1856
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1857
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1677
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1858
1678
|
name: z.ZodString;
|
|
1859
1679
|
resource: z.ZodString;
|
|
1860
1680
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1872,7 +1692,7 @@ export declare const DashboardConfigZodSchema: z.ZodObject<{
|
|
|
1872
1692
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1873
1693
|
}, z.core.$strict>>;
|
|
1874
1694
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1875
|
-
}, z.core.$strict
|
|
1695
|
+
}, z.core.$strict>>;
|
|
1876
1696
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1877
1697
|
calc: z.ZodString;
|
|
1878
1698
|
as: z.ZodString;
|
|
@@ -2032,25 +1852,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2032
1852
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2033
1853
|
}, z.core.$strict>, z.ZodObject<{
|
|
2034
1854
|
source: z.ZodLiteral<"steps">;
|
|
2035
|
-
steps: z.ZodArray<z.
|
|
2036
|
-
name: z.ZodString;
|
|
2037
|
-
resource: z.ZodString;
|
|
2038
|
-
metric: z.ZodObject<{
|
|
2039
|
-
agg: z.ZodEnum<{
|
|
2040
|
-
sum: "sum";
|
|
2041
|
-
count: "count";
|
|
2042
|
-
count_distinct: "count_distinct";
|
|
2043
|
-
avg: "avg";
|
|
2044
|
-
min: "min";
|
|
2045
|
-
max: "max";
|
|
2046
|
-
median: "median";
|
|
2047
|
-
}>;
|
|
2048
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2049
|
-
as: z.ZodString;
|
|
2050
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2051
|
-
}, z.core.$strict>;
|
|
2052
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2053
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1855
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2054
1856
|
name: z.ZodString;
|
|
2055
1857
|
resource: z.ZodString;
|
|
2056
1858
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -2068,7 +1870,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2068
1870
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2069
1871
|
}, z.core.$strict>>;
|
|
2070
1872
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2071
|
-
}, z.core.$strict
|
|
1873
|
+
}, z.core.$strict>>;
|
|
2072
1874
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2073
1875
|
calc: z.ZodString;
|
|
2074
1876
|
as: z.ZodString;
|
|
@@ -2216,25 +2018,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2216
2018
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2217
2019
|
}, z.core.$strict>, z.ZodObject<{
|
|
2218
2020
|
source: z.ZodLiteral<"steps">;
|
|
2219
|
-
steps: z.ZodArray<z.
|
|
2220
|
-
name: z.ZodString;
|
|
2221
|
-
resource: z.ZodString;
|
|
2222
|
-
metric: z.ZodObject<{
|
|
2223
|
-
agg: z.ZodEnum<{
|
|
2224
|
-
sum: "sum";
|
|
2225
|
-
count: "count";
|
|
2226
|
-
count_distinct: "count_distinct";
|
|
2227
|
-
avg: "avg";
|
|
2228
|
-
min: "min";
|
|
2229
|
-
max: "max";
|
|
2230
|
-
median: "median";
|
|
2231
|
-
}>;
|
|
2232
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2233
|
-
as: z.ZodString;
|
|
2234
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2235
|
-
}, z.core.$strict>;
|
|
2236
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2237
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2021
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2238
2022
|
name: z.ZodString;
|
|
2239
2023
|
resource: z.ZodString;
|
|
2240
2024
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -2252,7 +2036,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2252
2036
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2253
2037
|
}, z.core.$strict>>;
|
|
2254
2038
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2255
|
-
}, z.core.$strict
|
|
2039
|
+
}, z.core.$strict>>;
|
|
2256
2040
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2257
2041
|
calc: z.ZodString;
|
|
2258
2042
|
as: z.ZodString;
|
|
@@ -2395,25 +2179,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2395
2179
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2396
2180
|
}, z.core.$strict>, z.ZodObject<{
|
|
2397
2181
|
source: z.ZodLiteral<"steps">;
|
|
2398
|
-
steps: z.ZodArray<z.
|
|
2399
|
-
name: z.ZodString;
|
|
2400
|
-
resource: z.ZodString;
|
|
2401
|
-
metric: z.ZodObject<{
|
|
2402
|
-
agg: z.ZodEnum<{
|
|
2403
|
-
sum: "sum";
|
|
2404
|
-
count: "count";
|
|
2405
|
-
count_distinct: "count_distinct";
|
|
2406
|
-
avg: "avg";
|
|
2407
|
-
min: "min";
|
|
2408
|
-
max: "max";
|
|
2409
|
-
median: "median";
|
|
2410
|
-
}>;
|
|
2411
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2412
|
-
as: z.ZodString;
|
|
2413
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2414
|
-
}, z.core.$strict>;
|
|
2415
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2416
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2182
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2417
2183
|
name: z.ZodString;
|
|
2418
2184
|
resource: z.ZodString;
|
|
2419
2185
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -2431,7 +2197,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2431
2197
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2432
2198
|
}, z.core.$strict>>;
|
|
2433
2199
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2434
|
-
}, z.core.$strict
|
|
2200
|
+
}, z.core.$strict>>;
|
|
2435
2201
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2436
2202
|
calc: z.ZodString;
|
|
2437
2203
|
as: z.ZodString;
|
|
@@ -2591,25 +2357,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2591
2357
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2592
2358
|
}, z.core.$strict>, z.ZodObject<{
|
|
2593
2359
|
source: z.ZodLiteral<"steps">;
|
|
2594
|
-
steps: z.ZodArray<z.
|
|
2595
|
-
name: z.ZodString;
|
|
2596
|
-
resource: z.ZodString;
|
|
2597
|
-
metric: z.ZodObject<{
|
|
2598
|
-
agg: z.ZodEnum<{
|
|
2599
|
-
sum: "sum";
|
|
2600
|
-
count: "count";
|
|
2601
|
-
count_distinct: "count_distinct";
|
|
2602
|
-
avg: "avg";
|
|
2603
|
-
min: "min";
|
|
2604
|
-
max: "max";
|
|
2605
|
-
median: "median";
|
|
2606
|
-
}>;
|
|
2607
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2608
|
-
as: z.ZodString;
|
|
2609
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2610
|
-
}, z.core.$strict>;
|
|
2611
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2612
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2360
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2613
2361
|
name: z.ZodString;
|
|
2614
2362
|
resource: z.ZodString;
|
|
2615
2363
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -2627,7 +2375,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2627
2375
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2628
2376
|
}, z.core.$strict>>;
|
|
2629
2377
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2630
|
-
}, z.core.$strict
|
|
2378
|
+
}, z.core.$strict>>;
|
|
2631
2379
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2632
2380
|
calc: z.ZodString;
|
|
2633
2381
|
as: z.ZodString;
|
|
@@ -2770,10 +2518,10 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2770
2518
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2771
2519
|
}, z.core.$strict>, z.ZodObject<{
|
|
2772
2520
|
source: z.ZodLiteral<"steps">;
|
|
2773
|
-
steps: z.ZodArray<z.
|
|
2521
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2774
2522
|
name: z.ZodString;
|
|
2775
2523
|
resource: z.ZodString;
|
|
2776
|
-
|
|
2524
|
+
select: z.ZodArray<z.ZodObject<{
|
|
2777
2525
|
agg: z.ZodEnum<{
|
|
2778
2526
|
sum: "sum";
|
|
2779
2527
|
count: "count";
|
|
@@ -2786,27 +2534,9 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2786
2534
|
field: z.ZodOptional<z.ZodString>;
|
|
2787
2535
|
as: z.ZodString;
|
|
2788
2536
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2789
|
-
}, z.core.$strict
|
|
2537
|
+
}, z.core.$strict>>;
|
|
2790
2538
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2791
|
-
}, z.core.$strict
|
|
2792
|
-
name: z.ZodString;
|
|
2793
|
-
resource: z.ZodString;
|
|
2794
|
-
select: z.ZodArray<z.ZodObject<{
|
|
2795
|
-
agg: z.ZodEnum<{
|
|
2796
|
-
sum: "sum";
|
|
2797
|
-
count: "count";
|
|
2798
|
-
count_distinct: "count_distinct";
|
|
2799
|
-
avg: "avg";
|
|
2800
|
-
min: "min";
|
|
2801
|
-
max: "max";
|
|
2802
|
-
median: "median";
|
|
2803
|
-
}>;
|
|
2804
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2805
|
-
as: z.ZodString;
|
|
2806
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2807
|
-
}, z.core.$strict>>;
|
|
2808
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2809
|
-
}, z.core.$strict>]>>;
|
|
2539
|
+
}, z.core.$strict>>;
|
|
2810
2540
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2811
2541
|
calc: z.ZodString;
|
|
2812
2542
|
as: z.ZodString;
|
|
@@ -2954,25 +2684,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2954
2684
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2955
2685
|
}, z.core.$strict>, z.ZodObject<{
|
|
2956
2686
|
source: z.ZodLiteral<"steps">;
|
|
2957
|
-
steps: z.ZodArray<z.
|
|
2958
|
-
name: z.ZodString;
|
|
2959
|
-
resource: z.ZodString;
|
|
2960
|
-
metric: z.ZodObject<{
|
|
2961
|
-
agg: z.ZodEnum<{
|
|
2962
|
-
sum: "sum";
|
|
2963
|
-
count: "count";
|
|
2964
|
-
count_distinct: "count_distinct";
|
|
2965
|
-
avg: "avg";
|
|
2966
|
-
min: "min";
|
|
2967
|
-
max: "max";
|
|
2968
|
-
median: "median";
|
|
2969
|
-
}>;
|
|
2970
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2971
|
-
as: z.ZodString;
|
|
2972
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2973
|
-
}, z.core.$strict>;
|
|
2974
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2975
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2687
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2976
2688
|
name: z.ZodString;
|
|
2977
2689
|
resource: z.ZodString;
|
|
2978
2690
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -2990,7 +2702,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
2990
2702
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2991
2703
|
}, z.core.$strict>>;
|
|
2992
2704
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2993
|
-
}, z.core.$strict
|
|
2705
|
+
}, z.core.$strict>>;
|
|
2994
2706
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2995
2707
|
calc: z.ZodString;
|
|
2996
2708
|
as: z.ZodString;
|
|
@@ -3133,25 +2845,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3133
2845
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3134
2846
|
}, z.core.$strict>, z.ZodObject<{
|
|
3135
2847
|
source: z.ZodLiteral<"steps">;
|
|
3136
|
-
steps: z.ZodArray<z.
|
|
3137
|
-
name: z.ZodString;
|
|
3138
|
-
resource: z.ZodString;
|
|
3139
|
-
metric: z.ZodObject<{
|
|
3140
|
-
agg: z.ZodEnum<{
|
|
3141
|
-
sum: "sum";
|
|
3142
|
-
count: "count";
|
|
3143
|
-
count_distinct: "count_distinct";
|
|
3144
|
-
avg: "avg";
|
|
3145
|
-
min: "min";
|
|
3146
|
-
max: "max";
|
|
3147
|
-
median: "median";
|
|
3148
|
-
}>;
|
|
3149
|
-
field: z.ZodOptional<z.ZodString>;
|
|
3150
|
-
as: z.ZodString;
|
|
3151
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3152
|
-
}, z.core.$strict>;
|
|
3153
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3154
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2848
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
3155
2849
|
name: z.ZodString;
|
|
3156
2850
|
resource: z.ZodString;
|
|
3157
2851
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -3169,7 +2863,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3169
2863
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3170
2864
|
}, z.core.$strict>>;
|
|
3171
2865
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3172
|
-
}, z.core.$strict
|
|
2866
|
+
}, z.core.$strict>>;
|
|
3173
2867
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3174
2868
|
calc: z.ZodString;
|
|
3175
2869
|
as: z.ZodString;
|
|
@@ -3338,25 +3032,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3338
3032
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3339
3033
|
}, z.core.$strict>, z.ZodObject<{
|
|
3340
3034
|
source: z.ZodLiteral<"steps">;
|
|
3341
|
-
steps: z.ZodArray<z.
|
|
3342
|
-
name: z.ZodString;
|
|
3343
|
-
resource: z.ZodString;
|
|
3344
|
-
metric: z.ZodObject<{
|
|
3345
|
-
agg: z.ZodEnum<{
|
|
3346
|
-
sum: "sum";
|
|
3347
|
-
count: "count";
|
|
3348
|
-
count_distinct: "count_distinct";
|
|
3349
|
-
avg: "avg";
|
|
3350
|
-
min: "min";
|
|
3351
|
-
max: "max";
|
|
3352
|
-
median: "median";
|
|
3353
|
-
}>;
|
|
3354
|
-
field: z.ZodOptional<z.ZodString>;
|
|
3355
|
-
as: z.ZodString;
|
|
3356
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3357
|
-
}, z.core.$strict>;
|
|
3358
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3359
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
3035
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
3360
3036
|
name: z.ZodString;
|
|
3361
3037
|
resource: z.ZodString;
|
|
3362
3038
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -3374,7 +3050,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3374
3050
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3375
3051
|
}, z.core.$strict>>;
|
|
3376
3052
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3377
|
-
}, z.core.$strict
|
|
3053
|
+
}, z.core.$strict>>;
|
|
3378
3054
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3379
3055
|
calc: z.ZodString;
|
|
3380
3056
|
as: z.ZodString;
|
|
@@ -3523,25 +3199,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3523
3199
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3524
3200
|
}, z.core.$strict>, z.ZodObject<{
|
|
3525
3201
|
source: z.ZodLiteral<"steps">;
|
|
3526
|
-
steps: z.ZodArray<z.
|
|
3527
|
-
name: z.ZodString;
|
|
3528
|
-
resource: z.ZodString;
|
|
3529
|
-
metric: z.ZodObject<{
|
|
3530
|
-
agg: z.ZodEnum<{
|
|
3531
|
-
sum: "sum";
|
|
3532
|
-
count: "count";
|
|
3533
|
-
count_distinct: "count_distinct";
|
|
3534
|
-
avg: "avg";
|
|
3535
|
-
min: "min";
|
|
3536
|
-
max: "max";
|
|
3537
|
-
median: "median";
|
|
3538
|
-
}>;
|
|
3539
|
-
field: z.ZodOptional<z.ZodString>;
|
|
3540
|
-
as: z.ZodString;
|
|
3541
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3542
|
-
}, z.core.$strict>;
|
|
3543
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3544
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
3202
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
3545
3203
|
name: z.ZodString;
|
|
3546
3204
|
resource: z.ZodString;
|
|
3547
3205
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -3559,7 +3217,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3559
3217
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3560
3218
|
}, z.core.$strict>>;
|
|
3561
3219
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3562
|
-
}, z.core.$strict
|
|
3220
|
+
}, z.core.$strict>>;
|
|
3563
3221
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3564
3222
|
calc: z.ZodString;
|
|
3565
3223
|
as: z.ZodString;
|
|
@@ -3720,25 +3378,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3720
3378
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3721
3379
|
}, z.core.$strict>, z.ZodObject<{
|
|
3722
3380
|
source: z.ZodLiteral<"steps">;
|
|
3723
|
-
steps: z.ZodArray<z.
|
|
3724
|
-
name: z.ZodString;
|
|
3725
|
-
resource: z.ZodString;
|
|
3726
|
-
metric: z.ZodObject<{
|
|
3727
|
-
agg: z.ZodEnum<{
|
|
3728
|
-
sum: "sum";
|
|
3729
|
-
count: "count";
|
|
3730
|
-
count_distinct: "count_distinct";
|
|
3731
|
-
avg: "avg";
|
|
3732
|
-
min: "min";
|
|
3733
|
-
max: "max";
|
|
3734
|
-
median: "median";
|
|
3735
|
-
}>;
|
|
3736
|
-
field: z.ZodOptional<z.ZodString>;
|
|
3737
|
-
as: z.ZodString;
|
|
3738
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3739
|
-
}, z.core.$strict>;
|
|
3740
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3741
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
3381
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
3742
3382
|
name: z.ZodString;
|
|
3743
3383
|
resource: z.ZodString;
|
|
3744
3384
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -3756,7 +3396,7 @@ export declare const DashboardResponseZodSchema: z.ZodObject<{
|
|
|
3756
3396
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3757
3397
|
}, z.core.$strict>>;
|
|
3758
3398
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3759
|
-
}, z.core.$strict
|
|
3399
|
+
}, z.core.$strict>>;
|
|
3760
3400
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3761
3401
|
calc: z.ZodString;
|
|
3762
3402
|
as: z.ZodString;
|
|
@@ -3917,25 +3557,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
3917
3557
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3918
3558
|
}, z.core.$strict>, z.ZodObject<{
|
|
3919
3559
|
source: z.ZodLiteral<"steps">;
|
|
3920
|
-
steps: z.ZodArray<z.
|
|
3921
|
-
name: z.ZodString;
|
|
3922
|
-
resource: z.ZodString;
|
|
3923
|
-
metric: z.ZodObject<{
|
|
3924
|
-
agg: z.ZodEnum<{
|
|
3925
|
-
sum: "sum";
|
|
3926
|
-
count: "count";
|
|
3927
|
-
count_distinct: "count_distinct";
|
|
3928
|
-
avg: "avg";
|
|
3929
|
-
min: "min";
|
|
3930
|
-
max: "max";
|
|
3931
|
-
median: "median";
|
|
3932
|
-
}>;
|
|
3933
|
-
field: z.ZodOptional<z.ZodString>;
|
|
3934
|
-
as: z.ZodString;
|
|
3935
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3936
|
-
}, z.core.$strict>;
|
|
3937
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3938
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
3560
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
3939
3561
|
name: z.ZodString;
|
|
3940
3562
|
resource: z.ZodString;
|
|
3941
3563
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -3953,7 +3575,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
3953
3575
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3954
3576
|
}, z.core.$strict>>;
|
|
3955
3577
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3956
|
-
}, z.core.$strict
|
|
3578
|
+
}, z.core.$strict>>;
|
|
3957
3579
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3958
3580
|
calc: z.ZodString;
|
|
3959
3581
|
as: z.ZodString;
|
|
@@ -4101,25 +3723,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4101
3723
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4102
3724
|
}, z.core.$strict>, z.ZodObject<{
|
|
4103
3725
|
source: z.ZodLiteral<"steps">;
|
|
4104
|
-
steps: z.ZodArray<z.
|
|
4105
|
-
name: z.ZodString;
|
|
4106
|
-
resource: z.ZodString;
|
|
4107
|
-
metric: z.ZodObject<{
|
|
4108
|
-
agg: z.ZodEnum<{
|
|
4109
|
-
sum: "sum";
|
|
4110
|
-
count: "count";
|
|
4111
|
-
count_distinct: "count_distinct";
|
|
4112
|
-
avg: "avg";
|
|
4113
|
-
min: "min";
|
|
4114
|
-
max: "max";
|
|
4115
|
-
median: "median";
|
|
4116
|
-
}>;
|
|
4117
|
-
field: z.ZodOptional<z.ZodString>;
|
|
4118
|
-
as: z.ZodString;
|
|
4119
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4120
|
-
}, z.core.$strict>;
|
|
4121
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4122
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
3726
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
4123
3727
|
name: z.ZodString;
|
|
4124
3728
|
resource: z.ZodString;
|
|
4125
3729
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -4137,7 +3741,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4137
3741
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4138
3742
|
}, z.core.$strict>>;
|
|
4139
3743
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4140
|
-
}, z.core.$strict
|
|
3744
|
+
}, z.core.$strict>>;
|
|
4141
3745
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4142
3746
|
calc: z.ZodString;
|
|
4143
3747
|
as: z.ZodString;
|
|
@@ -4280,25 +3884,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4280
3884
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4281
3885
|
}, z.core.$strict>, z.ZodObject<{
|
|
4282
3886
|
source: z.ZodLiteral<"steps">;
|
|
4283
|
-
steps: z.ZodArray<z.
|
|
4284
|
-
name: z.ZodString;
|
|
4285
|
-
resource: z.ZodString;
|
|
4286
|
-
metric: z.ZodObject<{
|
|
4287
|
-
agg: z.ZodEnum<{
|
|
4288
|
-
sum: "sum";
|
|
4289
|
-
count: "count";
|
|
4290
|
-
count_distinct: "count_distinct";
|
|
4291
|
-
avg: "avg";
|
|
4292
|
-
min: "min";
|
|
4293
|
-
max: "max";
|
|
4294
|
-
median: "median";
|
|
4295
|
-
}>;
|
|
4296
|
-
field: z.ZodOptional<z.ZodString>;
|
|
4297
|
-
as: z.ZodString;
|
|
4298
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4299
|
-
}, z.core.$strict>;
|
|
4300
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4301
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
3887
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
4302
3888
|
name: z.ZodString;
|
|
4303
3889
|
resource: z.ZodString;
|
|
4304
3890
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -4316,7 +3902,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4316
3902
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4317
3903
|
}, z.core.$strict>>;
|
|
4318
3904
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4319
|
-
}, z.core.$strict
|
|
3905
|
+
}, z.core.$strict>>;
|
|
4320
3906
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4321
3907
|
calc: z.ZodString;
|
|
4322
3908
|
as: z.ZodString;
|
|
@@ -4476,25 +4062,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4476
4062
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4477
4063
|
}, z.core.$strict>, z.ZodObject<{
|
|
4478
4064
|
source: z.ZodLiteral<"steps">;
|
|
4479
|
-
steps: z.ZodArray<z.
|
|
4480
|
-
name: z.ZodString;
|
|
4481
|
-
resource: z.ZodString;
|
|
4482
|
-
metric: z.ZodObject<{
|
|
4483
|
-
agg: z.ZodEnum<{
|
|
4484
|
-
sum: "sum";
|
|
4485
|
-
count: "count";
|
|
4486
|
-
count_distinct: "count_distinct";
|
|
4487
|
-
avg: "avg";
|
|
4488
|
-
min: "min";
|
|
4489
|
-
max: "max";
|
|
4490
|
-
median: "median";
|
|
4491
|
-
}>;
|
|
4492
|
-
field: z.ZodOptional<z.ZodString>;
|
|
4493
|
-
as: z.ZodString;
|
|
4494
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4495
|
-
}, z.core.$strict>;
|
|
4496
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4497
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4065
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
4498
4066
|
name: z.ZodString;
|
|
4499
4067
|
resource: z.ZodString;
|
|
4500
4068
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -4512,7 +4080,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4512
4080
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4513
4081
|
}, z.core.$strict>>;
|
|
4514
4082
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4515
|
-
}, z.core.$strict
|
|
4083
|
+
}, z.core.$strict>>;
|
|
4516
4084
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4517
4085
|
calc: z.ZodString;
|
|
4518
4086
|
as: z.ZodString;
|
|
@@ -4655,25 +4223,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4655
4223
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4656
4224
|
}, z.core.$strict>, z.ZodObject<{
|
|
4657
4225
|
source: z.ZodLiteral<"steps">;
|
|
4658
|
-
steps: z.ZodArray<z.
|
|
4659
|
-
name: z.ZodString;
|
|
4660
|
-
resource: z.ZodString;
|
|
4661
|
-
metric: z.ZodObject<{
|
|
4662
|
-
agg: z.ZodEnum<{
|
|
4663
|
-
sum: "sum";
|
|
4664
|
-
count: "count";
|
|
4665
|
-
count_distinct: "count_distinct";
|
|
4666
|
-
avg: "avg";
|
|
4667
|
-
min: "min";
|
|
4668
|
-
max: "max";
|
|
4669
|
-
median: "median";
|
|
4670
|
-
}>;
|
|
4671
|
-
field: z.ZodOptional<z.ZodString>;
|
|
4672
|
-
as: z.ZodString;
|
|
4673
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4674
|
-
}, z.core.$strict>;
|
|
4675
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4676
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4226
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
4677
4227
|
name: z.ZodString;
|
|
4678
4228
|
resource: z.ZodString;
|
|
4679
4229
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -4691,7 +4241,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4691
4241
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4692
4242
|
}, z.core.$strict>>;
|
|
4693
4243
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4694
|
-
}, z.core.$strict
|
|
4244
|
+
}, z.core.$strict>>;
|
|
4695
4245
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4696
4246
|
calc: z.ZodString;
|
|
4697
4247
|
as: z.ZodString;
|
|
@@ -4839,25 +4389,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4839
4389
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4840
4390
|
}, z.core.$strict>, z.ZodObject<{
|
|
4841
4391
|
source: z.ZodLiteral<"steps">;
|
|
4842
|
-
steps: z.ZodArray<z.
|
|
4843
|
-
name: z.ZodString;
|
|
4844
|
-
resource: z.ZodString;
|
|
4845
|
-
metric: z.ZodObject<{
|
|
4846
|
-
agg: z.ZodEnum<{
|
|
4847
|
-
sum: "sum";
|
|
4848
|
-
count: "count";
|
|
4849
|
-
count_distinct: "count_distinct";
|
|
4850
|
-
avg: "avg";
|
|
4851
|
-
min: "min";
|
|
4852
|
-
max: "max";
|
|
4853
|
-
median: "median";
|
|
4854
|
-
}>;
|
|
4855
|
-
field: z.ZodOptional<z.ZodString>;
|
|
4856
|
-
as: z.ZodString;
|
|
4857
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4858
|
-
}, z.core.$strict>;
|
|
4859
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4860
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4392
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
4861
4393
|
name: z.ZodString;
|
|
4862
4394
|
resource: z.ZodString;
|
|
4863
4395
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -4875,7 +4407,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4875
4407
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4876
4408
|
}, z.core.$strict>>;
|
|
4877
4409
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4878
|
-
}, z.core.$strict
|
|
4410
|
+
}, z.core.$strict>>;
|
|
4879
4411
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4880
4412
|
calc: z.ZodString;
|
|
4881
4413
|
as: z.ZodString;
|
|
@@ -5018,25 +4550,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5018
4550
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5019
4551
|
}, z.core.$strict>, z.ZodObject<{
|
|
5020
4552
|
source: z.ZodLiteral<"steps">;
|
|
5021
|
-
steps: z.ZodArray<z.
|
|
5022
|
-
name: z.ZodString;
|
|
5023
|
-
resource: z.ZodString;
|
|
5024
|
-
metric: z.ZodObject<{
|
|
5025
|
-
agg: z.ZodEnum<{
|
|
5026
|
-
sum: "sum";
|
|
5027
|
-
count: "count";
|
|
5028
|
-
count_distinct: "count_distinct";
|
|
5029
|
-
avg: "avg";
|
|
5030
|
-
min: "min";
|
|
5031
|
-
max: "max";
|
|
5032
|
-
median: "median";
|
|
5033
|
-
}>;
|
|
5034
|
-
field: z.ZodOptional<z.ZodString>;
|
|
5035
|
-
as: z.ZodString;
|
|
5036
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5037
|
-
}, z.core.$strict>;
|
|
5038
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5039
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4553
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
5040
4554
|
name: z.ZodString;
|
|
5041
4555
|
resource: z.ZodString;
|
|
5042
4556
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -5054,7 +4568,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5054
4568
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5055
4569
|
}, z.core.$strict>>;
|
|
5056
4570
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5057
|
-
}, z.core.$strict
|
|
4571
|
+
}, z.core.$strict>>;
|
|
5058
4572
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5059
4573
|
calc: z.ZodString;
|
|
5060
4574
|
as: z.ZodString;
|
|
@@ -5223,25 +4737,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5223
4737
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5224
4738
|
}, z.core.$strict>, z.ZodObject<{
|
|
5225
4739
|
source: z.ZodLiteral<"steps">;
|
|
5226
|
-
steps: z.ZodArray<z.
|
|
5227
|
-
name: z.ZodString;
|
|
5228
|
-
resource: z.ZodString;
|
|
5229
|
-
metric: z.ZodObject<{
|
|
5230
|
-
agg: z.ZodEnum<{
|
|
5231
|
-
sum: "sum";
|
|
5232
|
-
count: "count";
|
|
5233
|
-
count_distinct: "count_distinct";
|
|
5234
|
-
avg: "avg";
|
|
5235
|
-
min: "min";
|
|
5236
|
-
max: "max";
|
|
5237
|
-
median: "median";
|
|
5238
|
-
}>;
|
|
5239
|
-
field: z.ZodOptional<z.ZodString>;
|
|
5240
|
-
as: z.ZodString;
|
|
5241
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5242
|
-
}, z.core.$strict>;
|
|
5243
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5244
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4740
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
5245
4741
|
name: z.ZodString;
|
|
5246
4742
|
resource: z.ZodString;
|
|
5247
4743
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -5259,7 +4755,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5259
4755
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5260
4756
|
}, z.core.$strict>>;
|
|
5261
4757
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5262
|
-
}, z.core.$strict
|
|
4758
|
+
}, z.core.$strict>>;
|
|
5263
4759
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5264
4760
|
calc: z.ZodString;
|
|
5265
4761
|
as: z.ZodString;
|
|
@@ -5408,25 +4904,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5408
4904
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5409
4905
|
}, z.core.$strict>, z.ZodObject<{
|
|
5410
4906
|
source: z.ZodLiteral<"steps">;
|
|
5411
|
-
steps: z.ZodArray<z.
|
|
5412
|
-
name: z.ZodString;
|
|
5413
|
-
resource: z.ZodString;
|
|
5414
|
-
metric: z.ZodObject<{
|
|
5415
|
-
agg: z.ZodEnum<{
|
|
5416
|
-
sum: "sum";
|
|
5417
|
-
count: "count";
|
|
5418
|
-
count_distinct: "count_distinct";
|
|
5419
|
-
avg: "avg";
|
|
5420
|
-
min: "min";
|
|
5421
|
-
max: "max";
|
|
5422
|
-
median: "median";
|
|
5423
|
-
}>;
|
|
5424
|
-
field: z.ZodOptional<z.ZodString>;
|
|
5425
|
-
as: z.ZodString;
|
|
5426
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5427
|
-
}, z.core.$strict>;
|
|
5428
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5429
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4907
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
5430
4908
|
name: z.ZodString;
|
|
5431
4909
|
resource: z.ZodString;
|
|
5432
4910
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -5444,7 +4922,7 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5444
4922
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5445
4923
|
}, z.core.$strict>>;
|
|
5446
4924
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5447
|
-
}, z.core.$strict
|
|
4925
|
+
}, z.core.$strict>>;
|
|
5448
4926
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5449
4927
|
calc: z.ZodString;
|
|
5450
4928
|
as: z.ZodString;
|
|
@@ -5605,10 +5083,10 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5605
5083
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5606
5084
|
}, z.core.$strict>, z.ZodObject<{
|
|
5607
5085
|
source: z.ZodLiteral<"steps">;
|
|
5608
|
-
steps: z.ZodArray<z.
|
|
5086
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
5609
5087
|
name: z.ZodString;
|
|
5610
5088
|
resource: z.ZodString;
|
|
5611
|
-
|
|
5089
|
+
select: z.ZodArray<z.ZodObject<{
|
|
5612
5090
|
agg: z.ZodEnum<{
|
|
5613
5091
|
sum: "sum";
|
|
5614
5092
|
count: "count";
|
|
@@ -5621,27 +5099,9 @@ export declare const DashboardApiResponseZodSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
5621
5099
|
field: z.ZodOptional<z.ZodString>;
|
|
5622
5100
|
as: z.ZodString;
|
|
5623
5101
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5624
|
-
}, z.core.$strict
|
|
5102
|
+
}, z.core.$strict>>;
|
|
5625
5103
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5626
|
-
}, z.core.$strict
|
|
5627
|
-
name: z.ZodString;
|
|
5628
|
-
resource: z.ZodString;
|
|
5629
|
-
select: z.ZodArray<z.ZodObject<{
|
|
5630
|
-
agg: z.ZodEnum<{
|
|
5631
|
-
sum: "sum";
|
|
5632
|
-
count: "count";
|
|
5633
|
-
count_distinct: "count_distinct";
|
|
5634
|
-
avg: "avg";
|
|
5635
|
-
min: "min";
|
|
5636
|
-
max: "max";
|
|
5637
|
-
median: "median";
|
|
5638
|
-
}>;
|
|
5639
|
-
field: z.ZodOptional<z.ZodString>;
|
|
5640
|
-
as: z.ZodString;
|
|
5641
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5642
|
-
}, z.core.$strict>>;
|
|
5643
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5644
|
-
}, z.core.$strict>]>>;
|
|
5104
|
+
}, z.core.$strict>>;
|
|
5645
5105
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5646
5106
|
calc: z.ZodString;
|
|
5647
5107
|
as: z.ZodString;
|
|
@@ -5797,25 +5257,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
5797
5257
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5798
5258
|
}, z.core.$strict>, z.ZodObject<{
|
|
5799
5259
|
source: z.ZodLiteral<"steps">;
|
|
5800
|
-
steps: z.ZodArray<z.
|
|
5801
|
-
name: z.ZodString;
|
|
5802
|
-
resource: z.ZodString;
|
|
5803
|
-
metric: z.ZodObject<{
|
|
5804
|
-
agg: z.ZodEnum<{
|
|
5805
|
-
sum: "sum";
|
|
5806
|
-
count: "count";
|
|
5807
|
-
count_distinct: "count_distinct";
|
|
5808
|
-
avg: "avg";
|
|
5809
|
-
min: "min";
|
|
5810
|
-
max: "max";
|
|
5811
|
-
median: "median";
|
|
5812
|
-
}>;
|
|
5813
|
-
field: z.ZodOptional<z.ZodString>;
|
|
5814
|
-
as: z.ZodString;
|
|
5815
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5816
|
-
}, z.core.$strict>;
|
|
5817
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5818
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5260
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
5819
5261
|
name: z.ZodString;
|
|
5820
5262
|
resource: z.ZodString;
|
|
5821
5263
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -5833,7 +5275,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
5833
5275
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5834
5276
|
}, z.core.$strict>>;
|
|
5835
5277
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5836
|
-
}, z.core.$strict
|
|
5278
|
+
}, z.core.$strict>>;
|
|
5837
5279
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5838
5280
|
calc: z.ZodString;
|
|
5839
5281
|
as: z.ZodString;
|
|
@@ -5981,25 +5423,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
5981
5423
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5982
5424
|
}, z.core.$strict>, z.ZodObject<{
|
|
5983
5425
|
source: z.ZodLiteral<"steps">;
|
|
5984
|
-
steps: z.ZodArray<z.
|
|
5985
|
-
name: z.ZodString;
|
|
5986
|
-
resource: z.ZodString;
|
|
5987
|
-
metric: z.ZodObject<{
|
|
5988
|
-
agg: z.ZodEnum<{
|
|
5989
|
-
sum: "sum";
|
|
5990
|
-
count: "count";
|
|
5991
|
-
count_distinct: "count_distinct";
|
|
5992
|
-
avg: "avg";
|
|
5993
|
-
min: "min";
|
|
5994
|
-
max: "max";
|
|
5995
|
-
median: "median";
|
|
5996
|
-
}>;
|
|
5997
|
-
field: z.ZodOptional<z.ZodString>;
|
|
5998
|
-
as: z.ZodString;
|
|
5999
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6000
|
-
}, z.core.$strict>;
|
|
6001
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6002
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5426
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
6003
5427
|
name: z.ZodString;
|
|
6004
5428
|
resource: z.ZodString;
|
|
6005
5429
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -6017,7 +5441,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6017
5441
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6018
5442
|
}, z.core.$strict>>;
|
|
6019
5443
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6020
|
-
}, z.core.$strict
|
|
5444
|
+
}, z.core.$strict>>;
|
|
6021
5445
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6022
5446
|
calc: z.ZodString;
|
|
6023
5447
|
as: z.ZodString;
|
|
@@ -6160,25 +5584,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6160
5584
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6161
5585
|
}, z.core.$strict>, z.ZodObject<{
|
|
6162
5586
|
source: z.ZodLiteral<"steps">;
|
|
6163
|
-
steps: z.ZodArray<z.
|
|
6164
|
-
name: z.ZodString;
|
|
6165
|
-
resource: z.ZodString;
|
|
6166
|
-
metric: z.ZodObject<{
|
|
6167
|
-
agg: z.ZodEnum<{
|
|
6168
|
-
sum: "sum";
|
|
6169
|
-
count: "count";
|
|
6170
|
-
count_distinct: "count_distinct";
|
|
6171
|
-
avg: "avg";
|
|
6172
|
-
min: "min";
|
|
6173
|
-
max: "max";
|
|
6174
|
-
median: "median";
|
|
6175
|
-
}>;
|
|
6176
|
-
field: z.ZodOptional<z.ZodString>;
|
|
6177
|
-
as: z.ZodString;
|
|
6178
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6179
|
-
}, z.core.$strict>;
|
|
6180
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6181
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5587
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
6182
5588
|
name: z.ZodString;
|
|
6183
5589
|
resource: z.ZodString;
|
|
6184
5590
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -6196,7 +5602,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6196
5602
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6197
5603
|
}, z.core.$strict>>;
|
|
6198
5604
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6199
|
-
}, z.core.$strict
|
|
5605
|
+
}, z.core.$strict>>;
|
|
6200
5606
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6201
5607
|
calc: z.ZodString;
|
|
6202
5608
|
as: z.ZodString;
|
|
@@ -6356,25 +5762,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6356
5762
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6357
5763
|
}, z.core.$strict>, z.ZodObject<{
|
|
6358
5764
|
source: z.ZodLiteral<"steps">;
|
|
6359
|
-
steps: z.ZodArray<z.
|
|
6360
|
-
name: z.ZodString;
|
|
6361
|
-
resource: z.ZodString;
|
|
6362
|
-
metric: z.ZodObject<{
|
|
6363
|
-
agg: z.ZodEnum<{
|
|
6364
|
-
sum: "sum";
|
|
6365
|
-
count: "count";
|
|
6366
|
-
count_distinct: "count_distinct";
|
|
6367
|
-
avg: "avg";
|
|
6368
|
-
min: "min";
|
|
6369
|
-
max: "max";
|
|
6370
|
-
median: "median";
|
|
6371
|
-
}>;
|
|
6372
|
-
field: z.ZodOptional<z.ZodString>;
|
|
6373
|
-
as: z.ZodString;
|
|
6374
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6375
|
-
}, z.core.$strict>;
|
|
6376
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6377
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5765
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
6378
5766
|
name: z.ZodString;
|
|
6379
5767
|
resource: z.ZodString;
|
|
6380
5768
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -6392,7 +5780,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6392
5780
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6393
5781
|
}, z.core.$strict>>;
|
|
6394
5782
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6395
|
-
}, z.core.$strict
|
|
5783
|
+
}, z.core.$strict>>;
|
|
6396
5784
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6397
5785
|
calc: z.ZodString;
|
|
6398
5786
|
as: z.ZodString;
|
|
@@ -6535,25 +5923,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6535
5923
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6536
5924
|
}, z.core.$strict>, z.ZodObject<{
|
|
6537
5925
|
source: z.ZodLiteral<"steps">;
|
|
6538
|
-
steps: z.ZodArray<z.
|
|
6539
|
-
name: z.ZodString;
|
|
6540
|
-
resource: z.ZodString;
|
|
6541
|
-
metric: z.ZodObject<{
|
|
6542
|
-
agg: z.ZodEnum<{
|
|
6543
|
-
sum: "sum";
|
|
6544
|
-
count: "count";
|
|
6545
|
-
count_distinct: "count_distinct";
|
|
6546
|
-
avg: "avg";
|
|
6547
|
-
min: "min";
|
|
6548
|
-
max: "max";
|
|
6549
|
-
median: "median";
|
|
6550
|
-
}>;
|
|
6551
|
-
field: z.ZodOptional<z.ZodString>;
|
|
6552
|
-
as: z.ZodString;
|
|
6553
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6554
|
-
}, z.core.$strict>;
|
|
6555
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6556
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5926
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
6557
5927
|
name: z.ZodString;
|
|
6558
5928
|
resource: z.ZodString;
|
|
6559
5929
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -6571,7 +5941,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6571
5941
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6572
5942
|
}, z.core.$strict>>;
|
|
6573
5943
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6574
|
-
}, z.core.$strict
|
|
5944
|
+
}, z.core.$strict>>;
|
|
6575
5945
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6576
5946
|
calc: z.ZodString;
|
|
6577
5947
|
as: z.ZodString;
|
|
@@ -6719,25 +6089,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6719
6089
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6720
6090
|
}, z.core.$strict>, z.ZodObject<{
|
|
6721
6091
|
source: z.ZodLiteral<"steps">;
|
|
6722
|
-
steps: z.ZodArray<z.
|
|
6723
|
-
name: z.ZodString;
|
|
6724
|
-
resource: z.ZodString;
|
|
6725
|
-
metric: z.ZodObject<{
|
|
6726
|
-
agg: z.ZodEnum<{
|
|
6727
|
-
sum: "sum";
|
|
6728
|
-
count: "count";
|
|
6729
|
-
count_distinct: "count_distinct";
|
|
6730
|
-
avg: "avg";
|
|
6731
|
-
min: "min";
|
|
6732
|
-
max: "max";
|
|
6733
|
-
median: "median";
|
|
6734
|
-
}>;
|
|
6735
|
-
field: z.ZodOptional<z.ZodString>;
|
|
6736
|
-
as: z.ZodString;
|
|
6737
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6738
|
-
}, z.core.$strict>;
|
|
6739
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6740
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6092
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
6741
6093
|
name: z.ZodString;
|
|
6742
6094
|
resource: z.ZodString;
|
|
6743
6095
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -6755,7 +6107,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6755
6107
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6756
6108
|
}, z.core.$strict>>;
|
|
6757
6109
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6758
|
-
}, z.core.$strict
|
|
6110
|
+
}, z.core.$strict>>;
|
|
6759
6111
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6760
6112
|
calc: z.ZodString;
|
|
6761
6113
|
as: z.ZodString;
|
|
@@ -6898,25 +6250,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6898
6250
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6899
6251
|
}, z.core.$strict>, z.ZodObject<{
|
|
6900
6252
|
source: z.ZodLiteral<"steps">;
|
|
6901
|
-
steps: z.ZodArray<z.
|
|
6902
|
-
name: z.ZodString;
|
|
6903
|
-
resource: z.ZodString;
|
|
6904
|
-
metric: z.ZodObject<{
|
|
6905
|
-
agg: z.ZodEnum<{
|
|
6906
|
-
sum: "sum";
|
|
6907
|
-
count: "count";
|
|
6908
|
-
count_distinct: "count_distinct";
|
|
6909
|
-
avg: "avg";
|
|
6910
|
-
min: "min";
|
|
6911
|
-
max: "max";
|
|
6912
|
-
median: "median";
|
|
6913
|
-
}>;
|
|
6914
|
-
field: z.ZodOptional<z.ZodString>;
|
|
6915
|
-
as: z.ZodString;
|
|
6916
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6917
|
-
}, z.core.$strict>;
|
|
6918
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6919
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6253
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
6920
6254
|
name: z.ZodString;
|
|
6921
6255
|
resource: z.ZodString;
|
|
6922
6256
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -6934,7 +6268,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
6934
6268
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6935
6269
|
}, z.core.$strict>>;
|
|
6936
6270
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6937
|
-
}, z.core.$strict
|
|
6271
|
+
}, z.core.$strict>>;
|
|
6938
6272
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6939
6273
|
calc: z.ZodString;
|
|
6940
6274
|
as: z.ZodString;
|
|
@@ -7103,25 +6437,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
7103
6437
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7104
6438
|
}, z.core.$strict>, z.ZodObject<{
|
|
7105
6439
|
source: z.ZodLiteral<"steps">;
|
|
7106
|
-
steps: z.ZodArray<z.
|
|
7107
|
-
name: z.ZodString;
|
|
7108
|
-
resource: z.ZodString;
|
|
7109
|
-
metric: z.ZodObject<{
|
|
7110
|
-
agg: z.ZodEnum<{
|
|
7111
|
-
sum: "sum";
|
|
7112
|
-
count: "count";
|
|
7113
|
-
count_distinct: "count_distinct";
|
|
7114
|
-
avg: "avg";
|
|
7115
|
-
min: "min";
|
|
7116
|
-
max: "max";
|
|
7117
|
-
median: "median";
|
|
7118
|
-
}>;
|
|
7119
|
-
field: z.ZodOptional<z.ZodString>;
|
|
7120
|
-
as: z.ZodString;
|
|
7121
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7122
|
-
}, z.core.$strict>;
|
|
7123
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7124
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6440
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
7125
6441
|
name: z.ZodString;
|
|
7126
6442
|
resource: z.ZodString;
|
|
7127
6443
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -7139,7 +6455,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
7139
6455
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7140
6456
|
}, z.core.$strict>>;
|
|
7141
6457
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7142
|
-
}, z.core.$strict
|
|
6458
|
+
}, z.core.$strict>>;
|
|
7143
6459
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7144
6460
|
calc: z.ZodString;
|
|
7145
6461
|
as: z.ZodString;
|
|
@@ -7288,25 +6604,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
7288
6604
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7289
6605
|
}, z.core.$strict>, z.ZodObject<{
|
|
7290
6606
|
source: z.ZodLiteral<"steps">;
|
|
7291
|
-
steps: z.ZodArray<z.
|
|
7292
|
-
name: z.ZodString;
|
|
7293
|
-
resource: z.ZodString;
|
|
7294
|
-
metric: z.ZodObject<{
|
|
7295
|
-
agg: z.ZodEnum<{
|
|
7296
|
-
sum: "sum";
|
|
7297
|
-
count: "count";
|
|
7298
|
-
count_distinct: "count_distinct";
|
|
7299
|
-
avg: "avg";
|
|
7300
|
-
min: "min";
|
|
7301
|
-
max: "max";
|
|
7302
|
-
median: "median";
|
|
7303
|
-
}>;
|
|
7304
|
-
field: z.ZodOptional<z.ZodString>;
|
|
7305
|
-
as: z.ZodString;
|
|
7306
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7307
|
-
}, z.core.$strict>;
|
|
7308
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7309
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6607
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
7310
6608
|
name: z.ZodString;
|
|
7311
6609
|
resource: z.ZodString;
|
|
7312
6610
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -7324,7 +6622,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
7324
6622
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7325
6623
|
}, z.core.$strict>>;
|
|
7326
6624
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7327
|
-
}, z.core.$strict
|
|
6625
|
+
}, z.core.$strict>>;
|
|
7328
6626
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7329
6627
|
calc: z.ZodString;
|
|
7330
6628
|
as: z.ZodString;
|
|
@@ -7485,25 +6783,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
7485
6783
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7486
6784
|
}, z.core.$strict>, z.ZodObject<{
|
|
7487
6785
|
source: z.ZodLiteral<"steps">;
|
|
7488
|
-
steps: z.ZodArray<z.
|
|
7489
|
-
name: z.ZodString;
|
|
7490
|
-
resource: z.ZodString;
|
|
7491
|
-
metric: z.ZodObject<{
|
|
7492
|
-
agg: z.ZodEnum<{
|
|
7493
|
-
sum: "sum";
|
|
7494
|
-
count: "count";
|
|
7495
|
-
count_distinct: "count_distinct";
|
|
7496
|
-
avg: "avg";
|
|
7497
|
-
min: "min";
|
|
7498
|
-
max: "max";
|
|
7499
|
-
median: "median";
|
|
7500
|
-
}>;
|
|
7501
|
-
field: z.ZodOptional<z.ZodString>;
|
|
7502
|
-
as: z.ZodString;
|
|
7503
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7504
|
-
}, z.core.$strict>;
|
|
7505
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7506
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6786
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
7507
6787
|
name: z.ZodString;
|
|
7508
6788
|
resource: z.ZodString;
|
|
7509
6789
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -7521,7 +6801,7 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
|
|
|
7521
6801
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7522
6802
|
}, z.core.$strict>>;
|
|
7523
6803
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7524
|
-
}, z.core.$strict
|
|
6804
|
+
}, z.core.$strict>>;
|
|
7525
6805
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7526
6806
|
calc: z.ZodString;
|
|
7527
6807
|
as: z.ZodString;
|
|
@@ -7700,25 +6980,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7700
6980
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7701
6981
|
}, z.core.$strict>, z.ZodObject<{
|
|
7702
6982
|
source: z.ZodLiteral<"steps">;
|
|
7703
|
-
steps: z.ZodArray<z.
|
|
7704
|
-
name: z.ZodString;
|
|
7705
|
-
resource: z.ZodString;
|
|
7706
|
-
metric: z.ZodObject<{
|
|
7707
|
-
agg: z.ZodEnum<{
|
|
7708
|
-
sum: "sum";
|
|
7709
|
-
count: "count";
|
|
7710
|
-
count_distinct: "count_distinct";
|
|
7711
|
-
avg: "avg";
|
|
7712
|
-
min: "min";
|
|
7713
|
-
max: "max";
|
|
7714
|
-
median: "median";
|
|
7715
|
-
}>;
|
|
7716
|
-
field: z.ZodOptional<z.ZodString>;
|
|
7717
|
-
as: z.ZodString;
|
|
7718
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7719
|
-
}, z.core.$strict>;
|
|
7720
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7721
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6983
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
7722
6984
|
name: z.ZodString;
|
|
7723
6985
|
resource: z.ZodString;
|
|
7724
6986
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -7736,7 +6998,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7736
6998
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7737
6999
|
}, z.core.$strict>>;
|
|
7738
7000
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7739
|
-
}, z.core.$strict
|
|
7001
|
+
}, z.core.$strict>>;
|
|
7740
7002
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7741
7003
|
calc: z.ZodString;
|
|
7742
7004
|
as: z.ZodString;
|
|
@@ -7902,25 +7164,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7902
7164
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7903
7165
|
}, z.core.$strict>, z.ZodObject<{
|
|
7904
7166
|
source: z.ZodLiteral<"steps">;
|
|
7905
|
-
steps: z.ZodArray<z.
|
|
7906
|
-
name: z.ZodString;
|
|
7907
|
-
resource: z.ZodString;
|
|
7908
|
-
metric: z.ZodObject<{
|
|
7909
|
-
agg: z.ZodEnum<{
|
|
7910
|
-
sum: "sum";
|
|
7911
|
-
count: "count";
|
|
7912
|
-
count_distinct: "count_distinct";
|
|
7913
|
-
avg: "avg";
|
|
7914
|
-
min: "min";
|
|
7915
|
-
max: "max";
|
|
7916
|
-
median: "median";
|
|
7917
|
-
}>;
|
|
7918
|
-
field: z.ZodOptional<z.ZodString>;
|
|
7919
|
-
as: z.ZodString;
|
|
7920
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7921
|
-
}, z.core.$strict>;
|
|
7922
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7923
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
7167
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
7924
7168
|
name: z.ZodString;
|
|
7925
7169
|
resource: z.ZodString;
|
|
7926
7170
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -7938,7 +7182,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
7938
7182
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7939
7183
|
}, z.core.$strict>>;
|
|
7940
7184
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
7941
|
-
}, z.core.$strict
|
|
7185
|
+
}, z.core.$strict>>;
|
|
7942
7186
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7943
7187
|
calc: z.ZodString;
|
|
7944
7188
|
as: z.ZodString;
|
|
@@ -8084,25 +7328,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8084
7328
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8085
7329
|
}, z.core.$strict>, z.ZodObject<{
|
|
8086
7330
|
source: z.ZodLiteral<"steps">;
|
|
8087
|
-
steps: z.ZodArray<z.
|
|
8088
|
-
name: z.ZodString;
|
|
8089
|
-
resource: z.ZodString;
|
|
8090
|
-
metric: z.ZodObject<{
|
|
8091
|
-
agg: z.ZodEnum<{
|
|
8092
|
-
sum: "sum";
|
|
8093
|
-
count: "count";
|
|
8094
|
-
count_distinct: "count_distinct";
|
|
8095
|
-
avg: "avg";
|
|
8096
|
-
min: "min";
|
|
8097
|
-
max: "max";
|
|
8098
|
-
median: "median";
|
|
8099
|
-
}>;
|
|
8100
|
-
field: z.ZodOptional<z.ZodString>;
|
|
8101
|
-
as: z.ZodString;
|
|
8102
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8103
|
-
}, z.core.$strict>;
|
|
8104
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8105
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
7331
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
8106
7332
|
name: z.ZodString;
|
|
8107
7333
|
resource: z.ZodString;
|
|
8108
7334
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -8120,7 +7346,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8120
7346
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8121
7347
|
}, z.core.$strict>>;
|
|
8122
7348
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8123
|
-
}, z.core.$strict
|
|
7349
|
+
}, z.core.$strict>>;
|
|
8124
7350
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8125
7351
|
calc: z.ZodString;
|
|
8126
7352
|
as: z.ZodString;
|
|
@@ -8265,10 +7491,10 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8265
7491
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8266
7492
|
}, z.core.$strict>, z.ZodObject<{
|
|
8267
7493
|
source: z.ZodLiteral<"steps">;
|
|
8268
|
-
steps: z.ZodArray<z.
|
|
7494
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
8269
7495
|
name: z.ZodString;
|
|
8270
7496
|
resource: z.ZodString;
|
|
8271
|
-
|
|
7497
|
+
select: z.ZodArray<z.ZodObject<{
|
|
8272
7498
|
agg: z.ZodEnum<{
|
|
8273
7499
|
sum: "sum";
|
|
8274
7500
|
count: "count";
|
|
@@ -8281,27 +7507,9 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8281
7507
|
field: z.ZodOptional<z.ZodString>;
|
|
8282
7508
|
as: z.ZodString;
|
|
8283
7509
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8284
|
-
}, z.core.$strict
|
|
7510
|
+
}, z.core.$strict>>;
|
|
8285
7511
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8286
|
-
}, z.core.$strict
|
|
8287
|
-
name: z.ZodString;
|
|
8288
|
-
resource: z.ZodString;
|
|
8289
|
-
select: z.ZodArray<z.ZodObject<{
|
|
8290
|
-
agg: z.ZodEnum<{
|
|
8291
|
-
sum: "sum";
|
|
8292
|
-
count: "count";
|
|
8293
|
-
count_distinct: "count_distinct";
|
|
8294
|
-
avg: "avg";
|
|
8295
|
-
min: "min";
|
|
8296
|
-
max: "max";
|
|
8297
|
-
median: "median";
|
|
8298
|
-
}>;
|
|
8299
|
-
field: z.ZodOptional<z.ZodString>;
|
|
8300
|
-
as: z.ZodString;
|
|
8301
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8302
|
-
}, z.core.$strict>>;
|
|
8303
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8304
|
-
}, z.core.$strict>]>>;
|
|
7512
|
+
}, z.core.$strict>>;
|
|
8305
7513
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8306
7514
|
calc: z.ZodString;
|
|
8307
7515
|
as: z.ZodString;
|
|
@@ -8441,25 +7649,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8441
7649
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8442
7650
|
}, z.core.$strict>, z.ZodObject<{
|
|
8443
7651
|
source: z.ZodLiteral<"steps">;
|
|
8444
|
-
steps: z.ZodArray<z.
|
|
8445
|
-
name: z.ZodString;
|
|
8446
|
-
resource: z.ZodString;
|
|
8447
|
-
metric: z.ZodObject<{
|
|
8448
|
-
agg: z.ZodEnum<{
|
|
8449
|
-
sum: "sum";
|
|
8450
|
-
count: "count";
|
|
8451
|
-
count_distinct: "count_distinct";
|
|
8452
|
-
avg: "avg";
|
|
8453
|
-
min: "min";
|
|
8454
|
-
max: "max";
|
|
8455
|
-
median: "median";
|
|
8456
|
-
}>;
|
|
8457
|
-
field: z.ZodOptional<z.ZodString>;
|
|
8458
|
-
as: z.ZodString;
|
|
8459
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8460
|
-
}, z.core.$strict>;
|
|
8461
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8462
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
7652
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
8463
7653
|
name: z.ZodString;
|
|
8464
7654
|
resource: z.ZodString;
|
|
8465
7655
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -8477,7 +7667,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8477
7667
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8478
7668
|
}, z.core.$strict>>;
|
|
8479
7669
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8480
|
-
}, z.core.$strict
|
|
7670
|
+
}, z.core.$strict>>;
|
|
8481
7671
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8482
7672
|
calc: z.ZodString;
|
|
8483
7673
|
as: z.ZodString;
|
|
@@ -8634,25 +7824,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8634
7824
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8635
7825
|
}, z.core.$strict>, z.ZodObject<{
|
|
8636
7826
|
source: z.ZodLiteral<"steps">;
|
|
8637
|
-
steps: z.ZodArray<z.
|
|
8638
|
-
name: z.ZodString;
|
|
8639
|
-
resource: z.ZodString;
|
|
8640
|
-
metric: z.ZodObject<{
|
|
8641
|
-
agg: z.ZodEnum<{
|
|
8642
|
-
sum: "sum";
|
|
8643
|
-
count: "count";
|
|
8644
|
-
count_distinct: "count_distinct";
|
|
8645
|
-
avg: "avg";
|
|
8646
|
-
min: "min";
|
|
8647
|
-
max: "max";
|
|
8648
|
-
median: "median";
|
|
8649
|
-
}>;
|
|
8650
|
-
field: z.ZodOptional<z.ZodString>;
|
|
8651
|
-
as: z.ZodString;
|
|
8652
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8653
|
-
}, z.core.$strict>;
|
|
8654
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8655
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
7827
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
8656
7828
|
name: z.ZodString;
|
|
8657
7829
|
resource: z.ZodString;
|
|
8658
7830
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -8670,7 +7842,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8670
7842
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8671
7843
|
}, z.core.$strict>>;
|
|
8672
7844
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8673
|
-
}, z.core.$strict
|
|
7845
|
+
}, z.core.$strict>>;
|
|
8674
7846
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8675
7847
|
calc: z.ZodString;
|
|
8676
7848
|
as: z.ZodString;
|
|
@@ -8810,25 +7982,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8810
7982
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8811
7983
|
}, z.core.$strict>, z.ZodObject<{
|
|
8812
7984
|
source: z.ZodLiteral<"steps">;
|
|
8813
|
-
steps: z.ZodArray<z.
|
|
8814
|
-
name: z.ZodString;
|
|
8815
|
-
resource: z.ZodString;
|
|
8816
|
-
metric: z.ZodObject<{
|
|
8817
|
-
agg: z.ZodEnum<{
|
|
8818
|
-
sum: "sum";
|
|
8819
|
-
count: "count";
|
|
8820
|
-
count_distinct: "count_distinct";
|
|
8821
|
-
avg: "avg";
|
|
8822
|
-
min: "min";
|
|
8823
|
-
max: "max";
|
|
8824
|
-
median: "median";
|
|
8825
|
-
}>;
|
|
8826
|
-
field: z.ZodOptional<z.ZodString>;
|
|
8827
|
-
as: z.ZodString;
|
|
8828
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8829
|
-
}, z.core.$strict>;
|
|
8830
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8831
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
7985
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
8832
7986
|
name: z.ZodString;
|
|
8833
7987
|
resource: z.ZodString;
|
|
8834
7988
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -8846,7 +8000,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8846
8000
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8847
8001
|
}, z.core.$strict>>;
|
|
8848
8002
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
8849
|
-
}, z.core.$strict
|
|
8003
|
+
}, z.core.$strict>>;
|
|
8850
8004
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8851
8005
|
calc: z.ZodString;
|
|
8852
8006
|
as: z.ZodString;
|
|
@@ -8991,25 +8145,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
8991
8145
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8992
8146
|
}, z.core.$strict>, z.ZodObject<{
|
|
8993
8147
|
source: z.ZodLiteral<"steps">;
|
|
8994
|
-
steps: z.ZodArray<z.
|
|
8995
|
-
name: z.ZodString;
|
|
8996
|
-
resource: z.ZodString;
|
|
8997
|
-
metric: z.ZodObject<{
|
|
8998
|
-
agg: z.ZodEnum<{
|
|
8999
|
-
sum: "sum";
|
|
9000
|
-
count: "count";
|
|
9001
|
-
count_distinct: "count_distinct";
|
|
9002
|
-
avg: "avg";
|
|
9003
|
-
min: "min";
|
|
9004
|
-
max: "max";
|
|
9005
|
-
median: "median";
|
|
9006
|
-
}>;
|
|
9007
|
-
field: z.ZodOptional<z.ZodString>;
|
|
9008
|
-
as: z.ZodString;
|
|
9009
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9010
|
-
}, z.core.$strict>;
|
|
9011
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9012
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
8148
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
9013
8149
|
name: z.ZodString;
|
|
9014
8150
|
resource: z.ZodString;
|
|
9015
8151
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -9027,7 +8163,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
9027
8163
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9028
8164
|
}, z.core.$strict>>;
|
|
9029
8165
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9030
|
-
}, z.core.$strict
|
|
8166
|
+
}, z.core.$strict>>;
|
|
9031
8167
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9032
8168
|
calc: z.ZodString;
|
|
9033
8169
|
as: z.ZodString;
|
|
@@ -9167,25 +8303,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
9167
8303
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9168
8304
|
}, z.core.$strict>, z.ZodObject<{
|
|
9169
8305
|
source: z.ZodLiteral<"steps">;
|
|
9170
|
-
steps: z.ZodArray<z.
|
|
9171
|
-
name: z.ZodString;
|
|
9172
|
-
resource: z.ZodString;
|
|
9173
|
-
metric: z.ZodObject<{
|
|
9174
|
-
agg: z.ZodEnum<{
|
|
9175
|
-
sum: "sum";
|
|
9176
|
-
count: "count";
|
|
9177
|
-
count_distinct: "count_distinct";
|
|
9178
|
-
avg: "avg";
|
|
9179
|
-
min: "min";
|
|
9180
|
-
max: "max";
|
|
9181
|
-
median: "median";
|
|
9182
|
-
}>;
|
|
9183
|
-
field: z.ZodOptional<z.ZodString>;
|
|
9184
|
-
as: z.ZodString;
|
|
9185
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9186
|
-
}, z.core.$strict>;
|
|
9187
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9188
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
8306
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
9189
8307
|
name: z.ZodString;
|
|
9190
8308
|
resource: z.ZodString;
|
|
9191
8309
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -9203,7 +8321,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
9203
8321
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9204
8322
|
}, z.core.$strict>>;
|
|
9205
8323
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9206
|
-
}, z.core.$strict
|
|
8324
|
+
}, z.core.$strict>>;
|
|
9207
8325
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9208
8326
|
calc: z.ZodString;
|
|
9209
8327
|
as: z.ZodString;
|
|
@@ -9361,25 +8479,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
9361
8479
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9362
8480
|
}, z.core.$strict>, z.ZodObject<{
|
|
9363
8481
|
source: z.ZodLiteral<"steps">;
|
|
9364
|
-
steps: z.ZodArray<z.
|
|
9365
|
-
name: z.ZodString;
|
|
9366
|
-
resource: z.ZodString;
|
|
9367
|
-
metric: z.ZodObject<{
|
|
9368
|
-
agg: z.ZodEnum<{
|
|
9369
|
-
sum: "sum";
|
|
9370
|
-
count: "count";
|
|
9371
|
-
count_distinct: "count_distinct";
|
|
9372
|
-
avg: "avg";
|
|
9373
|
-
min: "min";
|
|
9374
|
-
max: "max";
|
|
9375
|
-
median: "median";
|
|
9376
|
-
}>;
|
|
9377
|
-
field: z.ZodOptional<z.ZodString>;
|
|
9378
|
-
as: z.ZodString;
|
|
9379
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9380
|
-
}, z.core.$strict>;
|
|
9381
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9382
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
8482
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
9383
8483
|
name: z.ZodString;
|
|
9384
8484
|
resource: z.ZodString;
|
|
9385
8485
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -9397,7 +8497,7 @@ export declare const ConfigurableWidgetConfigSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
9397
8497
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9398
8498
|
}, z.core.$strict>>;
|
|
9399
8499
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9400
|
-
}, z.core.$strict
|
|
8500
|
+
}, z.core.$strict>>;
|
|
9401
8501
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9402
8502
|
calc: z.ZodString;
|
|
9403
8503
|
as: z.ZodString;
|
|
@@ -9526,25 +8626,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9526
8626
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9527
8627
|
}, z.core.$strict>, z.ZodObject<{
|
|
9528
8628
|
source: z.ZodLiteral<"steps">;
|
|
9529
|
-
steps: z.ZodArray<z.
|
|
9530
|
-
name: z.ZodString;
|
|
9531
|
-
resource: z.ZodString;
|
|
9532
|
-
metric: z.ZodObject<{
|
|
9533
|
-
agg: z.ZodEnum<{
|
|
9534
|
-
sum: "sum";
|
|
9535
|
-
count: "count";
|
|
9536
|
-
count_distinct: "count_distinct";
|
|
9537
|
-
avg: "avg";
|
|
9538
|
-
min: "min";
|
|
9539
|
-
max: "max";
|
|
9540
|
-
median: "median";
|
|
9541
|
-
}>;
|
|
9542
|
-
field: z.ZodOptional<z.ZodString>;
|
|
9543
|
-
as: z.ZodString;
|
|
9544
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9545
|
-
}, z.core.$strict>;
|
|
9546
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9547
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
8629
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
9548
8630
|
name: z.ZodString;
|
|
9549
8631
|
resource: z.ZodString;
|
|
9550
8632
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -9562,7 +8644,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9562
8644
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9563
8645
|
}, z.core.$strict>>;
|
|
9564
8646
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9565
|
-
}, z.core.$strict
|
|
8647
|
+
}, z.core.$strict>>;
|
|
9566
8648
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9567
8649
|
calc: z.ZodString;
|
|
9568
8650
|
as: z.ZodString;
|
|
@@ -9728,25 +8810,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9728
8810
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9729
8811
|
}, z.core.$strict>, z.ZodObject<{
|
|
9730
8812
|
source: z.ZodLiteral<"steps">;
|
|
9731
|
-
steps: z.ZodArray<z.
|
|
9732
|
-
name: z.ZodString;
|
|
9733
|
-
resource: z.ZodString;
|
|
9734
|
-
metric: 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
|
-
}, z.core.$strict>;
|
|
9748
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9749
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
8813
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
9750
8814
|
name: z.ZodString;
|
|
9751
8815
|
resource: z.ZodString;
|
|
9752
8816
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -9764,7 +8828,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9764
8828
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9765
8829
|
}, z.core.$strict>>;
|
|
9766
8830
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9767
|
-
}, z.core.$strict
|
|
8831
|
+
}, z.core.$strict>>;
|
|
9768
8832
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9769
8833
|
calc: z.ZodString;
|
|
9770
8834
|
as: z.ZodString;
|
|
@@ -9910,25 +8974,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9910
8974
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9911
8975
|
}, z.core.$strict>, z.ZodObject<{
|
|
9912
8976
|
source: z.ZodLiteral<"steps">;
|
|
9913
|
-
steps: z.ZodArray<z.
|
|
9914
|
-
name: z.ZodString;
|
|
9915
|
-
resource: z.ZodString;
|
|
9916
|
-
metric: z.ZodObject<{
|
|
9917
|
-
agg: z.ZodEnum<{
|
|
9918
|
-
sum: "sum";
|
|
9919
|
-
count: "count";
|
|
9920
|
-
count_distinct: "count_distinct";
|
|
9921
|
-
avg: "avg";
|
|
9922
|
-
min: "min";
|
|
9923
|
-
max: "max";
|
|
9924
|
-
median: "median";
|
|
9925
|
-
}>;
|
|
9926
|
-
field: z.ZodOptional<z.ZodString>;
|
|
9927
|
-
as: z.ZodString;
|
|
9928
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9929
|
-
}, z.core.$strict>;
|
|
9930
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9931
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
8977
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
9932
8978
|
name: z.ZodString;
|
|
9933
8979
|
resource: z.ZodString;
|
|
9934
8980
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -9946,7 +8992,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
9946
8992
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9947
8993
|
}, z.core.$strict>>;
|
|
9948
8994
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
9949
|
-
}, z.core.$strict
|
|
8995
|
+
}, z.core.$strict>>;
|
|
9950
8996
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9951
8997
|
calc: z.ZodString;
|
|
9952
8998
|
as: z.ZodString;
|
|
@@ -10091,25 +9137,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10091
9137
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10092
9138
|
}, z.core.$strict>, z.ZodObject<{
|
|
10093
9139
|
source: z.ZodLiteral<"steps">;
|
|
10094
|
-
steps: z.ZodArray<z.
|
|
10095
|
-
name: z.ZodString;
|
|
10096
|
-
resource: z.ZodString;
|
|
10097
|
-
metric: z.ZodObject<{
|
|
10098
|
-
agg: z.ZodEnum<{
|
|
10099
|
-
sum: "sum";
|
|
10100
|
-
count: "count";
|
|
10101
|
-
count_distinct: "count_distinct";
|
|
10102
|
-
avg: "avg";
|
|
10103
|
-
min: "min";
|
|
10104
|
-
max: "max";
|
|
10105
|
-
median: "median";
|
|
10106
|
-
}>;
|
|
10107
|
-
field: z.ZodOptional<z.ZodString>;
|
|
10108
|
-
as: z.ZodString;
|
|
10109
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10110
|
-
}, z.core.$strict>;
|
|
10111
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10112
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9140
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
10113
9141
|
name: z.ZodString;
|
|
10114
9142
|
resource: z.ZodString;
|
|
10115
9143
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -10127,7 +9155,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10127
9155
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10128
9156
|
}, z.core.$strict>>;
|
|
10129
9157
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10130
|
-
}, z.core.$strict
|
|
9158
|
+
}, z.core.$strict>>;
|
|
10131
9159
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10132
9160
|
calc: z.ZodString;
|
|
10133
9161
|
as: z.ZodString;
|
|
@@ -10267,25 +9295,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10267
9295
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10268
9296
|
}, z.core.$strict>, z.ZodObject<{
|
|
10269
9297
|
source: z.ZodLiteral<"steps">;
|
|
10270
|
-
steps: z.ZodArray<z.
|
|
10271
|
-
name: z.ZodString;
|
|
10272
|
-
resource: z.ZodString;
|
|
10273
|
-
metric: z.ZodObject<{
|
|
10274
|
-
agg: z.ZodEnum<{
|
|
10275
|
-
sum: "sum";
|
|
10276
|
-
count: "count";
|
|
10277
|
-
count_distinct: "count_distinct";
|
|
10278
|
-
avg: "avg";
|
|
10279
|
-
min: "min";
|
|
10280
|
-
max: "max";
|
|
10281
|
-
median: "median";
|
|
10282
|
-
}>;
|
|
10283
|
-
field: z.ZodOptional<z.ZodString>;
|
|
10284
|
-
as: z.ZodString;
|
|
10285
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10286
|
-
}, z.core.$strict>;
|
|
10287
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10288
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9298
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
10289
9299
|
name: z.ZodString;
|
|
10290
9300
|
resource: z.ZodString;
|
|
10291
9301
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -10303,7 +9313,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10303
9313
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10304
9314
|
}, z.core.$strict>>;
|
|
10305
9315
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10306
|
-
}, z.core.$strict
|
|
9316
|
+
}, z.core.$strict>>;
|
|
10307
9317
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10308
9318
|
calc: z.ZodString;
|
|
10309
9319
|
as: z.ZodString;
|
|
@@ -10460,25 +9470,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10460
9470
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10461
9471
|
}, z.core.$strict>, z.ZodObject<{
|
|
10462
9472
|
source: z.ZodLiteral<"steps">;
|
|
10463
|
-
steps: z.ZodArray<z.
|
|
10464
|
-
name: z.ZodString;
|
|
10465
|
-
resource: z.ZodString;
|
|
10466
|
-
metric: z.ZodObject<{
|
|
10467
|
-
agg: z.ZodEnum<{
|
|
10468
|
-
sum: "sum";
|
|
10469
|
-
count: "count";
|
|
10470
|
-
count_distinct: "count_distinct";
|
|
10471
|
-
avg: "avg";
|
|
10472
|
-
min: "min";
|
|
10473
|
-
max: "max";
|
|
10474
|
-
median: "median";
|
|
10475
|
-
}>;
|
|
10476
|
-
field: z.ZodOptional<z.ZodString>;
|
|
10477
|
-
as: z.ZodString;
|
|
10478
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10479
|
-
}, z.core.$strict>;
|
|
10480
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10481
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9473
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
10482
9474
|
name: z.ZodString;
|
|
10483
9475
|
resource: z.ZodString;
|
|
10484
9476
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -10496,7 +9488,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10496
9488
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10497
9489
|
}, z.core.$strict>>;
|
|
10498
9490
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10499
|
-
}, z.core.$strict
|
|
9491
|
+
}, z.core.$strict>>;
|
|
10500
9492
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10501
9493
|
calc: z.ZodString;
|
|
10502
9494
|
as: z.ZodString;
|
|
@@ -10636,25 +9628,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10636
9628
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10637
9629
|
}, z.core.$strict>, z.ZodObject<{
|
|
10638
9630
|
source: z.ZodLiteral<"steps">;
|
|
10639
|
-
steps: z.ZodArray<z.
|
|
10640
|
-
name: z.ZodString;
|
|
10641
|
-
resource: z.ZodString;
|
|
10642
|
-
metric: z.ZodObject<{
|
|
10643
|
-
agg: z.ZodEnum<{
|
|
10644
|
-
sum: "sum";
|
|
10645
|
-
count: "count";
|
|
10646
|
-
count_distinct: "count_distinct";
|
|
10647
|
-
avg: "avg";
|
|
10648
|
-
min: "min";
|
|
10649
|
-
max: "max";
|
|
10650
|
-
median: "median";
|
|
10651
|
-
}>;
|
|
10652
|
-
field: z.ZodOptional<z.ZodString>;
|
|
10653
|
-
as: z.ZodString;
|
|
10654
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10655
|
-
}, z.core.$strict>;
|
|
10656
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10657
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9631
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
10658
9632
|
name: z.ZodString;
|
|
10659
9633
|
resource: z.ZodString;
|
|
10660
9634
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -10672,7 +9646,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10672
9646
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10673
9647
|
}, z.core.$strict>>;
|
|
10674
9648
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10675
|
-
}, z.core.$strict
|
|
9649
|
+
}, z.core.$strict>>;
|
|
10676
9650
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10677
9651
|
calc: z.ZodString;
|
|
10678
9652
|
as: z.ZodString;
|
|
@@ -10817,25 +9791,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10817
9791
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10818
9792
|
}, z.core.$strict>, z.ZodObject<{
|
|
10819
9793
|
source: z.ZodLiteral<"steps">;
|
|
10820
|
-
steps: z.ZodArray<z.
|
|
10821
|
-
name: z.ZodString;
|
|
10822
|
-
resource: z.ZodString;
|
|
10823
|
-
metric: z.ZodObject<{
|
|
10824
|
-
agg: z.ZodEnum<{
|
|
10825
|
-
sum: "sum";
|
|
10826
|
-
count: "count";
|
|
10827
|
-
count_distinct: "count_distinct";
|
|
10828
|
-
avg: "avg";
|
|
10829
|
-
min: "min";
|
|
10830
|
-
max: "max";
|
|
10831
|
-
median: "median";
|
|
10832
|
-
}>;
|
|
10833
|
-
field: z.ZodOptional<z.ZodString>;
|
|
10834
|
-
as: z.ZodString;
|
|
10835
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10836
|
-
}, z.core.$strict>;
|
|
10837
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10838
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9794
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
10839
9795
|
name: z.ZodString;
|
|
10840
9796
|
resource: z.ZodString;
|
|
10841
9797
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -10853,7 +9809,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10853
9809
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10854
9810
|
}, z.core.$strict>>;
|
|
10855
9811
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
10856
|
-
}, z.core.$strict
|
|
9812
|
+
}, z.core.$strict>>;
|
|
10857
9813
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10858
9814
|
calc: z.ZodString;
|
|
10859
9815
|
as: z.ZodString;
|
|
@@ -10993,25 +9949,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
10993
9949
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10994
9950
|
}, z.core.$strict>, z.ZodObject<{
|
|
10995
9951
|
source: z.ZodLiteral<"steps">;
|
|
10996
|
-
steps: z.ZodArray<z.
|
|
10997
|
-
name: z.ZodString;
|
|
10998
|
-
resource: z.ZodString;
|
|
10999
|
-
metric: z.ZodObject<{
|
|
11000
|
-
agg: z.ZodEnum<{
|
|
11001
|
-
sum: "sum";
|
|
11002
|
-
count: "count";
|
|
11003
|
-
count_distinct: "count_distinct";
|
|
11004
|
-
avg: "avg";
|
|
11005
|
-
min: "min";
|
|
11006
|
-
max: "max";
|
|
11007
|
-
median: "median";
|
|
11008
|
-
}>;
|
|
11009
|
-
field: z.ZodOptional<z.ZodString>;
|
|
11010
|
-
as: z.ZodString;
|
|
11011
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11012
|
-
}, z.core.$strict>;
|
|
11013
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11014
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9952
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
11015
9953
|
name: z.ZodString;
|
|
11016
9954
|
resource: z.ZodString;
|
|
11017
9955
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -11029,7 +9967,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
11029
9967
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11030
9968
|
}, z.core.$strict>>;
|
|
11031
9969
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11032
|
-
}, z.core.$strict
|
|
9970
|
+
}, z.core.$strict>>;
|
|
11033
9971
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11034
9972
|
calc: z.ZodString;
|
|
11035
9973
|
as: z.ZodString;
|
|
@@ -11187,25 +10125,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
11187
10125
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11188
10126
|
}, z.core.$strict>, z.ZodObject<{
|
|
11189
10127
|
source: z.ZodLiteral<"steps">;
|
|
11190
|
-
steps: z.ZodArray<z.
|
|
11191
|
-
name: z.ZodString;
|
|
11192
|
-
resource: z.ZodString;
|
|
11193
|
-
metric: z.ZodObject<{
|
|
11194
|
-
agg: z.ZodEnum<{
|
|
11195
|
-
sum: "sum";
|
|
11196
|
-
count: "count";
|
|
11197
|
-
count_distinct: "count_distinct";
|
|
11198
|
-
avg: "avg";
|
|
11199
|
-
min: "min";
|
|
11200
|
-
max: "max";
|
|
11201
|
-
median: "median";
|
|
11202
|
-
}>;
|
|
11203
|
-
field: z.ZodOptional<z.ZodString>;
|
|
11204
|
-
as: z.ZodString;
|
|
11205
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11206
|
-
}, z.core.$strict>;
|
|
11207
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11208
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
10128
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
11209
10129
|
name: z.ZodString;
|
|
11210
10130
|
resource: z.ZodString;
|
|
11211
10131
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -11223,7 +10143,7 @@ export declare const SetWidgetConfigRequestZodSchema: z.ZodObject<{
|
|
|
11223
10143
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11224
10144
|
}, z.core.$strict>>;
|
|
11225
10145
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11226
|
-
}, z.core.$strict
|
|
10146
|
+
}, z.core.$strict>>;
|
|
11227
10147
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11228
10148
|
calc: z.ZodString;
|
|
11229
10149
|
as: z.ZodString;
|
|
@@ -11353,25 +10273,7 @@ export declare const ConfigureTableWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11353
10273
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11354
10274
|
}, z.core.$strict>, z.ZodObject<{
|
|
11355
10275
|
source: z.ZodLiteral<"steps">;
|
|
11356
|
-
steps: z.ZodArray<z.
|
|
11357
|
-
name: z.ZodString;
|
|
11358
|
-
resource: z.ZodString;
|
|
11359
|
-
metric: z.ZodObject<{
|
|
11360
|
-
agg: z.ZodEnum<{
|
|
11361
|
-
sum: "sum";
|
|
11362
|
-
count: "count";
|
|
11363
|
-
count_distinct: "count_distinct";
|
|
11364
|
-
avg: "avg";
|
|
11365
|
-
min: "min";
|
|
11366
|
-
max: "max";
|
|
11367
|
-
median: "median";
|
|
11368
|
-
}>;
|
|
11369
|
-
field: z.ZodOptional<z.ZodString>;
|
|
11370
|
-
as: z.ZodString;
|
|
11371
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11372
|
-
}, z.core.$strict>;
|
|
11373
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11374
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
10276
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
11375
10277
|
name: z.ZodString;
|
|
11376
10278
|
resource: z.ZodString;
|
|
11377
10279
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -11389,7 +10291,7 @@ export declare const ConfigureTableWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11389
10291
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11390
10292
|
}, z.core.$strict>>;
|
|
11391
10293
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11392
|
-
}, z.core.$strict
|
|
10294
|
+
}, z.core.$strict>>;
|
|
11393
10295
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11394
10296
|
calc: z.ZodString;
|
|
11395
10297
|
as: z.ZodString;
|
|
@@ -11560,25 +10462,7 @@ export declare const ConfigureKpiCardWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11560
10462
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11561
10463
|
}, z.core.$strict>, z.ZodObject<{
|
|
11562
10464
|
source: z.ZodLiteral<"steps">;
|
|
11563
|
-
steps: z.ZodArray<z.
|
|
11564
|
-
name: z.ZodString;
|
|
11565
|
-
resource: z.ZodString;
|
|
11566
|
-
metric: z.ZodObject<{
|
|
11567
|
-
agg: z.ZodEnum<{
|
|
11568
|
-
sum: "sum";
|
|
11569
|
-
count: "count";
|
|
11570
|
-
count_distinct: "count_distinct";
|
|
11571
|
-
avg: "avg";
|
|
11572
|
-
min: "min";
|
|
11573
|
-
max: "max";
|
|
11574
|
-
median: "median";
|
|
11575
|
-
}>;
|
|
11576
|
-
field: z.ZodOptional<z.ZodString>;
|
|
11577
|
-
as: z.ZodString;
|
|
11578
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11579
|
-
}, z.core.$strict>;
|
|
11580
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11581
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
10465
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
11582
10466
|
name: z.ZodString;
|
|
11583
10467
|
resource: z.ZodString;
|
|
11584
10468
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -11596,7 +10480,7 @@ export declare const ConfigureKpiCardWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11596
10480
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11597
10481
|
}, z.core.$strict>>;
|
|
11598
10482
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11599
|
-
}, z.core.$strict
|
|
10483
|
+
}, z.core.$strict>>;
|
|
11600
10484
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11601
10485
|
calc: z.ZodString;
|
|
11602
10486
|
as: z.ZodString;
|
|
@@ -11747,25 +10631,7 @@ export declare const ConfigureGaugeCardWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11747
10631
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11748
10632
|
}, z.core.$strict>, z.ZodObject<{
|
|
11749
10633
|
source: z.ZodLiteral<"steps">;
|
|
11750
|
-
steps: z.ZodArray<z.
|
|
11751
|
-
name: z.ZodString;
|
|
11752
|
-
resource: z.ZodString;
|
|
11753
|
-
metric: z.ZodObject<{
|
|
11754
|
-
agg: z.ZodEnum<{
|
|
11755
|
-
sum: "sum";
|
|
11756
|
-
count: "count";
|
|
11757
|
-
count_distinct: "count_distinct";
|
|
11758
|
-
avg: "avg";
|
|
11759
|
-
min: "min";
|
|
11760
|
-
max: "max";
|
|
11761
|
-
median: "median";
|
|
11762
|
-
}>;
|
|
11763
|
-
field: z.ZodOptional<z.ZodString>;
|
|
11764
|
-
as: z.ZodString;
|
|
11765
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11766
|
-
}, z.core.$strict>;
|
|
11767
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11768
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
10634
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
11769
10635
|
name: z.ZodString;
|
|
11770
10636
|
resource: z.ZodString;
|
|
11771
10637
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -11783,7 +10649,7 @@ export declare const ConfigureGaugeCardWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11783
10649
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11784
10650
|
}, z.core.$strict>>;
|
|
11785
10651
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11786
|
-
}, z.core.$strict
|
|
10652
|
+
}, z.core.$strict>>;
|
|
11787
10653
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11788
10654
|
calc: z.ZodString;
|
|
11789
10655
|
as: z.ZodString;
|
|
@@ -11933,25 +10799,7 @@ export declare const ConfigureLineChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11933
10799
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11934
10800
|
}, z.core.$strict>, z.ZodObject<{
|
|
11935
10801
|
source: z.ZodLiteral<"steps">;
|
|
11936
|
-
steps: z.ZodArray<z.
|
|
11937
|
-
name: z.ZodString;
|
|
11938
|
-
resource: z.ZodString;
|
|
11939
|
-
metric: z.ZodObject<{
|
|
11940
|
-
agg: z.ZodEnum<{
|
|
11941
|
-
sum: "sum";
|
|
11942
|
-
count: "count";
|
|
11943
|
-
count_distinct: "count_distinct";
|
|
11944
|
-
avg: "avg";
|
|
11945
|
-
min: "min";
|
|
11946
|
-
max: "max";
|
|
11947
|
-
median: "median";
|
|
11948
|
-
}>;
|
|
11949
|
-
field: z.ZodOptional<z.ZodString>;
|
|
11950
|
-
as: z.ZodString;
|
|
11951
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11952
|
-
}, z.core.$strict>;
|
|
11953
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11954
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
10802
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
11955
10803
|
name: z.ZodString;
|
|
11956
10804
|
resource: z.ZodString;
|
|
11957
10805
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -11969,7 +10817,7 @@ export declare const ConfigureLineChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
11969
10817
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11970
10818
|
}, z.core.$strict>>;
|
|
11971
10819
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
11972
|
-
}, z.core.$strict
|
|
10820
|
+
}, z.core.$strict>>;
|
|
11973
10821
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11974
10822
|
calc: z.ZodString;
|
|
11975
10823
|
as: z.ZodString;
|
|
@@ -12114,25 +10962,7 @@ export declare const ConfigureBarChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
12114
10962
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12115
10963
|
}, z.core.$strict>, z.ZodObject<{
|
|
12116
10964
|
source: z.ZodLiteral<"steps">;
|
|
12117
|
-
steps: z.ZodArray<z.
|
|
12118
|
-
name: z.ZodString;
|
|
12119
|
-
resource: z.ZodString;
|
|
12120
|
-
metric: z.ZodObject<{
|
|
12121
|
-
agg: z.ZodEnum<{
|
|
12122
|
-
sum: "sum";
|
|
12123
|
-
count: "count";
|
|
12124
|
-
count_distinct: "count_distinct";
|
|
12125
|
-
avg: "avg";
|
|
12126
|
-
min: "min";
|
|
12127
|
-
max: "max";
|
|
12128
|
-
median: "median";
|
|
12129
|
-
}>;
|
|
12130
|
-
field: z.ZodOptional<z.ZodString>;
|
|
12131
|
-
as: z.ZodString;
|
|
12132
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12133
|
-
}, z.core.$strict>;
|
|
12134
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12135
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
10965
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
12136
10966
|
name: z.ZodString;
|
|
12137
10967
|
resource: z.ZodString;
|
|
12138
10968
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -12150,7 +10980,7 @@ export declare const ConfigureBarChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
12150
10980
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12151
10981
|
}, z.core.$strict>>;
|
|
12152
10982
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12153
|
-
}, z.core.$strict
|
|
10983
|
+
}, z.core.$strict>>;
|
|
12154
10984
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12155
10985
|
calc: z.ZodString;
|
|
12156
10986
|
as: z.ZodString;
|
|
@@ -12312,25 +11142,7 @@ export declare const ConfigureStackedBarChartWidgetRequestZodSchema: z.ZodObject
|
|
|
12312
11142
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12313
11143
|
}, z.core.$strict>, z.ZodObject<{
|
|
12314
11144
|
source: z.ZodLiteral<"steps">;
|
|
12315
|
-
steps: z.ZodArray<z.
|
|
12316
|
-
name: z.ZodString;
|
|
12317
|
-
resource: z.ZodString;
|
|
12318
|
-
metric: z.ZodObject<{
|
|
12319
|
-
agg: z.ZodEnum<{
|
|
12320
|
-
sum: "sum";
|
|
12321
|
-
count: "count";
|
|
12322
|
-
count_distinct: "count_distinct";
|
|
12323
|
-
avg: "avg";
|
|
12324
|
-
min: "min";
|
|
12325
|
-
max: "max";
|
|
12326
|
-
median: "median";
|
|
12327
|
-
}>;
|
|
12328
|
-
field: z.ZodOptional<z.ZodString>;
|
|
12329
|
-
as: z.ZodString;
|
|
12330
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12331
|
-
}, z.core.$strict>;
|
|
12332
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12333
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
11145
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
12334
11146
|
name: z.ZodString;
|
|
12335
11147
|
resource: z.ZodString;
|
|
12336
11148
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -12348,7 +11160,7 @@ export declare const ConfigureStackedBarChartWidgetRequestZodSchema: z.ZodObject
|
|
|
12348
11160
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12349
11161
|
}, z.core.$strict>>;
|
|
12350
11162
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12351
|
-
}, z.core.$strict
|
|
11163
|
+
}, z.core.$strict>>;
|
|
12352
11164
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12353
11165
|
calc: z.ZodString;
|
|
12354
11166
|
as: z.ZodString;
|
|
@@ -12493,25 +11305,7 @@ export declare const ConfigurePieChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
12493
11305
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12494
11306
|
}, z.core.$strict>, z.ZodObject<{
|
|
12495
11307
|
source: z.ZodLiteral<"steps">;
|
|
12496
|
-
steps: z.ZodArray<z.
|
|
12497
|
-
name: z.ZodString;
|
|
12498
|
-
resource: z.ZodString;
|
|
12499
|
-
metric: z.ZodObject<{
|
|
12500
|
-
agg: z.ZodEnum<{
|
|
12501
|
-
sum: "sum";
|
|
12502
|
-
count: "count";
|
|
12503
|
-
count_distinct: "count_distinct";
|
|
12504
|
-
avg: "avg";
|
|
12505
|
-
min: "min";
|
|
12506
|
-
max: "max";
|
|
12507
|
-
median: "median";
|
|
12508
|
-
}>;
|
|
12509
|
-
field: z.ZodOptional<z.ZodString>;
|
|
12510
|
-
as: z.ZodString;
|
|
12511
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12512
|
-
}, z.core.$strict>;
|
|
12513
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12514
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
11308
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
12515
11309
|
name: z.ZodString;
|
|
12516
11310
|
resource: z.ZodString;
|
|
12517
11311
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -12529,7 +11323,7 @@ export declare const ConfigurePieChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
12529
11323
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12530
11324
|
}, z.core.$strict>>;
|
|
12531
11325
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12532
|
-
}, z.core.$strict
|
|
11326
|
+
}, z.core.$strict>>;
|
|
12533
11327
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12534
11328
|
calc: z.ZodString;
|
|
12535
11329
|
as: z.ZodString;
|
|
@@ -12666,38 +11460,20 @@ export declare const ConfigureHistogramChartWidgetRequestZodSchema: z.ZodObject<
|
|
|
12666
11460
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
12667
11461
|
bucket: z.ZodOptional<z.ZodObject<{
|
|
12668
11462
|
field: z.ZodString;
|
|
12669
|
-
buckets: z.ZodArray<z.ZodObject<{
|
|
12670
|
-
label: z.ZodString;
|
|
12671
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
12672
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
12673
|
-
}, z.core.$strict>>;
|
|
12674
|
-
}, z.core.$strict>>;
|
|
12675
|
-
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12676
|
-
calc: z.ZodString;
|
|
12677
|
-
as: z.ZodString;
|
|
12678
|
-
}, z.core.$strict>>>;
|
|
12679
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12680
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12681
|
-
source: z.ZodLiteral<"steps">;
|
|
12682
|
-
steps: z.ZodArray<z.
|
|
12683
|
-
name: z.ZodString;
|
|
12684
|
-
resource: z.ZodString;
|
|
12685
|
-
metric: z.ZodObject<{
|
|
12686
|
-
agg: z.ZodEnum<{
|
|
12687
|
-
sum: "sum";
|
|
12688
|
-
count: "count";
|
|
12689
|
-
count_distinct: "count_distinct";
|
|
12690
|
-
avg: "avg";
|
|
12691
|
-
min: "min";
|
|
12692
|
-
max: "max";
|
|
12693
|
-
median: "median";
|
|
12694
|
-
}>;
|
|
12695
|
-
field: z.ZodOptional<z.ZodString>;
|
|
12696
|
-
as: z.ZodString;
|
|
12697
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12698
|
-
}, z.core.$strict>;
|
|
12699
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12700
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
11463
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
11464
|
+
label: z.ZodString;
|
|
11465
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
11466
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
11467
|
+
}, z.core.$strict>>;
|
|
11468
|
+
}, z.core.$strict>>;
|
|
11469
|
+
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11470
|
+
calc: z.ZodString;
|
|
11471
|
+
as: z.ZodString;
|
|
11472
|
+
}, z.core.$strict>>>;
|
|
11473
|
+
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11474
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
11475
|
+
source: z.ZodLiteral<"steps">;
|
|
11476
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
12701
11477
|
name: z.ZodString;
|
|
12702
11478
|
resource: z.ZodString;
|
|
12703
11479
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -12715,7 +11491,7 @@ export declare const ConfigureHistogramChartWidgetRequestZodSchema: z.ZodObject<
|
|
|
12715
11491
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12716
11492
|
}, z.core.$strict>>;
|
|
12717
11493
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12718
|
-
}, z.core.$strict
|
|
11494
|
+
}, z.core.$strict>>;
|
|
12719
11495
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12720
11496
|
calc: z.ZodString;
|
|
12721
11497
|
as: z.ZodString;
|
|
@@ -12860,25 +11636,7 @@ export declare const ConfigureFunnelChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
12860
11636
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12861
11637
|
}, z.core.$strict>, z.ZodObject<{
|
|
12862
11638
|
source: z.ZodLiteral<"steps">;
|
|
12863
|
-
steps: z.ZodArray<z.
|
|
12864
|
-
name: z.ZodString;
|
|
12865
|
-
resource: z.ZodString;
|
|
12866
|
-
metric: z.ZodObject<{
|
|
12867
|
-
agg: z.ZodEnum<{
|
|
12868
|
-
sum: "sum";
|
|
12869
|
-
count: "count";
|
|
12870
|
-
count_distinct: "count_distinct";
|
|
12871
|
-
avg: "avg";
|
|
12872
|
-
min: "min";
|
|
12873
|
-
max: "max";
|
|
12874
|
-
median: "median";
|
|
12875
|
-
}>;
|
|
12876
|
-
field: z.ZodOptional<z.ZodString>;
|
|
12877
|
-
as: z.ZodString;
|
|
12878
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12879
|
-
}, z.core.$strict>;
|
|
12880
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12881
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
11639
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
12882
11640
|
name: z.ZodString;
|
|
12883
11641
|
resource: z.ZodString;
|
|
12884
11642
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -12896,7 +11654,7 @@ export declare const ConfigureFunnelChartWidgetRequestZodSchema: z.ZodObject<{
|
|
|
12896
11654
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12897
11655
|
}, z.core.$strict>>;
|
|
12898
11656
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
12899
|
-
}, z.core.$strict
|
|
11657
|
+
}, z.core.$strict>>;
|
|
12900
11658
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12901
11659
|
calc: z.ZodString;
|
|
12902
11660
|
as: z.ZodString;
|
|
@@ -13059,25 +11817,7 @@ export declare const ConfigurePivotTableWidgetRequestZodSchema: z.ZodObject<{
|
|
|
13059
11817
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13060
11818
|
}, z.core.$strict>, z.ZodObject<{
|
|
13061
11819
|
source: z.ZodLiteral<"steps">;
|
|
13062
|
-
steps: z.ZodArray<z.
|
|
13063
|
-
name: z.ZodString;
|
|
13064
|
-
resource: z.ZodString;
|
|
13065
|
-
metric: z.ZodObject<{
|
|
13066
|
-
agg: z.ZodEnum<{
|
|
13067
|
-
sum: "sum";
|
|
13068
|
-
count: "count";
|
|
13069
|
-
count_distinct: "count_distinct";
|
|
13070
|
-
avg: "avg";
|
|
13071
|
-
min: "min";
|
|
13072
|
-
max: "max";
|
|
13073
|
-
median: "median";
|
|
13074
|
-
}>;
|
|
13075
|
-
field: z.ZodOptional<z.ZodString>;
|
|
13076
|
-
as: z.ZodString;
|
|
13077
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13078
|
-
}, z.core.$strict>;
|
|
13079
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13080
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
11820
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
13081
11821
|
name: z.ZodString;
|
|
13082
11822
|
resource: z.ZodString;
|
|
13083
11823
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -13095,7 +11835,7 @@ export declare const ConfigurePivotTableWidgetRequestZodSchema: z.ZodObject<{
|
|
|
13095
11835
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13096
11836
|
}, z.core.$strict>>;
|
|
13097
11837
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13098
|
-
}, z.core.$strict
|
|
11838
|
+
}, z.core.$strict>>;
|
|
13099
11839
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13100
11840
|
calc: z.ZodString;
|
|
13101
11841
|
as: z.ZodString;
|
|
@@ -13269,25 +12009,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
13269
12009
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13270
12010
|
}, z.core.$strict>, z.ZodObject<{
|
|
13271
12011
|
source: z.ZodLiteral<"steps">;
|
|
13272
|
-
steps: z.ZodArray<z.
|
|
13273
|
-
name: z.ZodString;
|
|
13274
|
-
resource: z.ZodString;
|
|
13275
|
-
metric: z.ZodObject<{
|
|
13276
|
-
agg: z.ZodEnum<{
|
|
13277
|
-
sum: "sum";
|
|
13278
|
-
count: "count";
|
|
13279
|
-
count_distinct: "count_distinct";
|
|
13280
|
-
avg: "avg";
|
|
13281
|
-
min: "min";
|
|
13282
|
-
max: "max";
|
|
13283
|
-
median: "median";
|
|
13284
|
-
}>;
|
|
13285
|
-
field: z.ZodOptional<z.ZodString>;
|
|
13286
|
-
as: z.ZodString;
|
|
13287
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13288
|
-
}, z.core.$strict>;
|
|
13289
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13290
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12012
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
13291
12013
|
name: z.ZodString;
|
|
13292
12014
|
resource: z.ZodString;
|
|
13293
12015
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -13305,7 +12027,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
13305
12027
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13306
12028
|
}, z.core.$strict>>;
|
|
13307
12029
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13308
|
-
}, z.core.$strict
|
|
12030
|
+
}, z.core.$strict>>;
|
|
13309
12031
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13310
12032
|
calc: z.ZodString;
|
|
13311
12033
|
as: z.ZodString;
|
|
@@ -13453,25 +12175,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
13453
12175
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13454
12176
|
}, z.core.$strict>, z.ZodObject<{
|
|
13455
12177
|
source: z.ZodLiteral<"steps">;
|
|
13456
|
-
steps: z.ZodArray<z.
|
|
13457
|
-
name: z.ZodString;
|
|
13458
|
-
resource: z.ZodString;
|
|
13459
|
-
metric: z.ZodObject<{
|
|
13460
|
-
agg: z.ZodEnum<{
|
|
13461
|
-
sum: "sum";
|
|
13462
|
-
count: "count";
|
|
13463
|
-
count_distinct: "count_distinct";
|
|
13464
|
-
avg: "avg";
|
|
13465
|
-
min: "min";
|
|
13466
|
-
max: "max";
|
|
13467
|
-
median: "median";
|
|
13468
|
-
}>;
|
|
13469
|
-
field: z.ZodOptional<z.ZodString>;
|
|
13470
|
-
as: z.ZodString;
|
|
13471
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13472
|
-
}, z.core.$strict>;
|
|
13473
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13474
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12178
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
13475
12179
|
name: z.ZodString;
|
|
13476
12180
|
resource: z.ZodString;
|
|
13477
12181
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -13489,7 +12193,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
13489
12193
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13490
12194
|
}, z.core.$strict>>;
|
|
13491
12195
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13492
|
-
}, z.core.$strict
|
|
12196
|
+
}, z.core.$strict>>;
|
|
13493
12197
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13494
12198
|
calc: z.ZodString;
|
|
13495
12199
|
as: z.ZodString;
|
|
@@ -13632,25 +12336,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
13632
12336
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13633
12337
|
}, z.core.$strict>, z.ZodObject<{
|
|
13634
12338
|
source: z.ZodLiteral<"steps">;
|
|
13635
|
-
steps: z.ZodArray<z.
|
|
13636
|
-
name: z.ZodString;
|
|
13637
|
-
resource: z.ZodString;
|
|
13638
|
-
metric: z.ZodObject<{
|
|
13639
|
-
agg: z.ZodEnum<{
|
|
13640
|
-
sum: "sum";
|
|
13641
|
-
count: "count";
|
|
13642
|
-
count_distinct: "count_distinct";
|
|
13643
|
-
avg: "avg";
|
|
13644
|
-
min: "min";
|
|
13645
|
-
max: "max";
|
|
13646
|
-
median: "median";
|
|
13647
|
-
}>;
|
|
13648
|
-
field: z.ZodOptional<z.ZodString>;
|
|
13649
|
-
as: z.ZodString;
|
|
13650
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13651
|
-
}, z.core.$strict>;
|
|
13652
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13653
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12339
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
13654
12340
|
name: z.ZodString;
|
|
13655
12341
|
resource: z.ZodString;
|
|
13656
12342
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -13668,7 +12354,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
13668
12354
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13669
12355
|
}, z.core.$strict>>;
|
|
13670
12356
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13671
|
-
}, z.core.$strict
|
|
12357
|
+
}, z.core.$strict>>;
|
|
13672
12358
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13673
12359
|
calc: z.ZodString;
|
|
13674
12360
|
as: z.ZodString;
|
|
@@ -13828,25 +12514,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
13828
12514
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13829
12515
|
}, z.core.$strict>, z.ZodObject<{
|
|
13830
12516
|
source: z.ZodLiteral<"steps">;
|
|
13831
|
-
steps: z.ZodArray<z.
|
|
13832
|
-
name: z.ZodString;
|
|
13833
|
-
resource: z.ZodString;
|
|
13834
|
-
metric: z.ZodObject<{
|
|
13835
|
-
agg: z.ZodEnum<{
|
|
13836
|
-
sum: "sum";
|
|
13837
|
-
count: "count";
|
|
13838
|
-
count_distinct: "count_distinct";
|
|
13839
|
-
avg: "avg";
|
|
13840
|
-
min: "min";
|
|
13841
|
-
max: "max";
|
|
13842
|
-
median: "median";
|
|
13843
|
-
}>;
|
|
13844
|
-
field: z.ZodOptional<z.ZodString>;
|
|
13845
|
-
as: z.ZodString;
|
|
13846
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13847
|
-
}, z.core.$strict>;
|
|
13848
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13849
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12517
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
13850
12518
|
name: z.ZodString;
|
|
13851
12519
|
resource: z.ZodString;
|
|
13852
12520
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -13864,7 +12532,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
13864
12532
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13865
12533
|
}, z.core.$strict>>;
|
|
13866
12534
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
13867
|
-
}, z.core.$strict
|
|
12535
|
+
}, z.core.$strict>>;
|
|
13868
12536
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13869
12537
|
calc: z.ZodString;
|
|
13870
12538
|
as: z.ZodString;
|
|
@@ -14007,25 +12675,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14007
12675
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14008
12676
|
}, z.core.$strict>, z.ZodObject<{
|
|
14009
12677
|
source: z.ZodLiteral<"steps">;
|
|
14010
|
-
steps: z.ZodArray<z.
|
|
14011
|
-
name: z.ZodString;
|
|
14012
|
-
resource: z.ZodString;
|
|
14013
|
-
metric: z.ZodObject<{
|
|
14014
|
-
agg: z.ZodEnum<{
|
|
14015
|
-
sum: "sum";
|
|
14016
|
-
count: "count";
|
|
14017
|
-
count_distinct: "count_distinct";
|
|
14018
|
-
avg: "avg";
|
|
14019
|
-
min: "min";
|
|
14020
|
-
max: "max";
|
|
14021
|
-
median: "median";
|
|
14022
|
-
}>;
|
|
14023
|
-
field: z.ZodOptional<z.ZodString>;
|
|
14024
|
-
as: z.ZodString;
|
|
14025
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14026
|
-
}, z.core.$strict>;
|
|
14027
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14028
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12678
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
14029
12679
|
name: z.ZodString;
|
|
14030
12680
|
resource: z.ZodString;
|
|
14031
12681
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -14043,7 +12693,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14043
12693
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14044
12694
|
}, z.core.$strict>>;
|
|
14045
12695
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14046
|
-
}, z.core.$strict
|
|
12696
|
+
}, z.core.$strict>>;
|
|
14047
12697
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14048
12698
|
calc: z.ZodString;
|
|
14049
12699
|
as: z.ZodString;
|
|
@@ -14191,25 +12841,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14191
12841
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14192
12842
|
}, z.core.$strict>, z.ZodObject<{
|
|
14193
12843
|
source: z.ZodLiteral<"steps">;
|
|
14194
|
-
steps: z.ZodArray<z.
|
|
14195
|
-
name: z.ZodString;
|
|
14196
|
-
resource: z.ZodString;
|
|
14197
|
-
metric: z.ZodObject<{
|
|
14198
|
-
agg: z.ZodEnum<{
|
|
14199
|
-
sum: "sum";
|
|
14200
|
-
count: "count";
|
|
14201
|
-
count_distinct: "count_distinct";
|
|
14202
|
-
avg: "avg";
|
|
14203
|
-
min: "min";
|
|
14204
|
-
max: "max";
|
|
14205
|
-
median: "median";
|
|
14206
|
-
}>;
|
|
14207
|
-
field: z.ZodOptional<z.ZodString>;
|
|
14208
|
-
as: z.ZodString;
|
|
14209
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14210
|
-
}, z.core.$strict>;
|
|
14211
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14212
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
12844
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
14213
12845
|
name: z.ZodString;
|
|
14214
12846
|
resource: z.ZodString;
|
|
14215
12847
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -14227,7 +12859,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14227
12859
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14228
12860
|
}, z.core.$strict>>;
|
|
14229
12861
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14230
|
-
}, z.core.$strict
|
|
12862
|
+
}, z.core.$strict>>;
|
|
14231
12863
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14232
12864
|
calc: z.ZodString;
|
|
14233
12865
|
as: z.ZodString;
|
|
@@ -14370,25 +13002,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14370
13002
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14371
13003
|
}, z.core.$strict>, z.ZodObject<{
|
|
14372
13004
|
source: z.ZodLiteral<"steps">;
|
|
14373
|
-
steps: z.ZodArray<z.
|
|
14374
|
-
name: z.ZodString;
|
|
14375
|
-
resource: z.ZodString;
|
|
14376
|
-
metric: z.ZodObject<{
|
|
14377
|
-
agg: z.ZodEnum<{
|
|
14378
|
-
sum: "sum";
|
|
14379
|
-
count: "count";
|
|
14380
|
-
count_distinct: "count_distinct";
|
|
14381
|
-
avg: "avg";
|
|
14382
|
-
min: "min";
|
|
14383
|
-
max: "max";
|
|
14384
|
-
median: "median";
|
|
14385
|
-
}>;
|
|
14386
|
-
field: z.ZodOptional<z.ZodString>;
|
|
14387
|
-
as: z.ZodString;
|
|
14388
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14389
|
-
}, z.core.$strict>;
|
|
14390
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14391
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13005
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
14392
13006
|
name: z.ZodString;
|
|
14393
13007
|
resource: z.ZodString;
|
|
14394
13008
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -14406,7 +13020,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14406
13020
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14407
13021
|
}, z.core.$strict>>;
|
|
14408
13022
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14409
|
-
}, z.core.$strict
|
|
13023
|
+
}, z.core.$strict>>;
|
|
14410
13024
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14411
13025
|
calc: z.ZodString;
|
|
14412
13026
|
as: z.ZodString;
|
|
@@ -14575,25 +13189,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14575
13189
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14576
13190
|
}, z.core.$strict>, z.ZodObject<{
|
|
14577
13191
|
source: z.ZodLiteral<"steps">;
|
|
14578
|
-
steps: z.ZodArray<z.
|
|
14579
|
-
name: z.ZodString;
|
|
14580
|
-
resource: z.ZodString;
|
|
14581
|
-
metric: z.ZodObject<{
|
|
14582
|
-
agg: z.ZodEnum<{
|
|
14583
|
-
sum: "sum";
|
|
14584
|
-
count: "count";
|
|
14585
|
-
count_distinct: "count_distinct";
|
|
14586
|
-
avg: "avg";
|
|
14587
|
-
min: "min";
|
|
14588
|
-
max: "max";
|
|
14589
|
-
median: "median";
|
|
14590
|
-
}>;
|
|
14591
|
-
field: z.ZodOptional<z.ZodString>;
|
|
14592
|
-
as: z.ZodString;
|
|
14593
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14594
|
-
}, z.core.$strict>;
|
|
14595
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14596
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13192
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
14597
13193
|
name: z.ZodString;
|
|
14598
13194
|
resource: z.ZodString;
|
|
14599
13195
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -14611,7 +13207,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14611
13207
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14612
13208
|
}, z.core.$strict>>;
|
|
14613
13209
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14614
|
-
}, z.core.$strict
|
|
13210
|
+
}, z.core.$strict>>;
|
|
14615
13211
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14616
13212
|
calc: z.ZodString;
|
|
14617
13213
|
as: z.ZodString;
|
|
@@ -14760,25 +13356,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14760
13356
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14761
13357
|
}, z.core.$strict>, z.ZodObject<{
|
|
14762
13358
|
source: z.ZodLiteral<"steps">;
|
|
14763
|
-
steps: z.ZodArray<z.
|
|
14764
|
-
name: z.ZodString;
|
|
14765
|
-
resource: z.ZodString;
|
|
14766
|
-
metric: z.ZodObject<{
|
|
14767
|
-
agg: z.ZodEnum<{
|
|
14768
|
-
sum: "sum";
|
|
14769
|
-
count: "count";
|
|
14770
|
-
count_distinct: "count_distinct";
|
|
14771
|
-
avg: "avg";
|
|
14772
|
-
min: "min";
|
|
14773
|
-
max: "max";
|
|
14774
|
-
median: "median";
|
|
14775
|
-
}>;
|
|
14776
|
-
field: z.ZodOptional<z.ZodString>;
|
|
14777
|
-
as: z.ZodString;
|
|
14778
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14779
|
-
}, z.core.$strict>;
|
|
14780
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14781
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13359
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
14782
13360
|
name: z.ZodString;
|
|
14783
13361
|
resource: z.ZodString;
|
|
14784
13362
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -14796,7 +13374,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14796
13374
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14797
13375
|
}, z.core.$strict>>;
|
|
14798
13376
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14799
|
-
}, z.core.$strict
|
|
13377
|
+
}, z.core.$strict>>;
|
|
14800
13378
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14801
13379
|
calc: z.ZodString;
|
|
14802
13380
|
as: z.ZodString;
|
|
@@ -14957,25 +13535,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14957
13535
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14958
13536
|
}, z.core.$strict>, z.ZodObject<{
|
|
14959
13537
|
source: z.ZodLiteral<"steps">;
|
|
14960
|
-
steps: z.ZodArray<z.
|
|
14961
|
-
name: z.ZodString;
|
|
14962
|
-
resource: z.ZodString;
|
|
14963
|
-
metric: z.ZodObject<{
|
|
14964
|
-
agg: z.ZodEnum<{
|
|
14965
|
-
sum: "sum";
|
|
14966
|
-
count: "count";
|
|
14967
|
-
count_distinct: "count_distinct";
|
|
14968
|
-
avg: "avg";
|
|
14969
|
-
min: "min";
|
|
14970
|
-
max: "max";
|
|
14971
|
-
median: "median";
|
|
14972
|
-
}>;
|
|
14973
|
-
field: z.ZodOptional<z.ZodString>;
|
|
14974
|
-
as: z.ZodString;
|
|
14975
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14976
|
-
}, z.core.$strict>;
|
|
14977
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14978
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13538
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
14979
13539
|
name: z.ZodString;
|
|
14980
13540
|
resource: z.ZodString;
|
|
14981
13541
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -14993,7 +13553,7 @@ export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPay
|
|
|
14993
13553
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14994
13554
|
}, z.core.$strict>>;
|
|
14995
13555
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
14996
|
-
}, z.core.$strict
|
|
13556
|
+
}, z.core.$strict>>;
|
|
14997
13557
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14998
13558
|
calc: z.ZodString;
|
|
14999
13559
|
as: z.ZodString;
|
|
@@ -15149,25 +13709,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15149
13709
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15150
13710
|
}, z.core.$strict>, z.ZodObject<{
|
|
15151
13711
|
source: z.ZodLiteral<"steps">;
|
|
15152
|
-
steps: z.ZodArray<z.
|
|
15153
|
-
name: z.ZodString;
|
|
15154
|
-
resource: z.ZodString;
|
|
15155
|
-
metric: z.ZodObject<{
|
|
15156
|
-
agg: z.ZodEnum<{
|
|
15157
|
-
sum: "sum";
|
|
15158
|
-
count: "count";
|
|
15159
|
-
count_distinct: "count_distinct";
|
|
15160
|
-
avg: "avg";
|
|
15161
|
-
min: "min";
|
|
15162
|
-
max: "max";
|
|
15163
|
-
median: "median";
|
|
15164
|
-
}>;
|
|
15165
|
-
field: z.ZodOptional<z.ZodString>;
|
|
15166
|
-
as: z.ZodString;
|
|
15167
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15168
|
-
}, z.core.$strict>;
|
|
15169
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15170
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13712
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
15171
13713
|
name: z.ZodString;
|
|
15172
13714
|
resource: z.ZodString;
|
|
15173
13715
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -15185,7 +13727,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15185
13727
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15186
13728
|
}, z.core.$strict>>;
|
|
15187
13729
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15188
|
-
}, z.core.$strict
|
|
13730
|
+
}, z.core.$strict>>;
|
|
15189
13731
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15190
13732
|
calc: z.ZodString;
|
|
15191
13733
|
as: z.ZodString;
|
|
@@ -15332,26 +13874,8 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15332
13874
|
}, z.core.$strict>>>;
|
|
15333
13875
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15334
13876
|
}, z.core.$strict>, z.ZodObject<{
|
|
15335
|
-
source: z.ZodLiteral<"steps">;
|
|
15336
|
-
steps: z.ZodArray<z.
|
|
15337
|
-
name: z.ZodString;
|
|
15338
|
-
resource: z.ZodString;
|
|
15339
|
-
metric: z.ZodObject<{
|
|
15340
|
-
agg: z.ZodEnum<{
|
|
15341
|
-
sum: "sum";
|
|
15342
|
-
count: "count";
|
|
15343
|
-
count_distinct: "count_distinct";
|
|
15344
|
-
avg: "avg";
|
|
15345
|
-
min: "min";
|
|
15346
|
-
max: "max";
|
|
15347
|
-
median: "median";
|
|
15348
|
-
}>;
|
|
15349
|
-
field: z.ZodOptional<z.ZodString>;
|
|
15350
|
-
as: z.ZodString;
|
|
15351
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15352
|
-
}, z.core.$strict>;
|
|
15353
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15354
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13877
|
+
source: z.ZodLiteral<"steps">;
|
|
13878
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
15355
13879
|
name: z.ZodString;
|
|
15356
13880
|
resource: z.ZodString;
|
|
15357
13881
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -15369,7 +13893,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15369
13893
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15370
13894
|
}, z.core.$strict>>;
|
|
15371
13895
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15372
|
-
}, z.core.$strict
|
|
13896
|
+
}, z.core.$strict>>;
|
|
15373
13897
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15374
13898
|
calc: z.ZodString;
|
|
15375
13899
|
as: z.ZodString;
|
|
@@ -15512,25 +14036,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15512
14036
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15513
14037
|
}, z.core.$strict>, z.ZodObject<{
|
|
15514
14038
|
source: z.ZodLiteral<"steps">;
|
|
15515
|
-
steps: z.ZodArray<z.
|
|
15516
|
-
name: z.ZodString;
|
|
15517
|
-
resource: z.ZodString;
|
|
15518
|
-
metric: z.ZodObject<{
|
|
15519
|
-
agg: z.ZodEnum<{
|
|
15520
|
-
sum: "sum";
|
|
15521
|
-
count: "count";
|
|
15522
|
-
count_distinct: "count_distinct";
|
|
15523
|
-
avg: "avg";
|
|
15524
|
-
min: "min";
|
|
15525
|
-
max: "max";
|
|
15526
|
-
median: "median";
|
|
15527
|
-
}>;
|
|
15528
|
-
field: z.ZodOptional<z.ZodString>;
|
|
15529
|
-
as: z.ZodString;
|
|
15530
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15531
|
-
}, z.core.$strict>;
|
|
15532
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15533
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
14039
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
15534
14040
|
name: z.ZodString;
|
|
15535
14041
|
resource: z.ZodString;
|
|
15536
14042
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -15548,7 +14054,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15548
14054
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15549
14055
|
}, z.core.$strict>>;
|
|
15550
14056
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15551
|
-
}, z.core.$strict
|
|
14057
|
+
}, z.core.$strict>>;
|
|
15552
14058
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15553
14059
|
calc: z.ZodString;
|
|
15554
14060
|
as: z.ZodString;
|
|
@@ -15708,25 +14214,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15708
14214
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15709
14215
|
}, z.core.$strict>, z.ZodObject<{
|
|
15710
14216
|
source: z.ZodLiteral<"steps">;
|
|
15711
|
-
steps: z.ZodArray<z.
|
|
15712
|
-
name: z.ZodString;
|
|
15713
|
-
resource: z.ZodString;
|
|
15714
|
-
metric: z.ZodObject<{
|
|
15715
|
-
agg: z.ZodEnum<{
|
|
15716
|
-
sum: "sum";
|
|
15717
|
-
count: "count";
|
|
15718
|
-
count_distinct: "count_distinct";
|
|
15719
|
-
avg: "avg";
|
|
15720
|
-
min: "min";
|
|
15721
|
-
max: "max";
|
|
15722
|
-
median: "median";
|
|
15723
|
-
}>;
|
|
15724
|
-
field: z.ZodOptional<z.ZodString>;
|
|
15725
|
-
as: z.ZodString;
|
|
15726
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15727
|
-
}, z.core.$strict>;
|
|
15728
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15729
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
14217
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
15730
14218
|
name: z.ZodString;
|
|
15731
14219
|
resource: z.ZodString;
|
|
15732
14220
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -15744,7 +14232,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15744
14232
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15745
14233
|
}, z.core.$strict>>;
|
|
15746
14234
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15747
|
-
}, z.core.$strict
|
|
14235
|
+
}, z.core.$strict>>;
|
|
15748
14236
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15749
14237
|
calc: z.ZodString;
|
|
15750
14238
|
as: z.ZodString;
|
|
@@ -15887,25 +14375,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15887
14375
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15888
14376
|
}, z.core.$strict>, z.ZodObject<{
|
|
15889
14377
|
source: z.ZodLiteral<"steps">;
|
|
15890
|
-
steps: z.ZodArray<z.
|
|
15891
|
-
name: z.ZodString;
|
|
15892
|
-
resource: z.ZodString;
|
|
15893
|
-
metric: z.ZodObject<{
|
|
15894
|
-
agg: z.ZodEnum<{
|
|
15895
|
-
sum: "sum";
|
|
15896
|
-
count: "count";
|
|
15897
|
-
count_distinct: "count_distinct";
|
|
15898
|
-
avg: "avg";
|
|
15899
|
-
min: "min";
|
|
15900
|
-
max: "max";
|
|
15901
|
-
median: "median";
|
|
15902
|
-
}>;
|
|
15903
|
-
field: z.ZodOptional<z.ZodString>;
|
|
15904
|
-
as: z.ZodString;
|
|
15905
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15906
|
-
}, z.core.$strict>;
|
|
15907
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15908
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
14378
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
15909
14379
|
name: z.ZodString;
|
|
15910
14380
|
resource: z.ZodString;
|
|
15911
14381
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -15923,7 +14393,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
15923
14393
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15924
14394
|
}, z.core.$strict>>;
|
|
15925
14395
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
15926
|
-
}, z.core.$strict
|
|
14396
|
+
}, z.core.$strict>>;
|
|
15927
14397
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15928
14398
|
calc: z.ZodString;
|
|
15929
14399
|
as: z.ZodString;
|
|
@@ -16071,25 +14541,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16071
14541
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16072
14542
|
}, z.core.$strict>, z.ZodObject<{
|
|
16073
14543
|
source: z.ZodLiteral<"steps">;
|
|
16074
|
-
steps: z.ZodArray<z.
|
|
16075
|
-
name: z.ZodString;
|
|
16076
|
-
resource: z.ZodString;
|
|
16077
|
-
metric: z.ZodObject<{
|
|
16078
|
-
agg: z.ZodEnum<{
|
|
16079
|
-
sum: "sum";
|
|
16080
|
-
count: "count";
|
|
16081
|
-
count_distinct: "count_distinct";
|
|
16082
|
-
avg: "avg";
|
|
16083
|
-
min: "min";
|
|
16084
|
-
max: "max";
|
|
16085
|
-
median: "median";
|
|
16086
|
-
}>;
|
|
16087
|
-
field: z.ZodOptional<z.ZodString>;
|
|
16088
|
-
as: z.ZodString;
|
|
16089
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16090
|
-
}, z.core.$strict>;
|
|
16091
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16092
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
14544
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
16093
14545
|
name: z.ZodString;
|
|
16094
14546
|
resource: z.ZodString;
|
|
16095
14547
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -16107,7 +14559,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16107
14559
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16108
14560
|
}, z.core.$strict>>;
|
|
16109
14561
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16110
|
-
}, z.core.$strict
|
|
14562
|
+
}, z.core.$strict>>;
|
|
16111
14563
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16112
14564
|
calc: z.ZodString;
|
|
16113
14565
|
as: z.ZodString;
|
|
@@ -16250,25 +14702,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16250
14702
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16251
14703
|
}, z.core.$strict>, z.ZodObject<{
|
|
16252
14704
|
source: z.ZodLiteral<"steps">;
|
|
16253
|
-
steps: z.ZodArray<z.
|
|
16254
|
-
name: z.ZodString;
|
|
16255
|
-
resource: z.ZodString;
|
|
16256
|
-
metric: z.ZodObject<{
|
|
16257
|
-
agg: z.ZodEnum<{
|
|
16258
|
-
sum: "sum";
|
|
16259
|
-
count: "count";
|
|
16260
|
-
count_distinct: "count_distinct";
|
|
16261
|
-
avg: "avg";
|
|
16262
|
-
min: "min";
|
|
16263
|
-
max: "max";
|
|
16264
|
-
median: "median";
|
|
16265
|
-
}>;
|
|
16266
|
-
field: z.ZodOptional<z.ZodString>;
|
|
16267
|
-
as: z.ZodString;
|
|
16268
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16269
|
-
}, z.core.$strict>;
|
|
16270
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16271
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
14705
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
16272
14706
|
name: z.ZodString;
|
|
16273
14707
|
resource: z.ZodString;
|
|
16274
14708
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -16286,7 +14720,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16286
14720
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16287
14721
|
}, z.core.$strict>>;
|
|
16288
14722
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16289
|
-
}, z.core.$strict
|
|
14723
|
+
}, z.core.$strict>>;
|
|
16290
14724
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16291
14725
|
calc: z.ZodString;
|
|
16292
14726
|
as: z.ZodString;
|
|
@@ -16455,25 +14889,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16455
14889
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16456
14890
|
}, z.core.$strict>, z.ZodObject<{
|
|
16457
14891
|
source: z.ZodLiteral<"steps">;
|
|
16458
|
-
steps: z.ZodArray<z.
|
|
16459
|
-
name: z.ZodString;
|
|
16460
|
-
resource: z.ZodString;
|
|
16461
|
-
metric: z.ZodObject<{
|
|
16462
|
-
agg: z.ZodEnum<{
|
|
16463
|
-
sum: "sum";
|
|
16464
|
-
count: "count";
|
|
16465
|
-
count_distinct: "count_distinct";
|
|
16466
|
-
avg: "avg";
|
|
16467
|
-
min: "min";
|
|
16468
|
-
max: "max";
|
|
16469
|
-
median: "median";
|
|
16470
|
-
}>;
|
|
16471
|
-
field: z.ZodOptional<z.ZodString>;
|
|
16472
|
-
as: z.ZodString;
|
|
16473
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16474
|
-
}, z.core.$strict>;
|
|
16475
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16476
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
14892
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
16477
14893
|
name: z.ZodString;
|
|
16478
14894
|
resource: z.ZodString;
|
|
16479
14895
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -16491,7 +14907,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16491
14907
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16492
14908
|
}, z.core.$strict>>;
|
|
16493
14909
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16494
|
-
}, z.core.$strict
|
|
14910
|
+
}, z.core.$strict>>;
|
|
16495
14911
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16496
14912
|
calc: z.ZodString;
|
|
16497
14913
|
as: z.ZodString;
|
|
@@ -16640,25 +15056,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16640
15056
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16641
15057
|
}, z.core.$strict>, z.ZodObject<{
|
|
16642
15058
|
source: z.ZodLiteral<"steps">;
|
|
16643
|
-
steps: z.ZodArray<z.
|
|
16644
|
-
name: z.ZodString;
|
|
16645
|
-
resource: z.ZodString;
|
|
16646
|
-
metric: z.ZodObject<{
|
|
16647
|
-
agg: z.ZodEnum<{
|
|
16648
|
-
sum: "sum";
|
|
16649
|
-
count: "count";
|
|
16650
|
-
count_distinct: "count_distinct";
|
|
16651
|
-
avg: "avg";
|
|
16652
|
-
min: "min";
|
|
16653
|
-
max: "max";
|
|
16654
|
-
median: "median";
|
|
16655
|
-
}>;
|
|
16656
|
-
field: z.ZodOptional<z.ZodString>;
|
|
16657
|
-
as: z.ZodString;
|
|
16658
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16659
|
-
}, z.core.$strict>;
|
|
16660
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16661
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
15059
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
16662
15060
|
name: z.ZodString;
|
|
16663
15061
|
resource: z.ZodString;
|
|
16664
15062
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -16676,7 +15074,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16676
15074
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16677
15075
|
}, z.core.$strict>>;
|
|
16678
15076
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16679
|
-
}, z.core.$strict
|
|
15077
|
+
}, z.core.$strict>>;
|
|
16680
15078
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16681
15079
|
calc: z.ZodString;
|
|
16682
15080
|
as: z.ZodString;
|
|
@@ -16837,25 +15235,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16837
15235
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16838
15236
|
}, z.core.$strict>, z.ZodObject<{
|
|
16839
15237
|
source: z.ZodLiteral<"steps">;
|
|
16840
|
-
steps: z.ZodArray<z.
|
|
16841
|
-
name: z.ZodString;
|
|
16842
|
-
resource: z.ZodString;
|
|
16843
|
-
metric: z.ZodObject<{
|
|
16844
|
-
agg: z.ZodEnum<{
|
|
16845
|
-
sum: "sum";
|
|
16846
|
-
count: "count";
|
|
16847
|
-
count_distinct: "count_distinct";
|
|
16848
|
-
avg: "avg";
|
|
16849
|
-
min: "min";
|
|
16850
|
-
max: "max";
|
|
16851
|
-
median: "median";
|
|
16852
|
-
}>;
|
|
16853
|
-
field: z.ZodOptional<z.ZodString>;
|
|
16854
|
-
as: z.ZodString;
|
|
16855
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16856
|
-
}, z.core.$strict>;
|
|
16857
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16858
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
15238
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
16859
15239
|
name: z.ZodString;
|
|
16860
15240
|
resource: z.ZodString;
|
|
16861
15241
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -16873,7 +15253,7 @@ export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSc
|
|
|
16873
15253
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16874
15254
|
}, z.core.$strict>>;
|
|
16875
15255
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16876
|
-
}, z.core.$strict
|
|
15256
|
+
}, z.core.$strict>>;
|
|
16877
15257
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16878
15258
|
calc: z.ZodString;
|
|
16879
15259
|
as: z.ZodString;
|
|
@@ -17066,25 +15446,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17066
15446
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17067
15447
|
}, z.core.$strict>, z.ZodObject<{
|
|
17068
15448
|
source: z.ZodLiteral<"steps">;
|
|
17069
|
-
steps: z.ZodArray<z.
|
|
17070
|
-
name: z.ZodString;
|
|
17071
|
-
resource: z.ZodString;
|
|
17072
|
-
metric: z.ZodObject<{
|
|
17073
|
-
agg: z.ZodEnum<{
|
|
17074
|
-
sum: "sum";
|
|
17075
|
-
count: "count";
|
|
17076
|
-
count_distinct: "count_distinct";
|
|
17077
|
-
avg: "avg";
|
|
17078
|
-
min: "min";
|
|
17079
|
-
max: "max";
|
|
17080
|
-
median: "median";
|
|
17081
|
-
}>;
|
|
17082
|
-
field: z.ZodOptional<z.ZodString>;
|
|
17083
|
-
as: z.ZodString;
|
|
17084
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17085
|
-
}, z.core.$strict>;
|
|
17086
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17087
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
15449
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
17088
15450
|
name: z.ZodString;
|
|
17089
15451
|
resource: z.ZodString;
|
|
17090
15452
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -17102,7 +15464,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17102
15464
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17103
15465
|
}, z.core.$strict>>;
|
|
17104
15466
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17105
|
-
}, z.core.$strict
|
|
15467
|
+
}, z.core.$strict>>;
|
|
17106
15468
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17107
15469
|
calc: z.ZodString;
|
|
17108
15470
|
as: z.ZodString;
|
|
@@ -17268,25 +15630,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17268
15630
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17269
15631
|
}, z.core.$strict>, z.ZodObject<{
|
|
17270
15632
|
source: z.ZodLiteral<"steps">;
|
|
17271
|
-
steps: z.ZodArray<z.
|
|
17272
|
-
name: z.ZodString;
|
|
17273
|
-
resource: z.ZodString;
|
|
17274
|
-
metric: z.ZodObject<{
|
|
17275
|
-
agg: z.ZodEnum<{
|
|
17276
|
-
sum: "sum";
|
|
17277
|
-
count: "count";
|
|
17278
|
-
count_distinct: "count_distinct";
|
|
17279
|
-
avg: "avg";
|
|
17280
|
-
min: "min";
|
|
17281
|
-
max: "max";
|
|
17282
|
-
median: "median";
|
|
17283
|
-
}>;
|
|
17284
|
-
field: z.ZodOptional<z.ZodString>;
|
|
17285
|
-
as: z.ZodString;
|
|
17286
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17287
|
-
}, z.core.$strict>;
|
|
17288
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17289
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
15633
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
17290
15634
|
name: z.ZodString;
|
|
17291
15635
|
resource: z.ZodString;
|
|
17292
15636
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -17304,7 +15648,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17304
15648
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17305
15649
|
}, z.core.$strict>>;
|
|
17306
15650
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17307
|
-
}, z.core.$strict
|
|
15651
|
+
}, z.core.$strict>>;
|
|
17308
15652
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17309
15653
|
calc: z.ZodString;
|
|
17310
15654
|
as: z.ZodString;
|
|
@@ -17450,25 +15794,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17450
15794
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17451
15795
|
}, z.core.$strict>, z.ZodObject<{
|
|
17452
15796
|
source: z.ZodLiteral<"steps">;
|
|
17453
|
-
steps: z.ZodArray<z.
|
|
17454
|
-
name: z.ZodString;
|
|
17455
|
-
resource: z.ZodString;
|
|
17456
|
-
metric: z.ZodObject<{
|
|
17457
|
-
agg: z.ZodEnum<{
|
|
17458
|
-
sum: "sum";
|
|
17459
|
-
count: "count";
|
|
17460
|
-
count_distinct: "count_distinct";
|
|
17461
|
-
avg: "avg";
|
|
17462
|
-
min: "min";
|
|
17463
|
-
max: "max";
|
|
17464
|
-
median: "median";
|
|
17465
|
-
}>;
|
|
17466
|
-
field: z.ZodOptional<z.ZodString>;
|
|
17467
|
-
as: z.ZodString;
|
|
17468
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17469
|
-
}, z.core.$strict>;
|
|
17470
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17471
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
15797
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
17472
15798
|
name: z.ZodString;
|
|
17473
15799
|
resource: z.ZodString;
|
|
17474
15800
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -17486,7 +15812,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17486
15812
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17487
15813
|
}, z.core.$strict>>;
|
|
17488
15814
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17489
|
-
}, z.core.$strict
|
|
15815
|
+
}, z.core.$strict>>;
|
|
17490
15816
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17491
15817
|
calc: z.ZodString;
|
|
17492
15818
|
as: z.ZodString;
|
|
@@ -17631,25 +15957,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17631
15957
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17632
15958
|
}, z.core.$strict>, z.ZodObject<{
|
|
17633
15959
|
source: z.ZodLiteral<"steps">;
|
|
17634
|
-
steps: z.ZodArray<z.
|
|
17635
|
-
name: z.ZodString;
|
|
17636
|
-
resource: z.ZodString;
|
|
17637
|
-
metric: z.ZodObject<{
|
|
17638
|
-
agg: z.ZodEnum<{
|
|
17639
|
-
sum: "sum";
|
|
17640
|
-
count: "count";
|
|
17641
|
-
count_distinct: "count_distinct";
|
|
17642
|
-
avg: "avg";
|
|
17643
|
-
min: "min";
|
|
17644
|
-
max: "max";
|
|
17645
|
-
median: "median";
|
|
17646
|
-
}>;
|
|
17647
|
-
field: z.ZodOptional<z.ZodString>;
|
|
17648
|
-
as: z.ZodString;
|
|
17649
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17650
|
-
}, z.core.$strict>;
|
|
17651
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17652
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
15960
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
17653
15961
|
name: z.ZodString;
|
|
17654
15962
|
resource: z.ZodString;
|
|
17655
15963
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -17667,7 +15975,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17667
15975
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17668
15976
|
}, z.core.$strict>>;
|
|
17669
15977
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17670
|
-
}, z.core.$strict
|
|
15978
|
+
}, z.core.$strict>>;
|
|
17671
15979
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17672
15980
|
calc: z.ZodString;
|
|
17673
15981
|
as: z.ZodString;
|
|
@@ -17807,25 +16115,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17807
16115
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17808
16116
|
}, z.core.$strict>, z.ZodObject<{
|
|
17809
16117
|
source: z.ZodLiteral<"steps">;
|
|
17810
|
-
steps: z.ZodArray<z.
|
|
17811
|
-
name: z.ZodString;
|
|
17812
|
-
resource: z.ZodString;
|
|
17813
|
-
metric: z.ZodObject<{
|
|
17814
|
-
agg: z.ZodEnum<{
|
|
17815
|
-
sum: "sum";
|
|
17816
|
-
count: "count";
|
|
17817
|
-
count_distinct: "count_distinct";
|
|
17818
|
-
avg: "avg";
|
|
17819
|
-
min: "min";
|
|
17820
|
-
max: "max";
|
|
17821
|
-
median: "median";
|
|
17822
|
-
}>;
|
|
17823
|
-
field: z.ZodOptional<z.ZodString>;
|
|
17824
|
-
as: z.ZodString;
|
|
17825
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17826
|
-
}, z.core.$strict>;
|
|
17827
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17828
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
16118
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
17829
16119
|
name: z.ZodString;
|
|
17830
16120
|
resource: z.ZodString;
|
|
17831
16121
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -17843,7 +16133,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17843
16133
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17844
16134
|
}, z.core.$strict>>;
|
|
17845
16135
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
17846
|
-
}, z.core.$strict
|
|
16136
|
+
}, z.core.$strict>>;
|
|
17847
16137
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17848
16138
|
calc: z.ZodString;
|
|
17849
16139
|
as: z.ZodString;
|
|
@@ -17997,28 +16287,10 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
17997
16287
|
calc: z.ZodString;
|
|
17998
16288
|
as: z.ZodString;
|
|
17999
16289
|
}, z.core.$strict>>>;
|
|
18000
|
-
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18001
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
18002
|
-
source: z.ZodLiteral<"steps">;
|
|
18003
|
-
steps: z.ZodArray<z.
|
|
18004
|
-
name: z.ZodString;
|
|
18005
|
-
resource: z.ZodString;
|
|
18006
|
-
metric: z.ZodObject<{
|
|
18007
|
-
agg: z.ZodEnum<{
|
|
18008
|
-
sum: "sum";
|
|
18009
|
-
count: "count";
|
|
18010
|
-
count_distinct: "count_distinct";
|
|
18011
|
-
avg: "avg";
|
|
18012
|
-
min: "min";
|
|
18013
|
-
max: "max";
|
|
18014
|
-
median: "median";
|
|
18015
|
-
}>;
|
|
18016
|
-
field: z.ZodOptional<z.ZodString>;
|
|
18017
|
-
as: z.ZodString;
|
|
18018
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18019
|
-
}, z.core.$strict>;
|
|
18020
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18021
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
16290
|
+
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16291
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
16292
|
+
source: z.ZodLiteral<"steps">;
|
|
16293
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
18022
16294
|
name: z.ZodString;
|
|
18023
16295
|
resource: z.ZodString;
|
|
18024
16296
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -18036,7 +16308,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18036
16308
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18037
16309
|
}, z.core.$strict>>;
|
|
18038
16310
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18039
|
-
}, z.core.$strict
|
|
16311
|
+
}, z.core.$strict>>;
|
|
18040
16312
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18041
16313
|
calc: z.ZodString;
|
|
18042
16314
|
as: z.ZodString;
|
|
@@ -18176,25 +16448,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18176
16448
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18177
16449
|
}, z.core.$strict>, z.ZodObject<{
|
|
18178
16450
|
source: z.ZodLiteral<"steps">;
|
|
18179
|
-
steps: z.ZodArray<z.
|
|
18180
|
-
name: z.ZodString;
|
|
18181
|
-
resource: z.ZodString;
|
|
18182
|
-
metric: z.ZodObject<{
|
|
18183
|
-
agg: z.ZodEnum<{
|
|
18184
|
-
sum: "sum";
|
|
18185
|
-
count: "count";
|
|
18186
|
-
count_distinct: "count_distinct";
|
|
18187
|
-
avg: "avg";
|
|
18188
|
-
min: "min";
|
|
18189
|
-
max: "max";
|
|
18190
|
-
median: "median";
|
|
18191
|
-
}>;
|
|
18192
|
-
field: z.ZodOptional<z.ZodString>;
|
|
18193
|
-
as: z.ZodString;
|
|
18194
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18195
|
-
}, z.core.$strict>;
|
|
18196
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18197
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
16451
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
18198
16452
|
name: z.ZodString;
|
|
18199
16453
|
resource: z.ZodString;
|
|
18200
16454
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -18212,7 +16466,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18212
16466
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18213
16467
|
}, z.core.$strict>>;
|
|
18214
16468
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18215
|
-
}, z.core.$strict
|
|
16469
|
+
}, z.core.$strict>>;
|
|
18216
16470
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18217
16471
|
calc: z.ZodString;
|
|
18218
16472
|
as: z.ZodString;
|
|
@@ -18357,25 +16611,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18357
16611
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18358
16612
|
}, z.core.$strict>, z.ZodObject<{
|
|
18359
16613
|
source: z.ZodLiteral<"steps">;
|
|
18360
|
-
steps: z.ZodArray<z.
|
|
18361
|
-
name: z.ZodString;
|
|
18362
|
-
resource: z.ZodString;
|
|
18363
|
-
metric: z.ZodObject<{
|
|
18364
|
-
agg: z.ZodEnum<{
|
|
18365
|
-
sum: "sum";
|
|
18366
|
-
count: "count";
|
|
18367
|
-
count_distinct: "count_distinct";
|
|
18368
|
-
avg: "avg";
|
|
18369
|
-
min: "min";
|
|
18370
|
-
max: "max";
|
|
18371
|
-
median: "median";
|
|
18372
|
-
}>;
|
|
18373
|
-
field: z.ZodOptional<z.ZodString>;
|
|
18374
|
-
as: z.ZodString;
|
|
18375
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18376
|
-
}, z.core.$strict>;
|
|
18377
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18378
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
16614
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
18379
16615
|
name: z.ZodString;
|
|
18380
16616
|
resource: z.ZodString;
|
|
18381
16617
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -18393,7 +16629,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18393
16629
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18394
16630
|
}, z.core.$strict>>;
|
|
18395
16631
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18396
|
-
}, z.core.$strict
|
|
16632
|
+
}, z.core.$strict>>;
|
|
18397
16633
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18398
16634
|
calc: z.ZodString;
|
|
18399
16635
|
as: z.ZodString;
|
|
@@ -18533,25 +16769,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18533
16769
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18534
16770
|
}, z.core.$strict>, z.ZodObject<{
|
|
18535
16771
|
source: z.ZodLiteral<"steps">;
|
|
18536
|
-
steps: z.ZodArray<z.
|
|
18537
|
-
name: z.ZodString;
|
|
18538
|
-
resource: z.ZodString;
|
|
18539
|
-
metric: z.ZodObject<{
|
|
18540
|
-
agg: z.ZodEnum<{
|
|
18541
|
-
sum: "sum";
|
|
18542
|
-
count: "count";
|
|
18543
|
-
count_distinct: "count_distinct";
|
|
18544
|
-
avg: "avg";
|
|
18545
|
-
min: "min";
|
|
18546
|
-
max: "max";
|
|
18547
|
-
median: "median";
|
|
18548
|
-
}>;
|
|
18549
|
-
field: z.ZodOptional<z.ZodString>;
|
|
18550
|
-
as: z.ZodString;
|
|
18551
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18552
|
-
}, z.core.$strict>;
|
|
18553
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18554
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
16772
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
18555
16773
|
name: z.ZodString;
|
|
18556
16774
|
resource: z.ZodString;
|
|
18557
16775
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -18569,7 +16787,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18569
16787
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18570
16788
|
}, z.core.$strict>>;
|
|
18571
16789
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18572
|
-
}, z.core.$strict
|
|
16790
|
+
}, z.core.$strict>>;
|
|
18573
16791
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18574
16792
|
calc: z.ZodString;
|
|
18575
16793
|
as: z.ZodString;
|
|
@@ -18727,25 +16945,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18727
16945
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18728
16946
|
}, z.core.$strict>, z.ZodObject<{
|
|
18729
16947
|
source: z.ZodLiteral<"steps">;
|
|
18730
|
-
steps: z.ZodArray<z.
|
|
18731
|
-
name: z.ZodString;
|
|
18732
|
-
resource: z.ZodString;
|
|
18733
|
-
metric: z.ZodObject<{
|
|
18734
|
-
agg: z.ZodEnum<{
|
|
18735
|
-
sum: "sum";
|
|
18736
|
-
count: "count";
|
|
18737
|
-
count_distinct: "count_distinct";
|
|
18738
|
-
avg: "avg";
|
|
18739
|
-
min: "min";
|
|
18740
|
-
max: "max";
|
|
18741
|
-
median: "median";
|
|
18742
|
-
}>;
|
|
18743
|
-
field: z.ZodOptional<z.ZodString>;
|
|
18744
|
-
as: z.ZodString;
|
|
18745
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18746
|
-
}, z.core.$strict>;
|
|
18747
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18748
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
16948
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
18749
16949
|
name: z.ZodString;
|
|
18750
16950
|
resource: z.ZodString;
|
|
18751
16951
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -18763,7 +16963,7 @@ export declare const SetWidgetConfigRequestSchema: z.core.ZodStandardJSONSchemaP
|
|
|
18763
16963
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18764
16964
|
}, z.core.$strict>>;
|
|
18765
16965
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18766
|
-
}, z.core.$strict
|
|
16966
|
+
}, z.core.$strict>>;
|
|
18767
16967
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18768
16968
|
calc: z.ZodString;
|
|
18769
16969
|
as: z.ZodString;
|
|
@@ -18893,25 +17093,7 @@ export declare const ConfigureTableWidgetRequestSchema: z.core.ZodStandardJSONSc
|
|
|
18893
17093
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18894
17094
|
}, z.core.$strict>, z.ZodObject<{
|
|
18895
17095
|
source: z.ZodLiteral<"steps">;
|
|
18896
|
-
steps: z.ZodArray<z.
|
|
18897
|
-
name: z.ZodString;
|
|
18898
|
-
resource: z.ZodString;
|
|
18899
|
-
metric: z.ZodObject<{
|
|
18900
|
-
agg: z.ZodEnum<{
|
|
18901
|
-
sum: "sum";
|
|
18902
|
-
count: "count";
|
|
18903
|
-
count_distinct: "count_distinct";
|
|
18904
|
-
avg: "avg";
|
|
18905
|
-
min: "min";
|
|
18906
|
-
max: "max";
|
|
18907
|
-
median: "median";
|
|
18908
|
-
}>;
|
|
18909
|
-
field: z.ZodOptional<z.ZodString>;
|
|
18910
|
-
as: z.ZodString;
|
|
18911
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18912
|
-
}, z.core.$strict>;
|
|
18913
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18914
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
17096
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
18915
17097
|
name: z.ZodString;
|
|
18916
17098
|
resource: z.ZodString;
|
|
18917
17099
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -18929,7 +17111,7 @@ export declare const ConfigureTableWidgetRequestSchema: z.core.ZodStandardJSONSc
|
|
|
18929
17111
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18930
17112
|
}, z.core.$strict>>;
|
|
18931
17113
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
18932
|
-
}, z.core.$strict
|
|
17114
|
+
}, z.core.$strict>>;
|
|
18933
17115
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18934
17116
|
calc: z.ZodString;
|
|
18935
17117
|
as: z.ZodString;
|
|
@@ -19100,25 +17282,7 @@ export declare const ConfigureKpiCardWidgetRequestSchema: z.core.ZodStandardJSON
|
|
|
19100
17282
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19101
17283
|
}, z.core.$strict>, z.ZodObject<{
|
|
19102
17284
|
source: z.ZodLiteral<"steps">;
|
|
19103
|
-
steps: z.ZodArray<z.
|
|
19104
|
-
name: z.ZodString;
|
|
19105
|
-
resource: z.ZodString;
|
|
19106
|
-
metric: z.ZodObject<{
|
|
19107
|
-
agg: z.ZodEnum<{
|
|
19108
|
-
sum: "sum";
|
|
19109
|
-
count: "count";
|
|
19110
|
-
count_distinct: "count_distinct";
|
|
19111
|
-
avg: "avg";
|
|
19112
|
-
min: "min";
|
|
19113
|
-
max: "max";
|
|
19114
|
-
median: "median";
|
|
19115
|
-
}>;
|
|
19116
|
-
field: z.ZodOptional<z.ZodString>;
|
|
19117
|
-
as: z.ZodString;
|
|
19118
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19119
|
-
}, z.core.$strict>;
|
|
19120
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19121
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
17285
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
19122
17286
|
name: z.ZodString;
|
|
19123
17287
|
resource: z.ZodString;
|
|
19124
17288
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -19136,7 +17300,7 @@ export declare const ConfigureKpiCardWidgetRequestSchema: z.core.ZodStandardJSON
|
|
|
19136
17300
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19137
17301
|
}, z.core.$strict>>;
|
|
19138
17302
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19139
|
-
}, z.core.$strict
|
|
17303
|
+
}, z.core.$strict>>;
|
|
19140
17304
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19141
17305
|
calc: z.ZodString;
|
|
19142
17306
|
as: z.ZodString;
|
|
@@ -19287,25 +17451,7 @@ export declare const ConfigureGaugeCardWidgetRequestSchema: z.core.ZodStandardJS
|
|
|
19287
17451
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19288
17452
|
}, z.core.$strict>, z.ZodObject<{
|
|
19289
17453
|
source: z.ZodLiteral<"steps">;
|
|
19290
|
-
steps: z.ZodArray<z.
|
|
19291
|
-
name: z.ZodString;
|
|
19292
|
-
resource: z.ZodString;
|
|
19293
|
-
metric: z.ZodObject<{
|
|
19294
|
-
agg: z.ZodEnum<{
|
|
19295
|
-
sum: "sum";
|
|
19296
|
-
count: "count";
|
|
19297
|
-
count_distinct: "count_distinct";
|
|
19298
|
-
avg: "avg";
|
|
19299
|
-
min: "min";
|
|
19300
|
-
max: "max";
|
|
19301
|
-
median: "median";
|
|
19302
|
-
}>;
|
|
19303
|
-
field: z.ZodOptional<z.ZodString>;
|
|
19304
|
-
as: z.ZodString;
|
|
19305
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19306
|
-
}, z.core.$strict>;
|
|
19307
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19308
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
17454
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
19309
17455
|
name: z.ZodString;
|
|
19310
17456
|
resource: z.ZodString;
|
|
19311
17457
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -19323,7 +17469,7 @@ export declare const ConfigureGaugeCardWidgetRequestSchema: z.core.ZodStandardJS
|
|
|
19323
17469
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19324
17470
|
}, z.core.$strict>>;
|
|
19325
17471
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19326
|
-
}, z.core.$strict
|
|
17472
|
+
}, z.core.$strict>>;
|
|
19327
17473
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19328
17474
|
calc: z.ZodString;
|
|
19329
17475
|
as: z.ZodString;
|
|
@@ -19473,25 +17619,7 @@ export declare const ConfigureLineChartWidgetRequestSchema: z.core.ZodStandardJS
|
|
|
19473
17619
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19474
17620
|
}, z.core.$strict>, z.ZodObject<{
|
|
19475
17621
|
source: z.ZodLiteral<"steps">;
|
|
19476
|
-
steps: z.ZodArray<z.
|
|
19477
|
-
name: z.ZodString;
|
|
19478
|
-
resource: z.ZodString;
|
|
19479
|
-
metric: z.ZodObject<{
|
|
19480
|
-
agg: z.ZodEnum<{
|
|
19481
|
-
sum: "sum";
|
|
19482
|
-
count: "count";
|
|
19483
|
-
count_distinct: "count_distinct";
|
|
19484
|
-
avg: "avg";
|
|
19485
|
-
min: "min";
|
|
19486
|
-
max: "max";
|
|
19487
|
-
median: "median";
|
|
19488
|
-
}>;
|
|
19489
|
-
field: z.ZodOptional<z.ZodString>;
|
|
19490
|
-
as: z.ZodString;
|
|
19491
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19492
|
-
}, z.core.$strict>;
|
|
19493
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19494
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
17622
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
19495
17623
|
name: z.ZodString;
|
|
19496
17624
|
resource: z.ZodString;
|
|
19497
17625
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -19509,7 +17637,7 @@ export declare const ConfigureLineChartWidgetRequestSchema: z.core.ZodStandardJS
|
|
|
19509
17637
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19510
17638
|
}, z.core.$strict>>;
|
|
19511
17639
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19512
|
-
}, z.core.$strict
|
|
17640
|
+
}, z.core.$strict>>;
|
|
19513
17641
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19514
17642
|
calc: z.ZodString;
|
|
19515
17643
|
as: z.ZodString;
|
|
@@ -19654,25 +17782,7 @@ export declare const ConfigureBarChartWidgetRequestSchema: z.core.ZodStandardJSO
|
|
|
19654
17782
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19655
17783
|
}, z.core.$strict>, z.ZodObject<{
|
|
19656
17784
|
source: z.ZodLiteral<"steps">;
|
|
19657
|
-
steps: z.ZodArray<z.
|
|
19658
|
-
name: z.ZodString;
|
|
19659
|
-
resource: z.ZodString;
|
|
19660
|
-
metric: z.ZodObject<{
|
|
19661
|
-
agg: z.ZodEnum<{
|
|
19662
|
-
sum: "sum";
|
|
19663
|
-
count: "count";
|
|
19664
|
-
count_distinct: "count_distinct";
|
|
19665
|
-
avg: "avg";
|
|
19666
|
-
min: "min";
|
|
19667
|
-
max: "max";
|
|
19668
|
-
median: "median";
|
|
19669
|
-
}>;
|
|
19670
|
-
field: z.ZodOptional<z.ZodString>;
|
|
19671
|
-
as: z.ZodString;
|
|
19672
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19673
|
-
}, z.core.$strict>;
|
|
19674
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19675
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
17785
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
19676
17786
|
name: z.ZodString;
|
|
19677
17787
|
resource: z.ZodString;
|
|
19678
17788
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -19690,7 +17800,7 @@ export declare const ConfigureBarChartWidgetRequestSchema: z.core.ZodStandardJSO
|
|
|
19690
17800
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19691
17801
|
}, z.core.$strict>>;
|
|
19692
17802
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19693
|
-
}, z.core.$strict
|
|
17803
|
+
}, z.core.$strict>>;
|
|
19694
17804
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19695
17805
|
calc: z.ZodString;
|
|
19696
17806
|
as: z.ZodString;
|
|
@@ -19852,25 +17962,7 @@ export declare const ConfigureStackedBarChartWidgetRequestSchema: z.core.ZodStan
|
|
|
19852
17962
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19853
17963
|
}, z.core.$strict>, z.ZodObject<{
|
|
19854
17964
|
source: z.ZodLiteral<"steps">;
|
|
19855
|
-
steps: z.ZodArray<z.
|
|
19856
|
-
name: z.ZodString;
|
|
19857
|
-
resource: z.ZodString;
|
|
19858
|
-
metric: z.ZodObject<{
|
|
19859
|
-
agg: z.ZodEnum<{
|
|
19860
|
-
sum: "sum";
|
|
19861
|
-
count: "count";
|
|
19862
|
-
count_distinct: "count_distinct";
|
|
19863
|
-
avg: "avg";
|
|
19864
|
-
min: "min";
|
|
19865
|
-
max: "max";
|
|
19866
|
-
median: "median";
|
|
19867
|
-
}>;
|
|
19868
|
-
field: z.ZodOptional<z.ZodString>;
|
|
19869
|
-
as: z.ZodString;
|
|
19870
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19871
|
-
}, z.core.$strict>;
|
|
19872
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19873
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
17965
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
19874
17966
|
name: z.ZodString;
|
|
19875
17967
|
resource: z.ZodString;
|
|
19876
17968
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -19888,7 +17980,7 @@ export declare const ConfigureStackedBarChartWidgetRequestSchema: z.core.ZodStan
|
|
|
19888
17980
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19889
17981
|
}, z.core.$strict>>;
|
|
19890
17982
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
19891
|
-
}, z.core.$strict
|
|
17983
|
+
}, z.core.$strict>>;
|
|
19892
17984
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19893
17985
|
calc: z.ZodString;
|
|
19894
17986
|
as: z.ZodString;
|
|
@@ -20033,25 +18125,7 @@ export declare const ConfigurePieChartWidgetRequestSchema: z.core.ZodStandardJSO
|
|
|
20033
18125
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20034
18126
|
}, z.core.$strict>, z.ZodObject<{
|
|
20035
18127
|
source: z.ZodLiteral<"steps">;
|
|
20036
|
-
steps: z.ZodArray<z.
|
|
20037
|
-
name: z.ZodString;
|
|
20038
|
-
resource: z.ZodString;
|
|
20039
|
-
metric: z.ZodObject<{
|
|
20040
|
-
agg: z.ZodEnum<{
|
|
20041
|
-
sum: "sum";
|
|
20042
|
-
count: "count";
|
|
20043
|
-
count_distinct: "count_distinct";
|
|
20044
|
-
avg: "avg";
|
|
20045
|
-
min: "min";
|
|
20046
|
-
max: "max";
|
|
20047
|
-
median: "median";
|
|
20048
|
-
}>;
|
|
20049
|
-
field: z.ZodOptional<z.ZodString>;
|
|
20050
|
-
as: z.ZodString;
|
|
20051
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20052
|
-
}, z.core.$strict>;
|
|
20053
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20054
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
18128
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
20055
18129
|
name: z.ZodString;
|
|
20056
18130
|
resource: z.ZodString;
|
|
20057
18131
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -20069,7 +18143,7 @@ export declare const ConfigurePieChartWidgetRequestSchema: z.core.ZodStandardJSO
|
|
|
20069
18143
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20070
18144
|
}, z.core.$strict>>;
|
|
20071
18145
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20072
|
-
}, z.core.$strict
|
|
18146
|
+
}, z.core.$strict>>;
|
|
20073
18147
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20074
18148
|
calc: z.ZodString;
|
|
20075
18149
|
as: z.ZodString;
|
|
@@ -20219,25 +18293,7 @@ export declare const ConfigureHistogramChartWidgetRequestSchema: z.core.ZodStand
|
|
|
20219
18293
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20220
18294
|
}, z.core.$strict>, z.ZodObject<{
|
|
20221
18295
|
source: z.ZodLiteral<"steps">;
|
|
20222
|
-
steps: z.ZodArray<z.
|
|
20223
|
-
name: z.ZodString;
|
|
20224
|
-
resource: z.ZodString;
|
|
20225
|
-
metric: z.ZodObject<{
|
|
20226
|
-
agg: z.ZodEnum<{
|
|
20227
|
-
sum: "sum";
|
|
20228
|
-
count: "count";
|
|
20229
|
-
count_distinct: "count_distinct";
|
|
20230
|
-
avg: "avg";
|
|
20231
|
-
min: "min";
|
|
20232
|
-
max: "max";
|
|
20233
|
-
median: "median";
|
|
20234
|
-
}>;
|
|
20235
|
-
field: z.ZodOptional<z.ZodString>;
|
|
20236
|
-
as: z.ZodString;
|
|
20237
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20238
|
-
}, z.core.$strict>;
|
|
20239
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20240
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
18296
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
20241
18297
|
name: z.ZodString;
|
|
20242
18298
|
resource: z.ZodString;
|
|
20243
18299
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -20255,7 +18311,7 @@ export declare const ConfigureHistogramChartWidgetRequestSchema: z.core.ZodStand
|
|
|
20255
18311
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20256
18312
|
}, z.core.$strict>>;
|
|
20257
18313
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20258
|
-
}, z.core.$strict
|
|
18314
|
+
}, z.core.$strict>>;
|
|
20259
18315
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20260
18316
|
calc: z.ZodString;
|
|
20261
18317
|
as: z.ZodString;
|
|
@@ -20400,25 +18456,7 @@ export declare const ConfigureFunnelChartWidgetRequestSchema: z.core.ZodStandard
|
|
|
20400
18456
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20401
18457
|
}, z.core.$strict>, z.ZodObject<{
|
|
20402
18458
|
source: z.ZodLiteral<"steps">;
|
|
20403
|
-
steps: z.ZodArray<z.
|
|
20404
|
-
name: z.ZodString;
|
|
20405
|
-
resource: z.ZodString;
|
|
20406
|
-
metric: z.ZodObject<{
|
|
20407
|
-
agg: z.ZodEnum<{
|
|
20408
|
-
sum: "sum";
|
|
20409
|
-
count: "count";
|
|
20410
|
-
count_distinct: "count_distinct";
|
|
20411
|
-
avg: "avg";
|
|
20412
|
-
min: "min";
|
|
20413
|
-
max: "max";
|
|
20414
|
-
median: "median";
|
|
20415
|
-
}>;
|
|
20416
|
-
field: z.ZodOptional<z.ZodString>;
|
|
20417
|
-
as: z.ZodString;
|
|
20418
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20419
|
-
}, z.core.$strict>;
|
|
20420
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20421
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
18459
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
20422
18460
|
name: z.ZodString;
|
|
20423
18461
|
resource: z.ZodString;
|
|
20424
18462
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -20436,7 +18474,7 @@ export declare const ConfigureFunnelChartWidgetRequestSchema: z.core.ZodStandard
|
|
|
20436
18474
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20437
18475
|
}, z.core.$strict>>;
|
|
20438
18476
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20439
|
-
}, z.core.$strict
|
|
18477
|
+
}, z.core.$strict>>;
|
|
20440
18478
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20441
18479
|
calc: z.ZodString;
|
|
20442
18480
|
as: z.ZodString;
|
|
@@ -20599,25 +18637,7 @@ export declare const ConfigurePivotTableWidgetRequestSchema: z.core.ZodStandardJ
|
|
|
20599
18637
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20600
18638
|
}, z.core.$strict>, z.ZodObject<{
|
|
20601
18639
|
source: z.ZodLiteral<"steps">;
|
|
20602
|
-
steps: z.ZodArray<z.
|
|
20603
|
-
name: z.ZodString;
|
|
20604
|
-
resource: z.ZodString;
|
|
20605
|
-
metric: z.ZodObject<{
|
|
20606
|
-
agg: z.ZodEnum<{
|
|
20607
|
-
sum: "sum";
|
|
20608
|
-
count: "count";
|
|
20609
|
-
count_distinct: "count_distinct";
|
|
20610
|
-
avg: "avg";
|
|
20611
|
-
min: "min";
|
|
20612
|
-
max: "max";
|
|
20613
|
-
median: "median";
|
|
20614
|
-
}>;
|
|
20615
|
-
field: z.ZodOptional<z.ZodString>;
|
|
20616
|
-
as: z.ZodString;
|
|
20617
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20618
|
-
}, z.core.$strict>;
|
|
20619
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20620
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
18640
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
20621
18641
|
name: z.ZodString;
|
|
20622
18642
|
resource: z.ZodString;
|
|
20623
18643
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -20635,7 +18655,7 @@ export declare const ConfigurePivotTableWidgetRequestSchema: z.core.ZodStandardJ
|
|
|
20635
18655
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20636
18656
|
}, z.core.$strict>>;
|
|
20637
18657
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
20638
|
-
}, z.core.$strict
|
|
18658
|
+
}, z.core.$strict>>;
|
|
20639
18659
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20640
18660
|
calc: z.ZodString;
|
|
20641
18661
|
as: z.ZodString;
|