@channel.io/app-sdk-core 0.7.3 → 0.8.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/dist/extensions/calendar.d.ts +4 -4
- package/dist/extensions/config.d.ts +394 -394
- package/dist/extensions/index.d.ts +1 -0
- package/dist/extensions/index.d.ts.map +1 -1
- package/dist/extensions/index.js +2 -0
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/interfaces/index.d.ts +1 -0
- package/dist/extensions/interfaces/index.d.ts.map +1 -1
- package/dist/extensions/interfaces/index.js +1 -0
- package/dist/extensions/interfaces/index.js.map +1 -1
- package/dist/extensions/interfaces/messaging.d.ts +36 -0
- package/dist/extensions/interfaces/messaging.d.ts.map +1 -0
- package/dist/extensions/interfaces/messaging.js +18 -0
- package/dist/extensions/interfaces/messaging.js.map +1 -0
- package/dist/extensions/messaging.d.ts +11248 -0
- package/dist/extensions/messaging.d.ts.map +1 -0
- package/dist/extensions/messaging.js +482 -0
- package/dist/extensions/messaging.js.map +1 -0
- package/dist/extensions/order.d.ts +8 -8
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -0
- package/dist/types/index.js.map +1 -1
- package/dist/types/native.d.ts +722 -0
- package/dist/types/native.d.ts.map +1 -0
- package/dist/types/native.js +2 -0
- package/dist/types/native.js.map +1 -0
- package/package.json +1 -1
|
@@ -41,13 +41,13 @@ export declare const ConfigInlineLinkSchema: z.ZodObject<{
|
|
|
41
41
|
label: z.ZodString;
|
|
42
42
|
url: z.ZodString;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
|
+
url: string;
|
|
44
45
|
label: string;
|
|
45
46
|
key: string;
|
|
46
|
-
url: string;
|
|
47
47
|
}, {
|
|
48
|
+
url: string;
|
|
48
49
|
label: string;
|
|
49
50
|
key: string;
|
|
50
|
-
url: string;
|
|
51
51
|
}>;
|
|
52
52
|
export type ConfigInlineLink = z.infer<typeof ConfigInlineLinkSchema>;
|
|
53
53
|
export declare const ConfigNoticeToneSchema: z.ZodEnum<["info", "success", "warning", "danger"]>;
|
|
@@ -68,8 +68,8 @@ export declare const ConfigValidationNoticeSchema: z.ZodObject<{
|
|
|
68
68
|
blockId?: string | undefined;
|
|
69
69
|
}, {
|
|
70
70
|
message: string;
|
|
71
|
-
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
72
71
|
title?: string | undefined;
|
|
72
|
+
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
73
73
|
placement?: "top" | "block" | undefined;
|
|
74
74
|
blockId?: string | undefined;
|
|
75
75
|
}>;
|
|
@@ -94,15 +94,15 @@ export declare const ConfigDraftResolutionParamsSchema: z.ZodObject<{
|
|
|
94
94
|
values: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
96
|
values: Record<string, unknown>;
|
|
97
|
-
scope: "manager" | "channel";
|
|
98
97
|
channelId: string;
|
|
98
|
+
scope: "manager" | "channel";
|
|
99
99
|
changedFieldKey: string;
|
|
100
100
|
managerId?: string | undefined;
|
|
101
101
|
changedValue?: unknown;
|
|
102
102
|
}, {
|
|
103
103
|
values: Record<string, unknown>;
|
|
104
|
-
scope: "manager" | "channel";
|
|
105
104
|
channelId: string;
|
|
105
|
+
scope: "manager" | "channel";
|
|
106
106
|
changedFieldKey: string;
|
|
107
107
|
managerId?: string | undefined;
|
|
108
108
|
changedValue?: unknown;
|
|
@@ -143,13 +143,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
143
143
|
label: z.ZodString;
|
|
144
144
|
url: z.ZodString;
|
|
145
145
|
}, "strip", z.ZodTypeAny, {
|
|
146
|
+
url: string;
|
|
146
147
|
label: string;
|
|
147
148
|
key: string;
|
|
148
|
-
url: string;
|
|
149
149
|
}, {
|
|
150
|
+
url: string;
|
|
150
151
|
label: string;
|
|
151
152
|
key: string;
|
|
152
|
-
url: string;
|
|
153
153
|
}>, "many">>;
|
|
154
154
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
155
155
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -221,9 +221,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
221
221
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
222
222
|
helperText?: string | undefined;
|
|
223
223
|
helperLinks?: {
|
|
224
|
+
url: string;
|
|
224
225
|
label: string;
|
|
225
226
|
key: string;
|
|
226
|
-
url: string;
|
|
227
227
|
}[] | undefined;
|
|
228
228
|
resolvesTo?: {
|
|
229
229
|
key: string;
|
|
@@ -256,9 +256,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
256
256
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
257
257
|
helperText?: string | undefined;
|
|
258
258
|
helperLinks?: {
|
|
259
|
+
url: string;
|
|
259
260
|
label: string;
|
|
260
261
|
key: string;
|
|
261
|
-
url: string;
|
|
262
262
|
}[] | undefined;
|
|
263
263
|
resolvesTo?: {
|
|
264
264
|
key: string;
|
|
@@ -287,13 +287,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
287
287
|
label: z.ZodString;
|
|
288
288
|
url: z.ZodString;
|
|
289
289
|
}, "strip", z.ZodTypeAny, {
|
|
290
|
+
url: string;
|
|
290
291
|
label: string;
|
|
291
292
|
key: string;
|
|
292
|
-
url: string;
|
|
293
293
|
}, {
|
|
294
|
+
url: string;
|
|
294
295
|
label: string;
|
|
295
296
|
key: string;
|
|
296
|
-
url: string;
|
|
297
297
|
}>, "many">>;
|
|
298
298
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
299
299
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -366,9 +366,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
366
366
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
367
367
|
helperText?: string | undefined;
|
|
368
368
|
helperLinks?: {
|
|
369
|
+
url: string;
|
|
369
370
|
label: string;
|
|
370
371
|
key: string;
|
|
371
|
-
url: string;
|
|
372
372
|
}[] | undefined;
|
|
373
373
|
resolvesTo?: {
|
|
374
374
|
key: string;
|
|
@@ -402,9 +402,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
402
402
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
403
403
|
helperText?: string | undefined;
|
|
404
404
|
helperLinks?: {
|
|
405
|
+
url: string;
|
|
405
406
|
label: string;
|
|
406
407
|
key: string;
|
|
407
|
-
url: string;
|
|
408
408
|
}[] | undefined;
|
|
409
409
|
resolvesTo?: {
|
|
410
410
|
key: string;
|
|
@@ -434,13 +434,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
434
434
|
label: z.ZodString;
|
|
435
435
|
url: z.ZodString;
|
|
436
436
|
}, "strip", z.ZodTypeAny, {
|
|
437
|
+
url: string;
|
|
437
438
|
label: string;
|
|
438
439
|
key: string;
|
|
439
|
-
url: string;
|
|
440
440
|
}, {
|
|
441
|
+
url: string;
|
|
441
442
|
label: string;
|
|
442
443
|
key: string;
|
|
443
|
-
url: string;
|
|
444
444
|
}>, "many">>;
|
|
445
445
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
446
446
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -514,9 +514,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
514
514
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
515
515
|
helperText?: string | undefined;
|
|
516
516
|
helperLinks?: {
|
|
517
|
+
url: string;
|
|
517
518
|
label: string;
|
|
518
519
|
key: string;
|
|
519
|
-
url: string;
|
|
520
520
|
}[] | undefined;
|
|
521
521
|
resolvesTo?: {
|
|
522
522
|
key: string;
|
|
@@ -550,9 +550,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
550
550
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
551
551
|
helperText?: string | undefined;
|
|
552
552
|
helperLinks?: {
|
|
553
|
+
url: string;
|
|
553
554
|
label: string;
|
|
554
555
|
key: string;
|
|
555
|
-
url: string;
|
|
556
556
|
}[] | undefined;
|
|
557
557
|
resolvesTo?: {
|
|
558
558
|
key: string;
|
|
@@ -581,13 +581,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
581
581
|
label: z.ZodString;
|
|
582
582
|
url: z.ZodString;
|
|
583
583
|
}, "strip", z.ZodTypeAny, {
|
|
584
|
+
url: string;
|
|
584
585
|
label: string;
|
|
585
586
|
key: string;
|
|
586
|
-
url: string;
|
|
587
587
|
}, {
|
|
588
|
+
url: string;
|
|
588
589
|
label: string;
|
|
589
590
|
key: string;
|
|
590
|
-
url: string;
|
|
591
591
|
}>, "many">>;
|
|
592
592
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
593
593
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -662,9 +662,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
662
662
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
663
663
|
helperText?: string | undefined;
|
|
664
664
|
helperLinks?: {
|
|
665
|
+
url: string;
|
|
665
666
|
label: string;
|
|
666
667
|
key: string;
|
|
667
|
-
url: string;
|
|
668
668
|
}[] | undefined;
|
|
669
669
|
resolvesTo?: {
|
|
670
670
|
key: string;
|
|
@@ -700,9 +700,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
700
700
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
701
701
|
helperText?: string | undefined;
|
|
702
702
|
helperLinks?: {
|
|
703
|
+
url: string;
|
|
703
704
|
label: string;
|
|
704
705
|
key: string;
|
|
705
|
-
url: string;
|
|
706
706
|
}[] | undefined;
|
|
707
707
|
resolvesTo?: {
|
|
708
708
|
key: string;
|
|
@@ -734,13 +734,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
734
734
|
label: z.ZodString;
|
|
735
735
|
url: z.ZodString;
|
|
736
736
|
}, "strip", z.ZodTypeAny, {
|
|
737
|
+
url: string;
|
|
737
738
|
label: string;
|
|
738
739
|
key: string;
|
|
739
|
-
url: string;
|
|
740
740
|
}, {
|
|
741
|
+
url: string;
|
|
741
742
|
label: string;
|
|
742
743
|
key: string;
|
|
743
|
-
url: string;
|
|
744
744
|
}>, "many">>;
|
|
745
745
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
746
746
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -834,9 +834,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
834
834
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
835
835
|
helperText?: string | undefined;
|
|
836
836
|
helperLinks?: {
|
|
837
|
+
url: string;
|
|
837
838
|
label: string;
|
|
838
839
|
key: string;
|
|
839
|
-
url: string;
|
|
840
840
|
}[] | undefined;
|
|
841
841
|
resolvesTo?: {
|
|
842
842
|
key: string;
|
|
@@ -875,9 +875,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
875
875
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
876
876
|
helperText?: string | undefined;
|
|
877
877
|
helperLinks?: {
|
|
878
|
+
url: string;
|
|
878
879
|
label: string;
|
|
879
880
|
key: string;
|
|
880
|
-
url: string;
|
|
881
881
|
}[] | undefined;
|
|
882
882
|
resolvesTo?: {
|
|
883
883
|
key: string;
|
|
@@ -906,13 +906,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
906
906
|
label: z.ZodString;
|
|
907
907
|
url: z.ZodString;
|
|
908
908
|
}, "strip", z.ZodTypeAny, {
|
|
909
|
+
url: string;
|
|
909
910
|
label: string;
|
|
910
911
|
key: string;
|
|
911
|
-
url: string;
|
|
912
912
|
}, {
|
|
913
|
+
url: string;
|
|
913
914
|
label: string;
|
|
914
915
|
key: string;
|
|
915
|
-
url: string;
|
|
916
916
|
}>, "many">>;
|
|
917
917
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
918
918
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -1008,9 +1008,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1008
1008
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1009
1009
|
helperText?: string | undefined;
|
|
1010
1010
|
helperLinks?: {
|
|
1011
|
+
url: string;
|
|
1011
1012
|
label: string;
|
|
1012
1013
|
key: string;
|
|
1013
|
-
url: string;
|
|
1014
1014
|
}[] | undefined;
|
|
1015
1015
|
resolvesTo?: {
|
|
1016
1016
|
key: string;
|
|
@@ -1051,9 +1051,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1051
1051
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1052
1052
|
helperText?: string | undefined;
|
|
1053
1053
|
helperLinks?: {
|
|
1054
|
+
url: string;
|
|
1054
1055
|
label: string;
|
|
1055
1056
|
key: string;
|
|
1056
|
-
url: string;
|
|
1057
1057
|
}[] | undefined;
|
|
1058
1058
|
resolvesTo?: {
|
|
1059
1059
|
key: string;
|
|
@@ -1084,13 +1084,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1084
1084
|
label: z.ZodString;
|
|
1085
1085
|
url: z.ZodString;
|
|
1086
1086
|
}, "strip", z.ZodTypeAny, {
|
|
1087
|
+
url: string;
|
|
1087
1088
|
label: string;
|
|
1088
1089
|
key: string;
|
|
1089
|
-
url: string;
|
|
1090
1090
|
}, {
|
|
1091
|
+
url: string;
|
|
1091
1092
|
label: string;
|
|
1092
1093
|
key: string;
|
|
1093
|
-
url: string;
|
|
1094
1094
|
}>, "many">>;
|
|
1095
1095
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1096
1096
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -1184,9 +1184,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1184
1184
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1185
1185
|
helperText?: string | undefined;
|
|
1186
1186
|
helperLinks?: {
|
|
1187
|
+
url: string;
|
|
1187
1188
|
label: string;
|
|
1188
1189
|
key: string;
|
|
1189
|
-
url: string;
|
|
1190
1190
|
}[] | undefined;
|
|
1191
1191
|
resolvesTo?: {
|
|
1192
1192
|
key: string;
|
|
@@ -1225,9 +1225,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1225
1225
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1226
1226
|
helperText?: string | undefined;
|
|
1227
1227
|
helperLinks?: {
|
|
1228
|
+
url: string;
|
|
1228
1229
|
label: string;
|
|
1229
1230
|
key: string;
|
|
1230
|
-
url: string;
|
|
1231
1231
|
}[] | undefined;
|
|
1232
1232
|
resolvesTo?: {
|
|
1233
1233
|
key: string;
|
|
@@ -1256,13 +1256,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1256
1256
|
label: z.ZodString;
|
|
1257
1257
|
url: z.ZodString;
|
|
1258
1258
|
}, "strip", z.ZodTypeAny, {
|
|
1259
|
+
url: string;
|
|
1259
1260
|
label: string;
|
|
1260
1261
|
key: string;
|
|
1261
|
-
url: string;
|
|
1262
1262
|
}, {
|
|
1263
|
+
url: string;
|
|
1263
1264
|
label: string;
|
|
1264
1265
|
key: string;
|
|
1265
|
-
url: string;
|
|
1266
1266
|
}>, "many">>;
|
|
1267
1267
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1268
1268
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -1334,9 +1334,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1334
1334
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1335
1335
|
helperText?: string | undefined;
|
|
1336
1336
|
helperLinks?: {
|
|
1337
|
+
url: string;
|
|
1337
1338
|
label: string;
|
|
1338
1339
|
key: string;
|
|
1339
|
-
url: string;
|
|
1340
1340
|
}[] | undefined;
|
|
1341
1341
|
resolvesTo?: {
|
|
1342
1342
|
key: string;
|
|
@@ -1369,9 +1369,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1369
1369
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1370
1370
|
helperText?: string | undefined;
|
|
1371
1371
|
helperLinks?: {
|
|
1372
|
+
url: string;
|
|
1372
1373
|
label: string;
|
|
1373
1374
|
key: string;
|
|
1374
|
-
url: string;
|
|
1375
1375
|
}[] | undefined;
|
|
1376
1376
|
resolvesTo?: {
|
|
1377
1377
|
key: string;
|
|
@@ -1400,13 +1400,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1400
1400
|
label: z.ZodString;
|
|
1401
1401
|
url: z.ZodString;
|
|
1402
1402
|
}, "strip", z.ZodTypeAny, {
|
|
1403
|
+
url: string;
|
|
1403
1404
|
label: string;
|
|
1404
1405
|
key: string;
|
|
1405
|
-
url: string;
|
|
1406
1406
|
}, {
|
|
1407
|
+
url: string;
|
|
1407
1408
|
label: string;
|
|
1408
1409
|
key: string;
|
|
1409
|
-
url: string;
|
|
1410
1410
|
}>, "many">>;
|
|
1411
1411
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1412
1412
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -1478,9 +1478,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1478
1478
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1479
1479
|
helperText?: string | undefined;
|
|
1480
1480
|
helperLinks?: {
|
|
1481
|
+
url: string;
|
|
1481
1482
|
label: string;
|
|
1482
1483
|
key: string;
|
|
1483
|
-
url: string;
|
|
1484
1484
|
}[] | undefined;
|
|
1485
1485
|
resolvesTo?: {
|
|
1486
1486
|
key: string;
|
|
@@ -1513,9 +1513,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1513
1513
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1514
1514
|
helperText?: string | undefined;
|
|
1515
1515
|
helperLinks?: {
|
|
1516
|
+
url: string;
|
|
1516
1517
|
label: string;
|
|
1517
1518
|
key: string;
|
|
1518
|
-
url: string;
|
|
1519
1519
|
}[] | undefined;
|
|
1520
1520
|
resolvesTo?: {
|
|
1521
1521
|
key: string;
|
|
@@ -1544,13 +1544,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1544
1544
|
label: z.ZodString;
|
|
1545
1545
|
url: z.ZodString;
|
|
1546
1546
|
}, "strip", z.ZodTypeAny, {
|
|
1547
|
+
url: string;
|
|
1547
1548
|
label: string;
|
|
1548
1549
|
key: string;
|
|
1549
|
-
url: string;
|
|
1550
1550
|
}, {
|
|
1551
|
+
url: string;
|
|
1551
1552
|
label: string;
|
|
1552
1553
|
key: string;
|
|
1553
|
-
url: string;
|
|
1554
1554
|
}>, "many">>;
|
|
1555
1555
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1556
1556
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -1651,9 +1651,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1651
1651
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1652
1652
|
helperText?: string | undefined;
|
|
1653
1653
|
helperLinks?: {
|
|
1654
|
+
url: string;
|
|
1654
1655
|
label: string;
|
|
1655
1656
|
key: string;
|
|
1656
|
-
url: string;
|
|
1657
1657
|
}[] | undefined;
|
|
1658
1658
|
resolvesTo?: {
|
|
1659
1659
|
key: string;
|
|
@@ -1699,9 +1699,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1699
1699
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1700
1700
|
helperText?: string | undefined;
|
|
1701
1701
|
helperLinks?: {
|
|
1702
|
+
url: string;
|
|
1702
1703
|
label: string;
|
|
1703
1704
|
key: string;
|
|
1704
|
-
url: string;
|
|
1705
1705
|
}[] | undefined;
|
|
1706
1706
|
resolvesTo?: {
|
|
1707
1707
|
key: string;
|
|
@@ -1743,13 +1743,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1743
1743
|
label: z.ZodString;
|
|
1744
1744
|
url: z.ZodString;
|
|
1745
1745
|
}, "strip", z.ZodTypeAny, {
|
|
1746
|
+
url: string;
|
|
1746
1747
|
label: string;
|
|
1747
1748
|
key: string;
|
|
1748
|
-
url: string;
|
|
1749
1749
|
}, {
|
|
1750
|
+
url: string;
|
|
1750
1751
|
label: string;
|
|
1751
1752
|
key: string;
|
|
1752
|
-
url: string;
|
|
1753
1753
|
}>, "many">>;
|
|
1754
1754
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1755
1755
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -1867,9 +1867,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1867
1867
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1868
1868
|
helperText?: string | undefined;
|
|
1869
1869
|
helperLinks?: {
|
|
1870
|
+
url: string;
|
|
1870
1871
|
label: string;
|
|
1871
1872
|
key: string;
|
|
1872
|
-
url: string;
|
|
1873
1873
|
}[] | undefined;
|
|
1874
1874
|
resolvesTo?: {
|
|
1875
1875
|
key: string;
|
|
@@ -1924,9 +1924,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1924
1924
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
1925
1925
|
helperText?: string | undefined;
|
|
1926
1926
|
helperLinks?: {
|
|
1927
|
+
url: string;
|
|
1927
1928
|
label: string;
|
|
1928
1929
|
key: string;
|
|
1929
|
-
url: string;
|
|
1930
1930
|
}[] | undefined;
|
|
1931
1931
|
resolvesTo?: {
|
|
1932
1932
|
key: string;
|
|
@@ -1977,13 +1977,13 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
1977
1977
|
label: z.ZodString;
|
|
1978
1978
|
url: z.ZodString;
|
|
1979
1979
|
}, "strip", z.ZodTypeAny, {
|
|
1980
|
+
url: string;
|
|
1980
1981
|
label: string;
|
|
1981
1982
|
key: string;
|
|
1982
|
-
url: string;
|
|
1983
1983
|
}, {
|
|
1984
|
+
url: string;
|
|
1984
1985
|
label: string;
|
|
1985
1986
|
key: string;
|
|
1986
|
-
url: string;
|
|
1987
1987
|
}>, "many">>;
|
|
1988
1988
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1989
1989
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -2058,9 +2058,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
2058
2058
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2059
2059
|
helperText?: string | undefined;
|
|
2060
2060
|
helperLinks?: {
|
|
2061
|
+
url: string;
|
|
2061
2062
|
label: string;
|
|
2062
2063
|
key: string;
|
|
2063
|
-
url: string;
|
|
2064
2064
|
}[] | undefined;
|
|
2065
2065
|
resolvesTo?: {
|
|
2066
2066
|
key: string;
|
|
@@ -2096,9 +2096,9 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
2096
2096
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2097
2097
|
helperText?: string | undefined;
|
|
2098
2098
|
helperLinks?: {
|
|
2099
|
+
url: string;
|
|
2099
2100
|
label: string;
|
|
2100
2101
|
key: string;
|
|
2101
|
-
url: string;
|
|
2102
2102
|
}[] | undefined;
|
|
2103
2103
|
resolvesTo?: {
|
|
2104
2104
|
key: string;
|
|
@@ -2143,23 +2143,23 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2143
2143
|
}, "strip", z.ZodTypeAny, {
|
|
2144
2144
|
type: "section";
|
|
2145
2145
|
title: string;
|
|
2146
|
+
id?: string | undefined;
|
|
2146
2147
|
description?: string | undefined;
|
|
2147
2148
|
visibleWhen?: {
|
|
2148
2149
|
fieldKey: string;
|
|
2149
2150
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
2150
2151
|
value?: unknown;
|
|
2151
2152
|
}[] | undefined;
|
|
2152
|
-
id?: string | undefined;
|
|
2153
2153
|
}, {
|
|
2154
2154
|
type: "section";
|
|
2155
2155
|
title: string;
|
|
2156
|
+
id?: string | undefined;
|
|
2156
2157
|
description?: string | undefined;
|
|
2157
2158
|
visibleWhen?: {
|
|
2158
2159
|
fieldKey: string;
|
|
2159
2160
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
2160
2161
|
value?: unknown;
|
|
2161
2162
|
}[] | undefined;
|
|
2162
|
-
id?: string | undefined;
|
|
2163
2163
|
}>, z.ZodObject<{
|
|
2164
2164
|
id: z.ZodOptional<z.ZodString>;
|
|
2165
2165
|
type: z.ZodLiteral<"description">;
|
|
@@ -2169,13 +2169,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2169
2169
|
label: z.ZodString;
|
|
2170
2170
|
url: z.ZodString;
|
|
2171
2171
|
}, "strip", z.ZodTypeAny, {
|
|
2172
|
+
url: string;
|
|
2172
2173
|
label: string;
|
|
2173
2174
|
key: string;
|
|
2174
|
-
url: string;
|
|
2175
2175
|
}, {
|
|
2176
|
+
url: string;
|
|
2176
2177
|
label: string;
|
|
2177
2178
|
key: string;
|
|
2178
|
-
url: string;
|
|
2179
2179
|
}>, "many">>;
|
|
2180
2180
|
visibleWhen: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2181
2181
|
fieldKey: z.ZodString;
|
|
@@ -2193,31 +2193,31 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2193
2193
|
}, "strip", z.ZodTypeAny, {
|
|
2194
2194
|
type: "description";
|
|
2195
2195
|
text: string;
|
|
2196
|
+
id?: string | undefined;
|
|
2196
2197
|
helperLinks?: {
|
|
2198
|
+
url: string;
|
|
2197
2199
|
label: string;
|
|
2198
2200
|
key: string;
|
|
2199
|
-
url: string;
|
|
2200
2201
|
}[] | undefined;
|
|
2201
2202
|
visibleWhen?: {
|
|
2202
2203
|
fieldKey: string;
|
|
2203
2204
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
2204
2205
|
value?: unknown;
|
|
2205
2206
|
}[] | undefined;
|
|
2206
|
-
id?: string | undefined;
|
|
2207
2207
|
}, {
|
|
2208
2208
|
type: "description";
|
|
2209
2209
|
text: string;
|
|
2210
|
+
id?: string | undefined;
|
|
2210
2211
|
helperLinks?: {
|
|
2212
|
+
url: string;
|
|
2211
2213
|
label: string;
|
|
2212
2214
|
key: string;
|
|
2213
|
-
url: string;
|
|
2214
2215
|
}[] | undefined;
|
|
2215
2216
|
visibleWhen?: {
|
|
2216
2217
|
fieldKey: string;
|
|
2217
2218
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
2218
2219
|
value?: unknown;
|
|
2219
2220
|
}[] | undefined;
|
|
2220
|
-
id?: string | undefined;
|
|
2221
2221
|
}>, z.ZodObject<{
|
|
2222
2222
|
id: z.ZodOptional<z.ZodString>;
|
|
2223
2223
|
type: z.ZodLiteral<"divider">;
|
|
@@ -2236,20 +2236,20 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2236
2236
|
}>, "many">>;
|
|
2237
2237
|
}, "strip", z.ZodTypeAny, {
|
|
2238
2238
|
type: "divider";
|
|
2239
|
+
id?: string | undefined;
|
|
2239
2240
|
visibleWhen?: {
|
|
2240
2241
|
fieldKey: string;
|
|
2241
2242
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
2242
2243
|
value?: unknown;
|
|
2243
2244
|
}[] | undefined;
|
|
2244
|
-
id?: string | undefined;
|
|
2245
2245
|
}, {
|
|
2246
2246
|
type: "divider";
|
|
2247
|
+
id?: string | undefined;
|
|
2247
2248
|
visibleWhen?: {
|
|
2248
2249
|
fieldKey: string;
|
|
2249
2250
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
2250
2251
|
value?: unknown;
|
|
2251
2252
|
}[] | undefined;
|
|
2252
|
-
id?: string | undefined;
|
|
2253
2253
|
}>, z.ZodObject<{
|
|
2254
2254
|
id: z.ZodOptional<z.ZodString>;
|
|
2255
2255
|
type: z.ZodLiteral<"banner">;
|
|
@@ -2273,24 +2273,24 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2273
2273
|
type: "banner";
|
|
2274
2274
|
description: string;
|
|
2275
2275
|
tone: "info" | "success" | "warning" | "danger";
|
|
2276
|
+
id?: string | undefined;
|
|
2276
2277
|
title?: string | undefined;
|
|
2277
2278
|
visibleWhen?: {
|
|
2278
2279
|
fieldKey: string;
|
|
2279
2280
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
2280
2281
|
value?: unknown;
|
|
2281
2282
|
}[] | undefined;
|
|
2282
|
-
id?: string | undefined;
|
|
2283
2283
|
}, {
|
|
2284
2284
|
type: "banner";
|
|
2285
2285
|
description: string;
|
|
2286
|
-
|
|
2286
|
+
id?: string | undefined;
|
|
2287
2287
|
title?: string | undefined;
|
|
2288
|
+
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
2288
2289
|
visibleWhen?: {
|
|
2289
2290
|
fieldKey: string;
|
|
2290
2291
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
2291
2292
|
value?: unknown;
|
|
2292
2293
|
}[] | undefined;
|
|
2293
|
-
id?: string | undefined;
|
|
2294
2294
|
}>, z.ZodObject<{
|
|
2295
2295
|
id: z.ZodOptional<z.ZodString>;
|
|
2296
2296
|
type: z.ZodLiteral<"group">;
|
|
@@ -2320,13 +2320,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2320
2320
|
label: z.ZodString;
|
|
2321
2321
|
url: z.ZodString;
|
|
2322
2322
|
}, "strip", z.ZodTypeAny, {
|
|
2323
|
+
url: string;
|
|
2323
2324
|
label: string;
|
|
2324
2325
|
key: string;
|
|
2325
|
-
url: string;
|
|
2326
2326
|
}, {
|
|
2327
|
+
url: string;
|
|
2327
2328
|
label: string;
|
|
2328
2329
|
key: string;
|
|
2329
|
-
url: string;
|
|
2330
2330
|
}>, "many">>;
|
|
2331
2331
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2332
2332
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -2398,9 +2398,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2398
2398
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2399
2399
|
helperText?: string | undefined;
|
|
2400
2400
|
helperLinks?: {
|
|
2401
|
+
url: string;
|
|
2401
2402
|
label: string;
|
|
2402
2403
|
key: string;
|
|
2403
|
-
url: string;
|
|
2404
2404
|
}[] | undefined;
|
|
2405
2405
|
resolvesTo?: {
|
|
2406
2406
|
key: string;
|
|
@@ -2433,9 +2433,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2433
2433
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2434
2434
|
helperText?: string | undefined;
|
|
2435
2435
|
helperLinks?: {
|
|
2436
|
+
url: string;
|
|
2436
2437
|
label: string;
|
|
2437
2438
|
key: string;
|
|
2438
|
-
url: string;
|
|
2439
2439
|
}[] | undefined;
|
|
2440
2440
|
resolvesTo?: {
|
|
2441
2441
|
key: string;
|
|
@@ -2464,13 +2464,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2464
2464
|
label: z.ZodString;
|
|
2465
2465
|
url: z.ZodString;
|
|
2466
2466
|
}, "strip", z.ZodTypeAny, {
|
|
2467
|
+
url: string;
|
|
2467
2468
|
label: string;
|
|
2468
2469
|
key: string;
|
|
2469
|
-
url: string;
|
|
2470
2470
|
}, {
|
|
2471
|
+
url: string;
|
|
2471
2472
|
label: string;
|
|
2472
2473
|
key: string;
|
|
2473
|
-
url: string;
|
|
2474
2474
|
}>, "many">>;
|
|
2475
2475
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2476
2476
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -2543,9 +2543,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2543
2543
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2544
2544
|
helperText?: string | undefined;
|
|
2545
2545
|
helperLinks?: {
|
|
2546
|
+
url: string;
|
|
2546
2547
|
label: string;
|
|
2547
2548
|
key: string;
|
|
2548
|
-
url: string;
|
|
2549
2549
|
}[] | undefined;
|
|
2550
2550
|
resolvesTo?: {
|
|
2551
2551
|
key: string;
|
|
@@ -2579,9 +2579,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2579
2579
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2580
2580
|
helperText?: string | undefined;
|
|
2581
2581
|
helperLinks?: {
|
|
2582
|
+
url: string;
|
|
2582
2583
|
label: string;
|
|
2583
2584
|
key: string;
|
|
2584
|
-
url: string;
|
|
2585
2585
|
}[] | undefined;
|
|
2586
2586
|
resolvesTo?: {
|
|
2587
2587
|
key: string;
|
|
@@ -2611,13 +2611,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2611
2611
|
label: z.ZodString;
|
|
2612
2612
|
url: z.ZodString;
|
|
2613
2613
|
}, "strip", z.ZodTypeAny, {
|
|
2614
|
+
url: string;
|
|
2614
2615
|
label: string;
|
|
2615
2616
|
key: string;
|
|
2616
|
-
url: string;
|
|
2617
2617
|
}, {
|
|
2618
|
+
url: string;
|
|
2618
2619
|
label: string;
|
|
2619
2620
|
key: string;
|
|
2620
|
-
url: string;
|
|
2621
2621
|
}>, "many">>;
|
|
2622
2622
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2623
2623
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -2691,9 +2691,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2691
2691
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2692
2692
|
helperText?: string | undefined;
|
|
2693
2693
|
helperLinks?: {
|
|
2694
|
+
url: string;
|
|
2694
2695
|
label: string;
|
|
2695
2696
|
key: string;
|
|
2696
|
-
url: string;
|
|
2697
2697
|
}[] | undefined;
|
|
2698
2698
|
resolvesTo?: {
|
|
2699
2699
|
key: string;
|
|
@@ -2727,9 +2727,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2727
2727
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2728
2728
|
helperText?: string | undefined;
|
|
2729
2729
|
helperLinks?: {
|
|
2730
|
+
url: string;
|
|
2730
2731
|
label: string;
|
|
2731
2732
|
key: string;
|
|
2732
|
-
url: string;
|
|
2733
2733
|
}[] | undefined;
|
|
2734
2734
|
resolvesTo?: {
|
|
2735
2735
|
key: string;
|
|
@@ -2758,13 +2758,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2758
2758
|
label: z.ZodString;
|
|
2759
2759
|
url: z.ZodString;
|
|
2760
2760
|
}, "strip", z.ZodTypeAny, {
|
|
2761
|
+
url: string;
|
|
2761
2762
|
label: string;
|
|
2762
2763
|
key: string;
|
|
2763
|
-
url: string;
|
|
2764
2764
|
}, {
|
|
2765
|
+
url: string;
|
|
2765
2766
|
label: string;
|
|
2766
2767
|
key: string;
|
|
2767
|
-
url: string;
|
|
2768
2768
|
}>, "many">>;
|
|
2769
2769
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2770
2770
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -2839,9 +2839,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2839
2839
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2840
2840
|
helperText?: string | undefined;
|
|
2841
2841
|
helperLinks?: {
|
|
2842
|
+
url: string;
|
|
2842
2843
|
label: string;
|
|
2843
2844
|
key: string;
|
|
2844
|
-
url: string;
|
|
2845
2845
|
}[] | undefined;
|
|
2846
2846
|
resolvesTo?: {
|
|
2847
2847
|
key: string;
|
|
@@ -2877,9 +2877,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2877
2877
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
2878
2878
|
helperText?: string | undefined;
|
|
2879
2879
|
helperLinks?: {
|
|
2880
|
+
url: string;
|
|
2880
2881
|
label: string;
|
|
2881
2882
|
key: string;
|
|
2882
|
-
url: string;
|
|
2883
2883
|
}[] | undefined;
|
|
2884
2884
|
resolvesTo?: {
|
|
2885
2885
|
key: string;
|
|
@@ -2911,13 +2911,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2911
2911
|
label: z.ZodString;
|
|
2912
2912
|
url: z.ZodString;
|
|
2913
2913
|
}, "strip", z.ZodTypeAny, {
|
|
2914
|
+
url: string;
|
|
2914
2915
|
label: string;
|
|
2915
2916
|
key: string;
|
|
2916
|
-
url: string;
|
|
2917
2917
|
}, {
|
|
2918
|
+
url: string;
|
|
2918
2919
|
label: string;
|
|
2919
2920
|
key: string;
|
|
2920
|
-
url: string;
|
|
2921
2921
|
}>, "many">>;
|
|
2922
2922
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2923
2923
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -3011,9 +3011,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3011
3011
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3012
3012
|
helperText?: string | undefined;
|
|
3013
3013
|
helperLinks?: {
|
|
3014
|
+
url: string;
|
|
3014
3015
|
label: string;
|
|
3015
3016
|
key: string;
|
|
3016
|
-
url: string;
|
|
3017
3017
|
}[] | undefined;
|
|
3018
3018
|
resolvesTo?: {
|
|
3019
3019
|
key: string;
|
|
@@ -3052,9 +3052,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3052
3052
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3053
3053
|
helperText?: string | undefined;
|
|
3054
3054
|
helperLinks?: {
|
|
3055
|
+
url: string;
|
|
3055
3056
|
label: string;
|
|
3056
3057
|
key: string;
|
|
3057
|
-
url: string;
|
|
3058
3058
|
}[] | undefined;
|
|
3059
3059
|
resolvesTo?: {
|
|
3060
3060
|
key: string;
|
|
@@ -3083,13 +3083,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3083
3083
|
label: z.ZodString;
|
|
3084
3084
|
url: z.ZodString;
|
|
3085
3085
|
}, "strip", z.ZodTypeAny, {
|
|
3086
|
+
url: string;
|
|
3086
3087
|
label: string;
|
|
3087
3088
|
key: string;
|
|
3088
|
-
url: string;
|
|
3089
3089
|
}, {
|
|
3090
|
+
url: string;
|
|
3090
3091
|
label: string;
|
|
3091
3092
|
key: string;
|
|
3092
|
-
url: string;
|
|
3093
3093
|
}>, "many">>;
|
|
3094
3094
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3095
3095
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -3185,9 +3185,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3185
3185
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3186
3186
|
helperText?: string | undefined;
|
|
3187
3187
|
helperLinks?: {
|
|
3188
|
+
url: string;
|
|
3188
3189
|
label: string;
|
|
3189
3190
|
key: string;
|
|
3190
|
-
url: string;
|
|
3191
3191
|
}[] | undefined;
|
|
3192
3192
|
resolvesTo?: {
|
|
3193
3193
|
key: string;
|
|
@@ -3228,9 +3228,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3228
3228
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3229
3229
|
helperText?: string | undefined;
|
|
3230
3230
|
helperLinks?: {
|
|
3231
|
+
url: string;
|
|
3231
3232
|
label: string;
|
|
3232
3233
|
key: string;
|
|
3233
|
-
url: string;
|
|
3234
3234
|
}[] | undefined;
|
|
3235
3235
|
resolvesTo?: {
|
|
3236
3236
|
key: string;
|
|
@@ -3261,13 +3261,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3261
3261
|
label: z.ZodString;
|
|
3262
3262
|
url: z.ZodString;
|
|
3263
3263
|
}, "strip", z.ZodTypeAny, {
|
|
3264
|
+
url: string;
|
|
3264
3265
|
label: string;
|
|
3265
3266
|
key: string;
|
|
3266
|
-
url: string;
|
|
3267
3267
|
}, {
|
|
3268
|
+
url: string;
|
|
3268
3269
|
label: string;
|
|
3269
3270
|
key: string;
|
|
3270
|
-
url: string;
|
|
3271
3271
|
}>, "many">>;
|
|
3272
3272
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3273
3273
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -3361,9 +3361,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3361
3361
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3362
3362
|
helperText?: string | undefined;
|
|
3363
3363
|
helperLinks?: {
|
|
3364
|
+
url: string;
|
|
3364
3365
|
label: string;
|
|
3365
3366
|
key: string;
|
|
3366
|
-
url: string;
|
|
3367
3367
|
}[] | undefined;
|
|
3368
3368
|
resolvesTo?: {
|
|
3369
3369
|
key: string;
|
|
@@ -3402,9 +3402,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3402
3402
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3403
3403
|
helperText?: string | undefined;
|
|
3404
3404
|
helperLinks?: {
|
|
3405
|
+
url: string;
|
|
3405
3406
|
label: string;
|
|
3406
3407
|
key: string;
|
|
3407
|
-
url: string;
|
|
3408
3408
|
}[] | undefined;
|
|
3409
3409
|
resolvesTo?: {
|
|
3410
3410
|
key: string;
|
|
@@ -3433,13 +3433,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3433
3433
|
label: z.ZodString;
|
|
3434
3434
|
url: z.ZodString;
|
|
3435
3435
|
}, "strip", z.ZodTypeAny, {
|
|
3436
|
+
url: string;
|
|
3436
3437
|
label: string;
|
|
3437
3438
|
key: string;
|
|
3438
|
-
url: string;
|
|
3439
3439
|
}, {
|
|
3440
|
+
url: string;
|
|
3440
3441
|
label: string;
|
|
3441
3442
|
key: string;
|
|
3442
|
-
url: string;
|
|
3443
3443
|
}>, "many">>;
|
|
3444
3444
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3445
3445
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -3511,9 +3511,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3511
3511
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3512
3512
|
helperText?: string | undefined;
|
|
3513
3513
|
helperLinks?: {
|
|
3514
|
+
url: string;
|
|
3514
3515
|
label: string;
|
|
3515
3516
|
key: string;
|
|
3516
|
-
url: string;
|
|
3517
3517
|
}[] | undefined;
|
|
3518
3518
|
resolvesTo?: {
|
|
3519
3519
|
key: string;
|
|
@@ -3546,9 +3546,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3546
3546
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3547
3547
|
helperText?: string | undefined;
|
|
3548
3548
|
helperLinks?: {
|
|
3549
|
+
url: string;
|
|
3549
3550
|
label: string;
|
|
3550
3551
|
key: string;
|
|
3551
|
-
url: string;
|
|
3552
3552
|
}[] | undefined;
|
|
3553
3553
|
resolvesTo?: {
|
|
3554
3554
|
key: string;
|
|
@@ -3577,13 +3577,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3577
3577
|
label: z.ZodString;
|
|
3578
3578
|
url: z.ZodString;
|
|
3579
3579
|
}, "strip", z.ZodTypeAny, {
|
|
3580
|
+
url: string;
|
|
3580
3581
|
label: string;
|
|
3581
3582
|
key: string;
|
|
3582
|
-
url: string;
|
|
3583
3583
|
}, {
|
|
3584
|
+
url: string;
|
|
3584
3585
|
label: string;
|
|
3585
3586
|
key: string;
|
|
3586
|
-
url: string;
|
|
3587
3587
|
}>, "many">>;
|
|
3588
3588
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3589
3589
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -3655,9 +3655,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3655
3655
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3656
3656
|
helperText?: string | undefined;
|
|
3657
3657
|
helperLinks?: {
|
|
3658
|
+
url: string;
|
|
3658
3659
|
label: string;
|
|
3659
3660
|
key: string;
|
|
3660
|
-
url: string;
|
|
3661
3661
|
}[] | undefined;
|
|
3662
3662
|
resolvesTo?: {
|
|
3663
3663
|
key: string;
|
|
@@ -3690,9 +3690,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3690
3690
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3691
3691
|
helperText?: string | undefined;
|
|
3692
3692
|
helperLinks?: {
|
|
3693
|
+
url: string;
|
|
3693
3694
|
label: string;
|
|
3694
3695
|
key: string;
|
|
3695
|
-
url: string;
|
|
3696
3696
|
}[] | undefined;
|
|
3697
3697
|
resolvesTo?: {
|
|
3698
3698
|
key: string;
|
|
@@ -3721,13 +3721,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3721
3721
|
label: z.ZodString;
|
|
3722
3722
|
url: z.ZodString;
|
|
3723
3723
|
}, "strip", z.ZodTypeAny, {
|
|
3724
|
+
url: string;
|
|
3724
3725
|
label: string;
|
|
3725
3726
|
key: string;
|
|
3726
|
-
url: string;
|
|
3727
3727
|
}, {
|
|
3728
|
+
url: string;
|
|
3728
3729
|
label: string;
|
|
3729
3730
|
key: string;
|
|
3730
|
-
url: string;
|
|
3731
3731
|
}>, "many">>;
|
|
3732
3732
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3733
3733
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -3828,9 +3828,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3828
3828
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3829
3829
|
helperText?: string | undefined;
|
|
3830
3830
|
helperLinks?: {
|
|
3831
|
+
url: string;
|
|
3831
3832
|
label: string;
|
|
3832
3833
|
key: string;
|
|
3833
|
-
url: string;
|
|
3834
3834
|
}[] | undefined;
|
|
3835
3835
|
resolvesTo?: {
|
|
3836
3836
|
key: string;
|
|
@@ -3876,9 +3876,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3876
3876
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
3877
3877
|
helperText?: string | undefined;
|
|
3878
3878
|
helperLinks?: {
|
|
3879
|
+
url: string;
|
|
3879
3880
|
label: string;
|
|
3880
3881
|
key: string;
|
|
3881
|
-
url: string;
|
|
3882
3882
|
}[] | undefined;
|
|
3883
3883
|
resolvesTo?: {
|
|
3884
3884
|
key: string;
|
|
@@ -3920,13 +3920,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3920
3920
|
label: z.ZodString;
|
|
3921
3921
|
url: z.ZodString;
|
|
3922
3922
|
}, "strip", z.ZodTypeAny, {
|
|
3923
|
+
url: string;
|
|
3923
3924
|
label: string;
|
|
3924
3925
|
key: string;
|
|
3925
|
-
url: string;
|
|
3926
3926
|
}, {
|
|
3927
|
+
url: string;
|
|
3927
3928
|
label: string;
|
|
3928
3929
|
key: string;
|
|
3929
|
-
url: string;
|
|
3930
3930
|
}>, "many">>;
|
|
3931
3931
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3932
3932
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -4044,9 +4044,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4044
4044
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4045
4045
|
helperText?: string | undefined;
|
|
4046
4046
|
helperLinks?: {
|
|
4047
|
+
url: string;
|
|
4047
4048
|
label: string;
|
|
4048
4049
|
key: string;
|
|
4049
|
-
url: string;
|
|
4050
4050
|
}[] | undefined;
|
|
4051
4051
|
resolvesTo?: {
|
|
4052
4052
|
key: string;
|
|
@@ -4101,9 +4101,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4101
4101
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4102
4102
|
helperText?: string | undefined;
|
|
4103
4103
|
helperLinks?: {
|
|
4104
|
+
url: string;
|
|
4104
4105
|
label: string;
|
|
4105
4106
|
key: string;
|
|
4106
|
-
url: string;
|
|
4107
4107
|
}[] | undefined;
|
|
4108
4108
|
resolvesTo?: {
|
|
4109
4109
|
key: string;
|
|
@@ -4154,13 +4154,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4154
4154
|
label: z.ZodString;
|
|
4155
4155
|
url: z.ZodString;
|
|
4156
4156
|
}, "strip", z.ZodTypeAny, {
|
|
4157
|
+
url: string;
|
|
4157
4158
|
label: string;
|
|
4158
4159
|
key: string;
|
|
4159
|
-
url: string;
|
|
4160
4160
|
}, {
|
|
4161
|
+
url: string;
|
|
4161
4162
|
label: string;
|
|
4162
4163
|
key: string;
|
|
4163
|
-
url: string;
|
|
4164
4164
|
}>, "many">>;
|
|
4165
4165
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
4166
4166
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -4235,9 +4235,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4235
4235
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4236
4236
|
helperText?: string | undefined;
|
|
4237
4237
|
helperLinks?: {
|
|
4238
|
+
url: string;
|
|
4238
4239
|
label: string;
|
|
4239
4240
|
key: string;
|
|
4240
|
-
url: string;
|
|
4241
4241
|
}[] | undefined;
|
|
4242
4242
|
resolvesTo?: {
|
|
4243
4243
|
key: string;
|
|
@@ -4273,9 +4273,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4273
4273
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4274
4274
|
helperText?: string | undefined;
|
|
4275
4275
|
helperLinks?: {
|
|
4276
|
+
url: string;
|
|
4276
4277
|
label: string;
|
|
4277
4278
|
key: string;
|
|
4278
|
-
url: string;
|
|
4279
4279
|
}[] | undefined;
|
|
4280
4280
|
resolvesTo?: {
|
|
4281
4281
|
key: string;
|
|
@@ -4314,9 +4314,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4314
4314
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4315
4315
|
helperText?: string | undefined;
|
|
4316
4316
|
helperLinks?: {
|
|
4317
|
+
url: string;
|
|
4317
4318
|
label: string;
|
|
4318
4319
|
key: string;
|
|
4319
|
-
url: string;
|
|
4320
4320
|
}[] | undefined;
|
|
4321
4321
|
resolvesTo?: {
|
|
4322
4322
|
key: string;
|
|
@@ -4349,9 +4349,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4349
4349
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4350
4350
|
helperText?: string | undefined;
|
|
4351
4351
|
helperLinks?: {
|
|
4352
|
+
url: string;
|
|
4352
4353
|
label: string;
|
|
4353
4354
|
key: string;
|
|
4354
|
-
url: string;
|
|
4355
4355
|
}[] | undefined;
|
|
4356
4356
|
resolvesTo?: {
|
|
4357
4357
|
key: string;
|
|
@@ -4386,9 +4386,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4386
4386
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4387
4387
|
helperText?: string | undefined;
|
|
4388
4388
|
helperLinks?: {
|
|
4389
|
+
url: string;
|
|
4389
4390
|
label: string;
|
|
4390
4391
|
key: string;
|
|
4391
|
-
url: string;
|
|
4392
4392
|
}[] | undefined;
|
|
4393
4393
|
resolvesTo?: {
|
|
4394
4394
|
key: string;
|
|
@@ -4421,9 +4421,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4421
4421
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4422
4422
|
helperText?: string | undefined;
|
|
4423
4423
|
helperLinks?: {
|
|
4424
|
+
url: string;
|
|
4424
4425
|
label: string;
|
|
4425
4426
|
key: string;
|
|
4426
|
-
url: string;
|
|
4427
4427
|
}[] | undefined;
|
|
4428
4428
|
resolvesTo?: {
|
|
4429
4429
|
key: string;
|
|
@@ -4465,9 +4465,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4465
4465
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4466
4466
|
helperText?: string | undefined;
|
|
4467
4467
|
helperLinks?: {
|
|
4468
|
+
url: string;
|
|
4468
4469
|
label: string;
|
|
4469
4470
|
key: string;
|
|
4470
|
-
url: string;
|
|
4471
4471
|
}[] | undefined;
|
|
4472
4472
|
resolvesTo?: {
|
|
4473
4473
|
key: string;
|
|
@@ -4506,9 +4506,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4506
4506
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4507
4507
|
helperText?: string | undefined;
|
|
4508
4508
|
helperLinks?: {
|
|
4509
|
+
url: string;
|
|
4509
4510
|
label: string;
|
|
4510
4511
|
key: string;
|
|
4511
|
-
url: string;
|
|
4512
4512
|
}[] | undefined;
|
|
4513
4513
|
resolvesTo?: {
|
|
4514
4514
|
key: string;
|
|
@@ -4549,9 +4549,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4549
4549
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4550
4550
|
helperText?: string | undefined;
|
|
4551
4551
|
helperLinks?: {
|
|
4552
|
+
url: string;
|
|
4552
4553
|
label: string;
|
|
4553
4554
|
key: string;
|
|
4554
|
-
url: string;
|
|
4555
4555
|
}[] | undefined;
|
|
4556
4556
|
resolvesTo?: {
|
|
4557
4557
|
key: string;
|
|
@@ -4584,9 +4584,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4584
4584
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4585
4585
|
helperText?: string | undefined;
|
|
4586
4586
|
helperLinks?: {
|
|
4587
|
+
url: string;
|
|
4587
4588
|
label: string;
|
|
4588
4589
|
key: string;
|
|
4589
|
-
url: string;
|
|
4590
4590
|
}[] | undefined;
|
|
4591
4591
|
resolvesTo?: {
|
|
4592
4592
|
key: string;
|
|
@@ -4619,9 +4619,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4619
4619
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4620
4620
|
helperText?: string | undefined;
|
|
4621
4621
|
helperLinks?: {
|
|
4622
|
+
url: string;
|
|
4622
4623
|
label: string;
|
|
4623
4624
|
key: string;
|
|
4624
|
-
url: string;
|
|
4625
4625
|
}[] | undefined;
|
|
4626
4626
|
resolvesTo?: {
|
|
4627
4627
|
key: string;
|
|
@@ -4654,9 +4654,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4654
4654
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4655
4655
|
helperText?: string | undefined;
|
|
4656
4656
|
helperLinks?: {
|
|
4657
|
+
url: string;
|
|
4657
4658
|
label: string;
|
|
4658
4659
|
key: string;
|
|
4659
|
-
url: string;
|
|
4660
4660
|
}[] | undefined;
|
|
4661
4661
|
resolvesTo?: {
|
|
4662
4662
|
key: string;
|
|
@@ -4702,9 +4702,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4702
4702
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4703
4703
|
helperText?: string | undefined;
|
|
4704
4704
|
helperLinks?: {
|
|
4705
|
+
url: string;
|
|
4705
4706
|
label: string;
|
|
4706
4707
|
key: string;
|
|
4707
|
-
url: string;
|
|
4708
4708
|
}[] | undefined;
|
|
4709
4709
|
resolvesTo?: {
|
|
4710
4710
|
key: string;
|
|
@@ -4759,9 +4759,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4759
4759
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4760
4760
|
helperText?: string | undefined;
|
|
4761
4761
|
helperLinks?: {
|
|
4762
|
+
url: string;
|
|
4762
4763
|
label: string;
|
|
4763
4764
|
key: string;
|
|
4764
|
-
url: string;
|
|
4765
4765
|
}[] | undefined;
|
|
4766
4766
|
resolvesTo?: {
|
|
4767
4767
|
key: string;
|
|
@@ -4785,14 +4785,14 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4785
4785
|
multiple?: boolean | undefined;
|
|
4786
4786
|
})[];
|
|
4787
4787
|
layout: "column" | "row" | "grid";
|
|
4788
|
-
|
|
4788
|
+
id?: string | undefined;
|
|
4789
4789
|
title?: string | undefined;
|
|
4790
|
+
description?: string | undefined;
|
|
4790
4791
|
visibleWhen?: {
|
|
4791
4792
|
fieldKey: string;
|
|
4792
4793
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
4793
4794
|
value?: unknown;
|
|
4794
4795
|
}[] | undefined;
|
|
4795
|
-
id?: string | undefined;
|
|
4796
4796
|
}, {
|
|
4797
4797
|
type: "group";
|
|
4798
4798
|
fields: ({
|
|
@@ -4809,9 +4809,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4809
4809
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4810
4810
|
helperText?: string | undefined;
|
|
4811
4811
|
helperLinks?: {
|
|
4812
|
+
url: string;
|
|
4812
4813
|
label: string;
|
|
4813
4814
|
key: string;
|
|
4814
|
-
url: string;
|
|
4815
4815
|
}[] | undefined;
|
|
4816
4816
|
resolvesTo?: {
|
|
4817
4817
|
key: string;
|
|
@@ -4844,9 +4844,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4844
4844
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4845
4845
|
helperText?: string | undefined;
|
|
4846
4846
|
helperLinks?: {
|
|
4847
|
+
url: string;
|
|
4847
4848
|
label: string;
|
|
4848
4849
|
key: string;
|
|
4849
|
-
url: string;
|
|
4850
4850
|
}[] | undefined;
|
|
4851
4851
|
resolvesTo?: {
|
|
4852
4852
|
key: string;
|
|
@@ -4881,9 +4881,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4881
4881
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4882
4882
|
helperText?: string | undefined;
|
|
4883
4883
|
helperLinks?: {
|
|
4884
|
+
url: string;
|
|
4884
4885
|
label: string;
|
|
4885
4886
|
key: string;
|
|
4886
|
-
url: string;
|
|
4887
4887
|
}[] | undefined;
|
|
4888
4888
|
resolvesTo?: {
|
|
4889
4889
|
key: string;
|
|
@@ -4916,9 +4916,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4916
4916
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4917
4917
|
helperText?: string | undefined;
|
|
4918
4918
|
helperLinks?: {
|
|
4919
|
+
url: string;
|
|
4919
4920
|
label: string;
|
|
4920
4921
|
key: string;
|
|
4921
|
-
url: string;
|
|
4922
4922
|
}[] | undefined;
|
|
4923
4923
|
resolvesTo?: {
|
|
4924
4924
|
key: string;
|
|
@@ -4960,9 +4960,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4960
4960
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
4961
4961
|
helperText?: string | undefined;
|
|
4962
4962
|
helperLinks?: {
|
|
4963
|
+
url: string;
|
|
4963
4964
|
label: string;
|
|
4964
4965
|
key: string;
|
|
4965
|
-
url: string;
|
|
4966
4966
|
}[] | undefined;
|
|
4967
4967
|
resolvesTo?: {
|
|
4968
4968
|
key: string;
|
|
@@ -5001,9 +5001,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5001
5001
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5002
5002
|
helperText?: string | undefined;
|
|
5003
5003
|
helperLinks?: {
|
|
5004
|
+
url: string;
|
|
5004
5005
|
label: string;
|
|
5005
5006
|
key: string;
|
|
5006
|
-
url: string;
|
|
5007
5007
|
}[] | undefined;
|
|
5008
5008
|
resolvesTo?: {
|
|
5009
5009
|
key: string;
|
|
@@ -5044,9 +5044,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5044
5044
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5045
5045
|
helperText?: string | undefined;
|
|
5046
5046
|
helperLinks?: {
|
|
5047
|
+
url: string;
|
|
5047
5048
|
label: string;
|
|
5048
5049
|
key: string;
|
|
5049
|
-
url: string;
|
|
5050
5050
|
}[] | undefined;
|
|
5051
5051
|
resolvesTo?: {
|
|
5052
5052
|
key: string;
|
|
@@ -5079,9 +5079,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5079
5079
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5080
5080
|
helperText?: string | undefined;
|
|
5081
5081
|
helperLinks?: {
|
|
5082
|
+
url: string;
|
|
5082
5083
|
label: string;
|
|
5083
5084
|
key: string;
|
|
5084
|
-
url: string;
|
|
5085
5085
|
}[] | undefined;
|
|
5086
5086
|
resolvesTo?: {
|
|
5087
5087
|
key: string;
|
|
@@ -5114,9 +5114,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5114
5114
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5115
5115
|
helperText?: string | undefined;
|
|
5116
5116
|
helperLinks?: {
|
|
5117
|
+
url: string;
|
|
5117
5118
|
label: string;
|
|
5118
5119
|
key: string;
|
|
5119
|
-
url: string;
|
|
5120
5120
|
}[] | undefined;
|
|
5121
5121
|
resolvesTo?: {
|
|
5122
5122
|
key: string;
|
|
@@ -5149,9 +5149,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5149
5149
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5150
5150
|
helperText?: string | undefined;
|
|
5151
5151
|
helperLinks?: {
|
|
5152
|
+
url: string;
|
|
5152
5153
|
label: string;
|
|
5153
5154
|
key: string;
|
|
5154
|
-
url: string;
|
|
5155
5155
|
}[] | undefined;
|
|
5156
5156
|
resolvesTo?: {
|
|
5157
5157
|
key: string;
|
|
@@ -5197,9 +5197,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5197
5197
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5198
5198
|
helperText?: string | undefined;
|
|
5199
5199
|
helperLinks?: {
|
|
5200
|
+
url: string;
|
|
5200
5201
|
label: string;
|
|
5201
5202
|
key: string;
|
|
5202
|
-
url: string;
|
|
5203
5203
|
}[] | undefined;
|
|
5204
5204
|
resolvesTo?: {
|
|
5205
5205
|
key: string;
|
|
@@ -5254,9 +5254,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5254
5254
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5255
5255
|
helperText?: string | undefined;
|
|
5256
5256
|
helperLinks?: {
|
|
5257
|
+
url: string;
|
|
5257
5258
|
label: string;
|
|
5258
5259
|
key: string;
|
|
5259
|
-
url: string;
|
|
5260
5260
|
}[] | undefined;
|
|
5261
5261
|
resolvesTo?: {
|
|
5262
5262
|
key: string;
|
|
@@ -5279,14 +5279,14 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5279
5279
|
maxFileSizeMb?: number | undefined;
|
|
5280
5280
|
multiple?: boolean | undefined;
|
|
5281
5281
|
})[];
|
|
5282
|
-
|
|
5282
|
+
id?: string | undefined;
|
|
5283
5283
|
title?: string | undefined;
|
|
5284
|
+
description?: string | undefined;
|
|
5284
5285
|
visibleWhen?: {
|
|
5285
5286
|
fieldKey: string;
|
|
5286
5287
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
5287
5288
|
value?: unknown;
|
|
5288
5289
|
}[] | undefined;
|
|
5289
|
-
id?: string | undefined;
|
|
5290
5290
|
layout?: "column" | "row" | "grid" | undefined;
|
|
5291
5291
|
}>, z.ZodObject<{
|
|
5292
5292
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5313,13 +5313,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5313
5313
|
label: z.ZodString;
|
|
5314
5314
|
url: z.ZodString;
|
|
5315
5315
|
}, "strip", z.ZodTypeAny, {
|
|
5316
|
+
url: string;
|
|
5316
5317
|
label: string;
|
|
5317
5318
|
key: string;
|
|
5318
|
-
url: string;
|
|
5319
5319
|
}, {
|
|
5320
|
+
url: string;
|
|
5320
5321
|
label: string;
|
|
5321
5322
|
key: string;
|
|
5322
|
-
url: string;
|
|
5323
5323
|
}>, "many">>;
|
|
5324
5324
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
5325
5325
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -5391,9 +5391,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5391
5391
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5392
5392
|
helperText?: string | undefined;
|
|
5393
5393
|
helperLinks?: {
|
|
5394
|
+
url: string;
|
|
5394
5395
|
label: string;
|
|
5395
5396
|
key: string;
|
|
5396
|
-
url: string;
|
|
5397
5397
|
}[] | undefined;
|
|
5398
5398
|
resolvesTo?: {
|
|
5399
5399
|
key: string;
|
|
@@ -5426,9 +5426,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5426
5426
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5427
5427
|
helperText?: string | undefined;
|
|
5428
5428
|
helperLinks?: {
|
|
5429
|
+
url: string;
|
|
5429
5430
|
label: string;
|
|
5430
5431
|
key: string;
|
|
5431
|
-
url: string;
|
|
5432
5432
|
}[] | undefined;
|
|
5433
5433
|
resolvesTo?: {
|
|
5434
5434
|
key: string;
|
|
@@ -5457,13 +5457,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5457
5457
|
label: z.ZodString;
|
|
5458
5458
|
url: z.ZodString;
|
|
5459
5459
|
}, "strip", z.ZodTypeAny, {
|
|
5460
|
+
url: string;
|
|
5460
5461
|
label: string;
|
|
5461
5462
|
key: string;
|
|
5462
|
-
url: string;
|
|
5463
5463
|
}, {
|
|
5464
|
+
url: string;
|
|
5464
5465
|
label: string;
|
|
5465
5466
|
key: string;
|
|
5466
|
-
url: string;
|
|
5467
5467
|
}>, "many">>;
|
|
5468
5468
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
5469
5469
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -5536,9 +5536,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5536
5536
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5537
5537
|
helperText?: string | undefined;
|
|
5538
5538
|
helperLinks?: {
|
|
5539
|
+
url: string;
|
|
5539
5540
|
label: string;
|
|
5540
5541
|
key: string;
|
|
5541
|
-
url: string;
|
|
5542
5542
|
}[] | undefined;
|
|
5543
5543
|
resolvesTo?: {
|
|
5544
5544
|
key: string;
|
|
@@ -5572,9 +5572,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5572
5572
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5573
5573
|
helperText?: string | undefined;
|
|
5574
5574
|
helperLinks?: {
|
|
5575
|
+
url: string;
|
|
5575
5576
|
label: string;
|
|
5576
5577
|
key: string;
|
|
5577
|
-
url: string;
|
|
5578
5578
|
}[] | undefined;
|
|
5579
5579
|
resolvesTo?: {
|
|
5580
5580
|
key: string;
|
|
@@ -5604,13 +5604,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5604
5604
|
label: z.ZodString;
|
|
5605
5605
|
url: z.ZodString;
|
|
5606
5606
|
}, "strip", z.ZodTypeAny, {
|
|
5607
|
+
url: string;
|
|
5607
5608
|
label: string;
|
|
5608
5609
|
key: string;
|
|
5609
|
-
url: string;
|
|
5610
5610
|
}, {
|
|
5611
|
+
url: string;
|
|
5611
5612
|
label: string;
|
|
5612
5613
|
key: string;
|
|
5613
|
-
url: string;
|
|
5614
5614
|
}>, "many">>;
|
|
5615
5615
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
5616
5616
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -5684,9 +5684,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5684
5684
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5685
5685
|
helperText?: string | undefined;
|
|
5686
5686
|
helperLinks?: {
|
|
5687
|
+
url: string;
|
|
5687
5688
|
label: string;
|
|
5688
5689
|
key: string;
|
|
5689
|
-
url: string;
|
|
5690
5690
|
}[] | undefined;
|
|
5691
5691
|
resolvesTo?: {
|
|
5692
5692
|
key: string;
|
|
@@ -5720,9 +5720,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5720
5720
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5721
5721
|
helperText?: string | undefined;
|
|
5722
5722
|
helperLinks?: {
|
|
5723
|
+
url: string;
|
|
5723
5724
|
label: string;
|
|
5724
5725
|
key: string;
|
|
5725
|
-
url: string;
|
|
5726
5726
|
}[] | undefined;
|
|
5727
5727
|
resolvesTo?: {
|
|
5728
5728
|
key: string;
|
|
@@ -5751,13 +5751,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5751
5751
|
label: z.ZodString;
|
|
5752
5752
|
url: z.ZodString;
|
|
5753
5753
|
}, "strip", z.ZodTypeAny, {
|
|
5754
|
+
url: string;
|
|
5754
5755
|
label: string;
|
|
5755
5756
|
key: string;
|
|
5756
|
-
url: string;
|
|
5757
5757
|
}, {
|
|
5758
|
+
url: string;
|
|
5758
5759
|
label: string;
|
|
5759
5760
|
key: string;
|
|
5760
|
-
url: string;
|
|
5761
5761
|
}>, "many">>;
|
|
5762
5762
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
5763
5763
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -5832,9 +5832,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5832
5832
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5833
5833
|
helperText?: string | undefined;
|
|
5834
5834
|
helperLinks?: {
|
|
5835
|
+
url: string;
|
|
5835
5836
|
label: string;
|
|
5836
5837
|
key: string;
|
|
5837
|
-
url: string;
|
|
5838
5838
|
}[] | undefined;
|
|
5839
5839
|
resolvesTo?: {
|
|
5840
5840
|
key: string;
|
|
@@ -5870,9 +5870,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5870
5870
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
5871
5871
|
helperText?: string | undefined;
|
|
5872
5872
|
helperLinks?: {
|
|
5873
|
+
url: string;
|
|
5873
5874
|
label: string;
|
|
5874
5875
|
key: string;
|
|
5875
|
-
url: string;
|
|
5876
5876
|
}[] | undefined;
|
|
5877
5877
|
resolvesTo?: {
|
|
5878
5878
|
key: string;
|
|
@@ -5904,13 +5904,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5904
5904
|
label: z.ZodString;
|
|
5905
5905
|
url: z.ZodString;
|
|
5906
5906
|
}, "strip", z.ZodTypeAny, {
|
|
5907
|
+
url: string;
|
|
5907
5908
|
label: string;
|
|
5908
5909
|
key: string;
|
|
5909
|
-
url: string;
|
|
5910
5910
|
}, {
|
|
5911
|
+
url: string;
|
|
5911
5912
|
label: string;
|
|
5912
5913
|
key: string;
|
|
5913
|
-
url: string;
|
|
5914
5914
|
}>, "many">>;
|
|
5915
5915
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
5916
5916
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -6004,9 +6004,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6004
6004
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6005
6005
|
helperText?: string | undefined;
|
|
6006
6006
|
helperLinks?: {
|
|
6007
|
+
url: string;
|
|
6007
6008
|
label: string;
|
|
6008
6009
|
key: string;
|
|
6009
|
-
url: string;
|
|
6010
6010
|
}[] | undefined;
|
|
6011
6011
|
resolvesTo?: {
|
|
6012
6012
|
key: string;
|
|
@@ -6045,9 +6045,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6045
6045
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6046
6046
|
helperText?: string | undefined;
|
|
6047
6047
|
helperLinks?: {
|
|
6048
|
+
url: string;
|
|
6048
6049
|
label: string;
|
|
6049
6050
|
key: string;
|
|
6050
|
-
url: string;
|
|
6051
6051
|
}[] | undefined;
|
|
6052
6052
|
resolvesTo?: {
|
|
6053
6053
|
key: string;
|
|
@@ -6076,13 +6076,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6076
6076
|
label: z.ZodString;
|
|
6077
6077
|
url: z.ZodString;
|
|
6078
6078
|
}, "strip", z.ZodTypeAny, {
|
|
6079
|
+
url: string;
|
|
6079
6080
|
label: string;
|
|
6080
6081
|
key: string;
|
|
6081
|
-
url: string;
|
|
6082
6082
|
}, {
|
|
6083
|
+
url: string;
|
|
6083
6084
|
label: string;
|
|
6084
6085
|
key: string;
|
|
6085
|
-
url: string;
|
|
6086
6086
|
}>, "many">>;
|
|
6087
6087
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6088
6088
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -6178,9 +6178,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6178
6178
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6179
6179
|
helperText?: string | undefined;
|
|
6180
6180
|
helperLinks?: {
|
|
6181
|
+
url: string;
|
|
6181
6182
|
label: string;
|
|
6182
6183
|
key: string;
|
|
6183
|
-
url: string;
|
|
6184
6184
|
}[] | undefined;
|
|
6185
6185
|
resolvesTo?: {
|
|
6186
6186
|
key: string;
|
|
@@ -6221,9 +6221,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6221
6221
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6222
6222
|
helperText?: string | undefined;
|
|
6223
6223
|
helperLinks?: {
|
|
6224
|
+
url: string;
|
|
6224
6225
|
label: string;
|
|
6225
6226
|
key: string;
|
|
6226
|
-
url: string;
|
|
6227
6227
|
}[] | undefined;
|
|
6228
6228
|
resolvesTo?: {
|
|
6229
6229
|
key: string;
|
|
@@ -6254,13 +6254,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6254
6254
|
label: z.ZodString;
|
|
6255
6255
|
url: z.ZodString;
|
|
6256
6256
|
}, "strip", z.ZodTypeAny, {
|
|
6257
|
+
url: string;
|
|
6257
6258
|
label: string;
|
|
6258
6259
|
key: string;
|
|
6259
|
-
url: string;
|
|
6260
6260
|
}, {
|
|
6261
|
+
url: string;
|
|
6261
6262
|
label: string;
|
|
6262
6263
|
key: string;
|
|
6263
|
-
url: string;
|
|
6264
6264
|
}>, "many">>;
|
|
6265
6265
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6266
6266
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -6354,9 +6354,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6354
6354
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6355
6355
|
helperText?: string | undefined;
|
|
6356
6356
|
helperLinks?: {
|
|
6357
|
+
url: string;
|
|
6357
6358
|
label: string;
|
|
6358
6359
|
key: string;
|
|
6359
|
-
url: string;
|
|
6360
6360
|
}[] | undefined;
|
|
6361
6361
|
resolvesTo?: {
|
|
6362
6362
|
key: string;
|
|
@@ -6395,9 +6395,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6395
6395
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6396
6396
|
helperText?: string | undefined;
|
|
6397
6397
|
helperLinks?: {
|
|
6398
|
+
url: string;
|
|
6398
6399
|
label: string;
|
|
6399
6400
|
key: string;
|
|
6400
|
-
url: string;
|
|
6401
6401
|
}[] | undefined;
|
|
6402
6402
|
resolvesTo?: {
|
|
6403
6403
|
key: string;
|
|
@@ -6426,13 +6426,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6426
6426
|
label: z.ZodString;
|
|
6427
6427
|
url: z.ZodString;
|
|
6428
6428
|
}, "strip", z.ZodTypeAny, {
|
|
6429
|
+
url: string;
|
|
6429
6430
|
label: string;
|
|
6430
6431
|
key: string;
|
|
6431
|
-
url: string;
|
|
6432
6432
|
}, {
|
|
6433
|
+
url: string;
|
|
6433
6434
|
label: string;
|
|
6434
6435
|
key: string;
|
|
6435
|
-
url: string;
|
|
6436
6436
|
}>, "many">>;
|
|
6437
6437
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6438
6438
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -6504,9 +6504,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6504
6504
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6505
6505
|
helperText?: string | undefined;
|
|
6506
6506
|
helperLinks?: {
|
|
6507
|
+
url: string;
|
|
6507
6508
|
label: string;
|
|
6508
6509
|
key: string;
|
|
6509
|
-
url: string;
|
|
6510
6510
|
}[] | undefined;
|
|
6511
6511
|
resolvesTo?: {
|
|
6512
6512
|
key: string;
|
|
@@ -6539,9 +6539,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6539
6539
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6540
6540
|
helperText?: string | undefined;
|
|
6541
6541
|
helperLinks?: {
|
|
6542
|
+
url: string;
|
|
6542
6543
|
label: string;
|
|
6543
6544
|
key: string;
|
|
6544
|
-
url: string;
|
|
6545
6545
|
}[] | undefined;
|
|
6546
6546
|
resolvesTo?: {
|
|
6547
6547
|
key: string;
|
|
@@ -6570,13 +6570,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6570
6570
|
label: z.ZodString;
|
|
6571
6571
|
url: z.ZodString;
|
|
6572
6572
|
}, "strip", z.ZodTypeAny, {
|
|
6573
|
+
url: string;
|
|
6573
6574
|
label: string;
|
|
6574
6575
|
key: string;
|
|
6575
|
-
url: string;
|
|
6576
6576
|
}, {
|
|
6577
|
+
url: string;
|
|
6577
6578
|
label: string;
|
|
6578
6579
|
key: string;
|
|
6579
|
-
url: string;
|
|
6580
6580
|
}>, "many">>;
|
|
6581
6581
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6582
6582
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -6648,9 +6648,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6648
6648
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6649
6649
|
helperText?: string | undefined;
|
|
6650
6650
|
helperLinks?: {
|
|
6651
|
+
url: string;
|
|
6651
6652
|
label: string;
|
|
6652
6653
|
key: string;
|
|
6653
|
-
url: string;
|
|
6654
6654
|
}[] | undefined;
|
|
6655
6655
|
resolvesTo?: {
|
|
6656
6656
|
key: string;
|
|
@@ -6683,9 +6683,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6683
6683
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6684
6684
|
helperText?: string | undefined;
|
|
6685
6685
|
helperLinks?: {
|
|
6686
|
+
url: string;
|
|
6686
6687
|
label: string;
|
|
6687
6688
|
key: string;
|
|
6688
|
-
url: string;
|
|
6689
6689
|
}[] | undefined;
|
|
6690
6690
|
resolvesTo?: {
|
|
6691
6691
|
key: string;
|
|
@@ -6714,13 +6714,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6714
6714
|
label: z.ZodString;
|
|
6715
6715
|
url: z.ZodString;
|
|
6716
6716
|
}, "strip", z.ZodTypeAny, {
|
|
6717
|
+
url: string;
|
|
6717
6718
|
label: string;
|
|
6718
6719
|
key: string;
|
|
6719
|
-
url: string;
|
|
6720
6720
|
}, {
|
|
6721
|
+
url: string;
|
|
6721
6722
|
label: string;
|
|
6722
6723
|
key: string;
|
|
6723
|
-
url: string;
|
|
6724
6724
|
}>, "many">>;
|
|
6725
6725
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6726
6726
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -6821,9 +6821,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6821
6821
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6822
6822
|
helperText?: string | undefined;
|
|
6823
6823
|
helperLinks?: {
|
|
6824
|
+
url: string;
|
|
6824
6825
|
label: string;
|
|
6825
6826
|
key: string;
|
|
6826
|
-
url: string;
|
|
6827
6827
|
}[] | undefined;
|
|
6828
6828
|
resolvesTo?: {
|
|
6829
6829
|
key: string;
|
|
@@ -6869,9 +6869,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6869
6869
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
6870
6870
|
helperText?: string | undefined;
|
|
6871
6871
|
helperLinks?: {
|
|
6872
|
+
url: string;
|
|
6872
6873
|
label: string;
|
|
6873
6874
|
key: string;
|
|
6874
|
-
url: string;
|
|
6875
6875
|
}[] | undefined;
|
|
6876
6876
|
resolvesTo?: {
|
|
6877
6877
|
key: string;
|
|
@@ -6913,13 +6913,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6913
6913
|
label: z.ZodString;
|
|
6914
6914
|
url: z.ZodString;
|
|
6915
6915
|
}, "strip", z.ZodTypeAny, {
|
|
6916
|
+
url: string;
|
|
6916
6917
|
label: string;
|
|
6917
6918
|
key: string;
|
|
6918
|
-
url: string;
|
|
6919
6919
|
}, {
|
|
6920
|
+
url: string;
|
|
6920
6921
|
label: string;
|
|
6921
6922
|
key: string;
|
|
6922
|
-
url: string;
|
|
6923
6923
|
}>, "many">>;
|
|
6924
6924
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6925
6925
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -7037,9 +7037,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7037
7037
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7038
7038
|
helperText?: string | undefined;
|
|
7039
7039
|
helperLinks?: {
|
|
7040
|
+
url: string;
|
|
7040
7041
|
label: string;
|
|
7041
7042
|
key: string;
|
|
7042
|
-
url: string;
|
|
7043
7043
|
}[] | undefined;
|
|
7044
7044
|
resolvesTo?: {
|
|
7045
7045
|
key: string;
|
|
@@ -7094,9 +7094,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7094
7094
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7095
7095
|
helperText?: string | undefined;
|
|
7096
7096
|
helperLinks?: {
|
|
7097
|
+
url: string;
|
|
7097
7098
|
label: string;
|
|
7098
7099
|
key: string;
|
|
7099
|
-
url: string;
|
|
7100
7100
|
}[] | undefined;
|
|
7101
7101
|
resolvesTo?: {
|
|
7102
7102
|
key: string;
|
|
@@ -7147,13 +7147,13 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7147
7147
|
label: z.ZodString;
|
|
7148
7148
|
url: z.ZodString;
|
|
7149
7149
|
}, "strip", z.ZodTypeAny, {
|
|
7150
|
+
url: string;
|
|
7150
7151
|
label: string;
|
|
7151
7152
|
key: string;
|
|
7152
|
-
url: string;
|
|
7153
7153
|
}, {
|
|
7154
|
+
url: string;
|
|
7154
7155
|
label: string;
|
|
7155
7156
|
key: string;
|
|
7156
|
-
url: string;
|
|
7157
7157
|
}>, "many">>;
|
|
7158
7158
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
7159
7159
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -7228,9 +7228,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7228
7228
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7229
7229
|
helperText?: string | undefined;
|
|
7230
7230
|
helperLinks?: {
|
|
7231
|
+
url: string;
|
|
7231
7232
|
label: string;
|
|
7232
7233
|
key: string;
|
|
7233
|
-
url: string;
|
|
7234
7234
|
}[] | undefined;
|
|
7235
7235
|
resolvesTo?: {
|
|
7236
7236
|
key: string;
|
|
@@ -7266,9 +7266,9 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7266
7266
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7267
7267
|
helperText?: string | undefined;
|
|
7268
7268
|
helperLinks?: {
|
|
7269
|
+
url: string;
|
|
7269
7270
|
label: string;
|
|
7270
7271
|
key: string;
|
|
7271
|
-
url: string;
|
|
7272
7272
|
}[] | undefined;
|
|
7273
7273
|
resolvesTo?: {
|
|
7274
7274
|
key: string;
|
|
@@ -7329,23 +7329,23 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7329
7329
|
}, "strip", z.ZodTypeAny, {
|
|
7330
7330
|
type: "section";
|
|
7331
7331
|
title: string;
|
|
7332
|
+
id?: string | undefined;
|
|
7332
7333
|
description?: string | undefined;
|
|
7333
7334
|
visibleWhen?: {
|
|
7334
7335
|
fieldKey: string;
|
|
7335
7336
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
7336
7337
|
value?: unknown;
|
|
7337
7338
|
}[] | undefined;
|
|
7338
|
-
id?: string | undefined;
|
|
7339
7339
|
}, {
|
|
7340
7340
|
type: "section";
|
|
7341
7341
|
title: string;
|
|
7342
|
+
id?: string | undefined;
|
|
7342
7343
|
description?: string | undefined;
|
|
7343
7344
|
visibleWhen?: {
|
|
7344
7345
|
fieldKey: string;
|
|
7345
7346
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
7346
7347
|
value?: unknown;
|
|
7347
7348
|
}[] | undefined;
|
|
7348
|
-
id?: string | undefined;
|
|
7349
7349
|
}>, z.ZodObject<{
|
|
7350
7350
|
id: z.ZodOptional<z.ZodString>;
|
|
7351
7351
|
type: z.ZodLiteral<"description">;
|
|
@@ -7355,13 +7355,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7355
7355
|
label: z.ZodString;
|
|
7356
7356
|
url: z.ZodString;
|
|
7357
7357
|
}, "strip", z.ZodTypeAny, {
|
|
7358
|
+
url: string;
|
|
7358
7359
|
label: string;
|
|
7359
7360
|
key: string;
|
|
7360
|
-
url: string;
|
|
7361
7361
|
}, {
|
|
7362
|
+
url: string;
|
|
7362
7363
|
label: string;
|
|
7363
7364
|
key: string;
|
|
7364
|
-
url: string;
|
|
7365
7365
|
}>, "many">>;
|
|
7366
7366
|
visibleWhen: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7367
7367
|
fieldKey: z.ZodString;
|
|
@@ -7379,31 +7379,31 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7379
7379
|
}, "strip", z.ZodTypeAny, {
|
|
7380
7380
|
type: "description";
|
|
7381
7381
|
text: string;
|
|
7382
|
+
id?: string | undefined;
|
|
7382
7383
|
helperLinks?: {
|
|
7384
|
+
url: string;
|
|
7383
7385
|
label: string;
|
|
7384
7386
|
key: string;
|
|
7385
|
-
url: string;
|
|
7386
7387
|
}[] | undefined;
|
|
7387
7388
|
visibleWhen?: {
|
|
7388
7389
|
fieldKey: string;
|
|
7389
7390
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
7390
7391
|
value?: unknown;
|
|
7391
7392
|
}[] | undefined;
|
|
7392
|
-
id?: string | undefined;
|
|
7393
7393
|
}, {
|
|
7394
7394
|
type: "description";
|
|
7395
7395
|
text: string;
|
|
7396
|
+
id?: string | undefined;
|
|
7396
7397
|
helperLinks?: {
|
|
7398
|
+
url: string;
|
|
7397
7399
|
label: string;
|
|
7398
7400
|
key: string;
|
|
7399
|
-
url: string;
|
|
7400
7401
|
}[] | undefined;
|
|
7401
7402
|
visibleWhen?: {
|
|
7402
7403
|
fieldKey: string;
|
|
7403
7404
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
7404
7405
|
value?: unknown;
|
|
7405
7406
|
}[] | undefined;
|
|
7406
|
-
id?: string | undefined;
|
|
7407
7407
|
}>, z.ZodObject<{
|
|
7408
7408
|
id: z.ZodOptional<z.ZodString>;
|
|
7409
7409
|
type: z.ZodLiteral<"divider">;
|
|
@@ -7422,20 +7422,20 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7422
7422
|
}>, "many">>;
|
|
7423
7423
|
}, "strip", z.ZodTypeAny, {
|
|
7424
7424
|
type: "divider";
|
|
7425
|
+
id?: string | undefined;
|
|
7425
7426
|
visibleWhen?: {
|
|
7426
7427
|
fieldKey: string;
|
|
7427
7428
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
7428
7429
|
value?: unknown;
|
|
7429
7430
|
}[] | undefined;
|
|
7430
|
-
id?: string | undefined;
|
|
7431
7431
|
}, {
|
|
7432
7432
|
type: "divider";
|
|
7433
|
+
id?: string | undefined;
|
|
7433
7434
|
visibleWhen?: {
|
|
7434
7435
|
fieldKey: string;
|
|
7435
7436
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
7436
7437
|
value?: unknown;
|
|
7437
7438
|
}[] | undefined;
|
|
7438
|
-
id?: string | undefined;
|
|
7439
7439
|
}>, z.ZodObject<{
|
|
7440
7440
|
id: z.ZodOptional<z.ZodString>;
|
|
7441
7441
|
type: z.ZodLiteral<"banner">;
|
|
@@ -7459,24 +7459,24 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7459
7459
|
type: "banner";
|
|
7460
7460
|
description: string;
|
|
7461
7461
|
tone: "info" | "success" | "warning" | "danger";
|
|
7462
|
+
id?: string | undefined;
|
|
7462
7463
|
title?: string | undefined;
|
|
7463
7464
|
visibleWhen?: {
|
|
7464
7465
|
fieldKey: string;
|
|
7465
7466
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
7466
7467
|
value?: unknown;
|
|
7467
7468
|
}[] | undefined;
|
|
7468
|
-
id?: string | undefined;
|
|
7469
7469
|
}, {
|
|
7470
7470
|
type: "banner";
|
|
7471
7471
|
description: string;
|
|
7472
|
-
|
|
7472
|
+
id?: string | undefined;
|
|
7473
7473
|
title?: string | undefined;
|
|
7474
|
+
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
7474
7475
|
visibleWhen?: {
|
|
7475
7476
|
fieldKey: string;
|
|
7476
7477
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
7477
7478
|
value?: unknown;
|
|
7478
7479
|
}[] | undefined;
|
|
7479
|
-
id?: string | undefined;
|
|
7480
7480
|
}>, z.ZodObject<{
|
|
7481
7481
|
id: z.ZodOptional<z.ZodString>;
|
|
7482
7482
|
type: z.ZodLiteral<"group">;
|
|
@@ -7506,13 +7506,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7506
7506
|
label: z.ZodString;
|
|
7507
7507
|
url: z.ZodString;
|
|
7508
7508
|
}, "strip", z.ZodTypeAny, {
|
|
7509
|
+
url: string;
|
|
7509
7510
|
label: string;
|
|
7510
7511
|
key: string;
|
|
7511
|
-
url: string;
|
|
7512
7512
|
}, {
|
|
7513
|
+
url: string;
|
|
7513
7514
|
label: string;
|
|
7514
7515
|
key: string;
|
|
7515
|
-
url: string;
|
|
7516
7516
|
}>, "many">>;
|
|
7517
7517
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
7518
7518
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -7584,9 +7584,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7584
7584
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7585
7585
|
helperText?: string | undefined;
|
|
7586
7586
|
helperLinks?: {
|
|
7587
|
+
url: string;
|
|
7587
7588
|
label: string;
|
|
7588
7589
|
key: string;
|
|
7589
|
-
url: string;
|
|
7590
7590
|
}[] | undefined;
|
|
7591
7591
|
resolvesTo?: {
|
|
7592
7592
|
key: string;
|
|
@@ -7619,9 +7619,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7619
7619
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7620
7620
|
helperText?: string | undefined;
|
|
7621
7621
|
helperLinks?: {
|
|
7622
|
+
url: string;
|
|
7622
7623
|
label: string;
|
|
7623
7624
|
key: string;
|
|
7624
|
-
url: string;
|
|
7625
7625
|
}[] | undefined;
|
|
7626
7626
|
resolvesTo?: {
|
|
7627
7627
|
key: string;
|
|
@@ -7650,13 +7650,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7650
7650
|
label: z.ZodString;
|
|
7651
7651
|
url: z.ZodString;
|
|
7652
7652
|
}, "strip", z.ZodTypeAny, {
|
|
7653
|
+
url: string;
|
|
7653
7654
|
label: string;
|
|
7654
7655
|
key: string;
|
|
7655
|
-
url: string;
|
|
7656
7656
|
}, {
|
|
7657
|
+
url: string;
|
|
7657
7658
|
label: string;
|
|
7658
7659
|
key: string;
|
|
7659
|
-
url: string;
|
|
7660
7660
|
}>, "many">>;
|
|
7661
7661
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
7662
7662
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -7729,9 +7729,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7729
7729
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7730
7730
|
helperText?: string | undefined;
|
|
7731
7731
|
helperLinks?: {
|
|
7732
|
+
url: string;
|
|
7732
7733
|
label: string;
|
|
7733
7734
|
key: string;
|
|
7734
|
-
url: string;
|
|
7735
7735
|
}[] | undefined;
|
|
7736
7736
|
resolvesTo?: {
|
|
7737
7737
|
key: string;
|
|
@@ -7765,9 +7765,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7765
7765
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7766
7766
|
helperText?: string | undefined;
|
|
7767
7767
|
helperLinks?: {
|
|
7768
|
+
url: string;
|
|
7768
7769
|
label: string;
|
|
7769
7770
|
key: string;
|
|
7770
|
-
url: string;
|
|
7771
7771
|
}[] | undefined;
|
|
7772
7772
|
resolvesTo?: {
|
|
7773
7773
|
key: string;
|
|
@@ -7797,13 +7797,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7797
7797
|
label: z.ZodString;
|
|
7798
7798
|
url: z.ZodString;
|
|
7799
7799
|
}, "strip", z.ZodTypeAny, {
|
|
7800
|
+
url: string;
|
|
7800
7801
|
label: string;
|
|
7801
7802
|
key: string;
|
|
7802
|
-
url: string;
|
|
7803
7803
|
}, {
|
|
7804
|
+
url: string;
|
|
7804
7805
|
label: string;
|
|
7805
7806
|
key: string;
|
|
7806
|
-
url: string;
|
|
7807
7807
|
}>, "many">>;
|
|
7808
7808
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
7809
7809
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -7877,9 +7877,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7877
7877
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7878
7878
|
helperText?: string | undefined;
|
|
7879
7879
|
helperLinks?: {
|
|
7880
|
+
url: string;
|
|
7880
7881
|
label: string;
|
|
7881
7882
|
key: string;
|
|
7882
|
-
url: string;
|
|
7883
7883
|
}[] | undefined;
|
|
7884
7884
|
resolvesTo?: {
|
|
7885
7885
|
key: string;
|
|
@@ -7913,9 +7913,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7913
7913
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
7914
7914
|
helperText?: string | undefined;
|
|
7915
7915
|
helperLinks?: {
|
|
7916
|
+
url: string;
|
|
7916
7917
|
label: string;
|
|
7917
7918
|
key: string;
|
|
7918
|
-
url: string;
|
|
7919
7919
|
}[] | undefined;
|
|
7920
7920
|
resolvesTo?: {
|
|
7921
7921
|
key: string;
|
|
@@ -7944,13 +7944,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
7944
7944
|
label: z.ZodString;
|
|
7945
7945
|
url: z.ZodString;
|
|
7946
7946
|
}, "strip", z.ZodTypeAny, {
|
|
7947
|
+
url: string;
|
|
7947
7948
|
label: string;
|
|
7948
7949
|
key: string;
|
|
7949
|
-
url: string;
|
|
7950
7950
|
}, {
|
|
7951
|
+
url: string;
|
|
7951
7952
|
label: string;
|
|
7952
7953
|
key: string;
|
|
7953
|
-
url: string;
|
|
7954
7954
|
}>, "many">>;
|
|
7955
7955
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
7956
7956
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -8025,9 +8025,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8025
8025
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8026
8026
|
helperText?: string | undefined;
|
|
8027
8027
|
helperLinks?: {
|
|
8028
|
+
url: string;
|
|
8028
8029
|
label: string;
|
|
8029
8030
|
key: string;
|
|
8030
|
-
url: string;
|
|
8031
8031
|
}[] | undefined;
|
|
8032
8032
|
resolvesTo?: {
|
|
8033
8033
|
key: string;
|
|
@@ -8063,9 +8063,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8063
8063
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8064
8064
|
helperText?: string | undefined;
|
|
8065
8065
|
helperLinks?: {
|
|
8066
|
+
url: string;
|
|
8066
8067
|
label: string;
|
|
8067
8068
|
key: string;
|
|
8068
|
-
url: string;
|
|
8069
8069
|
}[] | undefined;
|
|
8070
8070
|
resolvesTo?: {
|
|
8071
8071
|
key: string;
|
|
@@ -8097,13 +8097,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8097
8097
|
label: z.ZodString;
|
|
8098
8098
|
url: z.ZodString;
|
|
8099
8099
|
}, "strip", z.ZodTypeAny, {
|
|
8100
|
+
url: string;
|
|
8100
8101
|
label: string;
|
|
8101
8102
|
key: string;
|
|
8102
|
-
url: string;
|
|
8103
8103
|
}, {
|
|
8104
|
+
url: string;
|
|
8104
8105
|
label: string;
|
|
8105
8106
|
key: string;
|
|
8106
|
-
url: string;
|
|
8107
8107
|
}>, "many">>;
|
|
8108
8108
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8109
8109
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -8197,9 +8197,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8197
8197
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8198
8198
|
helperText?: string | undefined;
|
|
8199
8199
|
helperLinks?: {
|
|
8200
|
+
url: string;
|
|
8200
8201
|
label: string;
|
|
8201
8202
|
key: string;
|
|
8202
|
-
url: string;
|
|
8203
8203
|
}[] | undefined;
|
|
8204
8204
|
resolvesTo?: {
|
|
8205
8205
|
key: string;
|
|
@@ -8238,9 +8238,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8238
8238
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8239
8239
|
helperText?: string | undefined;
|
|
8240
8240
|
helperLinks?: {
|
|
8241
|
+
url: string;
|
|
8241
8242
|
label: string;
|
|
8242
8243
|
key: string;
|
|
8243
|
-
url: string;
|
|
8244
8244
|
}[] | undefined;
|
|
8245
8245
|
resolvesTo?: {
|
|
8246
8246
|
key: string;
|
|
@@ -8269,13 +8269,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8269
8269
|
label: z.ZodString;
|
|
8270
8270
|
url: z.ZodString;
|
|
8271
8271
|
}, "strip", z.ZodTypeAny, {
|
|
8272
|
+
url: string;
|
|
8272
8273
|
label: string;
|
|
8273
8274
|
key: string;
|
|
8274
|
-
url: string;
|
|
8275
8275
|
}, {
|
|
8276
|
+
url: string;
|
|
8276
8277
|
label: string;
|
|
8277
8278
|
key: string;
|
|
8278
|
-
url: string;
|
|
8279
8279
|
}>, "many">>;
|
|
8280
8280
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8281
8281
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -8371,9 +8371,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8371
8371
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8372
8372
|
helperText?: string | undefined;
|
|
8373
8373
|
helperLinks?: {
|
|
8374
|
+
url: string;
|
|
8374
8375
|
label: string;
|
|
8375
8376
|
key: string;
|
|
8376
|
-
url: string;
|
|
8377
8377
|
}[] | undefined;
|
|
8378
8378
|
resolvesTo?: {
|
|
8379
8379
|
key: string;
|
|
@@ -8414,9 +8414,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8414
8414
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8415
8415
|
helperText?: string | undefined;
|
|
8416
8416
|
helperLinks?: {
|
|
8417
|
+
url: string;
|
|
8417
8418
|
label: string;
|
|
8418
8419
|
key: string;
|
|
8419
|
-
url: string;
|
|
8420
8420
|
}[] | undefined;
|
|
8421
8421
|
resolvesTo?: {
|
|
8422
8422
|
key: string;
|
|
@@ -8447,13 +8447,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8447
8447
|
label: z.ZodString;
|
|
8448
8448
|
url: z.ZodString;
|
|
8449
8449
|
}, "strip", z.ZodTypeAny, {
|
|
8450
|
+
url: string;
|
|
8450
8451
|
label: string;
|
|
8451
8452
|
key: string;
|
|
8452
|
-
url: string;
|
|
8453
8453
|
}, {
|
|
8454
|
+
url: string;
|
|
8454
8455
|
label: string;
|
|
8455
8456
|
key: string;
|
|
8456
|
-
url: string;
|
|
8457
8457
|
}>, "many">>;
|
|
8458
8458
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8459
8459
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -8547,9 +8547,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8547
8547
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8548
8548
|
helperText?: string | undefined;
|
|
8549
8549
|
helperLinks?: {
|
|
8550
|
+
url: string;
|
|
8550
8551
|
label: string;
|
|
8551
8552
|
key: string;
|
|
8552
|
-
url: string;
|
|
8553
8553
|
}[] | undefined;
|
|
8554
8554
|
resolvesTo?: {
|
|
8555
8555
|
key: string;
|
|
@@ -8588,9 +8588,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8588
8588
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8589
8589
|
helperText?: string | undefined;
|
|
8590
8590
|
helperLinks?: {
|
|
8591
|
+
url: string;
|
|
8591
8592
|
label: string;
|
|
8592
8593
|
key: string;
|
|
8593
|
-
url: string;
|
|
8594
8594
|
}[] | undefined;
|
|
8595
8595
|
resolvesTo?: {
|
|
8596
8596
|
key: string;
|
|
@@ -8619,13 +8619,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8619
8619
|
label: z.ZodString;
|
|
8620
8620
|
url: z.ZodString;
|
|
8621
8621
|
}, "strip", z.ZodTypeAny, {
|
|
8622
|
+
url: string;
|
|
8622
8623
|
label: string;
|
|
8623
8624
|
key: string;
|
|
8624
|
-
url: string;
|
|
8625
8625
|
}, {
|
|
8626
|
+
url: string;
|
|
8626
8627
|
label: string;
|
|
8627
8628
|
key: string;
|
|
8628
|
-
url: string;
|
|
8629
8629
|
}>, "many">>;
|
|
8630
8630
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8631
8631
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -8697,9 +8697,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8697
8697
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8698
8698
|
helperText?: string | undefined;
|
|
8699
8699
|
helperLinks?: {
|
|
8700
|
+
url: string;
|
|
8700
8701
|
label: string;
|
|
8701
8702
|
key: string;
|
|
8702
|
-
url: string;
|
|
8703
8703
|
}[] | undefined;
|
|
8704
8704
|
resolvesTo?: {
|
|
8705
8705
|
key: string;
|
|
@@ -8732,9 +8732,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8732
8732
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8733
8733
|
helperText?: string | undefined;
|
|
8734
8734
|
helperLinks?: {
|
|
8735
|
+
url: string;
|
|
8735
8736
|
label: string;
|
|
8736
8737
|
key: string;
|
|
8737
|
-
url: string;
|
|
8738
8738
|
}[] | undefined;
|
|
8739
8739
|
resolvesTo?: {
|
|
8740
8740
|
key: string;
|
|
@@ -8763,13 +8763,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8763
8763
|
label: z.ZodString;
|
|
8764
8764
|
url: z.ZodString;
|
|
8765
8765
|
}, "strip", z.ZodTypeAny, {
|
|
8766
|
+
url: string;
|
|
8766
8767
|
label: string;
|
|
8767
8768
|
key: string;
|
|
8768
|
-
url: string;
|
|
8769
8769
|
}, {
|
|
8770
|
+
url: string;
|
|
8770
8771
|
label: string;
|
|
8771
8772
|
key: string;
|
|
8772
|
-
url: string;
|
|
8773
8773
|
}>, "many">>;
|
|
8774
8774
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8775
8775
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -8841,9 +8841,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8841
8841
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8842
8842
|
helperText?: string | undefined;
|
|
8843
8843
|
helperLinks?: {
|
|
8844
|
+
url: string;
|
|
8844
8845
|
label: string;
|
|
8845
8846
|
key: string;
|
|
8846
|
-
url: string;
|
|
8847
8847
|
}[] | undefined;
|
|
8848
8848
|
resolvesTo?: {
|
|
8849
8849
|
key: string;
|
|
@@ -8876,9 +8876,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8876
8876
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
8877
8877
|
helperText?: string | undefined;
|
|
8878
8878
|
helperLinks?: {
|
|
8879
|
+
url: string;
|
|
8879
8880
|
label: string;
|
|
8880
8881
|
key: string;
|
|
8881
|
-
url: string;
|
|
8882
8882
|
}[] | undefined;
|
|
8883
8883
|
resolvesTo?: {
|
|
8884
8884
|
key: string;
|
|
@@ -8907,13 +8907,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
8907
8907
|
label: z.ZodString;
|
|
8908
8908
|
url: z.ZodString;
|
|
8909
8909
|
}, "strip", z.ZodTypeAny, {
|
|
8910
|
+
url: string;
|
|
8910
8911
|
label: string;
|
|
8911
8912
|
key: string;
|
|
8912
|
-
url: string;
|
|
8913
8913
|
}, {
|
|
8914
|
+
url: string;
|
|
8914
8915
|
label: string;
|
|
8915
8916
|
key: string;
|
|
8916
|
-
url: string;
|
|
8917
8917
|
}>, "many">>;
|
|
8918
8918
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8919
8919
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -9014,9 +9014,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9014
9014
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9015
9015
|
helperText?: string | undefined;
|
|
9016
9016
|
helperLinks?: {
|
|
9017
|
+
url: string;
|
|
9017
9018
|
label: string;
|
|
9018
9019
|
key: string;
|
|
9019
|
-
url: string;
|
|
9020
9020
|
}[] | undefined;
|
|
9021
9021
|
resolvesTo?: {
|
|
9022
9022
|
key: string;
|
|
@@ -9062,9 +9062,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9062
9062
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9063
9063
|
helperText?: string | undefined;
|
|
9064
9064
|
helperLinks?: {
|
|
9065
|
+
url: string;
|
|
9065
9066
|
label: string;
|
|
9066
9067
|
key: string;
|
|
9067
|
-
url: string;
|
|
9068
9068
|
}[] | undefined;
|
|
9069
9069
|
resolvesTo?: {
|
|
9070
9070
|
key: string;
|
|
@@ -9106,13 +9106,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9106
9106
|
label: z.ZodString;
|
|
9107
9107
|
url: z.ZodString;
|
|
9108
9108
|
}, "strip", z.ZodTypeAny, {
|
|
9109
|
+
url: string;
|
|
9109
9110
|
label: string;
|
|
9110
9111
|
key: string;
|
|
9111
|
-
url: string;
|
|
9112
9112
|
}, {
|
|
9113
|
+
url: string;
|
|
9113
9114
|
label: string;
|
|
9114
9115
|
key: string;
|
|
9115
|
-
url: string;
|
|
9116
9116
|
}>, "many">>;
|
|
9117
9117
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
9118
9118
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -9230,9 +9230,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9230
9230
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9231
9231
|
helperText?: string | undefined;
|
|
9232
9232
|
helperLinks?: {
|
|
9233
|
+
url: string;
|
|
9233
9234
|
label: string;
|
|
9234
9235
|
key: string;
|
|
9235
|
-
url: string;
|
|
9236
9236
|
}[] | undefined;
|
|
9237
9237
|
resolvesTo?: {
|
|
9238
9238
|
key: string;
|
|
@@ -9287,9 +9287,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9287
9287
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9288
9288
|
helperText?: string | undefined;
|
|
9289
9289
|
helperLinks?: {
|
|
9290
|
+
url: string;
|
|
9290
9291
|
label: string;
|
|
9291
9292
|
key: string;
|
|
9292
|
-
url: string;
|
|
9293
9293
|
}[] | undefined;
|
|
9294
9294
|
resolvesTo?: {
|
|
9295
9295
|
key: string;
|
|
@@ -9340,13 +9340,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9340
9340
|
label: z.ZodString;
|
|
9341
9341
|
url: z.ZodString;
|
|
9342
9342
|
}, "strip", z.ZodTypeAny, {
|
|
9343
|
+
url: string;
|
|
9343
9344
|
label: string;
|
|
9344
9345
|
key: string;
|
|
9345
|
-
url: string;
|
|
9346
9346
|
}, {
|
|
9347
|
+
url: string;
|
|
9347
9348
|
label: string;
|
|
9348
9349
|
key: string;
|
|
9349
|
-
url: string;
|
|
9350
9350
|
}>, "many">>;
|
|
9351
9351
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
9352
9352
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -9421,9 +9421,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9421
9421
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9422
9422
|
helperText?: string | undefined;
|
|
9423
9423
|
helperLinks?: {
|
|
9424
|
+
url: string;
|
|
9424
9425
|
label: string;
|
|
9425
9426
|
key: string;
|
|
9426
|
-
url: string;
|
|
9427
9427
|
}[] | undefined;
|
|
9428
9428
|
resolvesTo?: {
|
|
9429
9429
|
key: string;
|
|
@@ -9459,9 +9459,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9459
9459
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9460
9460
|
helperText?: string | undefined;
|
|
9461
9461
|
helperLinks?: {
|
|
9462
|
+
url: string;
|
|
9462
9463
|
label: string;
|
|
9463
9464
|
key: string;
|
|
9464
|
-
url: string;
|
|
9465
9465
|
}[] | undefined;
|
|
9466
9466
|
resolvesTo?: {
|
|
9467
9467
|
key: string;
|
|
@@ -9500,9 +9500,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9500
9500
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9501
9501
|
helperText?: string | undefined;
|
|
9502
9502
|
helperLinks?: {
|
|
9503
|
+
url: string;
|
|
9503
9504
|
label: string;
|
|
9504
9505
|
key: string;
|
|
9505
|
-
url: string;
|
|
9506
9506
|
}[] | undefined;
|
|
9507
9507
|
resolvesTo?: {
|
|
9508
9508
|
key: string;
|
|
@@ -9535,9 +9535,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9535
9535
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9536
9536
|
helperText?: string | undefined;
|
|
9537
9537
|
helperLinks?: {
|
|
9538
|
+
url: string;
|
|
9538
9539
|
label: string;
|
|
9539
9540
|
key: string;
|
|
9540
|
-
url: string;
|
|
9541
9541
|
}[] | undefined;
|
|
9542
9542
|
resolvesTo?: {
|
|
9543
9543
|
key: string;
|
|
@@ -9572,9 +9572,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9572
9572
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9573
9573
|
helperText?: string | undefined;
|
|
9574
9574
|
helperLinks?: {
|
|
9575
|
+
url: string;
|
|
9575
9576
|
label: string;
|
|
9576
9577
|
key: string;
|
|
9577
|
-
url: string;
|
|
9578
9578
|
}[] | undefined;
|
|
9579
9579
|
resolvesTo?: {
|
|
9580
9580
|
key: string;
|
|
@@ -9607,9 +9607,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9607
9607
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9608
9608
|
helperText?: string | undefined;
|
|
9609
9609
|
helperLinks?: {
|
|
9610
|
+
url: string;
|
|
9610
9611
|
label: string;
|
|
9611
9612
|
key: string;
|
|
9612
|
-
url: string;
|
|
9613
9613
|
}[] | undefined;
|
|
9614
9614
|
resolvesTo?: {
|
|
9615
9615
|
key: string;
|
|
@@ -9651,9 +9651,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9651
9651
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9652
9652
|
helperText?: string | undefined;
|
|
9653
9653
|
helperLinks?: {
|
|
9654
|
+
url: string;
|
|
9654
9655
|
label: string;
|
|
9655
9656
|
key: string;
|
|
9656
|
-
url: string;
|
|
9657
9657
|
}[] | undefined;
|
|
9658
9658
|
resolvesTo?: {
|
|
9659
9659
|
key: string;
|
|
@@ -9692,9 +9692,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9692
9692
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9693
9693
|
helperText?: string | undefined;
|
|
9694
9694
|
helperLinks?: {
|
|
9695
|
+
url: string;
|
|
9695
9696
|
label: string;
|
|
9696
9697
|
key: string;
|
|
9697
|
-
url: string;
|
|
9698
9698
|
}[] | undefined;
|
|
9699
9699
|
resolvesTo?: {
|
|
9700
9700
|
key: string;
|
|
@@ -9735,9 +9735,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9735
9735
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9736
9736
|
helperText?: string | undefined;
|
|
9737
9737
|
helperLinks?: {
|
|
9738
|
+
url: string;
|
|
9738
9739
|
label: string;
|
|
9739
9740
|
key: string;
|
|
9740
|
-
url: string;
|
|
9741
9741
|
}[] | undefined;
|
|
9742
9742
|
resolvesTo?: {
|
|
9743
9743
|
key: string;
|
|
@@ -9770,9 +9770,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9770
9770
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9771
9771
|
helperText?: string | undefined;
|
|
9772
9772
|
helperLinks?: {
|
|
9773
|
+
url: string;
|
|
9773
9774
|
label: string;
|
|
9774
9775
|
key: string;
|
|
9775
|
-
url: string;
|
|
9776
9776
|
}[] | undefined;
|
|
9777
9777
|
resolvesTo?: {
|
|
9778
9778
|
key: string;
|
|
@@ -9805,9 +9805,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9805
9805
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9806
9806
|
helperText?: string | undefined;
|
|
9807
9807
|
helperLinks?: {
|
|
9808
|
+
url: string;
|
|
9808
9809
|
label: string;
|
|
9809
9810
|
key: string;
|
|
9810
|
-
url: string;
|
|
9811
9811
|
}[] | undefined;
|
|
9812
9812
|
resolvesTo?: {
|
|
9813
9813
|
key: string;
|
|
@@ -9840,9 +9840,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9840
9840
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9841
9841
|
helperText?: string | undefined;
|
|
9842
9842
|
helperLinks?: {
|
|
9843
|
+
url: string;
|
|
9843
9844
|
label: string;
|
|
9844
9845
|
key: string;
|
|
9845
|
-
url: string;
|
|
9846
9846
|
}[] | undefined;
|
|
9847
9847
|
resolvesTo?: {
|
|
9848
9848
|
key: string;
|
|
@@ -9888,9 +9888,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9888
9888
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9889
9889
|
helperText?: string | undefined;
|
|
9890
9890
|
helperLinks?: {
|
|
9891
|
+
url: string;
|
|
9891
9892
|
label: string;
|
|
9892
9893
|
key: string;
|
|
9893
|
-
url: string;
|
|
9894
9894
|
}[] | undefined;
|
|
9895
9895
|
resolvesTo?: {
|
|
9896
9896
|
key: string;
|
|
@@ -9945,9 +9945,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9945
9945
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9946
9946
|
helperText?: string | undefined;
|
|
9947
9947
|
helperLinks?: {
|
|
9948
|
+
url: string;
|
|
9948
9949
|
label: string;
|
|
9949
9950
|
key: string;
|
|
9950
|
-
url: string;
|
|
9951
9951
|
}[] | undefined;
|
|
9952
9952
|
resolvesTo?: {
|
|
9953
9953
|
key: string;
|
|
@@ -9971,14 +9971,14 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9971
9971
|
multiple?: boolean | undefined;
|
|
9972
9972
|
})[];
|
|
9973
9973
|
layout: "column" | "row" | "grid";
|
|
9974
|
-
|
|
9974
|
+
id?: string | undefined;
|
|
9975
9975
|
title?: string | undefined;
|
|
9976
|
+
description?: string | undefined;
|
|
9976
9977
|
visibleWhen?: {
|
|
9977
9978
|
fieldKey: string;
|
|
9978
9979
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
9979
9980
|
value?: unknown;
|
|
9980
9981
|
}[] | undefined;
|
|
9981
|
-
id?: string | undefined;
|
|
9982
9982
|
}, {
|
|
9983
9983
|
type: "group";
|
|
9984
9984
|
fields: ({
|
|
@@ -9995,9 +9995,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
9995
9995
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
9996
9996
|
helperText?: string | undefined;
|
|
9997
9997
|
helperLinks?: {
|
|
9998
|
+
url: string;
|
|
9998
9999
|
label: string;
|
|
9999
10000
|
key: string;
|
|
10000
|
-
url: string;
|
|
10001
10001
|
}[] | undefined;
|
|
10002
10002
|
resolvesTo?: {
|
|
10003
10003
|
key: string;
|
|
@@ -10030,9 +10030,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10030
10030
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10031
10031
|
helperText?: string | undefined;
|
|
10032
10032
|
helperLinks?: {
|
|
10033
|
+
url: string;
|
|
10033
10034
|
label: string;
|
|
10034
10035
|
key: string;
|
|
10035
|
-
url: string;
|
|
10036
10036
|
}[] | undefined;
|
|
10037
10037
|
resolvesTo?: {
|
|
10038
10038
|
key: string;
|
|
@@ -10067,9 +10067,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10067
10067
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10068
10068
|
helperText?: string | undefined;
|
|
10069
10069
|
helperLinks?: {
|
|
10070
|
+
url: string;
|
|
10070
10071
|
label: string;
|
|
10071
10072
|
key: string;
|
|
10072
|
-
url: string;
|
|
10073
10073
|
}[] | undefined;
|
|
10074
10074
|
resolvesTo?: {
|
|
10075
10075
|
key: string;
|
|
@@ -10102,9 +10102,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10102
10102
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10103
10103
|
helperText?: string | undefined;
|
|
10104
10104
|
helperLinks?: {
|
|
10105
|
+
url: string;
|
|
10105
10106
|
label: string;
|
|
10106
10107
|
key: string;
|
|
10107
|
-
url: string;
|
|
10108
10108
|
}[] | undefined;
|
|
10109
10109
|
resolvesTo?: {
|
|
10110
10110
|
key: string;
|
|
@@ -10146,9 +10146,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10146
10146
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10147
10147
|
helperText?: string | undefined;
|
|
10148
10148
|
helperLinks?: {
|
|
10149
|
+
url: string;
|
|
10149
10150
|
label: string;
|
|
10150
10151
|
key: string;
|
|
10151
|
-
url: string;
|
|
10152
10152
|
}[] | undefined;
|
|
10153
10153
|
resolvesTo?: {
|
|
10154
10154
|
key: string;
|
|
@@ -10187,9 +10187,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10187
10187
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10188
10188
|
helperText?: string | undefined;
|
|
10189
10189
|
helperLinks?: {
|
|
10190
|
+
url: string;
|
|
10190
10191
|
label: string;
|
|
10191
10192
|
key: string;
|
|
10192
|
-
url: string;
|
|
10193
10193
|
}[] | undefined;
|
|
10194
10194
|
resolvesTo?: {
|
|
10195
10195
|
key: string;
|
|
@@ -10230,9 +10230,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10230
10230
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10231
10231
|
helperText?: string | undefined;
|
|
10232
10232
|
helperLinks?: {
|
|
10233
|
+
url: string;
|
|
10233
10234
|
label: string;
|
|
10234
10235
|
key: string;
|
|
10235
|
-
url: string;
|
|
10236
10236
|
}[] | undefined;
|
|
10237
10237
|
resolvesTo?: {
|
|
10238
10238
|
key: string;
|
|
@@ -10265,9 +10265,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10265
10265
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10266
10266
|
helperText?: string | undefined;
|
|
10267
10267
|
helperLinks?: {
|
|
10268
|
+
url: string;
|
|
10268
10269
|
label: string;
|
|
10269
10270
|
key: string;
|
|
10270
|
-
url: string;
|
|
10271
10271
|
}[] | undefined;
|
|
10272
10272
|
resolvesTo?: {
|
|
10273
10273
|
key: string;
|
|
@@ -10300,9 +10300,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10300
10300
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10301
10301
|
helperText?: string | undefined;
|
|
10302
10302
|
helperLinks?: {
|
|
10303
|
+
url: string;
|
|
10303
10304
|
label: string;
|
|
10304
10305
|
key: string;
|
|
10305
|
-
url: string;
|
|
10306
10306
|
}[] | undefined;
|
|
10307
10307
|
resolvesTo?: {
|
|
10308
10308
|
key: string;
|
|
@@ -10335,9 +10335,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10335
10335
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10336
10336
|
helperText?: string | undefined;
|
|
10337
10337
|
helperLinks?: {
|
|
10338
|
+
url: string;
|
|
10338
10339
|
label: string;
|
|
10339
10340
|
key: string;
|
|
10340
|
-
url: string;
|
|
10341
10341
|
}[] | undefined;
|
|
10342
10342
|
resolvesTo?: {
|
|
10343
10343
|
key: string;
|
|
@@ -10383,9 +10383,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10383
10383
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10384
10384
|
helperText?: string | undefined;
|
|
10385
10385
|
helperLinks?: {
|
|
10386
|
+
url: string;
|
|
10386
10387
|
label: string;
|
|
10387
10388
|
key: string;
|
|
10388
|
-
url: string;
|
|
10389
10389
|
}[] | undefined;
|
|
10390
10390
|
resolvesTo?: {
|
|
10391
10391
|
key: string;
|
|
@@ -10440,9 +10440,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10440
10440
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10441
10441
|
helperText?: string | undefined;
|
|
10442
10442
|
helperLinks?: {
|
|
10443
|
+
url: string;
|
|
10443
10444
|
label: string;
|
|
10444
10445
|
key: string;
|
|
10445
|
-
url: string;
|
|
10446
10446
|
}[] | undefined;
|
|
10447
10447
|
resolvesTo?: {
|
|
10448
10448
|
key: string;
|
|
@@ -10465,14 +10465,14 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10465
10465
|
maxFileSizeMb?: number | undefined;
|
|
10466
10466
|
multiple?: boolean | undefined;
|
|
10467
10467
|
})[];
|
|
10468
|
-
|
|
10468
|
+
id?: string | undefined;
|
|
10469
10469
|
title?: string | undefined;
|
|
10470
|
+
description?: string | undefined;
|
|
10470
10471
|
visibleWhen?: {
|
|
10471
10472
|
fieldKey: string;
|
|
10472
10473
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
10473
10474
|
value?: unknown;
|
|
10474
10475
|
}[] | undefined;
|
|
10475
|
-
id?: string | undefined;
|
|
10476
10476
|
layout?: "column" | "row" | "grid" | undefined;
|
|
10477
10477
|
}>, z.ZodObject<{
|
|
10478
10478
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10499,13 +10499,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10499
10499
|
label: z.ZodString;
|
|
10500
10500
|
url: z.ZodString;
|
|
10501
10501
|
}, "strip", z.ZodTypeAny, {
|
|
10502
|
+
url: string;
|
|
10502
10503
|
label: string;
|
|
10503
10504
|
key: string;
|
|
10504
|
-
url: string;
|
|
10505
10505
|
}, {
|
|
10506
|
+
url: string;
|
|
10506
10507
|
label: string;
|
|
10507
10508
|
key: string;
|
|
10508
|
-
url: string;
|
|
10509
10509
|
}>, "many">>;
|
|
10510
10510
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
10511
10511
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -10577,9 +10577,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10577
10577
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10578
10578
|
helperText?: string | undefined;
|
|
10579
10579
|
helperLinks?: {
|
|
10580
|
+
url: string;
|
|
10580
10581
|
label: string;
|
|
10581
10582
|
key: string;
|
|
10582
|
-
url: string;
|
|
10583
10583
|
}[] | undefined;
|
|
10584
10584
|
resolvesTo?: {
|
|
10585
10585
|
key: string;
|
|
@@ -10612,9 +10612,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10612
10612
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10613
10613
|
helperText?: string | undefined;
|
|
10614
10614
|
helperLinks?: {
|
|
10615
|
+
url: string;
|
|
10615
10616
|
label: string;
|
|
10616
10617
|
key: string;
|
|
10617
|
-
url: string;
|
|
10618
10618
|
}[] | undefined;
|
|
10619
10619
|
resolvesTo?: {
|
|
10620
10620
|
key: string;
|
|
@@ -10643,13 +10643,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10643
10643
|
label: z.ZodString;
|
|
10644
10644
|
url: z.ZodString;
|
|
10645
10645
|
}, "strip", z.ZodTypeAny, {
|
|
10646
|
+
url: string;
|
|
10646
10647
|
label: string;
|
|
10647
10648
|
key: string;
|
|
10648
|
-
url: string;
|
|
10649
10649
|
}, {
|
|
10650
|
+
url: string;
|
|
10650
10651
|
label: string;
|
|
10651
10652
|
key: string;
|
|
10652
|
-
url: string;
|
|
10653
10653
|
}>, "many">>;
|
|
10654
10654
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
10655
10655
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -10722,9 +10722,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10722
10722
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10723
10723
|
helperText?: string | undefined;
|
|
10724
10724
|
helperLinks?: {
|
|
10725
|
+
url: string;
|
|
10725
10726
|
label: string;
|
|
10726
10727
|
key: string;
|
|
10727
|
-
url: string;
|
|
10728
10728
|
}[] | undefined;
|
|
10729
10729
|
resolvesTo?: {
|
|
10730
10730
|
key: string;
|
|
@@ -10758,9 +10758,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10758
10758
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10759
10759
|
helperText?: string | undefined;
|
|
10760
10760
|
helperLinks?: {
|
|
10761
|
+
url: string;
|
|
10761
10762
|
label: string;
|
|
10762
10763
|
key: string;
|
|
10763
|
-
url: string;
|
|
10764
10764
|
}[] | undefined;
|
|
10765
10765
|
resolvesTo?: {
|
|
10766
10766
|
key: string;
|
|
@@ -10790,13 +10790,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10790
10790
|
label: z.ZodString;
|
|
10791
10791
|
url: z.ZodString;
|
|
10792
10792
|
}, "strip", z.ZodTypeAny, {
|
|
10793
|
+
url: string;
|
|
10793
10794
|
label: string;
|
|
10794
10795
|
key: string;
|
|
10795
|
-
url: string;
|
|
10796
10796
|
}, {
|
|
10797
|
+
url: string;
|
|
10797
10798
|
label: string;
|
|
10798
10799
|
key: string;
|
|
10799
|
-
url: string;
|
|
10800
10800
|
}>, "many">>;
|
|
10801
10801
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
10802
10802
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -10870,9 +10870,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10870
10870
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10871
10871
|
helperText?: string | undefined;
|
|
10872
10872
|
helperLinks?: {
|
|
10873
|
+
url: string;
|
|
10873
10874
|
label: string;
|
|
10874
10875
|
key: string;
|
|
10875
|
-
url: string;
|
|
10876
10876
|
}[] | undefined;
|
|
10877
10877
|
resolvesTo?: {
|
|
10878
10878
|
key: string;
|
|
@@ -10906,9 +10906,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10906
10906
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
10907
10907
|
helperText?: string | undefined;
|
|
10908
10908
|
helperLinks?: {
|
|
10909
|
+
url: string;
|
|
10909
10910
|
label: string;
|
|
10910
10911
|
key: string;
|
|
10911
|
-
url: string;
|
|
10912
10912
|
}[] | undefined;
|
|
10913
10913
|
resolvesTo?: {
|
|
10914
10914
|
key: string;
|
|
@@ -10937,13 +10937,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
10937
10937
|
label: z.ZodString;
|
|
10938
10938
|
url: z.ZodString;
|
|
10939
10939
|
}, "strip", z.ZodTypeAny, {
|
|
10940
|
+
url: string;
|
|
10940
10941
|
label: string;
|
|
10941
10942
|
key: string;
|
|
10942
|
-
url: string;
|
|
10943
10943
|
}, {
|
|
10944
|
+
url: string;
|
|
10944
10945
|
label: string;
|
|
10945
10946
|
key: string;
|
|
10946
|
-
url: string;
|
|
10947
10947
|
}>, "many">>;
|
|
10948
10948
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
10949
10949
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -11018,9 +11018,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11018
11018
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11019
11019
|
helperText?: string | undefined;
|
|
11020
11020
|
helperLinks?: {
|
|
11021
|
+
url: string;
|
|
11021
11022
|
label: string;
|
|
11022
11023
|
key: string;
|
|
11023
|
-
url: string;
|
|
11024
11024
|
}[] | undefined;
|
|
11025
11025
|
resolvesTo?: {
|
|
11026
11026
|
key: string;
|
|
@@ -11056,9 +11056,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11056
11056
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11057
11057
|
helperText?: string | undefined;
|
|
11058
11058
|
helperLinks?: {
|
|
11059
|
+
url: string;
|
|
11059
11060
|
label: string;
|
|
11060
11061
|
key: string;
|
|
11061
|
-
url: string;
|
|
11062
11062
|
}[] | undefined;
|
|
11063
11063
|
resolvesTo?: {
|
|
11064
11064
|
key: string;
|
|
@@ -11090,13 +11090,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11090
11090
|
label: z.ZodString;
|
|
11091
11091
|
url: z.ZodString;
|
|
11092
11092
|
}, "strip", z.ZodTypeAny, {
|
|
11093
|
+
url: string;
|
|
11093
11094
|
label: string;
|
|
11094
11095
|
key: string;
|
|
11095
|
-
url: string;
|
|
11096
11096
|
}, {
|
|
11097
|
+
url: string;
|
|
11097
11098
|
label: string;
|
|
11098
11099
|
key: string;
|
|
11099
|
-
url: string;
|
|
11100
11100
|
}>, "many">>;
|
|
11101
11101
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
11102
11102
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -11190,9 +11190,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11190
11190
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11191
11191
|
helperText?: string | undefined;
|
|
11192
11192
|
helperLinks?: {
|
|
11193
|
+
url: string;
|
|
11193
11194
|
label: string;
|
|
11194
11195
|
key: string;
|
|
11195
|
-
url: string;
|
|
11196
11196
|
}[] | undefined;
|
|
11197
11197
|
resolvesTo?: {
|
|
11198
11198
|
key: string;
|
|
@@ -11231,9 +11231,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11231
11231
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11232
11232
|
helperText?: string | undefined;
|
|
11233
11233
|
helperLinks?: {
|
|
11234
|
+
url: string;
|
|
11234
11235
|
label: string;
|
|
11235
11236
|
key: string;
|
|
11236
|
-
url: string;
|
|
11237
11237
|
}[] | undefined;
|
|
11238
11238
|
resolvesTo?: {
|
|
11239
11239
|
key: string;
|
|
@@ -11262,13 +11262,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11262
11262
|
label: z.ZodString;
|
|
11263
11263
|
url: z.ZodString;
|
|
11264
11264
|
}, "strip", z.ZodTypeAny, {
|
|
11265
|
+
url: string;
|
|
11265
11266
|
label: string;
|
|
11266
11267
|
key: string;
|
|
11267
|
-
url: string;
|
|
11268
11268
|
}, {
|
|
11269
|
+
url: string;
|
|
11269
11270
|
label: string;
|
|
11270
11271
|
key: string;
|
|
11271
|
-
url: string;
|
|
11272
11272
|
}>, "many">>;
|
|
11273
11273
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
11274
11274
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -11364,9 +11364,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11364
11364
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11365
11365
|
helperText?: string | undefined;
|
|
11366
11366
|
helperLinks?: {
|
|
11367
|
+
url: string;
|
|
11367
11368
|
label: string;
|
|
11368
11369
|
key: string;
|
|
11369
|
-
url: string;
|
|
11370
11370
|
}[] | undefined;
|
|
11371
11371
|
resolvesTo?: {
|
|
11372
11372
|
key: string;
|
|
@@ -11407,9 +11407,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11407
11407
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11408
11408
|
helperText?: string | undefined;
|
|
11409
11409
|
helperLinks?: {
|
|
11410
|
+
url: string;
|
|
11410
11411
|
label: string;
|
|
11411
11412
|
key: string;
|
|
11412
|
-
url: string;
|
|
11413
11413
|
}[] | undefined;
|
|
11414
11414
|
resolvesTo?: {
|
|
11415
11415
|
key: string;
|
|
@@ -11440,13 +11440,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11440
11440
|
label: z.ZodString;
|
|
11441
11441
|
url: z.ZodString;
|
|
11442
11442
|
}, "strip", z.ZodTypeAny, {
|
|
11443
|
+
url: string;
|
|
11443
11444
|
label: string;
|
|
11444
11445
|
key: string;
|
|
11445
|
-
url: string;
|
|
11446
11446
|
}, {
|
|
11447
|
+
url: string;
|
|
11447
11448
|
label: string;
|
|
11448
11449
|
key: string;
|
|
11449
|
-
url: string;
|
|
11450
11450
|
}>, "many">>;
|
|
11451
11451
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
11452
11452
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -11540,9 +11540,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11540
11540
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11541
11541
|
helperText?: string | undefined;
|
|
11542
11542
|
helperLinks?: {
|
|
11543
|
+
url: string;
|
|
11543
11544
|
label: string;
|
|
11544
11545
|
key: string;
|
|
11545
|
-
url: string;
|
|
11546
11546
|
}[] | undefined;
|
|
11547
11547
|
resolvesTo?: {
|
|
11548
11548
|
key: string;
|
|
@@ -11581,9 +11581,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11581
11581
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11582
11582
|
helperText?: string | undefined;
|
|
11583
11583
|
helperLinks?: {
|
|
11584
|
+
url: string;
|
|
11584
11585
|
label: string;
|
|
11585
11586
|
key: string;
|
|
11586
|
-
url: string;
|
|
11587
11587
|
}[] | undefined;
|
|
11588
11588
|
resolvesTo?: {
|
|
11589
11589
|
key: string;
|
|
@@ -11612,13 +11612,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11612
11612
|
label: z.ZodString;
|
|
11613
11613
|
url: z.ZodString;
|
|
11614
11614
|
}, "strip", z.ZodTypeAny, {
|
|
11615
|
+
url: string;
|
|
11615
11616
|
label: string;
|
|
11616
11617
|
key: string;
|
|
11617
|
-
url: string;
|
|
11618
11618
|
}, {
|
|
11619
|
+
url: string;
|
|
11619
11620
|
label: string;
|
|
11620
11621
|
key: string;
|
|
11621
|
-
url: string;
|
|
11622
11622
|
}>, "many">>;
|
|
11623
11623
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
11624
11624
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -11690,9 +11690,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11690
11690
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11691
11691
|
helperText?: string | undefined;
|
|
11692
11692
|
helperLinks?: {
|
|
11693
|
+
url: string;
|
|
11693
11694
|
label: string;
|
|
11694
11695
|
key: string;
|
|
11695
|
-
url: string;
|
|
11696
11696
|
}[] | undefined;
|
|
11697
11697
|
resolvesTo?: {
|
|
11698
11698
|
key: string;
|
|
@@ -11725,9 +11725,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11725
11725
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11726
11726
|
helperText?: string | undefined;
|
|
11727
11727
|
helperLinks?: {
|
|
11728
|
+
url: string;
|
|
11728
11729
|
label: string;
|
|
11729
11730
|
key: string;
|
|
11730
|
-
url: string;
|
|
11731
11731
|
}[] | undefined;
|
|
11732
11732
|
resolvesTo?: {
|
|
11733
11733
|
key: string;
|
|
@@ -11756,13 +11756,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11756
11756
|
label: z.ZodString;
|
|
11757
11757
|
url: z.ZodString;
|
|
11758
11758
|
}, "strip", z.ZodTypeAny, {
|
|
11759
|
+
url: string;
|
|
11759
11760
|
label: string;
|
|
11760
11761
|
key: string;
|
|
11761
|
-
url: string;
|
|
11762
11762
|
}, {
|
|
11763
|
+
url: string;
|
|
11763
11764
|
label: string;
|
|
11764
11765
|
key: string;
|
|
11765
|
-
url: string;
|
|
11766
11766
|
}>, "many">>;
|
|
11767
11767
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
11768
11768
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -11834,9 +11834,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11834
11834
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11835
11835
|
helperText?: string | undefined;
|
|
11836
11836
|
helperLinks?: {
|
|
11837
|
+
url: string;
|
|
11837
11838
|
label: string;
|
|
11838
11839
|
key: string;
|
|
11839
|
-
url: string;
|
|
11840
11840
|
}[] | undefined;
|
|
11841
11841
|
resolvesTo?: {
|
|
11842
11842
|
key: string;
|
|
@@ -11869,9 +11869,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11869
11869
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
11870
11870
|
helperText?: string | undefined;
|
|
11871
11871
|
helperLinks?: {
|
|
11872
|
+
url: string;
|
|
11872
11873
|
label: string;
|
|
11873
11874
|
key: string;
|
|
11874
|
-
url: string;
|
|
11875
11875
|
}[] | undefined;
|
|
11876
11876
|
resolvesTo?: {
|
|
11877
11877
|
key: string;
|
|
@@ -11900,13 +11900,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
11900
11900
|
label: z.ZodString;
|
|
11901
11901
|
url: z.ZodString;
|
|
11902
11902
|
}, "strip", z.ZodTypeAny, {
|
|
11903
|
+
url: string;
|
|
11903
11904
|
label: string;
|
|
11904
11905
|
key: string;
|
|
11905
|
-
url: string;
|
|
11906
11906
|
}, {
|
|
11907
|
+
url: string;
|
|
11907
11908
|
label: string;
|
|
11908
11909
|
key: string;
|
|
11909
|
-
url: string;
|
|
11910
11910
|
}>, "many">>;
|
|
11911
11911
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
11912
11912
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -12007,9 +12007,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12007
12007
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12008
12008
|
helperText?: string | undefined;
|
|
12009
12009
|
helperLinks?: {
|
|
12010
|
+
url: string;
|
|
12010
12011
|
label: string;
|
|
12011
12012
|
key: string;
|
|
12012
|
-
url: string;
|
|
12013
12013
|
}[] | undefined;
|
|
12014
12014
|
resolvesTo?: {
|
|
12015
12015
|
key: string;
|
|
@@ -12055,9 +12055,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12055
12055
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12056
12056
|
helperText?: string | undefined;
|
|
12057
12057
|
helperLinks?: {
|
|
12058
|
+
url: string;
|
|
12058
12059
|
label: string;
|
|
12059
12060
|
key: string;
|
|
12060
|
-
url: string;
|
|
12061
12061
|
}[] | undefined;
|
|
12062
12062
|
resolvesTo?: {
|
|
12063
12063
|
key: string;
|
|
@@ -12099,13 +12099,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12099
12099
|
label: z.ZodString;
|
|
12100
12100
|
url: z.ZodString;
|
|
12101
12101
|
}, "strip", z.ZodTypeAny, {
|
|
12102
|
+
url: string;
|
|
12102
12103
|
label: string;
|
|
12103
12104
|
key: string;
|
|
12104
|
-
url: string;
|
|
12105
12105
|
}, {
|
|
12106
|
+
url: string;
|
|
12106
12107
|
label: string;
|
|
12107
12108
|
key: string;
|
|
12108
|
-
url: string;
|
|
12109
12109
|
}>, "many">>;
|
|
12110
12110
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
12111
12111
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -12223,9 +12223,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12223
12223
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12224
12224
|
helperText?: string | undefined;
|
|
12225
12225
|
helperLinks?: {
|
|
12226
|
+
url: string;
|
|
12226
12227
|
label: string;
|
|
12227
12228
|
key: string;
|
|
12228
|
-
url: string;
|
|
12229
12229
|
}[] | undefined;
|
|
12230
12230
|
resolvesTo?: {
|
|
12231
12231
|
key: string;
|
|
@@ -12280,9 +12280,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12280
12280
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12281
12281
|
helperText?: string | undefined;
|
|
12282
12282
|
helperLinks?: {
|
|
12283
|
+
url: string;
|
|
12283
12284
|
label: string;
|
|
12284
12285
|
key: string;
|
|
12285
|
-
url: string;
|
|
12286
12286
|
}[] | undefined;
|
|
12287
12287
|
resolvesTo?: {
|
|
12288
12288
|
key: string;
|
|
@@ -12333,13 +12333,13 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12333
12333
|
label: z.ZodString;
|
|
12334
12334
|
url: z.ZodString;
|
|
12335
12335
|
}, "strip", z.ZodTypeAny, {
|
|
12336
|
+
url: string;
|
|
12336
12337
|
label: string;
|
|
12337
12338
|
key: string;
|
|
12338
|
-
url: string;
|
|
12339
12339
|
}, {
|
|
12340
|
+
url: string;
|
|
12340
12341
|
label: string;
|
|
12341
12342
|
key: string;
|
|
12342
|
-
url: string;
|
|
12343
12343
|
}>, "many">>;
|
|
12344
12344
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
12345
12345
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -12414,9 +12414,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12414
12414
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12415
12415
|
helperText?: string | undefined;
|
|
12416
12416
|
helperLinks?: {
|
|
12417
|
+
url: string;
|
|
12417
12418
|
label: string;
|
|
12418
12419
|
key: string;
|
|
12419
|
-
url: string;
|
|
12420
12420
|
}[] | undefined;
|
|
12421
12421
|
resolvesTo?: {
|
|
12422
12422
|
key: string;
|
|
@@ -12452,9 +12452,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12452
12452
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12453
12453
|
helperText?: string | undefined;
|
|
12454
12454
|
helperLinks?: {
|
|
12455
|
+
url: string;
|
|
12455
12456
|
label: string;
|
|
12456
12457
|
key: string;
|
|
12457
|
-
url: string;
|
|
12458
12458
|
}[] | undefined;
|
|
12459
12459
|
resolvesTo?: {
|
|
12460
12460
|
key: string;
|
|
@@ -12495,9 +12495,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12495
12495
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12496
12496
|
helperText?: string | undefined;
|
|
12497
12497
|
helperLinks?: {
|
|
12498
|
+
url: string;
|
|
12498
12499
|
label: string;
|
|
12499
12500
|
key: string;
|
|
12500
|
-
url: string;
|
|
12501
12501
|
}[] | undefined;
|
|
12502
12502
|
resolvesTo?: {
|
|
12503
12503
|
key: string;
|
|
@@ -12530,9 +12530,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12530
12530
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12531
12531
|
helperText?: string | undefined;
|
|
12532
12532
|
helperLinks?: {
|
|
12533
|
+
url: string;
|
|
12533
12534
|
label: string;
|
|
12534
12535
|
key: string;
|
|
12535
|
-
url: string;
|
|
12536
12536
|
}[] | undefined;
|
|
12537
12537
|
resolvesTo?: {
|
|
12538
12538
|
key: string;
|
|
@@ -12567,9 +12567,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12567
12567
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12568
12568
|
helperText?: string | undefined;
|
|
12569
12569
|
helperLinks?: {
|
|
12570
|
+
url: string;
|
|
12570
12571
|
label: string;
|
|
12571
12572
|
key: string;
|
|
12572
|
-
url: string;
|
|
12573
12573
|
}[] | undefined;
|
|
12574
12574
|
resolvesTo?: {
|
|
12575
12575
|
key: string;
|
|
@@ -12602,9 +12602,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12602
12602
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12603
12603
|
helperText?: string | undefined;
|
|
12604
12604
|
helperLinks?: {
|
|
12605
|
+
url: string;
|
|
12605
12606
|
label: string;
|
|
12606
12607
|
key: string;
|
|
12607
|
-
url: string;
|
|
12608
12608
|
}[] | undefined;
|
|
12609
12609
|
resolvesTo?: {
|
|
12610
12610
|
key: string;
|
|
@@ -12646,9 +12646,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12646
12646
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12647
12647
|
helperText?: string | undefined;
|
|
12648
12648
|
helperLinks?: {
|
|
12649
|
+
url: string;
|
|
12649
12650
|
label: string;
|
|
12650
12651
|
key: string;
|
|
12651
|
-
url: string;
|
|
12652
12652
|
}[] | undefined;
|
|
12653
12653
|
resolvesTo?: {
|
|
12654
12654
|
key: string;
|
|
@@ -12687,9 +12687,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12687
12687
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12688
12688
|
helperText?: string | undefined;
|
|
12689
12689
|
helperLinks?: {
|
|
12690
|
+
url: string;
|
|
12690
12691
|
label: string;
|
|
12691
12692
|
key: string;
|
|
12692
|
-
url: string;
|
|
12693
12693
|
}[] | undefined;
|
|
12694
12694
|
resolvesTo?: {
|
|
12695
12695
|
key: string;
|
|
@@ -12730,9 +12730,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12730
12730
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12731
12731
|
helperText?: string | undefined;
|
|
12732
12732
|
helperLinks?: {
|
|
12733
|
+
url: string;
|
|
12733
12734
|
label: string;
|
|
12734
12735
|
key: string;
|
|
12735
|
-
url: string;
|
|
12736
12736
|
}[] | undefined;
|
|
12737
12737
|
resolvesTo?: {
|
|
12738
12738
|
key: string;
|
|
@@ -12765,9 +12765,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12765
12765
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12766
12766
|
helperText?: string | undefined;
|
|
12767
12767
|
helperLinks?: {
|
|
12768
|
+
url: string;
|
|
12768
12769
|
label: string;
|
|
12769
12770
|
key: string;
|
|
12770
|
-
url: string;
|
|
12771
12771
|
}[] | undefined;
|
|
12772
12772
|
resolvesTo?: {
|
|
12773
12773
|
key: string;
|
|
@@ -12800,9 +12800,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12800
12800
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12801
12801
|
helperText?: string | undefined;
|
|
12802
12802
|
helperLinks?: {
|
|
12803
|
+
url: string;
|
|
12803
12804
|
label: string;
|
|
12804
12805
|
key: string;
|
|
12805
|
-
url: string;
|
|
12806
12806
|
}[] | undefined;
|
|
12807
12807
|
resolvesTo?: {
|
|
12808
12808
|
key: string;
|
|
@@ -12835,9 +12835,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12835
12835
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12836
12836
|
helperText?: string | undefined;
|
|
12837
12837
|
helperLinks?: {
|
|
12838
|
+
url: string;
|
|
12838
12839
|
label: string;
|
|
12839
12840
|
key: string;
|
|
12840
|
-
url: string;
|
|
12841
12841
|
}[] | undefined;
|
|
12842
12842
|
resolvesTo?: {
|
|
12843
12843
|
key: string;
|
|
@@ -12883,9 +12883,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12883
12883
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12884
12884
|
helperText?: string | undefined;
|
|
12885
12885
|
helperLinks?: {
|
|
12886
|
+
url: string;
|
|
12886
12887
|
label: string;
|
|
12887
12888
|
key: string;
|
|
12888
|
-
url: string;
|
|
12889
12889
|
}[] | undefined;
|
|
12890
12890
|
resolvesTo?: {
|
|
12891
12891
|
key: string;
|
|
@@ -12940,9 +12940,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12940
12940
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
12941
12941
|
helperText?: string | undefined;
|
|
12942
12942
|
helperLinks?: {
|
|
12943
|
+
url: string;
|
|
12943
12944
|
label: string;
|
|
12944
12945
|
key: string;
|
|
12945
|
-
url: string;
|
|
12946
12946
|
}[] | undefined;
|
|
12947
12947
|
resolvesTo?: {
|
|
12948
12948
|
key: string;
|
|
@@ -12967,46 +12967,46 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
12967
12967
|
} | {
|
|
12968
12968
|
type: "section";
|
|
12969
12969
|
title: string;
|
|
12970
|
+
id?: string | undefined;
|
|
12970
12971
|
description?: string | undefined;
|
|
12971
12972
|
visibleWhen?: {
|
|
12972
12973
|
fieldKey: string;
|
|
12973
12974
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
12974
12975
|
value?: unknown;
|
|
12975
12976
|
}[] | undefined;
|
|
12976
|
-
id?: string | undefined;
|
|
12977
12977
|
} | {
|
|
12978
12978
|
type: "description";
|
|
12979
12979
|
text: string;
|
|
12980
|
+
id?: string | undefined;
|
|
12980
12981
|
helperLinks?: {
|
|
12982
|
+
url: string;
|
|
12981
12983
|
label: string;
|
|
12982
12984
|
key: string;
|
|
12983
|
-
url: string;
|
|
12984
12985
|
}[] | undefined;
|
|
12985
12986
|
visibleWhen?: {
|
|
12986
12987
|
fieldKey: string;
|
|
12987
12988
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
12988
12989
|
value?: unknown;
|
|
12989
12990
|
}[] | undefined;
|
|
12990
|
-
id?: string | undefined;
|
|
12991
12991
|
} | {
|
|
12992
12992
|
type: "divider";
|
|
12993
|
+
id?: string | undefined;
|
|
12993
12994
|
visibleWhen?: {
|
|
12994
12995
|
fieldKey: string;
|
|
12995
12996
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
12996
12997
|
value?: unknown;
|
|
12997
12998
|
}[] | undefined;
|
|
12998
|
-
id?: string | undefined;
|
|
12999
12999
|
} | {
|
|
13000
13000
|
type: "banner";
|
|
13001
13001
|
description: string;
|
|
13002
13002
|
tone: "info" | "success" | "warning" | "danger";
|
|
13003
|
+
id?: string | undefined;
|
|
13003
13004
|
title?: string | undefined;
|
|
13004
13005
|
visibleWhen?: {
|
|
13005
13006
|
fieldKey: string;
|
|
13006
13007
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
13007
13008
|
value?: unknown;
|
|
13008
13009
|
}[] | undefined;
|
|
13009
|
-
id?: string | undefined;
|
|
13010
13010
|
} | {
|
|
13011
13011
|
type: "group";
|
|
13012
13012
|
fields: ({
|
|
@@ -13023,9 +13023,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13023
13023
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13024
13024
|
helperText?: string | undefined;
|
|
13025
13025
|
helperLinks?: {
|
|
13026
|
+
url: string;
|
|
13026
13027
|
label: string;
|
|
13027
13028
|
key: string;
|
|
13028
|
-
url: string;
|
|
13029
13029
|
}[] | undefined;
|
|
13030
13030
|
resolvesTo?: {
|
|
13031
13031
|
key: string;
|
|
@@ -13058,9 +13058,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13058
13058
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13059
13059
|
helperText?: string | undefined;
|
|
13060
13060
|
helperLinks?: {
|
|
13061
|
+
url: string;
|
|
13061
13062
|
label: string;
|
|
13062
13063
|
key: string;
|
|
13063
|
-
url: string;
|
|
13064
13064
|
}[] | undefined;
|
|
13065
13065
|
resolvesTo?: {
|
|
13066
13066
|
key: string;
|
|
@@ -13095,9 +13095,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13095
13095
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13096
13096
|
helperText?: string | undefined;
|
|
13097
13097
|
helperLinks?: {
|
|
13098
|
+
url: string;
|
|
13098
13099
|
label: string;
|
|
13099
13100
|
key: string;
|
|
13100
|
-
url: string;
|
|
13101
13101
|
}[] | undefined;
|
|
13102
13102
|
resolvesTo?: {
|
|
13103
13103
|
key: string;
|
|
@@ -13130,9 +13130,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13130
13130
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13131
13131
|
helperText?: string | undefined;
|
|
13132
13132
|
helperLinks?: {
|
|
13133
|
+
url: string;
|
|
13133
13134
|
label: string;
|
|
13134
13135
|
key: string;
|
|
13135
|
-
url: string;
|
|
13136
13136
|
}[] | undefined;
|
|
13137
13137
|
resolvesTo?: {
|
|
13138
13138
|
key: string;
|
|
@@ -13174,9 +13174,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13174
13174
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13175
13175
|
helperText?: string | undefined;
|
|
13176
13176
|
helperLinks?: {
|
|
13177
|
+
url: string;
|
|
13177
13178
|
label: string;
|
|
13178
13179
|
key: string;
|
|
13179
|
-
url: string;
|
|
13180
13180
|
}[] | undefined;
|
|
13181
13181
|
resolvesTo?: {
|
|
13182
13182
|
key: string;
|
|
@@ -13215,9 +13215,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13215
13215
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13216
13216
|
helperText?: string | undefined;
|
|
13217
13217
|
helperLinks?: {
|
|
13218
|
+
url: string;
|
|
13218
13219
|
label: string;
|
|
13219
13220
|
key: string;
|
|
13220
|
-
url: string;
|
|
13221
13221
|
}[] | undefined;
|
|
13222
13222
|
resolvesTo?: {
|
|
13223
13223
|
key: string;
|
|
@@ -13258,9 +13258,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13258
13258
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13259
13259
|
helperText?: string | undefined;
|
|
13260
13260
|
helperLinks?: {
|
|
13261
|
+
url: string;
|
|
13261
13262
|
label: string;
|
|
13262
13263
|
key: string;
|
|
13263
|
-
url: string;
|
|
13264
13264
|
}[] | undefined;
|
|
13265
13265
|
resolvesTo?: {
|
|
13266
13266
|
key: string;
|
|
@@ -13293,9 +13293,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13293
13293
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13294
13294
|
helperText?: string | undefined;
|
|
13295
13295
|
helperLinks?: {
|
|
13296
|
+
url: string;
|
|
13296
13297
|
label: string;
|
|
13297
13298
|
key: string;
|
|
13298
|
-
url: string;
|
|
13299
13299
|
}[] | undefined;
|
|
13300
13300
|
resolvesTo?: {
|
|
13301
13301
|
key: string;
|
|
@@ -13328,9 +13328,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13328
13328
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13329
13329
|
helperText?: string | undefined;
|
|
13330
13330
|
helperLinks?: {
|
|
13331
|
+
url: string;
|
|
13331
13332
|
label: string;
|
|
13332
13333
|
key: string;
|
|
13333
|
-
url: string;
|
|
13334
13334
|
}[] | undefined;
|
|
13335
13335
|
resolvesTo?: {
|
|
13336
13336
|
key: string;
|
|
@@ -13363,9 +13363,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13363
13363
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13364
13364
|
helperText?: string | undefined;
|
|
13365
13365
|
helperLinks?: {
|
|
13366
|
+
url: string;
|
|
13366
13367
|
label: string;
|
|
13367
13368
|
key: string;
|
|
13368
|
-
url: string;
|
|
13369
13369
|
}[] | undefined;
|
|
13370
13370
|
resolvesTo?: {
|
|
13371
13371
|
key: string;
|
|
@@ -13411,9 +13411,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13411
13411
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13412
13412
|
helperText?: string | undefined;
|
|
13413
13413
|
helperLinks?: {
|
|
13414
|
+
url: string;
|
|
13414
13415
|
label: string;
|
|
13415
13416
|
key: string;
|
|
13416
|
-
url: string;
|
|
13417
13417
|
}[] | undefined;
|
|
13418
13418
|
resolvesTo?: {
|
|
13419
13419
|
key: string;
|
|
@@ -13468,9 +13468,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13468
13468
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13469
13469
|
helperText?: string | undefined;
|
|
13470
13470
|
helperLinks?: {
|
|
13471
|
+
url: string;
|
|
13471
13472
|
label: string;
|
|
13472
13473
|
key: string;
|
|
13473
|
-
url: string;
|
|
13474
13474
|
}[] | undefined;
|
|
13475
13475
|
resolvesTo?: {
|
|
13476
13476
|
key: string;
|
|
@@ -13494,22 +13494,22 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13494
13494
|
multiple?: boolean | undefined;
|
|
13495
13495
|
})[];
|
|
13496
13496
|
layout: "column" | "row" | "grid";
|
|
13497
|
-
|
|
13497
|
+
id?: string | undefined;
|
|
13498
13498
|
title?: string | undefined;
|
|
13499
|
+
description?: string | undefined;
|
|
13499
13500
|
visibleWhen?: {
|
|
13500
13501
|
fieldKey: string;
|
|
13501
13502
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
13502
13503
|
value?: unknown;
|
|
13503
13504
|
}[] | undefined;
|
|
13504
|
-
id?: string | undefined;
|
|
13505
13505
|
} | {
|
|
13506
13506
|
type: "native";
|
|
13507
13507
|
renderer: string;
|
|
13508
13508
|
id?: string | undefined;
|
|
13509
13509
|
props?: Record<string, unknown> | undefined;
|
|
13510
13510
|
})[];
|
|
13511
|
-
description?: string | undefined;
|
|
13512
13511
|
title?: string | undefined;
|
|
13512
|
+
description?: string | undefined;
|
|
13513
13513
|
hooks?: {
|
|
13514
13514
|
draftResolverFunctionName?: string | undefined;
|
|
13515
13515
|
validateFunctionName?: string | undefined;
|
|
@@ -13531,9 +13531,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13531
13531
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13532
13532
|
helperText?: string | undefined;
|
|
13533
13533
|
helperLinks?: {
|
|
13534
|
+
url: string;
|
|
13534
13535
|
label: string;
|
|
13535
13536
|
key: string;
|
|
13536
|
-
url: string;
|
|
13537
13537
|
}[] | undefined;
|
|
13538
13538
|
resolvesTo?: {
|
|
13539
13539
|
key: string;
|
|
@@ -13566,9 +13566,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13566
13566
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13567
13567
|
helperText?: string | undefined;
|
|
13568
13568
|
helperLinks?: {
|
|
13569
|
+
url: string;
|
|
13569
13570
|
label: string;
|
|
13570
13571
|
key: string;
|
|
13571
|
-
url: string;
|
|
13572
13572
|
}[] | undefined;
|
|
13573
13573
|
resolvesTo?: {
|
|
13574
13574
|
key: string;
|
|
@@ -13603,9 +13603,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13603
13603
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13604
13604
|
helperText?: string | undefined;
|
|
13605
13605
|
helperLinks?: {
|
|
13606
|
+
url: string;
|
|
13606
13607
|
label: string;
|
|
13607
13608
|
key: string;
|
|
13608
|
-
url: string;
|
|
13609
13609
|
}[] | undefined;
|
|
13610
13610
|
resolvesTo?: {
|
|
13611
13611
|
key: string;
|
|
@@ -13638,9 +13638,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13638
13638
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13639
13639
|
helperText?: string | undefined;
|
|
13640
13640
|
helperLinks?: {
|
|
13641
|
+
url: string;
|
|
13641
13642
|
label: string;
|
|
13642
13643
|
key: string;
|
|
13643
|
-
url: string;
|
|
13644
13644
|
}[] | undefined;
|
|
13645
13645
|
resolvesTo?: {
|
|
13646
13646
|
key: string;
|
|
@@ -13682,9 +13682,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13682
13682
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13683
13683
|
helperText?: string | undefined;
|
|
13684
13684
|
helperLinks?: {
|
|
13685
|
+
url: string;
|
|
13685
13686
|
label: string;
|
|
13686
13687
|
key: string;
|
|
13687
|
-
url: string;
|
|
13688
13688
|
}[] | undefined;
|
|
13689
13689
|
resolvesTo?: {
|
|
13690
13690
|
key: string;
|
|
@@ -13723,9 +13723,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13723
13723
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13724
13724
|
helperText?: string | undefined;
|
|
13725
13725
|
helperLinks?: {
|
|
13726
|
+
url: string;
|
|
13726
13727
|
label: string;
|
|
13727
13728
|
key: string;
|
|
13728
|
-
url: string;
|
|
13729
13729
|
}[] | undefined;
|
|
13730
13730
|
resolvesTo?: {
|
|
13731
13731
|
key: string;
|
|
@@ -13766,9 +13766,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13766
13766
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13767
13767
|
helperText?: string | undefined;
|
|
13768
13768
|
helperLinks?: {
|
|
13769
|
+
url: string;
|
|
13769
13770
|
label: string;
|
|
13770
13771
|
key: string;
|
|
13771
|
-
url: string;
|
|
13772
13772
|
}[] | undefined;
|
|
13773
13773
|
resolvesTo?: {
|
|
13774
13774
|
key: string;
|
|
@@ -13801,9 +13801,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13801
13801
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13802
13802
|
helperText?: string | undefined;
|
|
13803
13803
|
helperLinks?: {
|
|
13804
|
+
url: string;
|
|
13804
13805
|
label: string;
|
|
13805
13806
|
key: string;
|
|
13806
|
-
url: string;
|
|
13807
13807
|
}[] | undefined;
|
|
13808
13808
|
resolvesTo?: {
|
|
13809
13809
|
key: string;
|
|
@@ -13836,9 +13836,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13836
13836
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13837
13837
|
helperText?: string | undefined;
|
|
13838
13838
|
helperLinks?: {
|
|
13839
|
+
url: string;
|
|
13839
13840
|
label: string;
|
|
13840
13841
|
key: string;
|
|
13841
|
-
url: string;
|
|
13842
13842
|
}[] | undefined;
|
|
13843
13843
|
resolvesTo?: {
|
|
13844
13844
|
key: string;
|
|
@@ -13871,9 +13871,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13871
13871
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13872
13872
|
helperText?: string | undefined;
|
|
13873
13873
|
helperLinks?: {
|
|
13874
|
+
url: string;
|
|
13874
13875
|
label: string;
|
|
13875
13876
|
key: string;
|
|
13876
|
-
url: string;
|
|
13877
13877
|
}[] | undefined;
|
|
13878
13878
|
resolvesTo?: {
|
|
13879
13879
|
key: string;
|
|
@@ -13919,9 +13919,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13919
13919
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13920
13920
|
helperText?: string | undefined;
|
|
13921
13921
|
helperLinks?: {
|
|
13922
|
+
url: string;
|
|
13922
13923
|
label: string;
|
|
13923
13924
|
key: string;
|
|
13924
|
-
url: string;
|
|
13925
13925
|
}[] | undefined;
|
|
13926
13926
|
resolvesTo?: {
|
|
13927
13927
|
key: string;
|
|
@@ -13976,9 +13976,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
13976
13976
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
13977
13977
|
helperText?: string | undefined;
|
|
13978
13978
|
helperLinks?: {
|
|
13979
|
+
url: string;
|
|
13979
13980
|
label: string;
|
|
13980
13981
|
key: string;
|
|
13981
|
-
url: string;
|
|
13982
13982
|
}[] | undefined;
|
|
13983
13983
|
resolvesTo?: {
|
|
13984
13984
|
key: string;
|
|
@@ -14003,46 +14003,46 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14003
14003
|
} | {
|
|
14004
14004
|
type: "section";
|
|
14005
14005
|
title: string;
|
|
14006
|
+
id?: string | undefined;
|
|
14006
14007
|
description?: string | undefined;
|
|
14007
14008
|
visibleWhen?: {
|
|
14008
14009
|
fieldKey: string;
|
|
14009
14010
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
14010
14011
|
value?: unknown;
|
|
14011
14012
|
}[] | undefined;
|
|
14012
|
-
id?: string | undefined;
|
|
14013
14013
|
} | {
|
|
14014
14014
|
type: "description";
|
|
14015
14015
|
text: string;
|
|
14016
|
+
id?: string | undefined;
|
|
14016
14017
|
helperLinks?: {
|
|
14018
|
+
url: string;
|
|
14017
14019
|
label: string;
|
|
14018
14020
|
key: string;
|
|
14019
|
-
url: string;
|
|
14020
14021
|
}[] | undefined;
|
|
14021
14022
|
visibleWhen?: {
|
|
14022
14023
|
fieldKey: string;
|
|
14023
14024
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
14024
14025
|
value?: unknown;
|
|
14025
14026
|
}[] | undefined;
|
|
14026
|
-
id?: string | undefined;
|
|
14027
14027
|
} | {
|
|
14028
14028
|
type: "divider";
|
|
14029
|
+
id?: string | undefined;
|
|
14029
14030
|
visibleWhen?: {
|
|
14030
14031
|
fieldKey: string;
|
|
14031
14032
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
14032
14033
|
value?: unknown;
|
|
14033
14034
|
}[] | undefined;
|
|
14034
|
-
id?: string | undefined;
|
|
14035
14035
|
} | {
|
|
14036
14036
|
type: "banner";
|
|
14037
14037
|
description: string;
|
|
14038
|
-
|
|
14038
|
+
id?: string | undefined;
|
|
14039
14039
|
title?: string | undefined;
|
|
14040
|
+
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
14040
14041
|
visibleWhen?: {
|
|
14041
14042
|
fieldKey: string;
|
|
14042
14043
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
14043
14044
|
value?: unknown;
|
|
14044
14045
|
}[] | undefined;
|
|
14045
|
-
id?: string | undefined;
|
|
14046
14046
|
} | {
|
|
14047
14047
|
type: "group";
|
|
14048
14048
|
fields: ({
|
|
@@ -14059,9 +14059,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14059
14059
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14060
14060
|
helperText?: string | undefined;
|
|
14061
14061
|
helperLinks?: {
|
|
14062
|
+
url: string;
|
|
14062
14063
|
label: string;
|
|
14063
14064
|
key: string;
|
|
14064
|
-
url: string;
|
|
14065
14065
|
}[] | undefined;
|
|
14066
14066
|
resolvesTo?: {
|
|
14067
14067
|
key: string;
|
|
@@ -14094,9 +14094,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14094
14094
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14095
14095
|
helperText?: string | undefined;
|
|
14096
14096
|
helperLinks?: {
|
|
14097
|
+
url: string;
|
|
14097
14098
|
label: string;
|
|
14098
14099
|
key: string;
|
|
14099
|
-
url: string;
|
|
14100
14100
|
}[] | undefined;
|
|
14101
14101
|
resolvesTo?: {
|
|
14102
14102
|
key: string;
|
|
@@ -14131,9 +14131,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14131
14131
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14132
14132
|
helperText?: string | undefined;
|
|
14133
14133
|
helperLinks?: {
|
|
14134
|
+
url: string;
|
|
14134
14135
|
label: string;
|
|
14135
14136
|
key: string;
|
|
14136
|
-
url: string;
|
|
14137
14137
|
}[] | undefined;
|
|
14138
14138
|
resolvesTo?: {
|
|
14139
14139
|
key: string;
|
|
@@ -14166,9 +14166,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14166
14166
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14167
14167
|
helperText?: string | undefined;
|
|
14168
14168
|
helperLinks?: {
|
|
14169
|
+
url: string;
|
|
14169
14170
|
label: string;
|
|
14170
14171
|
key: string;
|
|
14171
|
-
url: string;
|
|
14172
14172
|
}[] | undefined;
|
|
14173
14173
|
resolvesTo?: {
|
|
14174
14174
|
key: string;
|
|
@@ -14210,9 +14210,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14210
14210
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14211
14211
|
helperText?: string | undefined;
|
|
14212
14212
|
helperLinks?: {
|
|
14213
|
+
url: string;
|
|
14213
14214
|
label: string;
|
|
14214
14215
|
key: string;
|
|
14215
|
-
url: string;
|
|
14216
14216
|
}[] | undefined;
|
|
14217
14217
|
resolvesTo?: {
|
|
14218
14218
|
key: string;
|
|
@@ -14251,9 +14251,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14251
14251
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14252
14252
|
helperText?: string | undefined;
|
|
14253
14253
|
helperLinks?: {
|
|
14254
|
+
url: string;
|
|
14254
14255
|
label: string;
|
|
14255
14256
|
key: string;
|
|
14256
|
-
url: string;
|
|
14257
14257
|
}[] | undefined;
|
|
14258
14258
|
resolvesTo?: {
|
|
14259
14259
|
key: string;
|
|
@@ -14294,9 +14294,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14294
14294
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14295
14295
|
helperText?: string | undefined;
|
|
14296
14296
|
helperLinks?: {
|
|
14297
|
+
url: string;
|
|
14297
14298
|
label: string;
|
|
14298
14299
|
key: string;
|
|
14299
|
-
url: string;
|
|
14300
14300
|
}[] | undefined;
|
|
14301
14301
|
resolvesTo?: {
|
|
14302
14302
|
key: string;
|
|
@@ -14329,9 +14329,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14329
14329
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14330
14330
|
helperText?: string | undefined;
|
|
14331
14331
|
helperLinks?: {
|
|
14332
|
+
url: string;
|
|
14332
14333
|
label: string;
|
|
14333
14334
|
key: string;
|
|
14334
|
-
url: string;
|
|
14335
14335
|
}[] | undefined;
|
|
14336
14336
|
resolvesTo?: {
|
|
14337
14337
|
key: string;
|
|
@@ -14364,9 +14364,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14364
14364
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14365
14365
|
helperText?: string | undefined;
|
|
14366
14366
|
helperLinks?: {
|
|
14367
|
+
url: string;
|
|
14367
14368
|
label: string;
|
|
14368
14369
|
key: string;
|
|
14369
|
-
url: string;
|
|
14370
14370
|
}[] | undefined;
|
|
14371
14371
|
resolvesTo?: {
|
|
14372
14372
|
key: string;
|
|
@@ -14399,9 +14399,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14399
14399
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14400
14400
|
helperText?: string | undefined;
|
|
14401
14401
|
helperLinks?: {
|
|
14402
|
+
url: string;
|
|
14402
14403
|
label: string;
|
|
14403
14404
|
key: string;
|
|
14404
|
-
url: string;
|
|
14405
14405
|
}[] | undefined;
|
|
14406
14406
|
resolvesTo?: {
|
|
14407
14407
|
key: string;
|
|
@@ -14447,9 +14447,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14447
14447
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14448
14448
|
helperText?: string | undefined;
|
|
14449
14449
|
helperLinks?: {
|
|
14450
|
+
url: string;
|
|
14450
14451
|
label: string;
|
|
14451
14452
|
key: string;
|
|
14452
|
-
url: string;
|
|
14453
14453
|
}[] | undefined;
|
|
14454
14454
|
resolvesTo?: {
|
|
14455
14455
|
key: string;
|
|
@@ -14504,9 +14504,9 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14504
14504
|
storageClass?: "config" | "credential" | "transient" | "media" | undefined;
|
|
14505
14505
|
helperText?: string | undefined;
|
|
14506
14506
|
helperLinks?: {
|
|
14507
|
+
url: string;
|
|
14507
14508
|
label: string;
|
|
14508
14509
|
key: string;
|
|
14509
|
-
url: string;
|
|
14510
14510
|
}[] | undefined;
|
|
14511
14511
|
resolvesTo?: {
|
|
14512
14512
|
key: string;
|
|
@@ -14529,14 +14529,14 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14529
14529
|
maxFileSizeMb?: number | undefined;
|
|
14530
14530
|
multiple?: boolean | undefined;
|
|
14531
14531
|
})[];
|
|
14532
|
-
|
|
14532
|
+
id?: string | undefined;
|
|
14533
14533
|
title?: string | undefined;
|
|
14534
|
+
description?: string | undefined;
|
|
14534
14535
|
visibleWhen?: {
|
|
14535
14536
|
fieldKey: string;
|
|
14536
14537
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
14537
14538
|
value?: unknown;
|
|
14538
14539
|
}[] | undefined;
|
|
14539
|
-
id?: string | undefined;
|
|
14540
14540
|
layout?: "column" | "row" | "grid" | undefined;
|
|
14541
14541
|
} | {
|
|
14542
14542
|
type: "native";
|
|
@@ -14544,8 +14544,8 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
14544
14544
|
id?: string | undefined;
|
|
14545
14545
|
props?: Record<string, unknown> | undefined;
|
|
14546
14546
|
})[];
|
|
14547
|
-
description?: string | undefined;
|
|
14548
14547
|
title?: string | undefined;
|
|
14548
|
+
description?: string | undefined;
|
|
14549
14549
|
schemaVersion?: "v1" | undefined;
|
|
14550
14550
|
hooks?: {
|
|
14551
14551
|
draftResolverFunctionName?: string | undefined;
|
|
@@ -14599,8 +14599,8 @@ export declare const ValidateStoredConfigOutputSchema: z.ZodObject<{
|
|
|
14599
14599
|
blockId?: string | undefined;
|
|
14600
14600
|
}, {
|
|
14601
14601
|
message: string;
|
|
14602
|
-
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
14603
14602
|
title?: string | undefined;
|
|
14603
|
+
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
14604
14604
|
placement?: "top" | "block" | undefined;
|
|
14605
14605
|
blockId?: string | undefined;
|
|
14606
14606
|
}>, "many">>;
|
|
@@ -14633,8 +14633,8 @@ export declare const ValidateStoredConfigOutputSchema: z.ZodObject<{
|
|
|
14633
14633
|
}[] | undefined;
|
|
14634
14634
|
notices?: {
|
|
14635
14635
|
message: string;
|
|
14636
|
-
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
14637
14636
|
title?: string | undefined;
|
|
14637
|
+
tone?: "info" | "success" | "warning" | "danger" | undefined;
|
|
14638
14638
|
placement?: "top" | "block" | undefined;
|
|
14639
14639
|
blockId?: string | undefined;
|
|
14640
14640
|
}[] | undefined;
|