@wise/dynamic-flow-types 2.15.1 → 2.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/main.js +249 -70
- package/build/main.min.js +1 -1
- package/build/main.mjs +249 -70
- package/build/zod/schemas.d.ts +691 -739
- package/package.json +4 -4
package/build/zod/schemas.d.ts
CHANGED
|
@@ -52,13 +52,13 @@ export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
|
|
|
52
52
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
53
53
|
}, "strip", z.ZodTypeAny, {
|
|
54
54
|
type: "loading-indicator";
|
|
55
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
56
55
|
control?: string | undefined;
|
|
56
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
57
57
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
type: "loading-indicator";
|
|
60
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
61
60
|
control?: string | undefined;
|
|
61
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
62
62
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
63
63
|
}>;
|
|
64
64
|
export declare const alertLayoutSchema: z.ZodObject<{
|
|
@@ -70,15 +70,15 @@ export declare const alertLayoutSchema: z.ZodObject<{
|
|
|
70
70
|
}, "strip", z.ZodTypeAny, {
|
|
71
71
|
type: "alert";
|
|
72
72
|
markdown: string;
|
|
73
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
74
73
|
control?: string | undefined;
|
|
75
74
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
75
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
76
76
|
}, {
|
|
77
77
|
type: "alert";
|
|
78
78
|
markdown: string;
|
|
79
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
80
79
|
control?: string | undefined;
|
|
81
80
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
81
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
82
82
|
}>;
|
|
83
83
|
export declare const paragraphLayoutSchema: z.ZodObject<{
|
|
84
84
|
type: z.ZodLiteral<"paragraph">;
|
|
@@ -89,15 +89,15 @@ export declare const paragraphLayoutSchema: z.ZodObject<{
|
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
90
|
type: "paragraph";
|
|
91
91
|
text: string;
|
|
92
|
-
align?: "left" | "right" | "center" | undefined;
|
|
93
92
|
control?: string | undefined;
|
|
94
93
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
94
|
+
align?: "left" | "right" | "center" | undefined;
|
|
95
95
|
}, {
|
|
96
96
|
type: "paragraph";
|
|
97
97
|
text: string;
|
|
98
|
-
align?: "left" | "right" | "center" | undefined;
|
|
99
98
|
control?: string | undefined;
|
|
100
99
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
100
|
+
align?: "left" | "right" | "center" | undefined;
|
|
101
101
|
}>;
|
|
102
102
|
export declare const dividerLayoutSchema: z.ZodObject<{
|
|
103
103
|
type: z.ZodLiteral<"divider">;
|
|
@@ -131,18 +131,18 @@ export declare const imageLayoutSchema: z.ZodObject<{
|
|
|
131
131
|
}, "strip", z.ZodTypeAny, {
|
|
132
132
|
url: string;
|
|
133
133
|
type: "image";
|
|
134
|
+
control?: string | undefined;
|
|
134
135
|
text?: string | undefined;
|
|
135
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
136
136
|
accessibilityDescription?: string | undefined;
|
|
137
|
-
|
|
137
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
138
138
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
139
139
|
}, {
|
|
140
140
|
url: string;
|
|
141
141
|
type: "image";
|
|
142
|
+
control?: string | undefined;
|
|
142
143
|
text?: string | undefined;
|
|
143
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
144
144
|
accessibilityDescription?: string | undefined;
|
|
145
|
-
|
|
145
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
146
146
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
147
147
|
}>;
|
|
148
148
|
export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
|
|
@@ -178,18 +178,18 @@ export declare const searchLayoutSchema: z.ZodObject<{
|
|
|
178
178
|
title: string;
|
|
179
179
|
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
180
180
|
param: string;
|
|
181
|
-
emptyMessage?: string | undefined;
|
|
182
181
|
control?: string | undefined;
|
|
183
182
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
183
|
+
emptyMessage?: string | undefined;
|
|
184
184
|
}, {
|
|
185
185
|
url: string;
|
|
186
186
|
type: "search";
|
|
187
187
|
title: string;
|
|
188
188
|
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
189
189
|
param: string;
|
|
190
|
-
emptyMessage?: string | undefined;
|
|
191
190
|
control?: string | undefined;
|
|
192
191
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
192
|
+
emptyMessage?: string | undefined;
|
|
193
193
|
}>;
|
|
194
194
|
export declare const infoLayoutSchema: z.ZodObject<{
|
|
195
195
|
type: z.ZodLiteral<"info">;
|
|
@@ -200,15 +200,15 @@ export declare const infoLayoutSchema: z.ZodObject<{
|
|
|
200
200
|
}, "strip", z.ZodTypeAny, {
|
|
201
201
|
type: "info";
|
|
202
202
|
markdown: string;
|
|
203
|
-
align?: "left" | "right" | "center" | undefined;
|
|
204
203
|
control?: string | undefined;
|
|
205
204
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
205
|
+
align?: "left" | "right" | "center" | undefined;
|
|
206
206
|
}, {
|
|
207
207
|
type: "info";
|
|
208
208
|
markdown: string;
|
|
209
|
-
align?: "left" | "right" | "center" | undefined;
|
|
210
209
|
control?: string | undefined;
|
|
211
210
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
211
|
+
align?: "left" | "right" | "center" | undefined;
|
|
212
212
|
}>;
|
|
213
213
|
export declare const formLayoutSchema: z.ZodObject<{
|
|
214
214
|
type: z.ZodLiteral<"form">;
|
|
@@ -225,19 +225,19 @@ export declare const formLayoutSchema: z.ZodObject<{
|
|
|
225
225
|
}, "strip", z.ZodTypeAny, {
|
|
226
226
|
type: "form";
|
|
227
227
|
schemaId: string;
|
|
228
|
+
control?: string | undefined;
|
|
229
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
228
230
|
schema?: {
|
|
229
231
|
$ref: string;
|
|
230
232
|
} | undefined;
|
|
231
|
-
control?: string | undefined;
|
|
232
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
233
233
|
}, {
|
|
234
234
|
type: "form";
|
|
235
235
|
schemaId: string;
|
|
236
|
+
control?: string | undefined;
|
|
237
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
236
238
|
schema?: {
|
|
237
239
|
$ref: string;
|
|
238
240
|
} | undefined;
|
|
239
|
-
control?: string | undefined;
|
|
240
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
241
241
|
}>;
|
|
242
242
|
export declare const headingLayoutSchema: z.ZodObject<{
|
|
243
243
|
type: z.ZodLiteral<"heading">;
|
|
@@ -249,17 +249,17 @@ export declare const headingLayoutSchema: z.ZodObject<{
|
|
|
249
249
|
}, "strip", z.ZodTypeAny, {
|
|
250
250
|
type: "heading";
|
|
251
251
|
text: string;
|
|
252
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
253
|
-
align?: "left" | "right" | "center" | undefined;
|
|
254
252
|
control?: string | undefined;
|
|
253
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
255
254
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
255
|
+
align?: "left" | "right" | "center" | undefined;
|
|
256
256
|
}, {
|
|
257
257
|
type: "heading";
|
|
258
258
|
text: string;
|
|
259
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
260
|
-
align?: "left" | "right" | "center" | undefined;
|
|
261
259
|
control?: string | undefined;
|
|
260
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
262
261
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
262
|
+
align?: "left" | "right" | "center" | undefined;
|
|
263
263
|
}>;
|
|
264
264
|
export declare const markdownLayoutSchema: z.ZodObject<{
|
|
265
265
|
type: z.ZodLiteral<"markdown">;
|
|
@@ -270,15 +270,15 @@ export declare const markdownLayoutSchema: z.ZodObject<{
|
|
|
270
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
271
|
type: "markdown";
|
|
272
272
|
content: string;
|
|
273
|
-
align?: "left" | "right" | "center" | undefined;
|
|
274
273
|
control?: string | undefined;
|
|
275
274
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
275
|
+
align?: "left" | "right" | "center" | undefined;
|
|
276
276
|
}, {
|
|
277
277
|
type: "markdown";
|
|
278
278
|
content: string;
|
|
279
|
-
align?: "left" | "right" | "center" | undefined;
|
|
280
279
|
control?: string | undefined;
|
|
281
280
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
281
|
+
align?: "left" | "right" | "center" | undefined;
|
|
282
282
|
}>;
|
|
283
283
|
export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
|
|
284
284
|
export declare const helpSchema: z.ZodObject<{
|
|
@@ -316,11 +316,11 @@ export declare const stepErrorSchema: z.ZodObject<{
|
|
|
316
316
|
error: z.ZodOptional<z.ZodString>;
|
|
317
317
|
validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
318
318
|
}, "strip", z.ZodTypeAny, {
|
|
319
|
-
error?: string | undefined;
|
|
320
319
|
validation?: JsonElement | undefined;
|
|
321
|
-
}, {
|
|
322
320
|
error?: string | undefined;
|
|
321
|
+
}, {
|
|
323
322
|
validation?: JsonElement | undefined;
|
|
323
|
+
error?: string | undefined;
|
|
324
324
|
}>;
|
|
325
325
|
export declare const stringSchemaFormatSchema: z.ZodUnion<[z.ZodLiteral<"date">, z.ZodLiteral<"email">, z.ZodLiteral<"numeric">, z.ZodLiteral<"password">, z.ZodLiteral<"phone-number">, z.ZodLiteral<"base64url">]>;
|
|
326
326
|
export declare const summarySummariserSchema: z.ZodObject<{
|
|
@@ -350,18 +350,18 @@ export declare const summarySummariserSchema: z.ZodObject<{
|
|
|
350
350
|
}, "strip", z.ZodTypeAny, {
|
|
351
351
|
url: string;
|
|
352
352
|
type: "image";
|
|
353
|
+
control?: string | undefined;
|
|
353
354
|
text?: string | undefined;
|
|
354
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
355
355
|
accessibilityDescription?: string | undefined;
|
|
356
|
-
|
|
356
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
357
357
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
358
358
|
}, {
|
|
359
359
|
url: string;
|
|
360
360
|
type: "image";
|
|
361
|
+
control?: string | undefined;
|
|
361
362
|
text?: string | undefined;
|
|
362
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
363
363
|
accessibilityDescription?: string | undefined;
|
|
364
|
-
|
|
364
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
365
365
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
366
366
|
}>>;
|
|
367
367
|
providesTitle: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -379,10 +379,10 @@ export declare const summarySummariserSchema: z.ZodObject<{
|
|
|
379
379
|
defaultImage?: {
|
|
380
380
|
url: string;
|
|
381
381
|
type: "image";
|
|
382
|
+
control?: string | undefined;
|
|
382
383
|
text?: string | undefined;
|
|
383
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
384
384
|
accessibilityDescription?: string | undefined;
|
|
385
|
-
|
|
385
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
386
386
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
387
387
|
} | undefined;
|
|
388
388
|
providesTitle?: boolean | undefined;
|
|
@@ -400,10 +400,10 @@ export declare const summarySummariserSchema: z.ZodObject<{
|
|
|
400
400
|
defaultImage?: {
|
|
401
401
|
url: string;
|
|
402
402
|
type: "image";
|
|
403
|
+
control?: string | undefined;
|
|
403
404
|
text?: string | undefined;
|
|
404
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
405
405
|
accessibilityDescription?: string | undefined;
|
|
406
|
-
|
|
406
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
407
407
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
408
408
|
} | undefined;
|
|
409
409
|
providesTitle?: boolean | undefined;
|
|
@@ -485,18 +485,18 @@ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
|
|
|
485
485
|
}, "strip", z.ZodTypeAny, {
|
|
486
486
|
url: string;
|
|
487
487
|
type: "image";
|
|
488
|
+
control?: string | undefined;
|
|
488
489
|
text?: string | undefined;
|
|
489
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
490
490
|
accessibilityDescription?: string | undefined;
|
|
491
|
-
|
|
491
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
492
492
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
493
493
|
}, {
|
|
494
494
|
url: string;
|
|
495
495
|
type: "image";
|
|
496
|
+
control?: string | undefined;
|
|
496
497
|
text?: string | undefined;
|
|
497
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
498
498
|
accessibilityDescription?: string | undefined;
|
|
499
|
-
|
|
499
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
500
500
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
501
501
|
}>>;
|
|
502
502
|
providesTitle: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -514,10 +514,10 @@ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
|
|
|
514
514
|
defaultImage?: {
|
|
515
515
|
url: string;
|
|
516
516
|
type: "image";
|
|
517
|
+
control?: string | undefined;
|
|
517
518
|
text?: string | undefined;
|
|
518
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
519
519
|
accessibilityDescription?: string | undefined;
|
|
520
|
-
|
|
520
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
521
521
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
522
522
|
} | undefined;
|
|
523
523
|
providesTitle?: boolean | undefined;
|
|
@@ -535,10 +535,10 @@ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
|
|
|
535
535
|
defaultImage?: {
|
|
536
536
|
url: string;
|
|
537
537
|
type: "image";
|
|
538
|
+
control?: string | undefined;
|
|
538
539
|
text?: string | undefined;
|
|
539
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
540
540
|
accessibilityDescription?: string | undefined;
|
|
541
|
-
|
|
541
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
542
542
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
543
543
|
} | undefined;
|
|
544
544
|
providesTitle?: boolean | undefined;
|
|
@@ -561,13 +561,13 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
561
561
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
562
562
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
563
563
|
}, "strip", z.ZodTypeAny, {
|
|
564
|
-
|
|
564
|
+
url?: string | undefined;
|
|
565
|
+
$id?: string | undefined;
|
|
565
566
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
566
567
|
disabled?: boolean | undefined;
|
|
567
|
-
|
|
568
|
-
$ref?: string | undefined;
|
|
568
|
+
title?: string | undefined;
|
|
569
569
|
id?: string | undefined;
|
|
570
|
-
|
|
570
|
+
$ref?: string | undefined;
|
|
571
571
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
572
572
|
exit?: boolean | undefined;
|
|
573
573
|
result?: JsonElement | undefined;
|
|
@@ -575,13 +575,13 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
575
575
|
timeout?: number | undefined;
|
|
576
576
|
skipValidation?: boolean | undefined;
|
|
577
577
|
}, {
|
|
578
|
-
|
|
578
|
+
url?: string | undefined;
|
|
579
|
+
$id?: string | undefined;
|
|
579
580
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
580
581
|
disabled?: boolean | undefined;
|
|
581
|
-
|
|
582
|
-
$ref?: string | undefined;
|
|
582
|
+
title?: string | undefined;
|
|
583
583
|
id?: string | undefined;
|
|
584
|
-
|
|
584
|
+
$ref?: string | undefined;
|
|
585
585
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
586
586
|
exit?: boolean | undefined;
|
|
587
587
|
result?: JsonElement | undefined;
|
|
@@ -607,28 +607,20 @@ export declare const listLayoutItemSchema: z.ZodObject<{
|
|
|
607
607
|
}>]>;
|
|
608
608
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
610
|
-
icon:
|
|
610
|
+
icon: {
|
|
611
611
|
name: string;
|
|
612
612
|
} | {
|
|
613
613
|
text: string;
|
|
614
|
-
}
|
|
615
|
-
name: string;
|
|
616
|
-
} | {
|
|
617
|
-
text: string;
|
|
618
|
-
} | undefined);
|
|
614
|
+
};
|
|
619
615
|
title: string;
|
|
620
616
|
description?: string | undefined;
|
|
621
617
|
status?: "neutral" | "warning" | "positive" | undefined;
|
|
622
618
|
}, {
|
|
623
|
-
icon:
|
|
619
|
+
icon: {
|
|
624
620
|
name: string;
|
|
625
621
|
} | {
|
|
626
622
|
text: string;
|
|
627
|
-
}
|
|
628
|
-
name: string;
|
|
629
|
-
} | {
|
|
630
|
-
text: string;
|
|
631
|
-
} | undefined);
|
|
623
|
+
};
|
|
632
624
|
title: string;
|
|
633
625
|
description?: string | undefined;
|
|
634
626
|
status?: "neutral" | "warning" | "positive" | undefined;
|
|
@@ -649,13 +641,13 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
|
|
|
649
641
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
650
642
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
651
643
|
}, "strip", z.ZodTypeAny, {
|
|
652
|
-
|
|
644
|
+
url?: string | undefined;
|
|
645
|
+
$id?: string | undefined;
|
|
653
646
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
654
647
|
disabled?: boolean | undefined;
|
|
655
|
-
|
|
656
|
-
$ref?: string | undefined;
|
|
648
|
+
title?: string | undefined;
|
|
657
649
|
id?: string | undefined;
|
|
658
|
-
|
|
650
|
+
$ref?: string | undefined;
|
|
659
651
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
660
652
|
exit?: boolean | undefined;
|
|
661
653
|
result?: JsonElement | undefined;
|
|
@@ -663,13 +655,13 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
|
|
|
663
655
|
timeout?: number | undefined;
|
|
664
656
|
skipValidation?: boolean | undefined;
|
|
665
657
|
}, {
|
|
666
|
-
|
|
658
|
+
url?: string | undefined;
|
|
659
|
+
$id?: string | undefined;
|
|
667
660
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
668
661
|
disabled?: boolean | undefined;
|
|
669
|
-
|
|
670
|
-
$ref?: string | undefined;
|
|
662
|
+
title?: string | undefined;
|
|
671
663
|
id?: string | undefined;
|
|
672
|
-
|
|
664
|
+
$ref?: string | undefined;
|
|
673
665
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
674
666
|
exit?: boolean | undefined;
|
|
675
667
|
result?: JsonElement | undefined;
|
|
@@ -704,29 +696,29 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
|
|
|
704
696
|
}, "strip", z.ZodTypeAny, {
|
|
705
697
|
url: string;
|
|
706
698
|
type: "image";
|
|
699
|
+
control?: string | undefined;
|
|
707
700
|
text?: string | undefined;
|
|
708
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
709
701
|
accessibilityDescription?: string | undefined;
|
|
710
|
-
|
|
702
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
711
703
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
712
704
|
}, {
|
|
713
705
|
url: string;
|
|
714
706
|
type: "image";
|
|
707
|
+
control?: string | undefined;
|
|
715
708
|
text?: string | undefined;
|
|
716
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
717
709
|
accessibilityDescription?: string | undefined;
|
|
718
|
-
|
|
710
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
719
711
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
720
712
|
}>>;
|
|
721
713
|
}, "strip", z.ZodTypeAny, {
|
|
722
714
|
action: {
|
|
723
|
-
|
|
715
|
+
url?: string | undefined;
|
|
716
|
+
$id?: string | undefined;
|
|
724
717
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
725
718
|
disabled?: boolean | undefined;
|
|
726
|
-
|
|
727
|
-
$ref?: string | undefined;
|
|
719
|
+
title?: string | undefined;
|
|
728
720
|
id?: string | undefined;
|
|
729
|
-
|
|
721
|
+
$ref?: string | undefined;
|
|
730
722
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
731
723
|
exit?: boolean | undefined;
|
|
732
724
|
result?: JsonElement | undefined;
|
|
@@ -735,31 +727,31 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
|
|
|
735
727
|
skipValidation?: boolean | undefined;
|
|
736
728
|
};
|
|
737
729
|
title: string;
|
|
738
|
-
description?: string | undefined;
|
|
739
|
-
disabled?: boolean | undefined;
|
|
740
|
-
icon?: {
|
|
741
|
-
name: string;
|
|
742
|
-
} | {
|
|
743
|
-
text: string;
|
|
744
|
-
} | undefined;
|
|
745
730
|
image?: {
|
|
746
731
|
url: string;
|
|
747
732
|
type: "image";
|
|
733
|
+
control?: string | undefined;
|
|
748
734
|
text?: string | undefined;
|
|
749
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
750
735
|
accessibilityDescription?: string | undefined;
|
|
751
|
-
|
|
736
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
752
737
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
753
738
|
} | undefined;
|
|
739
|
+
description?: string | undefined;
|
|
740
|
+
disabled?: boolean | undefined;
|
|
741
|
+
icon?: {
|
|
742
|
+
name: string;
|
|
743
|
+
} | {
|
|
744
|
+
text: string;
|
|
745
|
+
} | undefined;
|
|
754
746
|
}, {
|
|
755
747
|
action: {
|
|
756
|
-
|
|
748
|
+
url?: string | undefined;
|
|
749
|
+
$id?: string | undefined;
|
|
757
750
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
758
751
|
disabled?: boolean | undefined;
|
|
759
|
-
|
|
760
|
-
$ref?: string | undefined;
|
|
752
|
+
title?: string | undefined;
|
|
761
753
|
id?: string | undefined;
|
|
762
|
-
|
|
754
|
+
$ref?: string | undefined;
|
|
763
755
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
764
756
|
exit?: boolean | undefined;
|
|
765
757
|
result?: JsonElement | undefined;
|
|
@@ -768,22 +760,22 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
|
|
|
768
760
|
skipValidation?: boolean | undefined;
|
|
769
761
|
};
|
|
770
762
|
title: string;
|
|
771
|
-
description?: string | undefined;
|
|
772
|
-
disabled?: boolean | undefined;
|
|
773
|
-
icon?: {
|
|
774
|
-
name: string;
|
|
775
|
-
} | {
|
|
776
|
-
text: string;
|
|
777
|
-
} | undefined;
|
|
778
763
|
image?: {
|
|
779
764
|
url: string;
|
|
780
765
|
type: "image";
|
|
766
|
+
control?: string | undefined;
|
|
781
767
|
text?: string | undefined;
|
|
782
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
783
768
|
accessibilityDescription?: string | undefined;
|
|
784
|
-
|
|
769
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
785
770
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
786
771
|
} | undefined;
|
|
772
|
+
description?: string | undefined;
|
|
773
|
+
disabled?: boolean | undefined;
|
|
774
|
+
icon?: {
|
|
775
|
+
name: string;
|
|
776
|
+
} | {
|
|
777
|
+
text: string;
|
|
778
|
+
} | undefined;
|
|
787
779
|
}>;
|
|
788
780
|
export declare const statusListLayoutItemSchema: z.ZodObject<{
|
|
789
781
|
title: z.ZodString;
|
|
@@ -803,28 +795,20 @@ export declare const statusListLayoutItemSchema: z.ZodObject<{
|
|
|
803
795
|
}>]>;
|
|
804
796
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
|
|
805
797
|
}, "strip", z.ZodTypeAny, {
|
|
806
|
-
icon:
|
|
798
|
+
icon: {
|
|
807
799
|
name: string;
|
|
808
800
|
} | {
|
|
809
801
|
text: string;
|
|
810
|
-
}
|
|
811
|
-
name: string;
|
|
812
|
-
} | {
|
|
813
|
-
text: string;
|
|
814
|
-
} | undefined);
|
|
802
|
+
};
|
|
815
803
|
title: string;
|
|
816
804
|
description?: string | undefined;
|
|
817
805
|
status?: "done" | "not-done" | "pending" | undefined;
|
|
818
806
|
}, {
|
|
819
|
-
icon:
|
|
807
|
+
icon: {
|
|
820
808
|
name: string;
|
|
821
809
|
} | {
|
|
822
810
|
text: string;
|
|
823
|
-
}
|
|
824
|
-
name: string;
|
|
825
|
-
} | {
|
|
826
|
-
text: string;
|
|
827
|
-
} | undefined);
|
|
811
|
+
};
|
|
828
812
|
title: string;
|
|
829
813
|
description?: string | undefined;
|
|
830
814
|
status?: "done" | "not-done" | "pending" | undefined;
|
|
@@ -882,13 +866,13 @@ export declare const buttonLayoutSchema: z.ZodObject<{
|
|
|
882
866
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
883
867
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
884
868
|
}, "strip", z.ZodTypeAny, {
|
|
885
|
-
|
|
869
|
+
url?: string | undefined;
|
|
870
|
+
$id?: string | undefined;
|
|
886
871
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
887
872
|
disabled?: boolean | undefined;
|
|
888
|
-
|
|
889
|
-
$ref?: string | undefined;
|
|
873
|
+
title?: string | undefined;
|
|
890
874
|
id?: string | undefined;
|
|
891
|
-
|
|
875
|
+
$ref?: string | undefined;
|
|
892
876
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
893
877
|
exit?: boolean | undefined;
|
|
894
878
|
result?: JsonElement | undefined;
|
|
@@ -896,13 +880,13 @@ export declare const buttonLayoutSchema: z.ZodObject<{
|
|
|
896
880
|
timeout?: number | undefined;
|
|
897
881
|
skipValidation?: boolean | undefined;
|
|
898
882
|
}, {
|
|
899
|
-
|
|
883
|
+
url?: string | undefined;
|
|
884
|
+
$id?: string | undefined;
|
|
900
885
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
901
886
|
disabled?: boolean | undefined;
|
|
902
|
-
|
|
903
|
-
$ref?: string | undefined;
|
|
887
|
+
title?: string | undefined;
|
|
904
888
|
id?: string | undefined;
|
|
905
|
-
|
|
889
|
+
$ref?: string | undefined;
|
|
906
890
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
907
891
|
exit?: boolean | undefined;
|
|
908
892
|
result?: JsonElement | undefined;
|
|
@@ -917,13 +901,13 @@ export declare const buttonLayoutSchema: z.ZodObject<{
|
|
|
917
901
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
918
902
|
}, "strip", z.ZodTypeAny, {
|
|
919
903
|
action: {
|
|
920
|
-
|
|
904
|
+
url?: string | undefined;
|
|
905
|
+
$id?: string | undefined;
|
|
921
906
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
922
907
|
disabled?: boolean | undefined;
|
|
923
|
-
|
|
924
|
-
$ref?: string | undefined;
|
|
908
|
+
title?: string | undefined;
|
|
925
909
|
id?: string | undefined;
|
|
926
|
-
|
|
910
|
+
$ref?: string | undefined;
|
|
927
911
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
928
912
|
exit?: boolean | undefined;
|
|
929
913
|
result?: JsonElement | undefined;
|
|
@@ -932,22 +916,22 @@ export declare const buttonLayoutSchema: z.ZodObject<{
|
|
|
932
916
|
skipValidation?: boolean | undefined;
|
|
933
917
|
};
|
|
934
918
|
type: "button";
|
|
935
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
936
|
-
title?: string | undefined;
|
|
937
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
938
919
|
disabled?: boolean | undefined;
|
|
939
|
-
|
|
920
|
+
title?: string | undefined;
|
|
940
921
|
control?: string | undefined;
|
|
922
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
941
923
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
924
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
925
|
+
pinOrder?: number | undefined;
|
|
942
926
|
}, {
|
|
943
927
|
action: {
|
|
944
|
-
|
|
928
|
+
url?: string | undefined;
|
|
929
|
+
$id?: string | undefined;
|
|
945
930
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
946
931
|
disabled?: boolean | undefined;
|
|
947
|
-
|
|
948
|
-
$ref?: string | undefined;
|
|
932
|
+
title?: string | undefined;
|
|
949
933
|
id?: string | undefined;
|
|
950
|
-
|
|
934
|
+
$ref?: string | undefined;
|
|
951
935
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
952
936
|
exit?: boolean | undefined;
|
|
953
937
|
result?: JsonElement | undefined;
|
|
@@ -956,13 +940,13 @@ export declare const buttonLayoutSchema: z.ZodObject<{
|
|
|
956
940
|
skipValidation?: boolean | undefined;
|
|
957
941
|
};
|
|
958
942
|
type: "button";
|
|
959
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
960
|
-
title?: string | undefined;
|
|
961
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
962
943
|
disabled?: boolean | undefined;
|
|
963
|
-
|
|
944
|
+
title?: string | undefined;
|
|
964
945
|
control?: string | undefined;
|
|
946
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
965
947
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
948
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
949
|
+
pinOrder?: number | undefined;
|
|
966
950
|
}>;
|
|
967
951
|
export declare const reviewLayoutFieldSchema: z.ZodObject<{
|
|
968
952
|
label: z.ZodString;
|
|
@@ -1015,18 +999,18 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
1015
999
|
}, "strip", z.ZodTypeAny, {
|
|
1016
1000
|
url: string;
|
|
1017
1001
|
type: "image";
|
|
1002
|
+
control?: string | undefined;
|
|
1018
1003
|
text?: string | undefined;
|
|
1019
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1020
1004
|
accessibilityDescription?: string | undefined;
|
|
1021
|
-
|
|
1005
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1022
1006
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1023
1007
|
}, {
|
|
1024
1008
|
url: string;
|
|
1025
1009
|
type: "image";
|
|
1010
|
+
control?: string | undefined;
|
|
1026
1011
|
text?: string | undefined;
|
|
1027
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1028
1012
|
accessibilityDescription?: string | undefined;
|
|
1029
|
-
|
|
1013
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1030
1014
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1031
1015
|
}>>;
|
|
1032
1016
|
value: z.ZodObject<{
|
|
@@ -1054,21 +1038,21 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
1054
1038
|
param: string;
|
|
1055
1039
|
query: string;
|
|
1056
1040
|
};
|
|
1057
|
-
description?: string | undefined;
|
|
1058
|
-
icon?: {
|
|
1059
|
-
name: string;
|
|
1060
|
-
} | {
|
|
1061
|
-
text: string;
|
|
1062
|
-
} | undefined;
|
|
1063
1041
|
image?: {
|
|
1064
1042
|
url: string;
|
|
1065
1043
|
type: "image";
|
|
1044
|
+
control?: string | undefined;
|
|
1066
1045
|
text?: string | undefined;
|
|
1067
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1068
1046
|
accessibilityDescription?: string | undefined;
|
|
1069
|
-
|
|
1047
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1070
1048
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1071
1049
|
} | undefined;
|
|
1050
|
+
description?: string | undefined;
|
|
1051
|
+
icon?: {
|
|
1052
|
+
name: string;
|
|
1053
|
+
} | {
|
|
1054
|
+
text: string;
|
|
1055
|
+
} | undefined;
|
|
1072
1056
|
}, {
|
|
1073
1057
|
type: "search";
|
|
1074
1058
|
title: string;
|
|
@@ -1078,21 +1062,21 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
1078
1062
|
param: string;
|
|
1079
1063
|
query: string;
|
|
1080
1064
|
};
|
|
1081
|
-
description?: string | undefined;
|
|
1082
|
-
icon?: {
|
|
1083
|
-
name: string;
|
|
1084
|
-
} | {
|
|
1085
|
-
text: string;
|
|
1086
|
-
} | undefined;
|
|
1087
1065
|
image?: {
|
|
1088
1066
|
url: string;
|
|
1089
1067
|
type: "image";
|
|
1068
|
+
control?: string | undefined;
|
|
1090
1069
|
text?: string | undefined;
|
|
1091
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1092
1070
|
accessibilityDescription?: string | undefined;
|
|
1093
|
-
|
|
1071
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1094
1072
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1095
1073
|
} | undefined;
|
|
1074
|
+
description?: string | undefined;
|
|
1075
|
+
icon?: {
|
|
1076
|
+
name: string;
|
|
1077
|
+
} | {
|
|
1078
|
+
text: string;
|
|
1079
|
+
} | undefined;
|
|
1096
1080
|
}>;
|
|
1097
1081
|
export declare const searchResultActionSchema: z.ZodObject<{
|
|
1098
1082
|
type: z.ZodLiteral<"action">;
|
|
@@ -1122,18 +1106,18 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1122
1106
|
}, "strip", z.ZodTypeAny, {
|
|
1123
1107
|
url: string;
|
|
1124
1108
|
type: "image";
|
|
1109
|
+
control?: string | undefined;
|
|
1125
1110
|
text?: string | undefined;
|
|
1126
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1127
1111
|
accessibilityDescription?: string | undefined;
|
|
1128
|
-
|
|
1112
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1129
1113
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1130
1114
|
}, {
|
|
1131
1115
|
url: string;
|
|
1132
1116
|
type: "image";
|
|
1117
|
+
control?: string | undefined;
|
|
1133
1118
|
text?: string | undefined;
|
|
1134
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1135
1119
|
accessibilityDescription?: string | undefined;
|
|
1136
|
-
|
|
1120
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1137
1121
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1138
1122
|
}>>;
|
|
1139
1123
|
value: z.ZodObject<{
|
|
@@ -1151,13 +1135,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1151
1135
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1152
1136
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1153
1137
|
}, "strip", z.ZodTypeAny, {
|
|
1154
|
-
|
|
1138
|
+
url?: string | undefined;
|
|
1139
|
+
$id?: string | undefined;
|
|
1155
1140
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1156
1141
|
disabled?: boolean | undefined;
|
|
1157
|
-
|
|
1158
|
-
$ref?: string | undefined;
|
|
1142
|
+
title?: string | undefined;
|
|
1159
1143
|
id?: string | undefined;
|
|
1160
|
-
|
|
1144
|
+
$ref?: string | undefined;
|
|
1161
1145
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1162
1146
|
exit?: boolean | undefined;
|
|
1163
1147
|
result?: JsonElement | undefined;
|
|
@@ -1165,13 +1149,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1165
1149
|
timeout?: number | undefined;
|
|
1166
1150
|
skipValidation?: boolean | undefined;
|
|
1167
1151
|
}, {
|
|
1168
|
-
|
|
1152
|
+
url?: string | undefined;
|
|
1153
|
+
$id?: string | undefined;
|
|
1169
1154
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1170
1155
|
disabled?: boolean | undefined;
|
|
1171
|
-
|
|
1172
|
-
$ref?: string | undefined;
|
|
1156
|
+
title?: string | undefined;
|
|
1173
1157
|
id?: string | undefined;
|
|
1174
|
-
|
|
1158
|
+
$ref?: string | undefined;
|
|
1175
1159
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1176
1160
|
exit?: boolean | undefined;
|
|
1177
1161
|
result?: JsonElement | undefined;
|
|
@@ -1183,13 +1167,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1183
1167
|
type: "action";
|
|
1184
1168
|
title: string;
|
|
1185
1169
|
value: {
|
|
1186
|
-
|
|
1170
|
+
url?: string | undefined;
|
|
1171
|
+
$id?: string | undefined;
|
|
1187
1172
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1188
1173
|
disabled?: boolean | undefined;
|
|
1189
|
-
|
|
1190
|
-
$ref?: string | undefined;
|
|
1174
|
+
title?: string | undefined;
|
|
1191
1175
|
id?: string | undefined;
|
|
1192
|
-
|
|
1176
|
+
$ref?: string | undefined;
|
|
1193
1177
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1194
1178
|
exit?: boolean | undefined;
|
|
1195
1179
|
result?: JsonElement | undefined;
|
|
@@ -1197,32 +1181,32 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1197
1181
|
timeout?: number | undefined;
|
|
1198
1182
|
skipValidation?: boolean | undefined;
|
|
1199
1183
|
};
|
|
1200
|
-
description?: string | undefined;
|
|
1201
|
-
icon?: {
|
|
1202
|
-
name: string;
|
|
1203
|
-
} | {
|
|
1204
|
-
text: string;
|
|
1205
|
-
} | undefined;
|
|
1206
1184
|
image?: {
|
|
1207
1185
|
url: string;
|
|
1208
1186
|
type: "image";
|
|
1187
|
+
control?: string | undefined;
|
|
1209
1188
|
text?: string | undefined;
|
|
1210
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1211
1189
|
accessibilityDescription?: string | undefined;
|
|
1212
|
-
|
|
1190
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1213
1191
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1214
1192
|
} | undefined;
|
|
1193
|
+
description?: string | undefined;
|
|
1194
|
+
icon?: {
|
|
1195
|
+
name: string;
|
|
1196
|
+
} | {
|
|
1197
|
+
text: string;
|
|
1198
|
+
} | undefined;
|
|
1215
1199
|
}, {
|
|
1216
1200
|
type: "action";
|
|
1217
1201
|
title: string;
|
|
1218
1202
|
value: {
|
|
1219
|
-
|
|
1203
|
+
url?: string | undefined;
|
|
1204
|
+
$id?: string | undefined;
|
|
1220
1205
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1221
1206
|
disabled?: boolean | undefined;
|
|
1222
|
-
|
|
1223
|
-
$ref?: string | undefined;
|
|
1207
|
+
title?: string | undefined;
|
|
1224
1208
|
id?: string | undefined;
|
|
1225
|
-
|
|
1209
|
+
$ref?: string | undefined;
|
|
1226
1210
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1227
1211
|
exit?: boolean | undefined;
|
|
1228
1212
|
result?: JsonElement | undefined;
|
|
@@ -1230,21 +1214,21 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1230
1214
|
timeout?: number | undefined;
|
|
1231
1215
|
skipValidation?: boolean | undefined;
|
|
1232
1216
|
};
|
|
1233
|
-
description?: string | undefined;
|
|
1234
|
-
icon?: {
|
|
1235
|
-
name: string;
|
|
1236
|
-
} | {
|
|
1237
|
-
text: string;
|
|
1238
|
-
} | undefined;
|
|
1239
1217
|
image?: {
|
|
1240
1218
|
url: string;
|
|
1241
1219
|
type: "image";
|
|
1220
|
+
control?: string | undefined;
|
|
1242
1221
|
text?: string | undefined;
|
|
1243
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1244
1222
|
accessibilityDescription?: string | undefined;
|
|
1245
|
-
|
|
1223
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1246
1224
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1247
1225
|
} | undefined;
|
|
1226
|
+
description?: string | undefined;
|
|
1227
|
+
icon?: {
|
|
1228
|
+
name: string;
|
|
1229
|
+
} | {
|
|
1230
|
+
text: string;
|
|
1231
|
+
} | undefined;
|
|
1248
1232
|
}>;
|
|
1249
1233
|
export declare const actionResponseBodySchema: z.ZodObject<{
|
|
1250
1234
|
action: z.ZodObject<{
|
|
@@ -1262,13 +1246,13 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
1262
1246
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1263
1247
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1264
1248
|
}, "strip", z.ZodTypeAny, {
|
|
1265
|
-
|
|
1249
|
+
url?: string | undefined;
|
|
1250
|
+
$id?: string | undefined;
|
|
1266
1251
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1267
1252
|
disabled?: boolean | undefined;
|
|
1268
|
-
|
|
1269
|
-
$ref?: string | undefined;
|
|
1253
|
+
title?: string | undefined;
|
|
1270
1254
|
id?: string | undefined;
|
|
1271
|
-
|
|
1255
|
+
$ref?: string | undefined;
|
|
1272
1256
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1273
1257
|
exit?: boolean | undefined;
|
|
1274
1258
|
result?: JsonElement | undefined;
|
|
@@ -1276,13 +1260,13 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
1276
1260
|
timeout?: number | undefined;
|
|
1277
1261
|
skipValidation?: boolean | undefined;
|
|
1278
1262
|
}, {
|
|
1279
|
-
|
|
1263
|
+
url?: string | undefined;
|
|
1264
|
+
$id?: string | undefined;
|
|
1280
1265
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1281
1266
|
disabled?: boolean | undefined;
|
|
1282
|
-
|
|
1283
|
-
$ref?: string | undefined;
|
|
1267
|
+
title?: string | undefined;
|
|
1284
1268
|
id?: string | undefined;
|
|
1285
|
-
|
|
1269
|
+
$ref?: string | undefined;
|
|
1286
1270
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1287
1271
|
exit?: boolean | undefined;
|
|
1288
1272
|
result?: JsonElement | undefined;
|
|
@@ -1292,13 +1276,13 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
1292
1276
|
}>;
|
|
1293
1277
|
}, "strip", z.ZodTypeAny, {
|
|
1294
1278
|
action: {
|
|
1295
|
-
|
|
1279
|
+
url?: string | undefined;
|
|
1280
|
+
$id?: string | undefined;
|
|
1296
1281
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1297
1282
|
disabled?: boolean | undefined;
|
|
1298
|
-
|
|
1299
|
-
$ref?: string | undefined;
|
|
1283
|
+
title?: string | undefined;
|
|
1300
1284
|
id?: string | undefined;
|
|
1301
|
-
|
|
1285
|
+
$ref?: string | undefined;
|
|
1302
1286
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1303
1287
|
exit?: boolean | undefined;
|
|
1304
1288
|
result?: JsonElement | undefined;
|
|
@@ -1308,13 +1292,13 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
1308
1292
|
};
|
|
1309
1293
|
}, {
|
|
1310
1294
|
action: {
|
|
1311
|
-
|
|
1295
|
+
url?: string | undefined;
|
|
1296
|
+
$id?: string | undefined;
|
|
1312
1297
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1313
1298
|
disabled?: boolean | undefined;
|
|
1314
|
-
|
|
1315
|
-
$ref?: string | undefined;
|
|
1299
|
+
title?: string | undefined;
|
|
1316
1300
|
id?: string | undefined;
|
|
1317
|
-
|
|
1301
|
+
$ref?: string | undefined;
|
|
1318
1302
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1319
1303
|
exit?: boolean | undefined;
|
|
1320
1304
|
result?: JsonElement | undefined;
|
|
@@ -1330,17 +1314,17 @@ export declare const errorResponseBodySchema: z.ZodObject<{
|
|
|
1330
1314
|
validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1331
1315
|
refreshUrl: z.ZodOptional<z.ZodString>;
|
|
1332
1316
|
}, "strip", z.ZodTypeAny, {
|
|
1317
|
+
refreshUrl?: string | undefined;
|
|
1333
1318
|
refreshFormUrl?: string | undefined;
|
|
1334
1319
|
analytics?: Record<string, string> | undefined;
|
|
1335
|
-
error?: string | undefined;
|
|
1336
1320
|
validation?: JsonElement | undefined;
|
|
1337
|
-
|
|
1321
|
+
error?: string | undefined;
|
|
1338
1322
|
}, {
|
|
1323
|
+
refreshUrl?: string | undefined;
|
|
1339
1324
|
refreshFormUrl?: string | undefined;
|
|
1340
1325
|
analytics?: Record<string, string> | undefined;
|
|
1341
|
-
error?: string | undefined;
|
|
1342
1326
|
validation?: JsonElement | undefined;
|
|
1343
|
-
|
|
1327
|
+
error?: string | undefined;
|
|
1344
1328
|
}>;
|
|
1345
1329
|
export declare const linkHandlerSchema: z.ZodObject<{
|
|
1346
1330
|
regexPattern: z.ZodString;
|
|
@@ -1359,13 +1343,13 @@ export declare const linkHandlerSchema: z.ZodObject<{
|
|
|
1359
1343
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1360
1344
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1361
1345
|
}, "strip", z.ZodTypeAny, {
|
|
1362
|
-
|
|
1346
|
+
url?: string | undefined;
|
|
1347
|
+
$id?: string | undefined;
|
|
1363
1348
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1364
1349
|
disabled?: boolean | undefined;
|
|
1365
|
-
|
|
1366
|
-
$ref?: string | undefined;
|
|
1350
|
+
title?: string | undefined;
|
|
1367
1351
|
id?: string | undefined;
|
|
1368
|
-
|
|
1352
|
+
$ref?: string | undefined;
|
|
1369
1353
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1370
1354
|
exit?: boolean | undefined;
|
|
1371
1355
|
result?: JsonElement | undefined;
|
|
@@ -1373,13 +1357,13 @@ export declare const linkHandlerSchema: z.ZodObject<{
|
|
|
1373
1357
|
timeout?: number | undefined;
|
|
1374
1358
|
skipValidation?: boolean | undefined;
|
|
1375
1359
|
}, {
|
|
1376
|
-
|
|
1360
|
+
url?: string | undefined;
|
|
1361
|
+
$id?: string | undefined;
|
|
1377
1362
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1378
1363
|
disabled?: boolean | undefined;
|
|
1379
|
-
|
|
1380
|
-
$ref?: string | undefined;
|
|
1364
|
+
title?: string | undefined;
|
|
1381
1365
|
id?: string | undefined;
|
|
1382
|
-
|
|
1366
|
+
$ref?: string | undefined;
|
|
1383
1367
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1384
1368
|
exit?: boolean | undefined;
|
|
1385
1369
|
result?: JsonElement | undefined;
|
|
@@ -1389,13 +1373,13 @@ export declare const linkHandlerSchema: z.ZodObject<{
|
|
|
1389
1373
|
}>;
|
|
1390
1374
|
}, "strip", z.ZodTypeAny, {
|
|
1391
1375
|
action: {
|
|
1392
|
-
|
|
1376
|
+
url?: string | undefined;
|
|
1377
|
+
$id?: string | undefined;
|
|
1393
1378
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1394
1379
|
disabled?: boolean | undefined;
|
|
1395
|
-
|
|
1396
|
-
$ref?: string | undefined;
|
|
1380
|
+
title?: string | undefined;
|
|
1397
1381
|
id?: string | undefined;
|
|
1398
|
-
|
|
1382
|
+
$ref?: string | undefined;
|
|
1399
1383
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1400
1384
|
exit?: boolean | undefined;
|
|
1401
1385
|
result?: JsonElement | undefined;
|
|
@@ -1406,13 +1390,13 @@ export declare const linkHandlerSchema: z.ZodObject<{
|
|
|
1406
1390
|
regexPattern: string;
|
|
1407
1391
|
}, {
|
|
1408
1392
|
action: {
|
|
1409
|
-
|
|
1393
|
+
url?: string | undefined;
|
|
1394
|
+
$id?: string | undefined;
|
|
1410
1395
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1411
1396
|
disabled?: boolean | undefined;
|
|
1412
|
-
|
|
1413
|
-
$ref?: string | undefined;
|
|
1397
|
+
title?: string | undefined;
|
|
1414
1398
|
id?: string | undefined;
|
|
1415
|
-
|
|
1399
|
+
$ref?: string | undefined;
|
|
1416
1400
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1417
1401
|
exit?: boolean | undefined;
|
|
1418
1402
|
result?: JsonElement | undefined;
|
|
@@ -1497,15 +1481,15 @@ export declare const blobSchemaSchema: z.ZodObject<{
|
|
|
1497
1481
|
}, "strip", z.ZodTypeAny, {
|
|
1498
1482
|
type: "alert";
|
|
1499
1483
|
markdown: string;
|
|
1500
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1501
1484
|
control?: string | undefined;
|
|
1502
1485
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1486
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1503
1487
|
}, {
|
|
1504
1488
|
type: "alert";
|
|
1505
1489
|
markdown: string;
|
|
1506
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1507
1490
|
control?: string | undefined;
|
|
1508
1491
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1492
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1509
1493
|
}>>;
|
|
1510
1494
|
cameraConfig: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1511
1495
|
accepts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1514,92 +1498,92 @@ export declare const blobSchemaSchema: z.ZodObject<{
|
|
|
1514
1498
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1515
1499
|
}, "strip", z.ZodTypeAny, {
|
|
1516
1500
|
type: "blob";
|
|
1517
|
-
|
|
1501
|
+
image?: {
|
|
1502
|
+
url: string;
|
|
1503
|
+
text?: string | undefined;
|
|
1504
|
+
accessibilityDescription?: string | undefined;
|
|
1505
|
+
} | undefined;
|
|
1506
|
+
alert?: {
|
|
1507
|
+
type: "alert";
|
|
1508
|
+
markdown: string;
|
|
1509
|
+
control?: string | undefined;
|
|
1510
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1511
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1512
|
+
} | undefined;
|
|
1518
1513
|
$id?: string | undefined;
|
|
1519
|
-
|
|
1514
|
+
analyticsId?: string | undefined;
|
|
1520
1515
|
description?: string | undefined;
|
|
1521
|
-
|
|
1516
|
+
disabled?: boolean | undefined;
|
|
1522
1517
|
hidden?: boolean | undefined;
|
|
1523
1518
|
icon?: {
|
|
1524
1519
|
name: string;
|
|
1525
1520
|
} | {
|
|
1526
1521
|
text: string;
|
|
1527
1522
|
} | undefined;
|
|
1528
|
-
|
|
1529
|
-
url: string;
|
|
1530
|
-
text?: string | undefined;
|
|
1531
|
-
accessibilityDescription?: string | undefined;
|
|
1532
|
-
} | undefined;
|
|
1533
|
-
keywords?: string[] | undefined;
|
|
1523
|
+
promoted?: boolean | undefined;
|
|
1534
1524
|
summary?: {
|
|
1535
1525
|
providesTitle?: boolean | undefined;
|
|
1536
1526
|
providesDescription?: boolean | undefined;
|
|
1537
1527
|
providesIcon?: boolean | undefined;
|
|
1538
1528
|
providesImage?: boolean | undefined;
|
|
1539
1529
|
} | undefined;
|
|
1540
|
-
|
|
1530
|
+
title?: string | undefined;
|
|
1541
1531
|
validationAsync?: {
|
|
1542
1532
|
url: string;
|
|
1543
1533
|
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
1544
1534
|
param: string;
|
|
1545
1535
|
} | undefined;
|
|
1546
1536
|
validationMessages?: Record<string, string> | undefined;
|
|
1537
|
+
keywords?: string[] | undefined;
|
|
1538
|
+
source?: "camera" | "file" | undefined;
|
|
1539
|
+
cameraConfig?: JsonElement | undefined;
|
|
1540
|
+
control?: string | undefined;
|
|
1541
|
+
maxSize?: number | undefined;
|
|
1542
|
+
accepts?: string[] | undefined;
|
|
1543
|
+
}, {
|
|
1544
|
+
type: "blob";
|
|
1545
|
+
image?: {
|
|
1546
|
+
url: string;
|
|
1547
|
+
text?: string | undefined;
|
|
1548
|
+
accessibilityDescription?: string | undefined;
|
|
1549
|
+
} | undefined;
|
|
1547
1550
|
alert?: {
|
|
1548
1551
|
type: "alert";
|
|
1549
1552
|
markdown: string;
|
|
1550
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1551
1553
|
control?: string | undefined;
|
|
1552
1554
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1555
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1553
1556
|
} | undefined;
|
|
1554
|
-
cameraConfig?: JsonElement | undefined;
|
|
1555
|
-
accepts?: string[] | undefined;
|
|
1556
|
-
maxSize?: number | undefined;
|
|
1557
|
-
source?: "camera" | "file" | undefined;
|
|
1558
|
-
disabled?: boolean | undefined;
|
|
1559
|
-
}, {
|
|
1560
|
-
type: "blob";
|
|
1561
|
-
promoted?: boolean | undefined;
|
|
1562
1557
|
$id?: string | undefined;
|
|
1563
|
-
|
|
1558
|
+
analyticsId?: string | undefined;
|
|
1564
1559
|
description?: string | undefined;
|
|
1565
|
-
|
|
1560
|
+
disabled?: boolean | undefined;
|
|
1566
1561
|
hidden?: boolean | undefined;
|
|
1567
1562
|
icon?: {
|
|
1568
1563
|
name: string;
|
|
1569
1564
|
} | {
|
|
1570
1565
|
text: string;
|
|
1571
1566
|
} | undefined;
|
|
1572
|
-
|
|
1573
|
-
url: string;
|
|
1574
|
-
text?: string | undefined;
|
|
1575
|
-
accessibilityDescription?: string | undefined;
|
|
1576
|
-
} | undefined;
|
|
1577
|
-
keywords?: string[] | undefined;
|
|
1567
|
+
promoted?: boolean | undefined;
|
|
1578
1568
|
summary?: {
|
|
1579
1569
|
providesTitle?: boolean | undefined;
|
|
1580
1570
|
providesDescription?: boolean | undefined;
|
|
1581
1571
|
providesIcon?: boolean | undefined;
|
|
1582
1572
|
providesImage?: boolean | undefined;
|
|
1583
1573
|
} | undefined;
|
|
1584
|
-
|
|
1574
|
+
title?: string | undefined;
|
|
1585
1575
|
validationAsync?: {
|
|
1586
1576
|
url: string;
|
|
1587
1577
|
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
1588
1578
|
param: string;
|
|
1589
1579
|
} | undefined;
|
|
1590
1580
|
validationMessages?: Record<string, string> | undefined;
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
markdown: string;
|
|
1594
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1595
|
-
control?: string | undefined;
|
|
1596
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1597
|
-
} | undefined;
|
|
1581
|
+
keywords?: string[] | undefined;
|
|
1582
|
+
source?: "camera" | "file" | undefined;
|
|
1598
1583
|
cameraConfig?: JsonElement | undefined;
|
|
1599
|
-
|
|
1584
|
+
control?: string | undefined;
|
|
1600
1585
|
maxSize?: number | undefined;
|
|
1601
|
-
|
|
1602
|
-
disabled?: boolean | undefined;
|
|
1586
|
+
accepts?: string[] | undefined;
|
|
1603
1587
|
}>;
|
|
1604
1588
|
export declare const constSchemaSchema: z.ZodObject<{
|
|
1605
1589
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1612,15 +1596,15 @@ export declare const constSchemaSchema: z.ZodObject<{
|
|
|
1612
1596
|
}, "strip", z.ZodTypeAny, {
|
|
1613
1597
|
type: "alert";
|
|
1614
1598
|
markdown: string;
|
|
1615
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1616
1599
|
control?: string | undefined;
|
|
1617
1600
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1601
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1618
1602
|
}, {
|
|
1619
1603
|
type: "alert";
|
|
1620
1604
|
markdown: string;
|
|
1621
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1622
1605
|
control?: string | undefined;
|
|
1623
1606
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1607
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1624
1608
|
}>>;
|
|
1625
1609
|
control: z.ZodOptional<z.ZodString>;
|
|
1626
1610
|
promoted: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1674,73 +1658,73 @@ export declare const constSchemaSchema: z.ZodObject<{
|
|
|
1674
1658
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
1675
1659
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1676
1660
|
}, "strip", z.ZodTypeAny, {
|
|
1677
|
-
const:
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1661
|
+
const: JsonElement;
|
|
1662
|
+
image?: {
|
|
1663
|
+
url: string;
|
|
1664
|
+
text?: string | undefined;
|
|
1665
|
+
accessibilityDescription?: string | undefined;
|
|
1666
|
+
} | undefined;
|
|
1667
|
+
alert?: {
|
|
1668
|
+
type: "alert";
|
|
1669
|
+
markdown: string;
|
|
1683
1670
|
control?: string | undefined;
|
|
1684
1671
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1672
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1685
1673
|
} | undefined;
|
|
1686
|
-
control?: string | undefined;
|
|
1687
|
-
promoted?: boolean | undefined;
|
|
1688
1674
|
$id?: string | undefined;
|
|
1689
|
-
|
|
1675
|
+
analyticsId?: string | undefined;
|
|
1690
1676
|
description?: string | undefined;
|
|
1677
|
+
disabled?: boolean | undefined;
|
|
1678
|
+
hidden?: boolean | undefined;
|
|
1691
1679
|
icon?: {
|
|
1692
1680
|
name: string;
|
|
1693
1681
|
} | {
|
|
1694
1682
|
text: string;
|
|
1695
1683
|
} | undefined;
|
|
1696
|
-
|
|
1697
|
-
url: string;
|
|
1698
|
-
text?: string | undefined;
|
|
1699
|
-
accessibilityDescription?: string | undefined;
|
|
1700
|
-
} | undefined;
|
|
1701
|
-
keywords?: string[] | undefined;
|
|
1684
|
+
promoted?: boolean | undefined;
|
|
1702
1685
|
summary?: {
|
|
1703
1686
|
providesTitle?: boolean | undefined;
|
|
1704
1687
|
providesDescription?: boolean | undefined;
|
|
1705
1688
|
providesIcon?: boolean | undefined;
|
|
1706
1689
|
providesImage?: boolean | undefined;
|
|
1707
1690
|
} | undefined;
|
|
1708
|
-
|
|
1709
|
-
|
|
1691
|
+
title?: string | undefined;
|
|
1692
|
+
keywords?: string[] | undefined;
|
|
1693
|
+
control?: string | undefined;
|
|
1710
1694
|
}, {
|
|
1711
|
-
const:
|
|
1712
|
-
|
|
1695
|
+
const: JsonElement;
|
|
1696
|
+
image?: {
|
|
1697
|
+
url: string;
|
|
1698
|
+
text?: string | undefined;
|
|
1699
|
+
accessibilityDescription?: string | undefined;
|
|
1700
|
+
} | undefined;
|
|
1713
1701
|
alert?: {
|
|
1714
1702
|
type: "alert";
|
|
1715
1703
|
markdown: string;
|
|
1716
|
-
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1717
1704
|
control?: string | undefined;
|
|
1718
1705
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1706
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
1719
1707
|
} | undefined;
|
|
1720
|
-
control?: string | undefined;
|
|
1721
|
-
promoted?: boolean | undefined;
|
|
1722
1708
|
$id?: string | undefined;
|
|
1723
|
-
|
|
1709
|
+
analyticsId?: string | undefined;
|
|
1724
1710
|
description?: string | undefined;
|
|
1711
|
+
disabled?: boolean | undefined;
|
|
1712
|
+
hidden?: boolean | undefined;
|
|
1725
1713
|
icon?: {
|
|
1726
1714
|
name: string;
|
|
1727
1715
|
} | {
|
|
1728
1716
|
text: string;
|
|
1729
1717
|
} | undefined;
|
|
1730
|
-
|
|
1731
|
-
url: string;
|
|
1732
|
-
text?: string | undefined;
|
|
1733
|
-
accessibilityDescription?: string | undefined;
|
|
1734
|
-
} | undefined;
|
|
1735
|
-
keywords?: string[] | undefined;
|
|
1718
|
+
promoted?: boolean | undefined;
|
|
1736
1719
|
summary?: {
|
|
1737
1720
|
providesTitle?: boolean | undefined;
|
|
1738
1721
|
providesDescription?: boolean | undefined;
|
|
1739
1722
|
providesIcon?: boolean | undefined;
|
|
1740
1723
|
providesImage?: boolean | undefined;
|
|
1741
1724
|
} | undefined;
|
|
1742
|
-
|
|
1743
|
-
|
|
1725
|
+
title?: string | undefined;
|
|
1726
|
+
keywords?: string[] | undefined;
|
|
1727
|
+
control?: string | undefined;
|
|
1744
1728
|
}>;
|
|
1745
1729
|
export declare const pollingOnErrorSchema: z.ZodObject<{
|
|
1746
1730
|
action: z.ZodObject<{
|
|
@@ -1758,13 +1742,13 @@ export declare const pollingOnErrorSchema: z.ZodObject<{
|
|
|
1758
1742
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1759
1743
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1760
1744
|
}, "strip", z.ZodTypeAny, {
|
|
1761
|
-
|
|
1745
|
+
url?: string | undefined;
|
|
1746
|
+
$id?: string | undefined;
|
|
1762
1747
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1763
1748
|
disabled?: boolean | undefined;
|
|
1764
|
-
|
|
1765
|
-
$ref?: string | undefined;
|
|
1749
|
+
title?: string | undefined;
|
|
1766
1750
|
id?: string | undefined;
|
|
1767
|
-
|
|
1751
|
+
$ref?: string | undefined;
|
|
1768
1752
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1769
1753
|
exit?: boolean | undefined;
|
|
1770
1754
|
result?: JsonElement | undefined;
|
|
@@ -1772,13 +1756,13 @@ export declare const pollingOnErrorSchema: z.ZodObject<{
|
|
|
1772
1756
|
timeout?: number | undefined;
|
|
1773
1757
|
skipValidation?: boolean | undefined;
|
|
1774
1758
|
}, {
|
|
1775
|
-
|
|
1759
|
+
url?: string | undefined;
|
|
1760
|
+
$id?: string | undefined;
|
|
1776
1761
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1777
1762
|
disabled?: boolean | undefined;
|
|
1778
|
-
|
|
1779
|
-
$ref?: string | undefined;
|
|
1763
|
+
title?: string | undefined;
|
|
1780
1764
|
id?: string | undefined;
|
|
1781
|
-
|
|
1765
|
+
$ref?: string | undefined;
|
|
1782
1766
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1783
1767
|
exit?: boolean | undefined;
|
|
1784
1768
|
result?: JsonElement | undefined;
|
|
@@ -1788,13 +1772,13 @@ export declare const pollingOnErrorSchema: z.ZodObject<{
|
|
|
1788
1772
|
}>;
|
|
1789
1773
|
}, "strip", z.ZodTypeAny, {
|
|
1790
1774
|
action: {
|
|
1791
|
-
|
|
1775
|
+
url?: string | undefined;
|
|
1776
|
+
$id?: string | undefined;
|
|
1792
1777
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1793
1778
|
disabled?: boolean | undefined;
|
|
1794
|
-
|
|
1795
|
-
$ref?: string | undefined;
|
|
1779
|
+
title?: string | undefined;
|
|
1796
1780
|
id?: string | undefined;
|
|
1797
|
-
|
|
1781
|
+
$ref?: string | undefined;
|
|
1798
1782
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1799
1783
|
exit?: boolean | undefined;
|
|
1800
1784
|
result?: JsonElement | undefined;
|
|
@@ -1804,13 +1788,13 @@ export declare const pollingOnErrorSchema: z.ZodObject<{
|
|
|
1804
1788
|
};
|
|
1805
1789
|
}, {
|
|
1806
1790
|
action: {
|
|
1807
|
-
|
|
1791
|
+
url?: string | undefined;
|
|
1792
|
+
$id?: string | undefined;
|
|
1808
1793
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1809
1794
|
disabled?: boolean | undefined;
|
|
1810
|
-
|
|
1811
|
-
$ref?: string | undefined;
|
|
1795
|
+
title?: string | undefined;
|
|
1812
1796
|
id?: string | undefined;
|
|
1813
|
-
|
|
1797
|
+
$ref?: string | undefined;
|
|
1814
1798
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1815
1799
|
exit?: boolean | undefined;
|
|
1816
1800
|
result?: JsonElement | undefined;
|
|
@@ -1836,13 +1820,13 @@ export declare const navigationBackBehaviourSchema: z.ZodObject<{
|
|
|
1836
1820
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1837
1821
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1838
1822
|
}, "strip", z.ZodTypeAny, {
|
|
1839
|
-
|
|
1823
|
+
url?: string | undefined;
|
|
1824
|
+
$id?: string | undefined;
|
|
1840
1825
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1841
1826
|
disabled?: boolean | undefined;
|
|
1842
|
-
|
|
1843
|
-
$ref?: string | undefined;
|
|
1827
|
+
title?: string | undefined;
|
|
1844
1828
|
id?: string | undefined;
|
|
1845
|
-
|
|
1829
|
+
$ref?: string | undefined;
|
|
1846
1830
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1847
1831
|
exit?: boolean | undefined;
|
|
1848
1832
|
result?: JsonElement | undefined;
|
|
@@ -1850,13 +1834,13 @@ export declare const navigationBackBehaviourSchema: z.ZodObject<{
|
|
|
1850
1834
|
timeout?: number | undefined;
|
|
1851
1835
|
skipValidation?: boolean | undefined;
|
|
1852
1836
|
}, {
|
|
1853
|
-
|
|
1837
|
+
url?: string | undefined;
|
|
1838
|
+
$id?: string | undefined;
|
|
1854
1839
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1855
1840
|
disabled?: boolean | undefined;
|
|
1856
|
-
|
|
1857
|
-
$ref?: string | undefined;
|
|
1841
|
+
title?: string | undefined;
|
|
1858
1842
|
id?: string | undefined;
|
|
1859
|
-
|
|
1843
|
+
$ref?: string | undefined;
|
|
1860
1844
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1861
1845
|
exit?: boolean | undefined;
|
|
1862
1846
|
result?: JsonElement | undefined;
|
|
@@ -1866,13 +1850,13 @@ export declare const navigationBackBehaviourSchema: z.ZodObject<{
|
|
|
1866
1850
|
}>;
|
|
1867
1851
|
}, "strip", z.ZodTypeAny, {
|
|
1868
1852
|
action: {
|
|
1869
|
-
|
|
1853
|
+
url?: string | undefined;
|
|
1854
|
+
$id?: string | undefined;
|
|
1870
1855
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1871
1856
|
disabled?: boolean | undefined;
|
|
1872
|
-
|
|
1873
|
-
$ref?: string | undefined;
|
|
1857
|
+
title?: string | undefined;
|
|
1874
1858
|
id?: string | undefined;
|
|
1875
|
-
|
|
1859
|
+
$ref?: string | undefined;
|
|
1876
1860
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1877
1861
|
exit?: boolean | undefined;
|
|
1878
1862
|
result?: JsonElement | undefined;
|
|
@@ -1883,13 +1867,13 @@ export declare const navigationBackBehaviourSchema: z.ZodObject<{
|
|
|
1883
1867
|
title?: string | undefined;
|
|
1884
1868
|
}, {
|
|
1885
1869
|
action: {
|
|
1886
|
-
|
|
1870
|
+
url?: string | undefined;
|
|
1871
|
+
$id?: string | undefined;
|
|
1887
1872
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1888
1873
|
disabled?: boolean | undefined;
|
|
1889
|
-
|
|
1890
|
-
$ref?: string | undefined;
|
|
1874
|
+
title?: string | undefined;
|
|
1891
1875
|
id?: string | undefined;
|
|
1892
|
-
|
|
1876
|
+
$ref?: string | undefined;
|
|
1893
1877
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1894
1878
|
exit?: boolean | undefined;
|
|
1895
1879
|
result?: JsonElement | undefined;
|
|
@@ -1916,13 +1900,13 @@ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
|
|
|
1916
1900
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1917
1901
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1918
1902
|
}, "strip", z.ZodTypeAny, {
|
|
1919
|
-
|
|
1903
|
+
url?: string | undefined;
|
|
1904
|
+
$id?: string | undefined;
|
|
1920
1905
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1921
1906
|
disabled?: boolean | undefined;
|
|
1922
|
-
|
|
1923
|
-
$ref?: string | undefined;
|
|
1907
|
+
title?: string | undefined;
|
|
1924
1908
|
id?: string | undefined;
|
|
1925
|
-
|
|
1909
|
+
$ref?: string | undefined;
|
|
1926
1910
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1927
1911
|
exit?: boolean | undefined;
|
|
1928
1912
|
result?: JsonElement | undefined;
|
|
@@ -1930,13 +1914,13 @@ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
|
|
|
1930
1914
|
timeout?: number | undefined;
|
|
1931
1915
|
skipValidation?: boolean | undefined;
|
|
1932
1916
|
}, {
|
|
1933
|
-
|
|
1917
|
+
url?: string | undefined;
|
|
1918
|
+
$id?: string | undefined;
|
|
1934
1919
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1935
1920
|
disabled?: boolean | undefined;
|
|
1936
|
-
|
|
1937
|
-
$ref?: string | undefined;
|
|
1921
|
+
title?: string | undefined;
|
|
1938
1922
|
id?: string | undefined;
|
|
1939
|
-
|
|
1923
|
+
$ref?: string | undefined;
|
|
1940
1924
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1941
1925
|
exit?: boolean | undefined;
|
|
1942
1926
|
result?: JsonElement | undefined;
|
|
@@ -1946,13 +1930,13 @@ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
|
|
|
1946
1930
|
}>;
|
|
1947
1931
|
}, "strip", z.ZodTypeAny, {
|
|
1948
1932
|
action: {
|
|
1949
|
-
|
|
1933
|
+
url?: string | undefined;
|
|
1934
|
+
$id?: string | undefined;
|
|
1950
1935
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1951
1936
|
disabled?: boolean | undefined;
|
|
1952
|
-
|
|
1953
|
-
$ref?: string | undefined;
|
|
1937
|
+
title?: string | undefined;
|
|
1954
1938
|
id?: string | undefined;
|
|
1955
|
-
|
|
1939
|
+
$ref?: string | undefined;
|
|
1956
1940
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1957
1941
|
exit?: boolean | undefined;
|
|
1958
1942
|
result?: JsonElement | undefined;
|
|
@@ -1963,13 +1947,13 @@ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
|
|
|
1963
1947
|
title: string;
|
|
1964
1948
|
}, {
|
|
1965
1949
|
action: {
|
|
1966
|
-
|
|
1950
|
+
url?: string | undefined;
|
|
1951
|
+
$id?: string | undefined;
|
|
1967
1952
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
1968
1953
|
disabled?: boolean | undefined;
|
|
1969
|
-
|
|
1970
|
-
$ref?: string | undefined;
|
|
1954
|
+
title?: string | undefined;
|
|
1971
1955
|
id?: string | undefined;
|
|
1972
|
-
|
|
1956
|
+
$ref?: string | undefined;
|
|
1973
1957
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1974
1958
|
exit?: boolean | undefined;
|
|
1975
1959
|
result?: JsonElement | undefined;
|
|
@@ -1999,28 +1983,20 @@ export declare const listLayoutSchema: z.ZodObject<{
|
|
|
1999
1983
|
}>]>;
|
|
2000
1984
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
|
|
2001
1985
|
}, "strip", z.ZodTypeAny, {
|
|
2002
|
-
icon:
|
|
2003
|
-
name: string;
|
|
2004
|
-
} | {
|
|
2005
|
-
text: string;
|
|
2006
|
-
}) & ({
|
|
1986
|
+
icon: {
|
|
2007
1987
|
name: string;
|
|
2008
1988
|
} | {
|
|
2009
1989
|
text: string;
|
|
2010
|
-
}
|
|
1990
|
+
};
|
|
2011
1991
|
title: string;
|
|
2012
1992
|
description?: string | undefined;
|
|
2013
1993
|
status?: "neutral" | "warning" | "positive" | undefined;
|
|
2014
1994
|
}, {
|
|
2015
|
-
icon:
|
|
2016
|
-
name: string;
|
|
2017
|
-
} | {
|
|
2018
|
-
text: string;
|
|
2019
|
-
}) & ({
|
|
1995
|
+
icon: {
|
|
2020
1996
|
name: string;
|
|
2021
1997
|
} | {
|
|
2022
1998
|
text: string;
|
|
2023
|
-
}
|
|
1999
|
+
};
|
|
2024
2000
|
title: string;
|
|
2025
2001
|
description?: string | undefined;
|
|
2026
2002
|
status?: "neutral" | "warning" | "positive" | undefined;
|
|
@@ -2031,15 +2007,11 @@ export declare const listLayoutSchema: z.ZodObject<{
|
|
|
2031
2007
|
}, "strip", z.ZodTypeAny, {
|
|
2032
2008
|
type: "list";
|
|
2033
2009
|
items: {
|
|
2034
|
-
icon:
|
|
2035
|
-
name: string;
|
|
2036
|
-
} | {
|
|
2037
|
-
text: string;
|
|
2038
|
-
}) & ({
|
|
2010
|
+
icon: {
|
|
2039
2011
|
name: string;
|
|
2040
2012
|
} | {
|
|
2041
2013
|
text: string;
|
|
2042
|
-
}
|
|
2014
|
+
};
|
|
2043
2015
|
title: string;
|
|
2044
2016
|
description?: string | undefined;
|
|
2045
2017
|
status?: "neutral" | "warning" | "positive" | undefined;
|
|
@@ -2050,15 +2022,11 @@ export declare const listLayoutSchema: z.ZodObject<{
|
|
|
2050
2022
|
}, {
|
|
2051
2023
|
type: "list";
|
|
2052
2024
|
items: {
|
|
2053
|
-
icon:
|
|
2054
|
-
name: string;
|
|
2055
|
-
} | {
|
|
2056
|
-
text: string;
|
|
2057
|
-
}) & ({
|
|
2025
|
+
icon: {
|
|
2058
2026
|
name: string;
|
|
2059
2027
|
} | {
|
|
2060
2028
|
text: string;
|
|
2061
|
-
}
|
|
2029
|
+
};
|
|
2062
2030
|
title: string;
|
|
2063
2031
|
description?: string | undefined;
|
|
2064
2032
|
status?: "neutral" | "warning" | "positive" | undefined;
|
|
@@ -2085,13 +2053,13 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2085
2053
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
2086
2054
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
2087
2055
|
}, "strip", z.ZodTypeAny, {
|
|
2088
|
-
|
|
2056
|
+
url?: string | undefined;
|
|
2057
|
+
$id?: string | undefined;
|
|
2089
2058
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2090
2059
|
disabled?: boolean | undefined;
|
|
2091
|
-
|
|
2092
|
-
$ref?: string | undefined;
|
|
2060
|
+
title?: string | undefined;
|
|
2093
2061
|
id?: string | undefined;
|
|
2094
|
-
|
|
2062
|
+
$ref?: string | undefined;
|
|
2095
2063
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2096
2064
|
exit?: boolean | undefined;
|
|
2097
2065
|
result?: JsonElement | undefined;
|
|
@@ -2099,13 +2067,13 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2099
2067
|
timeout?: number | undefined;
|
|
2100
2068
|
skipValidation?: boolean | undefined;
|
|
2101
2069
|
}, {
|
|
2102
|
-
|
|
2070
|
+
url?: string | undefined;
|
|
2071
|
+
$id?: string | undefined;
|
|
2103
2072
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2104
2073
|
disabled?: boolean | undefined;
|
|
2105
|
-
|
|
2106
|
-
$ref?: string | undefined;
|
|
2074
|
+
title?: string | undefined;
|
|
2107
2075
|
id?: string | undefined;
|
|
2108
|
-
|
|
2076
|
+
$ref?: string | undefined;
|
|
2109
2077
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2110
2078
|
exit?: boolean | undefined;
|
|
2111
2079
|
result?: JsonElement | undefined;
|
|
@@ -2140,29 +2108,29 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2140
2108
|
}, "strip", z.ZodTypeAny, {
|
|
2141
2109
|
url: string;
|
|
2142
2110
|
type: "image";
|
|
2111
|
+
control?: string | undefined;
|
|
2143
2112
|
text?: string | undefined;
|
|
2144
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2145
2113
|
accessibilityDescription?: string | undefined;
|
|
2146
|
-
|
|
2114
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2147
2115
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2148
2116
|
}, {
|
|
2149
2117
|
url: string;
|
|
2150
2118
|
type: "image";
|
|
2119
|
+
control?: string | undefined;
|
|
2151
2120
|
text?: string | undefined;
|
|
2152
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2153
2121
|
accessibilityDescription?: string | undefined;
|
|
2154
|
-
|
|
2122
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2155
2123
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2156
2124
|
}>>;
|
|
2157
2125
|
}, "strip", z.ZodTypeAny, {
|
|
2158
2126
|
action: {
|
|
2159
|
-
|
|
2127
|
+
url?: string | undefined;
|
|
2128
|
+
$id?: string | undefined;
|
|
2160
2129
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2161
2130
|
disabled?: boolean | undefined;
|
|
2162
|
-
|
|
2163
|
-
$ref?: string | undefined;
|
|
2131
|
+
title?: string | undefined;
|
|
2164
2132
|
id?: string | undefined;
|
|
2165
|
-
|
|
2133
|
+
$ref?: string | undefined;
|
|
2166
2134
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2167
2135
|
exit?: boolean | undefined;
|
|
2168
2136
|
result?: JsonElement | undefined;
|
|
@@ -2171,31 +2139,31 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2171
2139
|
skipValidation?: boolean | undefined;
|
|
2172
2140
|
};
|
|
2173
2141
|
title: string;
|
|
2174
|
-
description?: string | undefined;
|
|
2175
|
-
disabled?: boolean | undefined;
|
|
2176
|
-
icon?: {
|
|
2177
|
-
name: string;
|
|
2178
|
-
} | {
|
|
2179
|
-
text: string;
|
|
2180
|
-
} | undefined;
|
|
2181
2142
|
image?: {
|
|
2182
2143
|
url: string;
|
|
2183
2144
|
type: "image";
|
|
2145
|
+
control?: string | undefined;
|
|
2184
2146
|
text?: string | undefined;
|
|
2185
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2186
2147
|
accessibilityDescription?: string | undefined;
|
|
2187
|
-
|
|
2148
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2188
2149
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2189
2150
|
} | undefined;
|
|
2151
|
+
description?: string | undefined;
|
|
2152
|
+
disabled?: boolean | undefined;
|
|
2153
|
+
icon?: {
|
|
2154
|
+
name: string;
|
|
2155
|
+
} | {
|
|
2156
|
+
text: string;
|
|
2157
|
+
} | undefined;
|
|
2190
2158
|
}, {
|
|
2191
2159
|
action: {
|
|
2192
|
-
|
|
2160
|
+
url?: string | undefined;
|
|
2161
|
+
$id?: string | undefined;
|
|
2193
2162
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2194
2163
|
disabled?: boolean | undefined;
|
|
2195
|
-
|
|
2196
|
-
$ref?: string | undefined;
|
|
2164
|
+
title?: string | undefined;
|
|
2197
2165
|
id?: string | undefined;
|
|
2198
|
-
|
|
2166
|
+
$ref?: string | undefined;
|
|
2199
2167
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2200
2168
|
exit?: boolean | undefined;
|
|
2201
2169
|
result?: JsonElement | undefined;
|
|
@@ -2204,22 +2172,22 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2204
2172
|
skipValidation?: boolean | undefined;
|
|
2205
2173
|
};
|
|
2206
2174
|
title: string;
|
|
2207
|
-
description?: string | undefined;
|
|
2208
|
-
disabled?: boolean | undefined;
|
|
2209
|
-
icon?: {
|
|
2210
|
-
name: string;
|
|
2211
|
-
} | {
|
|
2212
|
-
text: string;
|
|
2213
|
-
} | undefined;
|
|
2214
2175
|
image?: {
|
|
2215
2176
|
url: string;
|
|
2216
2177
|
type: "image";
|
|
2178
|
+
control?: string | undefined;
|
|
2217
2179
|
text?: string | undefined;
|
|
2218
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2219
2180
|
accessibilityDescription?: string | undefined;
|
|
2220
|
-
|
|
2181
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2221
2182
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2222
2183
|
} | undefined;
|
|
2184
|
+
description?: string | undefined;
|
|
2185
|
+
disabled?: boolean | undefined;
|
|
2186
|
+
icon?: {
|
|
2187
|
+
name: string;
|
|
2188
|
+
} | {
|
|
2189
|
+
text: string;
|
|
2190
|
+
} | undefined;
|
|
2223
2191
|
}>, "many">;
|
|
2224
2192
|
control: z.ZodOptional<z.ZodString>;
|
|
2225
2193
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
@@ -2227,13 +2195,13 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2227
2195
|
type: "decision";
|
|
2228
2196
|
options: {
|
|
2229
2197
|
action: {
|
|
2230
|
-
|
|
2198
|
+
url?: string | undefined;
|
|
2199
|
+
$id?: string | undefined;
|
|
2231
2200
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2232
2201
|
disabled?: boolean | undefined;
|
|
2233
|
-
|
|
2234
|
-
$ref?: string | undefined;
|
|
2202
|
+
title?: string | undefined;
|
|
2235
2203
|
id?: string | undefined;
|
|
2236
|
-
|
|
2204
|
+
$ref?: string | undefined;
|
|
2237
2205
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2238
2206
|
exit?: boolean | undefined;
|
|
2239
2207
|
result?: JsonElement | undefined;
|
|
@@ -2242,22 +2210,22 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2242
2210
|
skipValidation?: boolean | undefined;
|
|
2243
2211
|
};
|
|
2244
2212
|
title: string;
|
|
2245
|
-
description?: string | undefined;
|
|
2246
|
-
disabled?: boolean | undefined;
|
|
2247
|
-
icon?: {
|
|
2248
|
-
name: string;
|
|
2249
|
-
} | {
|
|
2250
|
-
text: string;
|
|
2251
|
-
} | undefined;
|
|
2252
2213
|
image?: {
|
|
2253
2214
|
url: string;
|
|
2254
2215
|
type: "image";
|
|
2216
|
+
control?: string | undefined;
|
|
2255
2217
|
text?: string | undefined;
|
|
2256
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2257
2218
|
accessibilityDescription?: string | undefined;
|
|
2258
|
-
|
|
2219
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2259
2220
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2260
2221
|
} | undefined;
|
|
2222
|
+
description?: string | undefined;
|
|
2223
|
+
disabled?: boolean | undefined;
|
|
2224
|
+
icon?: {
|
|
2225
|
+
name: string;
|
|
2226
|
+
} | {
|
|
2227
|
+
text: string;
|
|
2228
|
+
} | undefined;
|
|
2261
2229
|
}[];
|
|
2262
2230
|
control?: string | undefined;
|
|
2263
2231
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
@@ -2265,13 +2233,13 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2265
2233
|
type: "decision";
|
|
2266
2234
|
options: {
|
|
2267
2235
|
action: {
|
|
2268
|
-
|
|
2236
|
+
url?: string | undefined;
|
|
2237
|
+
$id?: string | undefined;
|
|
2269
2238
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2270
2239
|
disabled?: boolean | undefined;
|
|
2271
|
-
|
|
2272
|
-
$ref?: string | undefined;
|
|
2240
|
+
title?: string | undefined;
|
|
2273
2241
|
id?: string | undefined;
|
|
2274
|
-
|
|
2242
|
+
$ref?: string | undefined;
|
|
2275
2243
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2276
2244
|
exit?: boolean | undefined;
|
|
2277
2245
|
result?: JsonElement | undefined;
|
|
@@ -2280,22 +2248,22 @@ export declare const decisionLayoutSchema: z.ZodObject<{
|
|
|
2280
2248
|
skipValidation?: boolean | undefined;
|
|
2281
2249
|
};
|
|
2282
2250
|
title: string;
|
|
2283
|
-
description?: string | undefined;
|
|
2284
|
-
disabled?: boolean | undefined;
|
|
2285
|
-
icon?: {
|
|
2286
|
-
name: string;
|
|
2287
|
-
} | {
|
|
2288
|
-
text: string;
|
|
2289
|
-
} | undefined;
|
|
2290
2251
|
image?: {
|
|
2291
2252
|
url: string;
|
|
2292
2253
|
type: "image";
|
|
2254
|
+
control?: string | undefined;
|
|
2293
2255
|
text?: string | undefined;
|
|
2294
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2295
2256
|
accessibilityDescription?: string | undefined;
|
|
2296
|
-
|
|
2257
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2297
2258
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2298
2259
|
} | undefined;
|
|
2260
|
+
description?: string | undefined;
|
|
2261
|
+
disabled?: boolean | undefined;
|
|
2262
|
+
icon?: {
|
|
2263
|
+
name: string;
|
|
2264
|
+
} | {
|
|
2265
|
+
text: string;
|
|
2266
|
+
} | undefined;
|
|
2299
2267
|
}[];
|
|
2300
2268
|
control?: string | undefined;
|
|
2301
2269
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
@@ -2320,28 +2288,20 @@ export declare const statusListLayoutSchema: z.ZodObject<{
|
|
|
2320
2288
|
}>]>;
|
|
2321
2289
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
|
|
2322
2290
|
}, "strip", z.ZodTypeAny, {
|
|
2323
|
-
icon:
|
|
2324
|
-
name: string;
|
|
2325
|
-
} | {
|
|
2326
|
-
text: string;
|
|
2327
|
-
}) & ({
|
|
2291
|
+
icon: {
|
|
2328
2292
|
name: string;
|
|
2329
2293
|
} | {
|
|
2330
2294
|
text: string;
|
|
2331
|
-
}
|
|
2295
|
+
};
|
|
2332
2296
|
title: string;
|
|
2333
2297
|
description?: string | undefined;
|
|
2334
2298
|
status?: "done" | "not-done" | "pending" | undefined;
|
|
2335
2299
|
}, {
|
|
2336
|
-
icon:
|
|
2337
|
-
name: string;
|
|
2338
|
-
} | {
|
|
2339
|
-
text: string;
|
|
2340
|
-
}) & ({
|
|
2300
|
+
icon: {
|
|
2341
2301
|
name: string;
|
|
2342
2302
|
} | {
|
|
2343
2303
|
text: string;
|
|
2344
|
-
}
|
|
2304
|
+
};
|
|
2345
2305
|
title: string;
|
|
2346
2306
|
description?: string | undefined;
|
|
2347
2307
|
status?: "done" | "not-done" | "pending" | undefined;
|
|
@@ -2352,15 +2312,11 @@ export declare const statusListLayoutSchema: z.ZodObject<{
|
|
|
2352
2312
|
}, "strip", z.ZodTypeAny, {
|
|
2353
2313
|
type: "status-list";
|
|
2354
2314
|
items: {
|
|
2355
|
-
icon:
|
|
2356
|
-
name: string;
|
|
2357
|
-
} | {
|
|
2358
|
-
text: string;
|
|
2359
|
-
}) & ({
|
|
2315
|
+
icon: {
|
|
2360
2316
|
name: string;
|
|
2361
2317
|
} | {
|
|
2362
2318
|
text: string;
|
|
2363
|
-
}
|
|
2319
|
+
};
|
|
2364
2320
|
title: string;
|
|
2365
2321
|
description?: string | undefined;
|
|
2366
2322
|
status?: "done" | "not-done" | "pending" | undefined;
|
|
@@ -2371,15 +2327,11 @@ export declare const statusListLayoutSchema: z.ZodObject<{
|
|
|
2371
2327
|
}, {
|
|
2372
2328
|
type: "status-list";
|
|
2373
2329
|
items: {
|
|
2374
|
-
icon:
|
|
2375
|
-
name: string;
|
|
2376
|
-
} | {
|
|
2377
|
-
text: string;
|
|
2378
|
-
}) & ({
|
|
2330
|
+
icon: {
|
|
2379
2331
|
name: string;
|
|
2380
2332
|
} | {
|
|
2381
2333
|
text: string;
|
|
2382
|
-
}
|
|
2334
|
+
};
|
|
2383
2335
|
title: string;
|
|
2384
2336
|
description?: string | undefined;
|
|
2385
2337
|
status?: "done" | "not-done" | "pending" | undefined;
|
|
@@ -2406,13 +2358,13 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2406
2358
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
2407
2359
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
2408
2360
|
}, "strip", z.ZodTypeAny, {
|
|
2409
|
-
|
|
2361
|
+
url?: string | undefined;
|
|
2362
|
+
$id?: string | undefined;
|
|
2410
2363
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2411
2364
|
disabled?: boolean | undefined;
|
|
2412
|
-
|
|
2413
|
-
$ref?: string | undefined;
|
|
2365
|
+
title?: string | undefined;
|
|
2414
2366
|
id?: string | undefined;
|
|
2415
|
-
|
|
2367
|
+
$ref?: string | undefined;
|
|
2416
2368
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2417
2369
|
exit?: boolean | undefined;
|
|
2418
2370
|
result?: JsonElement | undefined;
|
|
@@ -2420,13 +2372,13 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2420
2372
|
timeout?: number | undefined;
|
|
2421
2373
|
skipValidation?: boolean | undefined;
|
|
2422
2374
|
}, {
|
|
2423
|
-
|
|
2375
|
+
url?: string | undefined;
|
|
2376
|
+
$id?: string | undefined;
|
|
2424
2377
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2425
2378
|
disabled?: boolean | undefined;
|
|
2426
|
-
|
|
2427
|
-
$ref?: string | undefined;
|
|
2379
|
+
title?: string | undefined;
|
|
2428
2380
|
id?: string | undefined;
|
|
2429
|
-
|
|
2381
|
+
$ref?: string | undefined;
|
|
2430
2382
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2431
2383
|
exit?: boolean | undefined;
|
|
2432
2384
|
result?: JsonElement | undefined;
|
|
@@ -2475,13 +2427,13 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2475
2427
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
2476
2428
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
2477
2429
|
}, "strip", z.ZodTypeAny, {
|
|
2478
|
-
|
|
2430
|
+
url?: string | undefined;
|
|
2431
|
+
$id?: string | undefined;
|
|
2479
2432
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2480
2433
|
disabled?: boolean | undefined;
|
|
2481
|
-
|
|
2482
|
-
$ref?: string | undefined;
|
|
2434
|
+
title?: string | undefined;
|
|
2483
2435
|
id?: string | undefined;
|
|
2484
|
-
|
|
2436
|
+
$ref?: string | undefined;
|
|
2485
2437
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2486
2438
|
exit?: boolean | undefined;
|
|
2487
2439
|
result?: JsonElement | undefined;
|
|
@@ -2489,13 +2441,13 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2489
2441
|
timeout?: number | undefined;
|
|
2490
2442
|
skipValidation?: boolean | undefined;
|
|
2491
2443
|
}, {
|
|
2492
|
-
|
|
2444
|
+
url?: string | undefined;
|
|
2445
|
+
$id?: string | undefined;
|
|
2493
2446
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2494
2447
|
disabled?: boolean | undefined;
|
|
2495
|
-
|
|
2496
|
-
$ref?: string | undefined;
|
|
2448
|
+
title?: string | undefined;
|
|
2497
2449
|
id?: string | undefined;
|
|
2498
|
-
|
|
2450
|
+
$ref?: string | undefined;
|
|
2499
2451
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2500
2452
|
exit?: boolean | undefined;
|
|
2501
2453
|
result?: JsonElement | undefined;
|
|
@@ -2505,13 +2457,13 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2505
2457
|
}>;
|
|
2506
2458
|
}, "strip", z.ZodTypeAny, {
|
|
2507
2459
|
action: {
|
|
2508
|
-
|
|
2460
|
+
url?: string | undefined;
|
|
2461
|
+
$id?: string | undefined;
|
|
2509
2462
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2510
2463
|
disabled?: boolean | undefined;
|
|
2511
|
-
|
|
2512
|
-
$ref?: string | undefined;
|
|
2464
|
+
title?: string | undefined;
|
|
2513
2465
|
id?: string | undefined;
|
|
2514
|
-
|
|
2466
|
+
$ref?: string | undefined;
|
|
2515
2467
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2516
2468
|
exit?: boolean | undefined;
|
|
2517
2469
|
result?: JsonElement | undefined;
|
|
@@ -2522,13 +2474,13 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2522
2474
|
title: string;
|
|
2523
2475
|
}, {
|
|
2524
2476
|
action: {
|
|
2525
|
-
|
|
2477
|
+
url?: string | undefined;
|
|
2478
|
+
$id?: string | undefined;
|
|
2526
2479
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2527
2480
|
disabled?: boolean | undefined;
|
|
2528
|
-
|
|
2529
|
-
$ref?: string | undefined;
|
|
2481
|
+
title?: string | undefined;
|
|
2530
2482
|
id?: string | undefined;
|
|
2531
|
-
|
|
2483
|
+
$ref?: string | undefined;
|
|
2532
2484
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2533
2485
|
exit?: boolean | undefined;
|
|
2534
2486
|
result?: JsonElement | undefined;
|
|
@@ -2549,15 +2501,14 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2549
2501
|
markdown: string;
|
|
2550
2502
|
} | undefined;
|
|
2551
2503
|
}[];
|
|
2552
|
-
orientation?: string | undefined;
|
|
2553
2504
|
action?: {
|
|
2554
|
-
|
|
2505
|
+
url?: string | undefined;
|
|
2506
|
+
$id?: string | undefined;
|
|
2555
2507
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2556
2508
|
disabled?: boolean | undefined;
|
|
2557
|
-
|
|
2558
|
-
$ref?: string | undefined;
|
|
2509
|
+
title?: string | undefined;
|
|
2559
2510
|
id?: string | undefined;
|
|
2560
|
-
|
|
2511
|
+
$ref?: string | undefined;
|
|
2561
2512
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2562
2513
|
exit?: boolean | undefined;
|
|
2563
2514
|
result?: JsonElement | undefined;
|
|
@@ -2566,15 +2517,18 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2566
2517
|
skipValidation?: boolean | undefined;
|
|
2567
2518
|
} | undefined;
|
|
2568
2519
|
title?: string | undefined;
|
|
2520
|
+
control?: string | undefined;
|
|
2521
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2522
|
+
orientation?: string | undefined;
|
|
2569
2523
|
callToAction?: {
|
|
2570
2524
|
action: {
|
|
2571
|
-
|
|
2525
|
+
url?: string | undefined;
|
|
2526
|
+
$id?: string | undefined;
|
|
2572
2527
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2573
2528
|
disabled?: boolean | undefined;
|
|
2574
|
-
|
|
2575
|
-
$ref?: string | undefined;
|
|
2529
|
+
title?: string | undefined;
|
|
2576
2530
|
id?: string | undefined;
|
|
2577
|
-
|
|
2531
|
+
$ref?: string | undefined;
|
|
2578
2532
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2579
2533
|
exit?: boolean | undefined;
|
|
2580
2534
|
result?: JsonElement | undefined;
|
|
@@ -2584,8 +2538,6 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2584
2538
|
};
|
|
2585
2539
|
title: string;
|
|
2586
2540
|
} | undefined;
|
|
2587
|
-
control?: string | undefined;
|
|
2588
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2589
2541
|
}, {
|
|
2590
2542
|
type: "review";
|
|
2591
2543
|
fields: {
|
|
@@ -2595,15 +2547,14 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2595
2547
|
markdown: string;
|
|
2596
2548
|
} | undefined;
|
|
2597
2549
|
}[];
|
|
2598
|
-
orientation?: string | undefined;
|
|
2599
2550
|
action?: {
|
|
2600
|
-
|
|
2551
|
+
url?: string | undefined;
|
|
2552
|
+
$id?: string | undefined;
|
|
2601
2553
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2602
2554
|
disabled?: boolean | undefined;
|
|
2603
|
-
|
|
2604
|
-
$ref?: string | undefined;
|
|
2555
|
+
title?: string | undefined;
|
|
2605
2556
|
id?: string | undefined;
|
|
2606
|
-
|
|
2557
|
+
$ref?: string | undefined;
|
|
2607
2558
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2608
2559
|
exit?: boolean | undefined;
|
|
2609
2560
|
result?: JsonElement | undefined;
|
|
@@ -2612,15 +2563,18 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2612
2563
|
skipValidation?: boolean | undefined;
|
|
2613
2564
|
} | undefined;
|
|
2614
2565
|
title?: string | undefined;
|
|
2566
|
+
control?: string | undefined;
|
|
2567
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2568
|
+
orientation?: string | undefined;
|
|
2615
2569
|
callToAction?: {
|
|
2616
2570
|
action: {
|
|
2617
|
-
|
|
2571
|
+
url?: string | undefined;
|
|
2572
|
+
$id?: string | undefined;
|
|
2618
2573
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2619
2574
|
disabled?: boolean | undefined;
|
|
2620
|
-
|
|
2621
|
-
$ref?: string | undefined;
|
|
2575
|
+
title?: string | undefined;
|
|
2622
2576
|
id?: string | undefined;
|
|
2623
|
-
|
|
2577
|
+
$ref?: string | undefined;
|
|
2624
2578
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2625
2579
|
exit?: boolean | undefined;
|
|
2626
2580
|
result?: JsonElement | undefined;
|
|
@@ -2630,8 +2584,6 @@ export declare const reviewLayoutSchema: z.ZodObject<{
|
|
|
2630
2584
|
};
|
|
2631
2585
|
title: string;
|
|
2632
2586
|
} | undefined;
|
|
2633
|
-
control?: string | undefined;
|
|
2634
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2635
2587
|
}>;
|
|
2636
2588
|
export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
2637
2589
|
type: z.ZodLiteral<"action">;
|
|
@@ -2661,18 +2613,18 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2661
2613
|
}, "strip", z.ZodTypeAny, {
|
|
2662
2614
|
url: string;
|
|
2663
2615
|
type: "image";
|
|
2616
|
+
control?: string | undefined;
|
|
2664
2617
|
text?: string | undefined;
|
|
2665
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2666
2618
|
accessibilityDescription?: string | undefined;
|
|
2667
|
-
|
|
2619
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2668
2620
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2669
2621
|
}, {
|
|
2670
2622
|
url: string;
|
|
2671
2623
|
type: "image";
|
|
2624
|
+
control?: string | undefined;
|
|
2672
2625
|
text?: string | undefined;
|
|
2673
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2674
2626
|
accessibilityDescription?: string | undefined;
|
|
2675
|
-
|
|
2627
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2676
2628
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2677
2629
|
}>>;
|
|
2678
2630
|
value: z.ZodObject<{
|
|
@@ -2690,13 +2642,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2690
2642
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
2691
2643
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
2692
2644
|
}, "strip", z.ZodTypeAny, {
|
|
2693
|
-
|
|
2645
|
+
url?: string | undefined;
|
|
2646
|
+
$id?: string | undefined;
|
|
2694
2647
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2695
2648
|
disabled?: boolean | undefined;
|
|
2696
|
-
|
|
2697
|
-
$ref?: string | undefined;
|
|
2649
|
+
title?: string | undefined;
|
|
2698
2650
|
id?: string | undefined;
|
|
2699
|
-
|
|
2651
|
+
$ref?: string | undefined;
|
|
2700
2652
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2701
2653
|
exit?: boolean | undefined;
|
|
2702
2654
|
result?: JsonElement | undefined;
|
|
@@ -2704,13 +2656,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2704
2656
|
timeout?: number | undefined;
|
|
2705
2657
|
skipValidation?: boolean | undefined;
|
|
2706
2658
|
}, {
|
|
2707
|
-
|
|
2659
|
+
url?: string | undefined;
|
|
2660
|
+
$id?: string | undefined;
|
|
2708
2661
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2709
2662
|
disabled?: boolean | undefined;
|
|
2710
|
-
|
|
2711
|
-
$ref?: string | undefined;
|
|
2663
|
+
title?: string | undefined;
|
|
2712
2664
|
id?: string | undefined;
|
|
2713
|
-
|
|
2665
|
+
$ref?: string | undefined;
|
|
2714
2666
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2715
2667
|
exit?: boolean | undefined;
|
|
2716
2668
|
result?: JsonElement | undefined;
|
|
@@ -2722,13 +2674,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2722
2674
|
type: "action";
|
|
2723
2675
|
title: string;
|
|
2724
2676
|
value: {
|
|
2725
|
-
|
|
2677
|
+
url?: string | undefined;
|
|
2678
|
+
$id?: string | undefined;
|
|
2726
2679
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2727
2680
|
disabled?: boolean | undefined;
|
|
2728
|
-
|
|
2729
|
-
$ref?: string | undefined;
|
|
2681
|
+
title?: string | undefined;
|
|
2730
2682
|
id?: string | undefined;
|
|
2731
|
-
|
|
2683
|
+
$ref?: string | undefined;
|
|
2732
2684
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2733
2685
|
exit?: boolean | undefined;
|
|
2734
2686
|
result?: JsonElement | undefined;
|
|
@@ -2736,32 +2688,32 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2736
2688
|
timeout?: number | undefined;
|
|
2737
2689
|
skipValidation?: boolean | undefined;
|
|
2738
2690
|
};
|
|
2739
|
-
description?: string | undefined;
|
|
2740
|
-
icon?: {
|
|
2741
|
-
name: string;
|
|
2742
|
-
} | {
|
|
2743
|
-
text: string;
|
|
2744
|
-
} | undefined;
|
|
2745
2691
|
image?: {
|
|
2746
2692
|
url: string;
|
|
2747
2693
|
type: "image";
|
|
2694
|
+
control?: string | undefined;
|
|
2748
2695
|
text?: string | undefined;
|
|
2749
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2750
2696
|
accessibilityDescription?: string | undefined;
|
|
2751
|
-
|
|
2697
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2752
2698
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2753
2699
|
} | undefined;
|
|
2700
|
+
description?: string | undefined;
|
|
2701
|
+
icon?: {
|
|
2702
|
+
name: string;
|
|
2703
|
+
} | {
|
|
2704
|
+
text: string;
|
|
2705
|
+
} | undefined;
|
|
2754
2706
|
}, {
|
|
2755
2707
|
type: "action";
|
|
2756
2708
|
title: string;
|
|
2757
2709
|
value: {
|
|
2758
|
-
|
|
2710
|
+
url?: string | undefined;
|
|
2711
|
+
$id?: string | undefined;
|
|
2759
2712
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2760
2713
|
disabled?: boolean | undefined;
|
|
2761
|
-
|
|
2762
|
-
$ref?: string | undefined;
|
|
2714
|
+
title?: string | undefined;
|
|
2763
2715
|
id?: string | undefined;
|
|
2764
|
-
|
|
2716
|
+
$ref?: string | undefined;
|
|
2765
2717
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2766
2718
|
exit?: boolean | undefined;
|
|
2767
2719
|
result?: JsonElement | undefined;
|
|
@@ -2769,21 +2721,21 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2769
2721
|
timeout?: number | undefined;
|
|
2770
2722
|
skipValidation?: boolean | undefined;
|
|
2771
2723
|
};
|
|
2772
|
-
description?: string | undefined;
|
|
2773
|
-
icon?: {
|
|
2774
|
-
name: string;
|
|
2775
|
-
} | {
|
|
2776
|
-
text: string;
|
|
2777
|
-
} | undefined;
|
|
2778
2724
|
image?: {
|
|
2779
2725
|
url: string;
|
|
2780
2726
|
type: "image";
|
|
2727
|
+
control?: string | undefined;
|
|
2781
2728
|
text?: string | undefined;
|
|
2782
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2783
2729
|
accessibilityDescription?: string | undefined;
|
|
2784
|
-
|
|
2730
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2785
2731
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2786
2732
|
} | undefined;
|
|
2733
|
+
description?: string | undefined;
|
|
2734
|
+
icon?: {
|
|
2735
|
+
name: string;
|
|
2736
|
+
} | {
|
|
2737
|
+
text: string;
|
|
2738
|
+
} | undefined;
|
|
2787
2739
|
}>, z.ZodObject<{
|
|
2788
2740
|
type: z.ZodLiteral<"search">;
|
|
2789
2741
|
title: z.ZodString;
|
|
@@ -2812,18 +2764,18 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2812
2764
|
}, "strip", z.ZodTypeAny, {
|
|
2813
2765
|
url: string;
|
|
2814
2766
|
type: "image";
|
|
2767
|
+
control?: string | undefined;
|
|
2815
2768
|
text?: string | undefined;
|
|
2816
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2817
2769
|
accessibilityDescription?: string | undefined;
|
|
2818
|
-
|
|
2770
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2819
2771
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2820
2772
|
}, {
|
|
2821
2773
|
url: string;
|
|
2822
2774
|
type: "image";
|
|
2775
|
+
control?: string | undefined;
|
|
2823
2776
|
text?: string | undefined;
|
|
2824
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2825
2777
|
accessibilityDescription?: string | undefined;
|
|
2826
|
-
|
|
2778
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2827
2779
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2828
2780
|
}>>;
|
|
2829
2781
|
value: z.ZodObject<{
|
|
@@ -2851,21 +2803,21 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2851
2803
|
param: string;
|
|
2852
2804
|
query: string;
|
|
2853
2805
|
};
|
|
2854
|
-
description?: string | undefined;
|
|
2855
|
-
icon?: {
|
|
2856
|
-
name: string;
|
|
2857
|
-
} | {
|
|
2858
|
-
text: string;
|
|
2859
|
-
} | undefined;
|
|
2860
2806
|
image?: {
|
|
2861
2807
|
url: string;
|
|
2862
2808
|
type: "image";
|
|
2809
|
+
control?: string | undefined;
|
|
2863
2810
|
text?: string | undefined;
|
|
2864
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2865
2811
|
accessibilityDescription?: string | undefined;
|
|
2866
|
-
|
|
2812
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2867
2813
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2868
2814
|
} | undefined;
|
|
2815
|
+
description?: string | undefined;
|
|
2816
|
+
icon?: {
|
|
2817
|
+
name: string;
|
|
2818
|
+
} | {
|
|
2819
|
+
text: string;
|
|
2820
|
+
} | undefined;
|
|
2869
2821
|
}, {
|
|
2870
2822
|
type: "search";
|
|
2871
2823
|
title: string;
|
|
@@ -2875,25 +2827,25 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2875
2827
|
param: string;
|
|
2876
2828
|
query: string;
|
|
2877
2829
|
};
|
|
2878
|
-
description?: string | undefined;
|
|
2879
|
-
icon?: {
|
|
2880
|
-
name: string;
|
|
2881
|
-
} | {
|
|
2882
|
-
text: string;
|
|
2883
|
-
} | undefined;
|
|
2884
2830
|
image?: {
|
|
2885
2831
|
url: string;
|
|
2886
2832
|
type: "image";
|
|
2833
|
+
control?: string | undefined;
|
|
2887
2834
|
text?: string | undefined;
|
|
2888
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2889
2835
|
accessibilityDescription?: string | undefined;
|
|
2890
|
-
|
|
2836
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2891
2837
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2892
2838
|
} | undefined;
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2839
|
+
description?: string | undefined;
|
|
2840
|
+
icon?: {
|
|
2841
|
+
name: string;
|
|
2842
|
+
} | {
|
|
2843
|
+
text: string;
|
|
2844
|
+
} | undefined;
|
|
2845
|
+
}>]>;
|
|
2846
|
+
export declare const pollingSchema: z.ZodObject<{
|
|
2847
|
+
url: z.ZodString;
|
|
2848
|
+
interval: z.ZodNumber;
|
|
2897
2849
|
maxAttempts: z.ZodNumber;
|
|
2898
2850
|
onError: z.ZodObject<{
|
|
2899
2851
|
action: z.ZodObject<{
|
|
@@ -2911,13 +2863,13 @@ export declare const pollingSchema: z.ZodObject<{
|
|
|
2911
2863
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
2912
2864
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
2913
2865
|
}, "strip", z.ZodTypeAny, {
|
|
2914
|
-
|
|
2866
|
+
url?: string | undefined;
|
|
2867
|
+
$id?: string | undefined;
|
|
2915
2868
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2916
2869
|
disabled?: boolean | undefined;
|
|
2917
|
-
|
|
2918
|
-
$ref?: string | undefined;
|
|
2870
|
+
title?: string | undefined;
|
|
2919
2871
|
id?: string | undefined;
|
|
2920
|
-
|
|
2872
|
+
$ref?: string | undefined;
|
|
2921
2873
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2922
2874
|
exit?: boolean | undefined;
|
|
2923
2875
|
result?: JsonElement | undefined;
|
|
@@ -2925,13 +2877,13 @@ export declare const pollingSchema: z.ZodObject<{
|
|
|
2925
2877
|
timeout?: number | undefined;
|
|
2926
2878
|
skipValidation?: boolean | undefined;
|
|
2927
2879
|
}, {
|
|
2928
|
-
|
|
2880
|
+
url?: string | undefined;
|
|
2881
|
+
$id?: string | undefined;
|
|
2929
2882
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2930
2883
|
disabled?: boolean | undefined;
|
|
2931
|
-
|
|
2932
|
-
$ref?: string | undefined;
|
|
2884
|
+
title?: string | undefined;
|
|
2933
2885
|
id?: string | undefined;
|
|
2934
|
-
|
|
2886
|
+
$ref?: string | undefined;
|
|
2935
2887
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2936
2888
|
exit?: boolean | undefined;
|
|
2937
2889
|
result?: JsonElement | undefined;
|
|
@@ -2941,13 +2893,13 @@ export declare const pollingSchema: z.ZodObject<{
|
|
|
2941
2893
|
}>;
|
|
2942
2894
|
}, "strip", z.ZodTypeAny, {
|
|
2943
2895
|
action: {
|
|
2944
|
-
|
|
2896
|
+
url?: string | undefined;
|
|
2897
|
+
$id?: string | undefined;
|
|
2945
2898
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2946
2899
|
disabled?: boolean | undefined;
|
|
2947
|
-
|
|
2948
|
-
$ref?: string | undefined;
|
|
2900
|
+
title?: string | undefined;
|
|
2949
2901
|
id?: string | undefined;
|
|
2950
|
-
|
|
2902
|
+
$ref?: string | undefined;
|
|
2951
2903
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2952
2904
|
exit?: boolean | undefined;
|
|
2953
2905
|
result?: JsonElement | undefined;
|
|
@@ -2957,13 +2909,13 @@ export declare const pollingSchema: z.ZodObject<{
|
|
|
2957
2909
|
};
|
|
2958
2910
|
}, {
|
|
2959
2911
|
action: {
|
|
2960
|
-
|
|
2912
|
+
url?: string | undefined;
|
|
2913
|
+
$id?: string | undefined;
|
|
2961
2914
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2962
2915
|
disabled?: boolean | undefined;
|
|
2963
|
-
|
|
2964
|
-
$ref?: string | undefined;
|
|
2916
|
+
title?: string | undefined;
|
|
2965
2917
|
id?: string | undefined;
|
|
2966
|
-
|
|
2918
|
+
$ref?: string | undefined;
|
|
2967
2919
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2968
2920
|
exit?: boolean | undefined;
|
|
2969
2921
|
result?: JsonElement | undefined;
|
|
@@ -2978,13 +2930,13 @@ export declare const pollingSchema: z.ZodObject<{
|
|
|
2978
2930
|
maxAttempts: number;
|
|
2979
2931
|
onError: {
|
|
2980
2932
|
action: {
|
|
2981
|
-
|
|
2933
|
+
url?: string | undefined;
|
|
2934
|
+
$id?: string | undefined;
|
|
2982
2935
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
2983
2936
|
disabled?: boolean | undefined;
|
|
2984
|
-
|
|
2985
|
-
$ref?: string | undefined;
|
|
2937
|
+
title?: string | undefined;
|
|
2986
2938
|
id?: string | undefined;
|
|
2987
|
-
|
|
2939
|
+
$ref?: string | undefined;
|
|
2988
2940
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2989
2941
|
exit?: boolean | undefined;
|
|
2990
2942
|
result?: JsonElement | undefined;
|
|
@@ -2999,13 +2951,13 @@ export declare const pollingSchema: z.ZodObject<{
|
|
|
2999
2951
|
maxAttempts: number;
|
|
3000
2952
|
onError: {
|
|
3001
2953
|
action: {
|
|
3002
|
-
|
|
2954
|
+
url?: string | undefined;
|
|
2955
|
+
$id?: string | undefined;
|
|
3003
2956
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3004
2957
|
disabled?: boolean | undefined;
|
|
3005
|
-
|
|
3006
|
-
$ref?: string | undefined;
|
|
2958
|
+
title?: string | undefined;
|
|
3007
2959
|
id?: string | undefined;
|
|
3008
|
-
|
|
2960
|
+
$ref?: string | undefined;
|
|
3009
2961
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3010
2962
|
exit?: boolean | undefined;
|
|
3011
2963
|
result?: JsonElement | undefined;
|
|
@@ -3033,13 +2985,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3033
2985
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
3034
2986
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
3035
2987
|
}, "strip", z.ZodTypeAny, {
|
|
3036
|
-
|
|
2988
|
+
url?: string | undefined;
|
|
2989
|
+
$id?: string | undefined;
|
|
3037
2990
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3038
2991
|
disabled?: boolean | undefined;
|
|
3039
|
-
|
|
3040
|
-
$ref?: string | undefined;
|
|
2992
|
+
title?: string | undefined;
|
|
3041
2993
|
id?: string | undefined;
|
|
3042
|
-
|
|
2994
|
+
$ref?: string | undefined;
|
|
3043
2995
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3044
2996
|
exit?: boolean | undefined;
|
|
3045
2997
|
result?: JsonElement | undefined;
|
|
@@ -3047,13 +2999,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3047
2999
|
timeout?: number | undefined;
|
|
3048
3000
|
skipValidation?: boolean | undefined;
|
|
3049
3001
|
}, {
|
|
3050
|
-
|
|
3002
|
+
url?: string | undefined;
|
|
3003
|
+
$id?: string | undefined;
|
|
3051
3004
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3052
3005
|
disabled?: boolean | undefined;
|
|
3053
|
-
|
|
3054
|
-
$ref?: string | undefined;
|
|
3006
|
+
title?: string | undefined;
|
|
3055
3007
|
id?: string | undefined;
|
|
3056
|
-
|
|
3008
|
+
$ref?: string | undefined;
|
|
3057
3009
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3058
3010
|
exit?: boolean | undefined;
|
|
3059
3011
|
result?: JsonElement | undefined;
|
|
@@ -3063,13 +3015,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3063
3015
|
}>;
|
|
3064
3016
|
}, "strip", z.ZodTypeAny, {
|
|
3065
3017
|
action: {
|
|
3066
|
-
|
|
3018
|
+
url?: string | undefined;
|
|
3019
|
+
$id?: string | undefined;
|
|
3067
3020
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3068
3021
|
disabled?: boolean | undefined;
|
|
3069
|
-
|
|
3070
|
-
$ref?: string | undefined;
|
|
3022
|
+
title?: string | undefined;
|
|
3071
3023
|
id?: string | undefined;
|
|
3072
|
-
|
|
3024
|
+
$ref?: string | undefined;
|
|
3073
3025
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3074
3026
|
exit?: boolean | undefined;
|
|
3075
3027
|
result?: JsonElement | undefined;
|
|
@@ -3080,13 +3032,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3080
3032
|
title?: string | undefined;
|
|
3081
3033
|
}, {
|
|
3082
3034
|
action: {
|
|
3083
|
-
|
|
3035
|
+
url?: string | undefined;
|
|
3036
|
+
$id?: string | undefined;
|
|
3084
3037
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3085
3038
|
disabled?: boolean | undefined;
|
|
3086
|
-
|
|
3087
|
-
$ref?: string | undefined;
|
|
3039
|
+
title?: string | undefined;
|
|
3088
3040
|
id?: string | undefined;
|
|
3089
|
-
|
|
3041
|
+
$ref?: string | undefined;
|
|
3090
3042
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3091
3043
|
exit?: boolean | undefined;
|
|
3092
3044
|
result?: JsonElement | undefined;
|
|
@@ -3113,13 +3065,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3113
3065
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
3114
3066
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
3115
3067
|
}, "strip", z.ZodTypeAny, {
|
|
3116
|
-
|
|
3068
|
+
url?: string | undefined;
|
|
3069
|
+
$id?: string | undefined;
|
|
3117
3070
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3118
3071
|
disabled?: boolean | undefined;
|
|
3119
|
-
|
|
3120
|
-
$ref?: string | undefined;
|
|
3072
|
+
title?: string | undefined;
|
|
3121
3073
|
id?: string | undefined;
|
|
3122
|
-
|
|
3074
|
+
$ref?: string | undefined;
|
|
3123
3075
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3124
3076
|
exit?: boolean | undefined;
|
|
3125
3077
|
result?: JsonElement | undefined;
|
|
@@ -3127,13 +3079,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3127
3079
|
timeout?: number | undefined;
|
|
3128
3080
|
skipValidation?: boolean | undefined;
|
|
3129
3081
|
}, {
|
|
3130
|
-
|
|
3082
|
+
url?: string | undefined;
|
|
3083
|
+
$id?: string | undefined;
|
|
3131
3084
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3132
3085
|
disabled?: boolean | undefined;
|
|
3133
|
-
|
|
3134
|
-
$ref?: string | undefined;
|
|
3086
|
+
title?: string | undefined;
|
|
3135
3087
|
id?: string | undefined;
|
|
3136
|
-
|
|
3088
|
+
$ref?: string | undefined;
|
|
3137
3089
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3138
3090
|
exit?: boolean | undefined;
|
|
3139
3091
|
result?: JsonElement | undefined;
|
|
@@ -3143,13 +3095,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3143
3095
|
}>;
|
|
3144
3096
|
}, "strip", z.ZodTypeAny, {
|
|
3145
3097
|
action: {
|
|
3146
|
-
|
|
3098
|
+
url?: string | undefined;
|
|
3099
|
+
$id?: string | undefined;
|
|
3147
3100
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3148
3101
|
disabled?: boolean | undefined;
|
|
3149
|
-
|
|
3150
|
-
$ref?: string | undefined;
|
|
3102
|
+
title?: string | undefined;
|
|
3151
3103
|
id?: string | undefined;
|
|
3152
|
-
|
|
3104
|
+
$ref?: string | undefined;
|
|
3153
3105
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3154
3106
|
exit?: boolean | undefined;
|
|
3155
3107
|
result?: JsonElement | undefined;
|
|
@@ -3160,13 +3112,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3160
3112
|
title?: string | undefined;
|
|
3161
3113
|
}, {
|
|
3162
3114
|
action: {
|
|
3163
|
-
|
|
3115
|
+
url?: string | undefined;
|
|
3116
|
+
$id?: string | undefined;
|
|
3164
3117
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3165
3118
|
disabled?: boolean | undefined;
|
|
3166
|
-
|
|
3167
|
-
$ref?: string | undefined;
|
|
3119
|
+
title?: string | undefined;
|
|
3168
3120
|
id?: string | undefined;
|
|
3169
|
-
|
|
3121
|
+
$ref?: string | undefined;
|
|
3170
3122
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3171
3123
|
exit?: boolean | undefined;
|
|
3172
3124
|
result?: JsonElement | undefined;
|
|
@@ -3178,15 +3130,15 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3178
3130
|
}>>;
|
|
3179
3131
|
stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
|
|
3180
3132
|
}, "strip", z.ZodTypeAny, {
|
|
3181
|
-
|
|
3133
|
+
back?: {
|
|
3182
3134
|
action: {
|
|
3183
|
-
|
|
3135
|
+
url?: string | undefined;
|
|
3136
|
+
$id?: string | undefined;
|
|
3184
3137
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3185
3138
|
disabled?: boolean | undefined;
|
|
3186
|
-
|
|
3187
|
-
$ref?: string | undefined;
|
|
3139
|
+
title?: string | undefined;
|
|
3188
3140
|
id?: string | undefined;
|
|
3189
|
-
|
|
3141
|
+
$ref?: string | undefined;
|
|
3190
3142
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3191
3143
|
exit?: boolean | undefined;
|
|
3192
3144
|
result?: JsonElement | undefined;
|
|
@@ -3196,15 +3148,15 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3196
3148
|
};
|
|
3197
3149
|
title?: string | undefined;
|
|
3198
3150
|
} | undefined;
|
|
3199
|
-
|
|
3151
|
+
backButton?: {
|
|
3200
3152
|
action: {
|
|
3201
|
-
|
|
3153
|
+
url?: string | undefined;
|
|
3154
|
+
$id?: string | undefined;
|
|
3202
3155
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3203
3156
|
disabled?: boolean | undefined;
|
|
3204
|
-
|
|
3205
|
-
$ref?: string | undefined;
|
|
3157
|
+
title?: string | undefined;
|
|
3206
3158
|
id?: string | undefined;
|
|
3207
|
-
|
|
3159
|
+
$ref?: string | undefined;
|
|
3208
3160
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3209
3161
|
exit?: boolean | undefined;
|
|
3210
3162
|
result?: JsonElement | undefined;
|
|
@@ -3216,15 +3168,15 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3216
3168
|
} | undefined;
|
|
3217
3169
|
stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
|
|
3218
3170
|
}, {
|
|
3219
|
-
|
|
3171
|
+
back?: {
|
|
3220
3172
|
action: {
|
|
3221
|
-
|
|
3173
|
+
url?: string | undefined;
|
|
3174
|
+
$id?: string | undefined;
|
|
3222
3175
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3223
3176
|
disabled?: boolean | undefined;
|
|
3224
|
-
|
|
3225
|
-
$ref?: string | undefined;
|
|
3177
|
+
title?: string | undefined;
|
|
3226
3178
|
id?: string | undefined;
|
|
3227
|
-
|
|
3179
|
+
$ref?: string | undefined;
|
|
3228
3180
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3229
3181
|
exit?: boolean | undefined;
|
|
3230
3182
|
result?: JsonElement | undefined;
|
|
@@ -3234,15 +3186,15 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3234
3186
|
};
|
|
3235
3187
|
title?: string | undefined;
|
|
3236
3188
|
} | undefined;
|
|
3237
|
-
|
|
3189
|
+
backButton?: {
|
|
3238
3190
|
action: {
|
|
3239
|
-
|
|
3191
|
+
url?: string | undefined;
|
|
3192
|
+
$id?: string | undefined;
|
|
3240
3193
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3241
3194
|
disabled?: boolean | undefined;
|
|
3242
|
-
|
|
3243
|
-
$ref?: string | undefined;
|
|
3195
|
+
title?: string | undefined;
|
|
3244
3196
|
id?: string | undefined;
|
|
3245
|
-
|
|
3197
|
+
$ref?: string | undefined;
|
|
3246
3198
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3247
3199
|
exit?: boolean | undefined;
|
|
3248
3200
|
result?: JsonElement | undefined;
|
|
@@ -3283,18 +3235,18 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3283
3235
|
}, "strip", z.ZodTypeAny, {
|
|
3284
3236
|
url: string;
|
|
3285
3237
|
type: "image";
|
|
3238
|
+
control?: string | undefined;
|
|
3286
3239
|
text?: string | undefined;
|
|
3287
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3288
3240
|
accessibilityDescription?: string | undefined;
|
|
3289
|
-
|
|
3241
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3290
3242
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3291
3243
|
}, {
|
|
3292
3244
|
url: string;
|
|
3293
3245
|
type: "image";
|
|
3246
|
+
control?: string | undefined;
|
|
3294
3247
|
text?: string | undefined;
|
|
3295
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3296
3248
|
accessibilityDescription?: string | undefined;
|
|
3297
|
-
|
|
3249
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3298
3250
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3299
3251
|
}>>;
|
|
3300
3252
|
value: z.ZodObject<{
|
|
@@ -3312,13 +3264,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3312
3264
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
3313
3265
|
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
3314
3266
|
}, "strip", z.ZodTypeAny, {
|
|
3315
|
-
|
|
3267
|
+
url?: string | undefined;
|
|
3268
|
+
$id?: string | undefined;
|
|
3316
3269
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3317
3270
|
disabled?: boolean | undefined;
|
|
3318
|
-
|
|
3319
|
-
$ref?: string | undefined;
|
|
3271
|
+
title?: string | undefined;
|
|
3320
3272
|
id?: string | undefined;
|
|
3321
|
-
|
|
3273
|
+
$ref?: string | undefined;
|
|
3322
3274
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3323
3275
|
exit?: boolean | undefined;
|
|
3324
3276
|
result?: JsonElement | undefined;
|
|
@@ -3326,13 +3278,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3326
3278
|
timeout?: number | undefined;
|
|
3327
3279
|
skipValidation?: boolean | undefined;
|
|
3328
3280
|
}, {
|
|
3329
|
-
|
|
3281
|
+
url?: string | undefined;
|
|
3282
|
+
$id?: string | undefined;
|
|
3330
3283
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3331
3284
|
disabled?: boolean | undefined;
|
|
3332
|
-
|
|
3333
|
-
$ref?: string | undefined;
|
|
3285
|
+
title?: string | undefined;
|
|
3334
3286
|
id?: string | undefined;
|
|
3335
|
-
|
|
3287
|
+
$ref?: string | undefined;
|
|
3336
3288
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3337
3289
|
exit?: boolean | undefined;
|
|
3338
3290
|
result?: JsonElement | undefined;
|
|
@@ -3344,13 +3296,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3344
3296
|
type: "action";
|
|
3345
3297
|
title: string;
|
|
3346
3298
|
value: {
|
|
3347
|
-
|
|
3299
|
+
url?: string | undefined;
|
|
3300
|
+
$id?: string | undefined;
|
|
3348
3301
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3349
3302
|
disabled?: boolean | undefined;
|
|
3350
|
-
|
|
3351
|
-
$ref?: string | undefined;
|
|
3303
|
+
title?: string | undefined;
|
|
3352
3304
|
id?: string | undefined;
|
|
3353
|
-
|
|
3305
|
+
$ref?: string | undefined;
|
|
3354
3306
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3355
3307
|
exit?: boolean | undefined;
|
|
3356
3308
|
result?: JsonElement | undefined;
|
|
@@ -3358,32 +3310,32 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3358
3310
|
timeout?: number | undefined;
|
|
3359
3311
|
skipValidation?: boolean | undefined;
|
|
3360
3312
|
};
|
|
3361
|
-
description?: string | undefined;
|
|
3362
|
-
icon?: {
|
|
3363
|
-
name: string;
|
|
3364
|
-
} | {
|
|
3365
|
-
text: string;
|
|
3366
|
-
} | undefined;
|
|
3367
3313
|
image?: {
|
|
3368
3314
|
url: string;
|
|
3369
3315
|
type: "image";
|
|
3316
|
+
control?: string | undefined;
|
|
3370
3317
|
text?: string | undefined;
|
|
3371
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3372
3318
|
accessibilityDescription?: string | undefined;
|
|
3373
|
-
|
|
3319
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3374
3320
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3375
3321
|
} | undefined;
|
|
3322
|
+
description?: string | undefined;
|
|
3323
|
+
icon?: {
|
|
3324
|
+
name: string;
|
|
3325
|
+
} | {
|
|
3326
|
+
text: string;
|
|
3327
|
+
} | undefined;
|
|
3376
3328
|
}, {
|
|
3377
3329
|
type: "action";
|
|
3378
3330
|
title: string;
|
|
3379
3331
|
value: {
|
|
3380
|
-
|
|
3332
|
+
url?: string | undefined;
|
|
3333
|
+
$id?: string | undefined;
|
|
3381
3334
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3382
3335
|
disabled?: boolean | undefined;
|
|
3383
|
-
|
|
3384
|
-
$ref?: string | undefined;
|
|
3336
|
+
title?: string | undefined;
|
|
3385
3337
|
id?: string | undefined;
|
|
3386
|
-
|
|
3338
|
+
$ref?: string | undefined;
|
|
3387
3339
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3388
3340
|
exit?: boolean | undefined;
|
|
3389
3341
|
result?: JsonElement | undefined;
|
|
@@ -3391,21 +3343,21 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3391
3343
|
timeout?: number | undefined;
|
|
3392
3344
|
skipValidation?: boolean | undefined;
|
|
3393
3345
|
};
|
|
3394
|
-
description?: string | undefined;
|
|
3395
|
-
icon?: {
|
|
3396
|
-
name: string;
|
|
3397
|
-
} | {
|
|
3398
|
-
text: string;
|
|
3399
|
-
} | undefined;
|
|
3400
3346
|
image?: {
|
|
3401
3347
|
url: string;
|
|
3402
3348
|
type: "image";
|
|
3349
|
+
control?: string | undefined;
|
|
3403
3350
|
text?: string | undefined;
|
|
3404
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3405
3351
|
accessibilityDescription?: string | undefined;
|
|
3406
|
-
|
|
3352
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3407
3353
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3408
3354
|
} | undefined;
|
|
3355
|
+
description?: string | undefined;
|
|
3356
|
+
icon?: {
|
|
3357
|
+
name: string;
|
|
3358
|
+
} | {
|
|
3359
|
+
text: string;
|
|
3360
|
+
} | undefined;
|
|
3409
3361
|
}>, z.ZodObject<{
|
|
3410
3362
|
type: z.ZodLiteral<"search">;
|
|
3411
3363
|
title: z.ZodString;
|
|
@@ -3434,18 +3386,18 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3434
3386
|
}, "strip", z.ZodTypeAny, {
|
|
3435
3387
|
url: string;
|
|
3436
3388
|
type: "image";
|
|
3389
|
+
control?: string | undefined;
|
|
3437
3390
|
text?: string | undefined;
|
|
3438
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3439
3391
|
accessibilityDescription?: string | undefined;
|
|
3440
|
-
|
|
3392
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3441
3393
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3442
3394
|
}, {
|
|
3443
3395
|
url: string;
|
|
3444
3396
|
type: "image";
|
|
3397
|
+
control?: string | undefined;
|
|
3445
3398
|
text?: string | undefined;
|
|
3446
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3447
3399
|
accessibilityDescription?: string | undefined;
|
|
3448
|
-
|
|
3400
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3449
3401
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3450
3402
|
}>>;
|
|
3451
3403
|
value: z.ZodObject<{
|
|
@@ -3473,21 +3425,21 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3473
3425
|
param: string;
|
|
3474
3426
|
query: string;
|
|
3475
3427
|
};
|
|
3476
|
-
description?: string | undefined;
|
|
3477
|
-
icon?: {
|
|
3478
|
-
name: string;
|
|
3479
|
-
} | {
|
|
3480
|
-
text: string;
|
|
3481
|
-
} | undefined;
|
|
3482
3428
|
image?: {
|
|
3483
3429
|
url: string;
|
|
3484
3430
|
type: "image";
|
|
3431
|
+
control?: string | undefined;
|
|
3485
3432
|
text?: string | undefined;
|
|
3486
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3487
3433
|
accessibilityDescription?: string | undefined;
|
|
3488
|
-
|
|
3434
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3489
3435
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3490
3436
|
} | undefined;
|
|
3437
|
+
description?: string | undefined;
|
|
3438
|
+
icon?: {
|
|
3439
|
+
name: string;
|
|
3440
|
+
} | {
|
|
3441
|
+
text: string;
|
|
3442
|
+
} | undefined;
|
|
3491
3443
|
}, {
|
|
3492
3444
|
type: "search";
|
|
3493
3445
|
title: string;
|
|
@@ -3497,21 +3449,21 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3497
3449
|
param: string;
|
|
3498
3450
|
query: string;
|
|
3499
3451
|
};
|
|
3500
|
-
description?: string | undefined;
|
|
3501
|
-
icon?: {
|
|
3502
|
-
name: string;
|
|
3503
|
-
} | {
|
|
3504
|
-
text: string;
|
|
3505
|
-
} | undefined;
|
|
3506
3452
|
image?: {
|
|
3507
3453
|
url: string;
|
|
3508
3454
|
type: "image";
|
|
3455
|
+
control?: string | undefined;
|
|
3509
3456
|
text?: string | undefined;
|
|
3510
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3511
3457
|
accessibilityDescription?: string | undefined;
|
|
3512
|
-
|
|
3458
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3513
3459
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3514
3460
|
} | undefined;
|
|
3461
|
+
description?: string | undefined;
|
|
3462
|
+
icon?: {
|
|
3463
|
+
name: string;
|
|
3464
|
+
} | {
|
|
3465
|
+
text: string;
|
|
3466
|
+
} | undefined;
|
|
3515
3467
|
}>]>, "many">;
|
|
3516
3468
|
}, "strip", z.ZodTypeAny, {
|
|
3517
3469
|
results: ({
|
|
@@ -3523,32 +3475,32 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3523
3475
|
param: string;
|
|
3524
3476
|
query: string;
|
|
3525
3477
|
};
|
|
3526
|
-
description?: string | undefined;
|
|
3527
|
-
icon?: {
|
|
3528
|
-
name: string;
|
|
3529
|
-
} | {
|
|
3530
|
-
text: string;
|
|
3531
|
-
} | undefined;
|
|
3532
3478
|
image?: {
|
|
3533
3479
|
url: string;
|
|
3534
3480
|
type: "image";
|
|
3481
|
+
control?: string | undefined;
|
|
3535
3482
|
text?: string | undefined;
|
|
3536
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3537
3483
|
accessibilityDescription?: string | undefined;
|
|
3538
|
-
|
|
3484
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3539
3485
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3540
3486
|
} | undefined;
|
|
3487
|
+
description?: string | undefined;
|
|
3488
|
+
icon?: {
|
|
3489
|
+
name: string;
|
|
3490
|
+
} | {
|
|
3491
|
+
text: string;
|
|
3492
|
+
} | undefined;
|
|
3541
3493
|
} | {
|
|
3542
3494
|
type: "action";
|
|
3543
3495
|
title: string;
|
|
3544
3496
|
value: {
|
|
3545
|
-
|
|
3497
|
+
url?: string | undefined;
|
|
3498
|
+
$id?: string | undefined;
|
|
3546
3499
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3547
3500
|
disabled?: boolean | undefined;
|
|
3548
|
-
|
|
3549
|
-
$ref?: string | undefined;
|
|
3501
|
+
title?: string | undefined;
|
|
3550
3502
|
id?: string | undefined;
|
|
3551
|
-
|
|
3503
|
+
$ref?: string | undefined;
|
|
3552
3504
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3553
3505
|
exit?: boolean | undefined;
|
|
3554
3506
|
result?: JsonElement | undefined;
|
|
@@ -3556,21 +3508,21 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3556
3508
|
timeout?: number | undefined;
|
|
3557
3509
|
skipValidation?: boolean | undefined;
|
|
3558
3510
|
};
|
|
3559
|
-
description?: string | undefined;
|
|
3560
|
-
icon?: {
|
|
3561
|
-
name: string;
|
|
3562
|
-
} | {
|
|
3563
|
-
text: string;
|
|
3564
|
-
} | undefined;
|
|
3565
3511
|
image?: {
|
|
3566
3512
|
url: string;
|
|
3567
3513
|
type: "image";
|
|
3514
|
+
control?: string | undefined;
|
|
3568
3515
|
text?: string | undefined;
|
|
3569
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3570
3516
|
accessibilityDescription?: string | undefined;
|
|
3571
|
-
|
|
3517
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3572
3518
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3573
3519
|
} | undefined;
|
|
3520
|
+
description?: string | undefined;
|
|
3521
|
+
icon?: {
|
|
3522
|
+
name: string;
|
|
3523
|
+
} | {
|
|
3524
|
+
text: string;
|
|
3525
|
+
} | undefined;
|
|
3574
3526
|
})[];
|
|
3575
3527
|
}, {
|
|
3576
3528
|
results: ({
|
|
@@ -3582,32 +3534,32 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3582
3534
|
param: string;
|
|
3583
3535
|
query: string;
|
|
3584
3536
|
};
|
|
3585
|
-
description?: string | undefined;
|
|
3586
|
-
icon?: {
|
|
3587
|
-
name: string;
|
|
3588
|
-
} | {
|
|
3589
|
-
text: string;
|
|
3590
|
-
} | undefined;
|
|
3591
3537
|
image?: {
|
|
3592
3538
|
url: string;
|
|
3593
3539
|
type: "image";
|
|
3540
|
+
control?: string | undefined;
|
|
3594
3541
|
text?: string | undefined;
|
|
3595
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3596
3542
|
accessibilityDescription?: string | undefined;
|
|
3597
|
-
|
|
3543
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3598
3544
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3599
3545
|
} | undefined;
|
|
3546
|
+
description?: string | undefined;
|
|
3547
|
+
icon?: {
|
|
3548
|
+
name: string;
|
|
3549
|
+
} | {
|
|
3550
|
+
text: string;
|
|
3551
|
+
} | undefined;
|
|
3600
3552
|
} | {
|
|
3601
3553
|
type: "action";
|
|
3602
3554
|
title: string;
|
|
3603
3555
|
value: {
|
|
3604
|
-
|
|
3556
|
+
url?: string | undefined;
|
|
3557
|
+
$id?: string | undefined;
|
|
3605
3558
|
type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
|
|
3606
3559
|
disabled?: boolean | undefined;
|
|
3607
|
-
|
|
3608
|
-
$ref?: string | undefined;
|
|
3560
|
+
title?: string | undefined;
|
|
3609
3561
|
id?: string | undefined;
|
|
3610
|
-
|
|
3562
|
+
$ref?: string | undefined;
|
|
3611
3563
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3612
3564
|
exit?: boolean | undefined;
|
|
3613
3565
|
result?: JsonElement | undefined;
|
|
@@ -3615,21 +3567,21 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3615
3567
|
timeout?: number | undefined;
|
|
3616
3568
|
skipValidation?: boolean | undefined;
|
|
3617
3569
|
};
|
|
3618
|
-
description?: string | undefined;
|
|
3619
|
-
icon?: {
|
|
3620
|
-
name: string;
|
|
3621
|
-
} | {
|
|
3622
|
-
text: string;
|
|
3623
|
-
} | undefined;
|
|
3624
3570
|
image?: {
|
|
3625
3571
|
url: string;
|
|
3626
3572
|
type: "image";
|
|
3573
|
+
control?: string | undefined;
|
|
3627
3574
|
text?: string | undefined;
|
|
3628
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3629
3575
|
accessibilityDescription?: string | undefined;
|
|
3630
|
-
|
|
3576
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3631
3577
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3632
3578
|
} | undefined;
|
|
3579
|
+
description?: string | undefined;
|
|
3580
|
+
icon?: {
|
|
3581
|
+
name: string;
|
|
3582
|
+
} | {
|
|
3583
|
+
text: string;
|
|
3584
|
+
} | undefined;
|
|
3633
3585
|
})[];
|
|
3634
3586
|
}>;
|
|
3635
3587
|
export declare const layoutSchema: z.ZodSchema<Layout>;
|