@adminforth/dashboard 1.8.0 → 1.10.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/api/dashboardApi.ts +73 -36
- package/custom/model/dashboard.types.ts +6 -13
- package/custom/runtime/DashboardRuntime.vue +26 -22
- package/custom/skills/adminforth-dashboard/SKILL.md +13 -20
- package/dist/custom/api/dashboardApi.d.ts +24 -18
- package/dist/custom/api/dashboardApi.js +42 -18
- package/dist/custom/api/dashboardApi.ts +73 -36
- 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/runtime/DashboardRuntime.vue +26 -22
- package/dist/custom/skills/adminforth-dashboard/SKILL.md +13 -20
- package/dist/endpoint/groups.js +22 -20
- package/dist/endpoint/widgets.js +28 -26
- package/dist/schema/api.d.ts +230 -3936
- package/dist/schema/api.js +7 -12
- 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 +2 -0
- package/dist/services/calc-evaluator.js +54 -0
- package/dist/services/dashboardFilterService.d.ts +5 -0
- package/dist/services/dashboardFilterService.js +125 -0
- package/dist/services/widgetDataService.js +15 -168
- package/endpoint/groups.ts +22 -20
- package/endpoint/widgets.ts +28 -26
- package/package.json +2 -1
- package/schema/api.ts +7 -12
- package/schema/widgets/common.ts +1 -11
- package/services/calc-evaluator.ts +71 -0
- package/services/dashboardFilterService.ts +162 -0
- package/services/widgetDataService.ts +26 -213
|
@@ -356,25 +356,7 @@ export declare const LineChartWidgetConfigSchema: z.ZodObject<{
|
|
|
356
356
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
357
357
|
}, z.core.$strict>, z.ZodObject<{
|
|
358
358
|
source: z.ZodLiteral<"steps">;
|
|
359
|
-
steps: z.ZodArray<z.
|
|
360
|
-
name: z.ZodString;
|
|
361
|
-
resource: z.ZodString;
|
|
362
|
-
metric: z.ZodObject<{
|
|
363
|
-
agg: z.ZodEnum<{
|
|
364
|
-
sum: "sum";
|
|
365
|
-
count: "count";
|
|
366
|
-
count_distinct: "count_distinct";
|
|
367
|
-
avg: "avg";
|
|
368
|
-
min: "min";
|
|
369
|
-
max: "max";
|
|
370
|
-
median: "median";
|
|
371
|
-
}>;
|
|
372
|
-
field: z.ZodOptional<z.ZodString>;
|
|
373
|
-
as: z.ZodString;
|
|
374
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
375
|
-
}, z.core.$strict>;
|
|
376
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
377
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
359
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
378
360
|
name: z.ZodString;
|
|
379
361
|
resource: z.ZodString;
|
|
380
362
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -392,7 +374,7 @@ export declare const LineChartWidgetConfigSchema: z.ZodObject<{
|
|
|
392
374
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
393
375
|
}, z.core.$strict>>;
|
|
394
376
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
395
|
-
}, z.core.$strict
|
|
377
|
+
}, z.core.$strict>>;
|
|
396
378
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
397
379
|
calc: z.ZodString;
|
|
398
380
|
as: z.ZodString;
|
|
@@ -536,25 +518,7 @@ export declare const BarChartWidgetConfigSchema: z.ZodObject<{
|
|
|
536
518
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
537
519
|
}, z.core.$strict>, z.ZodObject<{
|
|
538
520
|
source: z.ZodLiteral<"steps">;
|
|
539
|
-
steps: z.ZodArray<z.
|
|
540
|
-
name: z.ZodString;
|
|
541
|
-
resource: z.ZodString;
|
|
542
|
-
metric: z.ZodObject<{
|
|
543
|
-
agg: z.ZodEnum<{
|
|
544
|
-
sum: "sum";
|
|
545
|
-
count: "count";
|
|
546
|
-
count_distinct: "count_distinct";
|
|
547
|
-
avg: "avg";
|
|
548
|
-
min: "min";
|
|
549
|
-
max: "max";
|
|
550
|
-
median: "median";
|
|
551
|
-
}>;
|
|
552
|
-
field: z.ZodOptional<z.ZodString>;
|
|
553
|
-
as: z.ZodString;
|
|
554
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
555
|
-
}, z.core.$strict>;
|
|
556
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
557
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
521
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
558
522
|
name: z.ZodString;
|
|
559
523
|
resource: z.ZodString;
|
|
560
524
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -572,7 +536,7 @@ export declare const BarChartWidgetConfigSchema: z.ZodObject<{
|
|
|
572
536
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
573
537
|
}, z.core.$strict>>;
|
|
574
538
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
575
|
-
}, z.core.$strict
|
|
539
|
+
}, z.core.$strict>>;
|
|
576
540
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
577
541
|
calc: z.ZodString;
|
|
578
542
|
as: z.ZodString;
|
|
@@ -733,25 +697,7 @@ export declare const StackedBarChartWidgetConfigSchema: z.ZodObject<{
|
|
|
733
697
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
734
698
|
}, z.core.$strict>, z.ZodObject<{
|
|
735
699
|
source: z.ZodLiteral<"steps">;
|
|
736
|
-
steps: z.ZodArray<z.
|
|
737
|
-
name: z.ZodString;
|
|
738
|
-
resource: z.ZodString;
|
|
739
|
-
metric: z.ZodObject<{
|
|
740
|
-
agg: z.ZodEnum<{
|
|
741
|
-
sum: "sum";
|
|
742
|
-
count: "count";
|
|
743
|
-
count_distinct: "count_distinct";
|
|
744
|
-
avg: "avg";
|
|
745
|
-
min: "min";
|
|
746
|
-
max: "max";
|
|
747
|
-
median: "median";
|
|
748
|
-
}>;
|
|
749
|
-
field: z.ZodOptional<z.ZodString>;
|
|
750
|
-
as: z.ZodString;
|
|
751
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
752
|
-
}, z.core.$strict>;
|
|
753
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
754
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
700
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
755
701
|
name: z.ZodString;
|
|
756
702
|
resource: z.ZodString;
|
|
757
703
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -769,7 +715,7 @@ export declare const StackedBarChartWidgetConfigSchema: z.ZodObject<{
|
|
|
769
715
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
770
716
|
}, z.core.$strict>>;
|
|
771
717
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
772
|
-
}, z.core.$strict
|
|
718
|
+
}, z.core.$strict>>;
|
|
773
719
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
774
720
|
calc: z.ZodString;
|
|
775
721
|
as: z.ZodString;
|
|
@@ -913,25 +859,7 @@ export declare const PieChartWidgetConfigSchema: z.ZodObject<{
|
|
|
913
859
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
914
860
|
}, z.core.$strict>, z.ZodObject<{
|
|
915
861
|
source: z.ZodLiteral<"steps">;
|
|
916
|
-
steps: z.ZodArray<z.
|
|
917
|
-
name: z.ZodString;
|
|
918
|
-
resource: z.ZodString;
|
|
919
|
-
metric: z.ZodObject<{
|
|
920
|
-
agg: z.ZodEnum<{
|
|
921
|
-
sum: "sum";
|
|
922
|
-
count: "count";
|
|
923
|
-
count_distinct: "count_distinct";
|
|
924
|
-
avg: "avg";
|
|
925
|
-
min: "min";
|
|
926
|
-
max: "max";
|
|
927
|
-
median: "median";
|
|
928
|
-
}>;
|
|
929
|
-
field: z.ZodOptional<z.ZodString>;
|
|
930
|
-
as: z.ZodString;
|
|
931
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
932
|
-
}, z.core.$strict>;
|
|
933
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
934
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
862
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
935
863
|
name: z.ZodString;
|
|
936
864
|
resource: z.ZodString;
|
|
937
865
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -949,7 +877,7 @@ export declare const PieChartWidgetConfigSchema: z.ZodObject<{
|
|
|
949
877
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
950
878
|
}, z.core.$strict>>;
|
|
951
879
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
952
|
-
}, z.core.$strict
|
|
880
|
+
}, z.core.$strict>>;
|
|
953
881
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
954
882
|
calc: z.ZodString;
|
|
955
883
|
as: z.ZodString;
|
|
@@ -1098,25 +1026,7 @@ export declare const HistogramChartWidgetConfigSchema: z.ZodObject<{
|
|
|
1098
1026
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1099
1027
|
}, z.core.$strict>, z.ZodObject<{
|
|
1100
1028
|
source: z.ZodLiteral<"steps">;
|
|
1101
|
-
steps: z.ZodArray<z.
|
|
1102
|
-
name: z.ZodString;
|
|
1103
|
-
resource: z.ZodString;
|
|
1104
|
-
metric: z.ZodObject<{
|
|
1105
|
-
agg: z.ZodEnum<{
|
|
1106
|
-
sum: "sum";
|
|
1107
|
-
count: "count";
|
|
1108
|
-
count_distinct: "count_distinct";
|
|
1109
|
-
avg: "avg";
|
|
1110
|
-
min: "min";
|
|
1111
|
-
max: "max";
|
|
1112
|
-
median: "median";
|
|
1113
|
-
}>;
|
|
1114
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1115
|
-
as: z.ZodString;
|
|
1116
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1117
|
-
}, z.core.$strict>;
|
|
1118
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1119
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1029
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1120
1030
|
name: z.ZodString;
|
|
1121
1031
|
resource: z.ZodString;
|
|
1122
1032
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1134,7 +1044,7 @@ export declare const HistogramChartWidgetConfigSchema: z.ZodObject<{
|
|
|
1134
1044
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1135
1045
|
}, z.core.$strict>>;
|
|
1136
1046
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1137
|
-
}, z.core.$strict
|
|
1047
|
+
}, z.core.$strict>>;
|
|
1138
1048
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1139
1049
|
calc: z.ZodString;
|
|
1140
1050
|
as: z.ZodString;
|
|
@@ -1278,25 +1188,7 @@ export declare const FunnelChartWidgetConfigSchema: z.ZodObject<{
|
|
|
1278
1188
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1279
1189
|
}, z.core.$strict>, z.ZodObject<{
|
|
1280
1190
|
source: z.ZodLiteral<"steps">;
|
|
1281
|
-
steps: z.ZodArray<z.
|
|
1282
|
-
name: z.ZodString;
|
|
1283
|
-
resource: z.ZodString;
|
|
1284
|
-
metric: z.ZodObject<{
|
|
1285
|
-
agg: z.ZodEnum<{
|
|
1286
|
-
sum: "sum";
|
|
1287
|
-
count: "count";
|
|
1288
|
-
count_distinct: "count_distinct";
|
|
1289
|
-
avg: "avg";
|
|
1290
|
-
min: "min";
|
|
1291
|
-
max: "max";
|
|
1292
|
-
median: "median";
|
|
1293
|
-
}>;
|
|
1294
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1295
|
-
as: z.ZodString;
|
|
1296
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1297
|
-
}, z.core.$strict>;
|
|
1298
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1299
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1191
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1300
1192
|
name: z.ZodString;
|
|
1301
1193
|
resource: z.ZodString;
|
|
1302
1194
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1314,7 +1206,7 @@ export declare const FunnelChartWidgetConfigSchema: z.ZodObject<{
|
|
|
1314
1206
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1315
1207
|
}, z.core.$strict>>;
|
|
1316
1208
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1317
|
-
}, z.core.$strict
|
|
1209
|
+
}, z.core.$strict>>;
|
|
1318
1210
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1319
1211
|
calc: z.ZodString;
|
|
1320
1212
|
as: z.ZodString;
|
|
@@ -1463,25 +1355,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
1463
1355
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1464
1356
|
}, z.core.$strict>, z.ZodObject<{
|
|
1465
1357
|
source: z.ZodLiteral<"steps">;
|
|
1466
|
-
steps: z.ZodArray<z.
|
|
1467
|
-
name: z.ZodString;
|
|
1468
|
-
resource: z.ZodString;
|
|
1469
|
-
metric: z.ZodObject<{
|
|
1470
|
-
agg: z.ZodEnum<{
|
|
1471
|
-
sum: "sum";
|
|
1472
|
-
count: "count";
|
|
1473
|
-
count_distinct: "count_distinct";
|
|
1474
|
-
avg: "avg";
|
|
1475
|
-
min: "min";
|
|
1476
|
-
max: "max";
|
|
1477
|
-
median: "median";
|
|
1478
|
-
}>;
|
|
1479
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1480
|
-
as: z.ZodString;
|
|
1481
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1482
|
-
}, z.core.$strict>;
|
|
1483
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1484
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1358
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1485
1359
|
name: z.ZodString;
|
|
1486
1360
|
resource: z.ZodString;
|
|
1487
1361
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1499,7 +1373,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
1499
1373
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1500
1374
|
}, z.core.$strict>>;
|
|
1501
1375
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1502
|
-
}, z.core.$strict
|
|
1376
|
+
}, z.core.$strict>>;
|
|
1503
1377
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1504
1378
|
calc: z.ZodString;
|
|
1505
1379
|
as: z.ZodString;
|
|
@@ -1642,25 +1516,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
1642
1516
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1643
1517
|
}, z.core.$strict>, z.ZodObject<{
|
|
1644
1518
|
source: z.ZodLiteral<"steps">;
|
|
1645
|
-
steps: z.ZodArray<z.
|
|
1646
|
-
name: z.ZodString;
|
|
1647
|
-
resource: z.ZodString;
|
|
1648
|
-
metric: z.ZodObject<{
|
|
1649
|
-
agg: z.ZodEnum<{
|
|
1650
|
-
sum: "sum";
|
|
1651
|
-
count: "count";
|
|
1652
|
-
count_distinct: "count_distinct";
|
|
1653
|
-
avg: "avg";
|
|
1654
|
-
min: "min";
|
|
1655
|
-
max: "max";
|
|
1656
|
-
median: "median";
|
|
1657
|
-
}>;
|
|
1658
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1659
|
-
as: z.ZodString;
|
|
1660
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1661
|
-
}, z.core.$strict>;
|
|
1662
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1663
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1519
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1664
1520
|
name: z.ZodString;
|
|
1665
1521
|
resource: z.ZodString;
|
|
1666
1522
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1678,7 +1534,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
1678
1534
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1679
1535
|
}, z.core.$strict>>;
|
|
1680
1536
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1681
|
-
}, z.core.$strict
|
|
1537
|
+
}, z.core.$strict>>;
|
|
1682
1538
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1683
1539
|
calc: z.ZodString;
|
|
1684
1540
|
as: z.ZodString;
|
|
@@ -1838,25 +1694,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
1838
1694
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1839
1695
|
}, z.core.$strict>, z.ZodObject<{
|
|
1840
1696
|
source: z.ZodLiteral<"steps">;
|
|
1841
|
-
steps: z.ZodArray<z.
|
|
1842
|
-
name: z.ZodString;
|
|
1843
|
-
resource: z.ZodString;
|
|
1844
|
-
metric: z.ZodObject<{
|
|
1845
|
-
agg: z.ZodEnum<{
|
|
1846
|
-
sum: "sum";
|
|
1847
|
-
count: "count";
|
|
1848
|
-
count_distinct: "count_distinct";
|
|
1849
|
-
avg: "avg";
|
|
1850
|
-
min: "min";
|
|
1851
|
-
max: "max";
|
|
1852
|
-
median: "median";
|
|
1853
|
-
}>;
|
|
1854
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1855
|
-
as: z.ZodString;
|
|
1856
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1857
|
-
}, z.core.$strict>;
|
|
1858
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1859
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1697
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1860
1698
|
name: z.ZodString;
|
|
1861
1699
|
resource: z.ZodString;
|
|
1862
1700
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -1874,7 +1712,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
1874
1712
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1875
1713
|
}, z.core.$strict>>;
|
|
1876
1714
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1877
|
-
}, z.core.$strict
|
|
1715
|
+
}, z.core.$strict>>;
|
|
1878
1716
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1879
1717
|
calc: z.ZodString;
|
|
1880
1718
|
as: z.ZodString;
|
|
@@ -2017,25 +1855,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
2017
1855
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2018
1856
|
}, z.core.$strict>, z.ZodObject<{
|
|
2019
1857
|
source: z.ZodLiteral<"steps">;
|
|
2020
|
-
steps: z.ZodArray<z.
|
|
2021
|
-
name: z.ZodString;
|
|
2022
|
-
resource: z.ZodString;
|
|
2023
|
-
metric: z.ZodObject<{
|
|
2024
|
-
agg: z.ZodEnum<{
|
|
2025
|
-
sum: "sum";
|
|
2026
|
-
count: "count";
|
|
2027
|
-
count_distinct: "count_distinct";
|
|
2028
|
-
avg: "avg";
|
|
2029
|
-
min: "min";
|
|
2030
|
-
max: "max";
|
|
2031
|
-
median: "median";
|
|
2032
|
-
}>;
|
|
2033
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2034
|
-
as: z.ZodString;
|
|
2035
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2036
|
-
}, z.core.$strict>;
|
|
2037
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2038
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1858
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2039
1859
|
name: z.ZodString;
|
|
2040
1860
|
resource: z.ZodString;
|
|
2041
1861
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -2053,7 +1873,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
2053
1873
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2054
1874
|
}, z.core.$strict>>;
|
|
2055
1875
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2056
|
-
}, z.core.$strict
|
|
1876
|
+
}, z.core.$strict>>;
|
|
2057
1877
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2058
1878
|
calc: z.ZodString;
|
|
2059
1879
|
as: z.ZodString;
|
|
@@ -2201,25 +2021,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
2201
2021
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2202
2022
|
}, z.core.$strict>, z.ZodObject<{
|
|
2203
2023
|
source: z.ZodLiteral<"steps">;
|
|
2204
|
-
steps: z.ZodArray<z.
|
|
2205
|
-
name: z.ZodString;
|
|
2206
|
-
resource: z.ZodString;
|
|
2207
|
-
metric: z.ZodObject<{
|
|
2208
|
-
agg: z.ZodEnum<{
|
|
2209
|
-
sum: "sum";
|
|
2210
|
-
count: "count";
|
|
2211
|
-
count_distinct: "count_distinct";
|
|
2212
|
-
avg: "avg";
|
|
2213
|
-
min: "min";
|
|
2214
|
-
max: "max";
|
|
2215
|
-
median: "median";
|
|
2216
|
-
}>;
|
|
2217
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2218
|
-
as: z.ZodString;
|
|
2219
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2220
|
-
}, z.core.$strict>;
|
|
2221
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2222
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2024
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2223
2025
|
name: z.ZodString;
|
|
2224
2026
|
resource: z.ZodString;
|
|
2225
2027
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -2237,7 +2039,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
2237
2039
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2238
2040
|
}, z.core.$strict>>;
|
|
2239
2041
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2240
|
-
}, z.core.$strict
|
|
2042
|
+
}, z.core.$strict>>;
|
|
2241
2043
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2242
2044
|
calc: z.ZodString;
|
|
2243
2045
|
as: z.ZodString;
|
|
@@ -2380,25 +2182,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
2380
2182
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2381
2183
|
}, z.core.$strict>, z.ZodObject<{
|
|
2382
2184
|
source: z.ZodLiteral<"steps">;
|
|
2383
|
-
steps: z.ZodArray<z.
|
|
2384
|
-
name: z.ZodString;
|
|
2385
|
-
resource: z.ZodString;
|
|
2386
|
-
metric: z.ZodObject<{
|
|
2387
|
-
agg: z.ZodEnum<{
|
|
2388
|
-
sum: "sum";
|
|
2389
|
-
count: "count";
|
|
2390
|
-
count_distinct: "count_distinct";
|
|
2391
|
-
avg: "avg";
|
|
2392
|
-
min: "min";
|
|
2393
|
-
max: "max";
|
|
2394
|
-
median: "median";
|
|
2395
|
-
}>;
|
|
2396
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2397
|
-
as: z.ZodString;
|
|
2398
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2399
|
-
}, z.core.$strict>;
|
|
2400
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2401
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2185
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2402
2186
|
name: z.ZodString;
|
|
2403
2187
|
resource: z.ZodString;
|
|
2404
2188
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -2416,7 +2200,7 @@ export declare const ChartWidgetTargetConfigSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
2416
2200
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2417
2201
|
}, z.core.$strict>>;
|
|
2418
2202
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2419
|
-
}, z.core.$strict
|
|
2203
|
+
}, z.core.$strict>>;
|
|
2420
2204
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2421
2205
|
calc: z.ZodString;
|
|
2422
2206
|
as: z.ZodString;
|
|
@@ -193,25 +193,7 @@ export declare const QueryConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
193
193
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
194
194
|
}, z.core.$strict>, z.ZodObject<{
|
|
195
195
|
source: z.ZodLiteral<"steps">;
|
|
196
|
-
steps: z.ZodArray<z.
|
|
197
|
-
name: z.ZodString;
|
|
198
|
-
resource: z.ZodString;
|
|
199
|
-
metric: z.ZodObject<{
|
|
200
|
-
agg: z.ZodEnum<{
|
|
201
|
-
sum: "sum";
|
|
202
|
-
count: "count";
|
|
203
|
-
count_distinct: "count_distinct";
|
|
204
|
-
avg: "avg";
|
|
205
|
-
min: "min";
|
|
206
|
-
max: "max";
|
|
207
|
-
median: "median";
|
|
208
|
-
}>;
|
|
209
|
-
field: z.ZodOptional<z.ZodString>;
|
|
210
|
-
as: z.ZodString;
|
|
211
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
212
|
-
}, z.core.$strict>;
|
|
213
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
214
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
196
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
215
197
|
name: z.ZodString;
|
|
216
198
|
resource: z.ZodString;
|
|
217
199
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -229,7 +211,7 @@ export declare const QueryConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
229
211
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
230
212
|
}, z.core.$strict>>;
|
|
231
213
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
232
|
-
}, z.core.$strict
|
|
214
|
+
}, z.core.$strict>>;
|
|
233
215
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
234
216
|
calc: z.ZodString;
|
|
235
217
|
as: z.ZodString;
|
|
@@ -142,12 +142,6 @@ const ResourceQueryConfigSchema = z.object({
|
|
|
142
142
|
calcs: z.array(QueryCalcItemSchema).optional(),
|
|
143
143
|
formatting: z.record(z.string(), z.unknown()).optional(),
|
|
144
144
|
}).strict();
|
|
145
|
-
const StepsQueryMetricStepSchema = z.object({
|
|
146
|
-
name: z.string(),
|
|
147
|
-
resource: z.string(),
|
|
148
|
-
metric: QueryAggregateSelectItemSchema,
|
|
149
|
-
filters: FilterExpressionSchema.optional(),
|
|
150
|
-
}).strict();
|
|
151
145
|
const StepsQuerySelectStepSchema = z.object({
|
|
152
146
|
name: z.string(),
|
|
153
147
|
resource: z.string(),
|
|
@@ -158,10 +152,7 @@ export const QueryConfigSchema = z.union([
|
|
|
158
152
|
ResourceQueryConfigSchema,
|
|
159
153
|
z.object({
|
|
160
154
|
source: z.literal('steps'),
|
|
161
|
-
steps: z.array(
|
|
162
|
-
StepsQueryMetricStepSchema,
|
|
163
|
-
StepsQuerySelectStepSchema,
|
|
164
|
-
])).min(1),
|
|
155
|
+
steps: z.array(StepsQuerySelectStepSchema).min(1),
|
|
165
156
|
calcs: z.array(QueryCalcItemSchema).optional(),
|
|
166
157
|
order_by: z.array(QueryOrderByItemSchema).optional(),
|
|
167
158
|
limit: z.number().int().positive().optional(),
|
|
@@ -171,25 +171,7 @@ export declare const GaugeCardWidgetConfigSchema: z.ZodObject<{
|
|
|
171
171
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
172
172
|
}, z.core.$strict>, z.ZodObject<{
|
|
173
173
|
source: z.ZodLiteral<"steps">;
|
|
174
|
-
steps: z.ZodArray<z.
|
|
175
|
-
name: z.ZodString;
|
|
176
|
-
resource: z.ZodString;
|
|
177
|
-
metric: z.ZodObject<{
|
|
178
|
-
agg: z.ZodEnum<{
|
|
179
|
-
sum: "sum";
|
|
180
|
-
count: "count";
|
|
181
|
-
count_distinct: "count_distinct";
|
|
182
|
-
avg: "avg";
|
|
183
|
-
min: "min";
|
|
184
|
-
max: "max";
|
|
185
|
-
median: "median";
|
|
186
|
-
}>;
|
|
187
|
-
field: z.ZodOptional<z.ZodString>;
|
|
188
|
-
as: z.ZodString;
|
|
189
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
190
|
-
}, z.core.$strict>;
|
|
191
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
192
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
174
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
193
175
|
name: z.ZodString;
|
|
194
176
|
resource: z.ZodString;
|
|
195
177
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -207,7 +189,7 @@ export declare const GaugeCardWidgetConfigSchema: z.ZodObject<{
|
|
|
207
189
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
208
190
|
}, z.core.$strict>>;
|
|
209
191
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
210
|
-
}, z.core.$strict
|
|
192
|
+
}, z.core.$strict>>;
|
|
211
193
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
212
194
|
calc: z.ZodString;
|
|
213
195
|
as: z.ZodString;
|
|
@@ -211,25 +211,7 @@ export declare const KpiCardWidgetConfigSchema: z.ZodObject<{
|
|
|
211
211
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
212
212
|
}, z.core.$strict>, z.ZodObject<{
|
|
213
213
|
source: z.ZodLiteral<"steps">;
|
|
214
|
-
steps: z.ZodArray<z.
|
|
215
|
-
name: z.ZodString;
|
|
216
|
-
resource: z.ZodString;
|
|
217
|
-
metric: z.ZodObject<{
|
|
218
|
-
agg: z.ZodEnum<{
|
|
219
|
-
sum: "sum";
|
|
220
|
-
count: "count";
|
|
221
|
-
count_distinct: "count_distinct";
|
|
222
|
-
avg: "avg";
|
|
223
|
-
min: "min";
|
|
224
|
-
max: "max";
|
|
225
|
-
median: "median";
|
|
226
|
-
}>;
|
|
227
|
-
field: z.ZodOptional<z.ZodString>;
|
|
228
|
-
as: z.ZodString;
|
|
229
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
230
|
-
}, z.core.$strict>;
|
|
231
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
232
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
214
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
233
215
|
name: z.ZodString;
|
|
234
216
|
resource: z.ZodString;
|
|
235
217
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -247,7 +229,7 @@ export declare const KpiCardWidgetConfigSchema: z.ZodObject<{
|
|
|
247
229
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
248
230
|
}, z.core.$strict>>;
|
|
249
231
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
250
|
-
}, z.core.$strict
|
|
232
|
+
}, z.core.$strict>>;
|
|
251
233
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
252
234
|
calc: z.ZodString;
|
|
253
235
|
as: z.ZodString;
|
|
@@ -195,25 +195,7 @@ export declare const PivotTableWidgetConfigSchema: z.ZodObject<{
|
|
|
195
195
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
196
196
|
}, z.core.$strict>, z.ZodObject<{
|
|
197
197
|
source: z.ZodLiteral<"steps">;
|
|
198
|
-
steps: z.ZodArray<z.
|
|
199
|
-
name: z.ZodString;
|
|
200
|
-
resource: z.ZodString;
|
|
201
|
-
metric: z.ZodObject<{
|
|
202
|
-
agg: z.ZodEnum<{
|
|
203
|
-
sum: "sum";
|
|
204
|
-
count: "count";
|
|
205
|
-
count_distinct: "count_distinct";
|
|
206
|
-
avg: "avg";
|
|
207
|
-
min: "min";
|
|
208
|
-
max: "max";
|
|
209
|
-
median: "median";
|
|
210
|
-
}>;
|
|
211
|
-
field: z.ZodOptional<z.ZodString>;
|
|
212
|
-
as: z.ZodString;
|
|
213
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
214
|
-
}, z.core.$strict>;
|
|
215
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
216
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
198
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
217
199
|
name: z.ZodString;
|
|
218
200
|
resource: z.ZodString;
|
|
219
201
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -231,7 +213,7 @@ export declare const PivotTableWidgetConfigSchema: z.ZodObject<{
|
|
|
231
213
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
232
214
|
}, z.core.$strict>>;
|
|
233
215
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
234
|
-
}, z.core.$strict
|
|
216
|
+
}, z.core.$strict>>;
|
|
235
217
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
236
218
|
calc: z.ZodString;
|
|
237
219
|
as: z.ZodString;
|
|
@@ -129,25 +129,7 @@ export declare const TableWidgetConfigSchema: z.ZodObject<{
|
|
|
129
129
|
formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
130
130
|
}, z.core.$strict>, z.ZodObject<{
|
|
131
131
|
source: z.ZodLiteral<"steps">;
|
|
132
|
-
steps: z.ZodArray<z.
|
|
133
|
-
name: z.ZodString;
|
|
134
|
-
resource: z.ZodString;
|
|
135
|
-
metric: z.ZodObject<{
|
|
136
|
-
agg: z.ZodEnum<{
|
|
137
|
-
sum: "sum";
|
|
138
|
-
count: "count";
|
|
139
|
-
count_distinct: "count_distinct";
|
|
140
|
-
avg: "avg";
|
|
141
|
-
min: "min";
|
|
142
|
-
max: "max";
|
|
143
|
-
median: "median";
|
|
144
|
-
}>;
|
|
145
|
-
field: z.ZodOptional<z.ZodString>;
|
|
146
|
-
as: z.ZodString;
|
|
147
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
148
|
-
}, z.core.$strict>;
|
|
149
|
-
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
150
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
132
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
151
133
|
name: z.ZodString;
|
|
152
134
|
resource: z.ZodString;
|
|
153
135
|
select: z.ZodArray<z.ZodObject<{
|
|
@@ -165,7 +147,7 @@ export declare const TableWidgetConfigSchema: z.ZodObject<{
|
|
|
165
147
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
166
148
|
}, z.core.$strict>>;
|
|
167
149
|
filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
168
|
-
}, z.core.$strict
|
|
150
|
+
}, z.core.$strict>>;
|
|
169
151
|
calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
170
152
|
calc: z.ZodString;
|
|
171
153
|
as: z.ZodString;
|