@wise/dynamic-flow-types 3.8.0-exp-modal-renderer-b16f932 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,15 +1,5 @@
1
1
  import { z } from 'zod';
2
- import type { JsonElement, DecisionLayoutOption, Behavior, ModalLayoutContent, Layout, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, TabsLayoutTab, BoxLayout, SectionLayout, ReviewLayout, ReviewLayoutField, ReviewLayoutCallToAction, ButtonLayout, ItemCallToAction, DecisionLayout, AdditionalInfo, ColumnsLayout, ModalLayout, TabsLayout, Step, Schema, Polling, LinkHandler, PersistAsync, ModalBehavior, PollingOnError, BlobSchema, OneOfSchema, ArraySchemaTuple, StringSchema, NumberSchema, IntegerSchema, ObjectSchema, ArraySchema, ArraySchemaList, ConstSchema, BooleanSchema, AllOfSchema, ModalResponseBody } from '../next';
3
- export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
4
- export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
5
- export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
6
- export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
7
- $ref: z.ZodString;
8
- }, "strip", z.ZodTypeAny, {
9
- $ref: string;
10
- }, {
11
- $ref: string;
12
- }>;
2
+ import type { JsonElement, AdditionalInfo, Behavior, ReviewLayoutCallToAction, TabsLayout, TabsLayoutTab, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, DecisionLayout, DecisionLayoutOption, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, SectionLayout, Layout, ItemCallToAction, BoxLayout, ButtonLayout, ColumnsLayout, ModalLayout, ReviewLayout, ReviewLayoutField, ModalLayoutContent, ModalResponseBody, Step, Schema, Polling, LinkHandler, AllOfSchema, ArraySchema, BlobSchema, BooleanSchema, ConstSchema, IntegerSchema, NumberSchema, ObjectSchema, OneOfSchema, StringSchema, ArraySchemaList, PersistAsync, ArraySchemaTuple, PollingOnError, ModalBehavior } from '../next';
13
3
  export declare const imageSchema: z.ZodObject<{
14
4
  text: z.ZodOptional<z.ZodString>;
15
5
  url: z.ZodOptional<z.ZodString>;
@@ -26,6 +16,14 @@ export declare const imageSchema: z.ZodObject<{
26
16
  uri?: string | undefined;
27
17
  accessibilityDescription?: string | undefined;
28
18
  }>;
19
+ export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
20
+ export declare const iconNamedSchema: z.ZodObject<{
21
+ name: z.ZodString;
22
+ }, "strip", z.ZodTypeAny, {
23
+ name: string;
24
+ }, {
25
+ name: string;
26
+ }>;
29
27
  export declare const supportingValuesSchema: z.ZodObject<{
30
28
  value: z.ZodOptional<z.ZodString>;
31
29
  subvalue: z.ZodOptional<z.ZodString>;
@@ -36,55 +34,145 @@ export declare const supportingValuesSchema: z.ZodObject<{
36
34
  value?: string | undefined;
37
35
  subvalue?: string | undefined;
38
36
  }>;
39
- export declare const headingLayoutSchema: z.ZodObject<{
40
- type: z.ZodLiteral<"heading">;
37
+ export declare const contextSchema: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
38
+ export declare const inlineAlertSchema: z.ZodObject<{
39
+ content: z.ZodString;
40
+ context: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>>;
41
+ }, "strip", z.ZodTypeAny, {
42
+ content: string;
43
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
44
+ }, {
45
+ content: string;
46
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
47
+ }>;
48
+ export declare const iconTextSchema: z.ZodObject<{
49
+ text: z.ZodString;
50
+ }, "strip", z.ZodTypeAny, {
51
+ text: string;
52
+ }, {
53
+ text: string;
54
+ }>;
55
+ export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
56
+ export declare const autocapitalizationTypeSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"characters">, z.ZodLiteral<"sentences">, z.ZodLiteral<"words">]>;
57
+ export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
58
+ export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
59
+ name: z.ZodString;
60
+ }, "strip", z.ZodTypeAny, {
61
+ name: string;
62
+ }, {
63
+ name: string;
64
+ }>, z.ZodObject<{
65
+ text: z.ZodString;
66
+ }, "strip", z.ZodTypeAny, {
67
+ text: string;
68
+ }, {
69
+ text: string;
70
+ }>]>;
71
+ export declare const mediaImageSchema: z.ZodObject<{
72
+ type: z.ZodLiteral<"image">;
73
+ uri: z.ZodString;
74
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
75
+ }, "strip", z.ZodTypeAny, {
76
+ type: "image";
77
+ uri: string;
78
+ accessibilityDescription?: string | undefined;
79
+ }, {
80
+ type: "image";
81
+ uri: string;
82
+ accessibilityDescription?: string | undefined;
83
+ }>;
84
+ export declare const avatarUriContentSchema: z.ZodObject<{
85
+ type: z.ZodLiteral<"uri">;
86
+ uri: z.ZodString;
87
+ badgeUri: z.ZodOptional<z.ZodString>;
88
+ }, "strip", z.ZodTypeAny, {
89
+ type: "uri";
90
+ uri: string;
91
+ badgeUri?: string | undefined;
92
+ }, {
93
+ type: "uri";
94
+ uri: string;
95
+ badgeUri?: string | undefined;
96
+ }>;
97
+ export declare const avatarTextContentSchema: z.ZodObject<{
98
+ type: z.ZodLiteral<"text">;
41
99
  text: z.ZodString;
100
+ badgeUri: z.ZodOptional<z.ZodString>;
101
+ }, "strip", z.ZodTypeAny, {
102
+ type: "text";
103
+ text: string;
104
+ badgeUri?: string | undefined;
105
+ }, {
106
+ type: "text";
107
+ text: string;
108
+ badgeUri?: string | undefined;
109
+ }>;
110
+ export declare const autocompleteTokenSchema: z.ZodUnion<[z.ZodLiteral<"on">, z.ZodLiteral<"name">, z.ZodLiteral<"name-prefix">, z.ZodLiteral<"given-name">, z.ZodLiteral<"additional-name">, z.ZodLiteral<"family-name">, z.ZodLiteral<"name-suffix">, z.ZodLiteral<"nickname">, z.ZodLiteral<"email">, z.ZodLiteral<"username">, z.ZodLiteral<"new-username">, z.ZodLiteral<"new-password">, z.ZodLiteral<"password">, z.ZodLiteral<"one-time-code">, z.ZodLiteral<"job-title">, z.ZodLiteral<"organization-name">, z.ZodLiteral<"full-street-address">, z.ZodLiteral<"street-address-line-1">, z.ZodLiteral<"street-address-line-2">, z.ZodLiteral<"street-address-line-3">, z.ZodLiteral<"address-level-1">, z.ZodLiteral<"address-level-2">, z.ZodLiteral<"address-level-3">, z.ZodLiteral<"address-level-4">, z.ZodLiteral<"country-code">, z.ZodLiteral<"country-name">, z.ZodLiteral<"postal-code">, z.ZodLiteral<"credit-card-name">, z.ZodLiteral<"credit-card-given-name">, z.ZodLiteral<"credit-card-middle-name">, z.ZodLiteral<"credit-card-family-name">, z.ZodLiteral<"credit-card-number">, z.ZodLiteral<"credit-card-expiration">, z.ZodLiteral<"credit-card-expiration-month">, z.ZodLiteral<"credit-card-expiration-year">, z.ZodLiteral<"credit-card-security-code">, z.ZodLiteral<"credit-card-type">, z.ZodLiteral<"transaction-currency">, z.ZodLiteral<"transaction-amount">, z.ZodLiteral<"language">, z.ZodLiteral<"birthdate">, z.ZodLiteral<"birthdate-day">, z.ZodLiteral<"birthdate-month">, z.ZodLiteral<"birthdate-year">, z.ZodLiteral<"gender">, z.ZodLiteral<"phone-number">, z.ZodLiteral<"phone-country-code">, z.ZodLiteral<"phone-national">, z.ZodLiteral<"phone-area-code">, z.ZodLiteral<"phone-local">, z.ZodLiteral<"phone-local-prefix">, z.ZodLiteral<"phone-local-suffix">, z.ZodLiteral<"phone-extension">, z.ZodLiteral<"url">, z.ZodLiteral<"photo">, z.ZodLiteral<"impp">, z.ZodLiteral<"shipping">, z.ZodLiteral<"billing">, z.ZodLiteral<"home">, z.ZodLiteral<"work">, z.ZodLiteral<"mobile">, z.ZodLiteral<"fax">, z.ZodLiteral<"pager">]>;
111
+ export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
112
+ type: z.ZodLiteral<"loading-indicator">;
42
113
  size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
43
- align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
44
114
  control: z.ZodOptional<z.ZodString>;
45
115
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
46
116
  analyticsId: z.ZodOptional<z.ZodString>;
47
117
  }, "strip", z.ZodTypeAny, {
48
- type: "heading";
49
- text: string;
118
+ type: "loading-indicator";
50
119
  analyticsId?: string | undefined;
51
120
  control?: string | undefined;
52
121
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
53
- align?: "left" | "right" | "center" | undefined;
54
122
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
55
123
  }, {
56
- type: "heading";
57
- text: string;
124
+ type: "loading-indicator";
58
125
  analyticsId?: string | undefined;
59
126
  control?: string | undefined;
60
127
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
61
- align?: "left" | "right" | "center" | undefined;
62
128
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
63
129
  }>;
64
- export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
65
- export declare const contextSchema: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
66
- export declare const markdownLayoutSchema: z.ZodObject<{
67
- type: z.ZodLiteral<"markdown">;
68
- content: z.ZodString;
130
+ export declare const paragraphLayoutSchema: z.ZodObject<{
131
+ type: z.ZodLiteral<"paragraph">;
132
+ text: z.ZodString;
69
133
  align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
70
134
  control: z.ZodOptional<z.ZodString>;
71
135
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
72
136
  analyticsId: z.ZodOptional<z.ZodString>;
73
137
  }, "strip", z.ZodTypeAny, {
74
- type: "markdown";
75
- content: string;
138
+ type: "paragraph";
139
+ text: string;
76
140
  analyticsId?: string | undefined;
77
141
  control?: string | undefined;
78
- align?: "left" | "right" | "center" | undefined;
79
142
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
143
+ align?: "left" | "right" | "center" | undefined;
80
144
  }, {
81
- type: "markdown";
82
- content: string;
145
+ type: "paragraph";
146
+ text: string;
83
147
  analyticsId?: string | undefined;
84
148
  control?: string | undefined;
149
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
85
150
  align?: "left" | "right" | "center" | undefined;
151
+ }>;
152
+ export declare const dividerLayoutSchema: z.ZodObject<{
153
+ type: z.ZodLiteral<"divider">;
154
+ control: z.ZodOptional<z.ZodString>;
155
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
156
+ analyticsId: z.ZodOptional<z.ZodString>;
157
+ }, "strip", z.ZodTypeAny, {
158
+ type: "divider";
159
+ analyticsId?: string | undefined;
160
+ control?: string | undefined;
161
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
162
+ }, {
163
+ type: "divider";
164
+ analyticsId?: string | undefined;
165
+ control?: string | undefined;
86
166
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
87
167
  }>;
168
+ export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
169
+ export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
170
+ $ref: z.ZodString;
171
+ }, "strip", z.ZodTypeAny, {
172
+ $ref: string;
173
+ }, {
174
+ $ref: string;
175
+ }>;
88
176
  export declare const imageLayoutSchema: z.ZodObject<{
89
177
  type: z.ZodLiteral<"image">;
90
178
  text: z.ZodOptional<z.ZodString>;
@@ -118,15 +206,15 @@ export declare const imageLayoutSchema: z.ZodObject<{
118
206
  control?: string | undefined;
119
207
  text?: string | undefined;
120
208
  accessibilityDescription?: string | undefined;
121
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
122
- align?: "left" | "right" | "center" | undefined;
123
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
124
209
  content?: {
125
210
  url?: string | undefined;
126
211
  text?: string | undefined;
127
212
  uri?: string | undefined;
128
213
  accessibilityDescription?: string | undefined;
129
214
  } | undefined;
215
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
216
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
217
+ align?: "left" | "right" | "center" | undefined;
130
218
  }, {
131
219
  type: "image";
132
220
  url?: string | undefined;
@@ -134,15 +222,32 @@ export declare const imageLayoutSchema: z.ZodObject<{
134
222
  control?: string | undefined;
135
223
  text?: string | undefined;
136
224
  accessibilityDescription?: string | undefined;
137
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
138
- align?: "left" | "right" | "center" | undefined;
139
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
140
225
  content?: {
141
226
  url?: string | undefined;
142
227
  text?: string | undefined;
143
228
  uri?: string | undefined;
144
229
  accessibilityDescription?: string | undefined;
145
230
  } | undefined;
231
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
232
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
233
+ align?: "left" | "right" | "center" | undefined;
234
+ }>;
235
+ export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
236
+ export declare const instructionsLayoutItemSchema: z.ZodObject<{
237
+ text: z.ZodString;
238
+ context: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
239
+ tag: z.ZodOptional<z.ZodString>;
240
+ analyticsId: z.ZodOptional<z.ZodString>;
241
+ }, "strip", z.ZodTypeAny, {
242
+ text: string;
243
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
244
+ analyticsId?: string | undefined;
245
+ tag?: string | undefined;
246
+ }, {
247
+ text: string;
248
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
249
+ analyticsId?: string | undefined;
250
+ tag?: string | undefined;
146
251
  }>;
147
252
  export declare const modalLayoutTriggerSchema: z.ZodObject<{
148
253
  title: z.ZodString;
@@ -151,72 +256,162 @@ export declare const modalLayoutTriggerSchema: z.ZodObject<{
151
256
  }, {
152
257
  title: string;
153
258
  }>;
154
- export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
155
- export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
156
- type: z.ZodLiteral<"loading-indicator">;
157
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
259
+ export declare const searchLayoutSchema: z.ZodObject<{
260
+ type: z.ZodLiteral<"search">;
261
+ title: z.ZodString;
262
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
263
+ url: z.ZodString;
264
+ param: z.ZodString;
265
+ emptyMessage: z.ZodOptional<z.ZodString>;
158
266
  control: z.ZodOptional<z.ZodString>;
159
267
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
160
268
  analyticsId: z.ZodOptional<z.ZodString>;
161
269
  }, "strip", z.ZodTypeAny, {
162
- type: "loading-indicator";
270
+ url: string;
271
+ type: "search";
272
+ title: string;
273
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
274
+ param: string;
163
275
  analyticsId?: string | undefined;
164
276
  control?: string | undefined;
165
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
166
277
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
278
+ emptyMessage?: string | undefined;
167
279
  }, {
168
- type: "loading-indicator";
280
+ url: string;
281
+ type: "search";
282
+ title: string;
283
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
284
+ param: string;
169
285
  analyticsId?: string | undefined;
170
286
  control?: string | undefined;
171
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
172
287
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
288
+ emptyMessage?: string | undefined;
173
289
  }>;
174
- export declare const helpSchema: z.ZodObject<{
290
+ export declare const infoLayoutSchema: z.ZodObject<{
291
+ type: z.ZodLiteral<"info">;
175
292
  markdown: z.ZodString;
293
+ align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
294
+ control: z.ZodOptional<z.ZodString>;
295
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
296
+ analyticsId: z.ZodOptional<z.ZodString>;
176
297
  }, "strip", z.ZodTypeAny, {
298
+ type: "info";
177
299
  markdown: string;
300
+ analyticsId?: string | undefined;
301
+ control?: string | undefined;
302
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
303
+ align?: "left" | "right" | "center" | undefined;
178
304
  }, {
305
+ type: "info";
179
306
  markdown: string;
307
+ analyticsId?: string | undefined;
308
+ control?: string | undefined;
309
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
310
+ align?: "left" | "right" | "center" | undefined;
180
311
  }>;
181
- export declare const dividerLayoutSchema: z.ZodObject<{
182
- type: z.ZodLiteral<"divider">;
312
+ export declare const formLayoutSchema: z.ZodObject<{
313
+ type: z.ZodLiteral<"form">;
314
+ schema: z.ZodOptional<z.ZodObject<{
315
+ $ref: z.ZodString;
316
+ }, "strip", z.ZodTypeAny, {
317
+ $ref: string;
318
+ }, {
319
+ $ref: string;
320
+ }>>;
321
+ schemaId: z.ZodString;
183
322
  control: z.ZodOptional<z.ZodString>;
184
323
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
185
324
  analyticsId: z.ZodOptional<z.ZodString>;
186
325
  }, "strip", z.ZodTypeAny, {
187
- type: "divider";
326
+ type: "form";
327
+ schemaId: string;
188
328
  analyticsId?: string | undefined;
189
329
  control?: string | undefined;
190
330
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
331
+ schema?: {
332
+ $ref: string;
333
+ } | undefined;
191
334
  }, {
192
- type: "divider";
335
+ type: "form";
336
+ schemaId: string;
193
337
  analyticsId?: string | undefined;
194
338
  control?: string | undefined;
195
339
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
340
+ schema?: {
341
+ $ref: string;
342
+ } | undefined;
196
343
  }>;
197
- export declare const paragraphLayoutSchema: z.ZodObject<{
198
- type: z.ZodLiteral<"paragraph">;
344
+ export declare const headingLayoutSchema: z.ZodObject<{
345
+ type: z.ZodLiteral<"heading">;
199
346
  text: z.ZodString;
347
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
200
348
  align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
201
349
  control: z.ZodOptional<z.ZodString>;
202
350
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
203
351
  analyticsId: z.ZodOptional<z.ZodString>;
204
352
  }, "strip", z.ZodTypeAny, {
205
- type: "paragraph";
353
+ type: "heading";
206
354
  text: string;
207
355
  analyticsId?: string | undefined;
208
356
  control?: string | undefined;
209
- align?: "left" | "right" | "center" | undefined;
357
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
210
358
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
359
+ align?: "left" | "right" | "center" | undefined;
211
360
  }, {
212
- type: "paragraph";
361
+ type: "heading";
213
362
  text: string;
214
363
  analyticsId?: string | undefined;
215
364
  control?: string | undefined;
216
- align?: "left" | "right" | "center" | undefined;
365
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
217
366
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
367
+ align?: "left" | "right" | "center" | undefined;
368
+ }>;
369
+ export declare const markdownLayoutSchema: z.ZodObject<{
370
+ type: z.ZodLiteral<"markdown">;
371
+ content: z.ZodString;
372
+ align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
373
+ control: z.ZodOptional<z.ZodString>;
374
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
375
+ analyticsId: z.ZodOptional<z.ZodString>;
376
+ }, "strip", z.ZodTypeAny, {
377
+ type: "markdown";
378
+ content: string;
379
+ analyticsId?: string | undefined;
380
+ control?: string | undefined;
381
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
382
+ align?: "left" | "right" | "center" | undefined;
383
+ }, {
384
+ type: "markdown";
385
+ content: string;
386
+ analyticsId?: string | undefined;
387
+ control?: string | undefined;
388
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
389
+ align?: "left" | "right" | "center" | undefined;
390
+ }>;
391
+ export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
392
+ export declare const helpSchema: z.ZodObject<{
393
+ markdown: z.ZodString;
394
+ }, "strip", z.ZodTypeAny, {
395
+ markdown: string;
396
+ }, {
397
+ markdown: string;
398
+ }>;
399
+ export declare const searchSearchRequestSchema: z.ZodObject<{
400
+ url: z.ZodString;
401
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
402
+ param: z.ZodString;
403
+ query: z.ZodString;
404
+ }, "strip", z.ZodTypeAny, {
405
+ url: string;
406
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
407
+ param: string;
408
+ query: string;
409
+ }, {
410
+ url: string;
411
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
412
+ param: string;
413
+ query: string;
218
414
  }>;
219
- export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
220
415
  export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
221
416
  export declare const externalSchema: z.ZodObject<{
222
417
  url: z.ZodString;
@@ -235,135 +430,299 @@ export declare const stepErrorSchema: z.ZodObject<{
235
430
  validation?: JsonElement | undefined;
236
431
  error?: string | undefined;
237
432
  }>;
238
- export declare const summaryProviderSchema: z.ZodObject<{
433
+ 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">]>;
434
+ export declare const summarySummariserSchema: z.ZodObject<{
435
+ defaultTitle: z.ZodOptional<z.ZodString>;
436
+ defaultDescription: z.ZodOptional<z.ZodString>;
437
+ defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
438
+ name: z.ZodString;
439
+ }, "strip", z.ZodTypeAny, {
440
+ name: string;
441
+ }, {
442
+ name: string;
443
+ }>, z.ZodObject<{
444
+ text: z.ZodString;
445
+ }, "strip", z.ZodTypeAny, {
446
+ text: string;
447
+ }, {
448
+ text: string;
449
+ }>]>>;
450
+ defaultImage: z.ZodOptional<z.ZodObject<{
451
+ text: z.ZodOptional<z.ZodString>;
452
+ url: z.ZodOptional<z.ZodString>;
453
+ uri: z.ZodOptional<z.ZodString>;
454
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
455
+ }, "strip", z.ZodTypeAny, {
456
+ url?: string | undefined;
457
+ text?: string | undefined;
458
+ uri?: string | undefined;
459
+ accessibilityDescription?: string | undefined;
460
+ }, {
461
+ url?: string | undefined;
462
+ text?: string | undefined;
463
+ uri?: string | undefined;
464
+ accessibilityDescription?: string | undefined;
465
+ }>>;
239
466
  providesTitle: z.ZodOptional<z.ZodBoolean>;
240
467
  providesDescription: z.ZodOptional<z.ZodBoolean>;
241
468
  providesIcon: z.ZodOptional<z.ZodBoolean>;
242
469
  providesImage: z.ZodOptional<z.ZodBoolean>;
243
470
  }, "strip", z.ZodTypeAny, {
471
+ defaultTitle?: string | undefined;
472
+ defaultDescription?: string | undefined;
473
+ defaultIcon?: {
474
+ name: string;
475
+ } | {
476
+ text: string;
477
+ } | undefined;
478
+ defaultImage?: {
479
+ url?: string | undefined;
480
+ text?: string | undefined;
481
+ uri?: string | undefined;
482
+ accessibilityDescription?: string | undefined;
483
+ } | undefined;
244
484
  providesTitle?: boolean | undefined;
245
485
  providesDescription?: boolean | undefined;
246
486
  providesIcon?: boolean | undefined;
247
487
  providesImage?: boolean | undefined;
248
488
  }, {
489
+ defaultTitle?: string | undefined;
490
+ defaultDescription?: string | undefined;
491
+ defaultIcon?: {
492
+ name: string;
493
+ } | {
494
+ text: string;
495
+ } | undefined;
496
+ defaultImage?: {
497
+ url?: string | undefined;
498
+ text?: string | undefined;
499
+ uri?: string | undefined;
500
+ accessibilityDescription?: string | undefined;
501
+ } | undefined;
249
502
  providesTitle?: boolean | undefined;
250
503
  providesDescription?: boolean | undefined;
251
504
  providesIcon?: boolean | undefined;
252
505
  providesImage?: boolean | undefined;
253
506
  }>;
254
- export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
255
- export declare const linkSchema: z.ZodObject<{
256
- url: z.ZodString;
257
- }, "strip", z.ZodTypeAny, {
258
- url: string;
259
- }, {
260
- url: string;
261
- }>;
262
507
  export declare const validateAsyncSchema: z.ZodObject<{
263
508
  param: z.ZodString;
264
509
  method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
265
510
  url: z.ZodString;
266
511
  }, "strip", z.ZodTypeAny, {
267
512
  url: string;
268
- param: string;
269
513
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
514
+ param: string;
270
515
  }, {
271
516
  url: string;
272
- param: string;
273
517
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
518
+ param: string;
274
519
  }>;
275
- export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
276
- export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
277
- export declare const dismissBehaviorSchema: z.ZodObject<{
278
- type: z.ZodLiteral<"dismiss">;
520
+ export declare const summaryProviderSchema: z.ZodObject<{
521
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
522
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
523
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
524
+ providesImage: z.ZodOptional<z.ZodBoolean>;
279
525
  }, "strip", z.ZodTypeAny, {
280
- type: "dismiss";
526
+ providesTitle?: boolean | undefined;
527
+ providesDescription?: boolean | undefined;
528
+ providesIcon?: boolean | undefined;
529
+ providesImage?: boolean | undefined;
281
530
  }, {
282
- type: "dismiss";
531
+ providesTitle?: boolean | undefined;
532
+ providesDescription?: boolean | undefined;
533
+ providesIcon?: boolean | undefined;
534
+ providesImage?: boolean | undefined;
283
535
  }>;
284
- export declare const linkBehaviorSchema: z.ZodObject<{
285
- type: z.ZodLiteral<"link">;
286
- url: z.ZodString;
536
+ export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
537
+ export declare const suggestionsValueSchema: z.ZodObject<{
538
+ label: z.ZodString;
539
+ value: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
540
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
541
+ name: z.ZodString;
542
+ }, "strip", z.ZodTypeAny, {
543
+ name: string;
544
+ }, {
545
+ name: string;
546
+ }>, z.ZodObject<{
547
+ text: z.ZodString;
548
+ }, "strip", z.ZodTypeAny, {
549
+ text: string;
550
+ }, {
551
+ text: string;
552
+ }>]>>;
553
+ image: z.ZodOptional<z.ZodObject<{
554
+ text: z.ZodOptional<z.ZodString>;
555
+ url: z.ZodOptional<z.ZodString>;
556
+ uri: z.ZodOptional<z.ZodString>;
557
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
558
+ }, "strip", z.ZodTypeAny, {
559
+ url?: string | undefined;
560
+ text?: string | undefined;
561
+ uri?: string | undefined;
562
+ accessibilityDescription?: string | undefined;
563
+ }, {
564
+ url?: string | undefined;
565
+ text?: string | undefined;
566
+ uri?: string | undefined;
567
+ accessibilityDescription?: string | undefined;
568
+ }>>;
569
+ tag: z.ZodOptional<z.ZodString>;
570
+ analyticsId: z.ZodOptional<z.ZodString>;
287
571
  }, "strip", z.ZodTypeAny, {
288
- url: string;
289
- type: "link";
572
+ value: JsonElement;
573
+ label: string;
574
+ image?: {
575
+ url?: string | undefined;
576
+ text?: string | undefined;
577
+ uri?: string | undefined;
578
+ accessibilityDescription?: string | undefined;
579
+ } | undefined;
580
+ analyticsId?: string | undefined;
581
+ icon?: {
582
+ name: string;
583
+ } | {
584
+ text: string;
585
+ } | undefined;
586
+ tag?: string | undefined;
290
587
  }, {
291
- url: string;
292
- type: "link";
588
+ value: JsonElement;
589
+ label: string;
590
+ image?: {
591
+ url?: string | undefined;
592
+ text?: string | undefined;
593
+ uri?: string | undefined;
594
+ accessibilityDescription?: string | undefined;
595
+ } | undefined;
596
+ analyticsId?: string | undefined;
597
+ icon?: {
598
+ name: string;
599
+ } | {
600
+ text: string;
601
+ } | undefined;
602
+ tag?: string | undefined;
293
603
  }>;
294
- export declare const refreshBehaviorSchema: z.ZodObject<{
295
- type: z.ZodLiteral<"refresh">;
604
+ export declare const dismissBehaviorSchema: z.ZodObject<{
605
+ type: z.ZodLiteral<"dismiss">;
296
606
  }, "strip", z.ZodTypeAny, {
297
- type: "refresh";
607
+ type: "dismiss";
298
608
  }, {
299
- type: "refresh";
609
+ type: "dismiss";
300
610
  }>;
301
- export declare const autocompleteTokenSchema: z.ZodUnion<[z.ZodLiteral<"on">, z.ZodLiteral<"name">, z.ZodLiteral<"name-prefix">, z.ZodLiteral<"given-name">, z.ZodLiteral<"additional-name">, z.ZodLiteral<"family-name">, z.ZodLiteral<"name-suffix">, z.ZodLiteral<"nickname">, z.ZodLiteral<"email">, z.ZodLiteral<"username">, z.ZodLiteral<"new-username">, z.ZodLiteral<"new-password">, z.ZodLiteral<"password">, z.ZodLiteral<"one-time-code">, z.ZodLiteral<"job-title">, z.ZodLiteral<"organization-name">, z.ZodLiteral<"full-street-address">, z.ZodLiteral<"street-address-line-1">, z.ZodLiteral<"street-address-line-2">, z.ZodLiteral<"street-address-line-3">, z.ZodLiteral<"address-level-1">, z.ZodLiteral<"address-level-2">, z.ZodLiteral<"address-level-3">, z.ZodLiteral<"address-level-4">, z.ZodLiteral<"country-code">, z.ZodLiteral<"country-name">, z.ZodLiteral<"postal-code">, z.ZodLiteral<"credit-card-name">, z.ZodLiteral<"credit-card-given-name">, z.ZodLiteral<"credit-card-middle-name">, z.ZodLiteral<"credit-card-family-name">, z.ZodLiteral<"credit-card-number">, z.ZodLiteral<"credit-card-expiration">, z.ZodLiteral<"credit-card-expiration-month">, z.ZodLiteral<"credit-card-expiration-year">, z.ZodLiteral<"credit-card-security-code">, z.ZodLiteral<"credit-card-type">, z.ZodLiteral<"transaction-currency">, z.ZodLiteral<"transaction-amount">, z.ZodLiteral<"language">, z.ZodLiteral<"birthdate">, z.ZodLiteral<"birthdate-day">, z.ZodLiteral<"birthdate-month">, z.ZodLiteral<"birthdate-year">, z.ZodLiteral<"gender">, z.ZodLiteral<"phone-number">, z.ZodLiteral<"phone-country-code">, z.ZodLiteral<"phone-national">, z.ZodLiteral<"phone-area-code">, z.ZodLiteral<"phone-local">, z.ZodLiteral<"phone-local-prefix">, z.ZodLiteral<"phone-local-suffix">, z.ZodLiteral<"phone-extension">, z.ZodLiteral<"url">, z.ZodLiteral<"photo">, z.ZodLiteral<"impp">, z.ZodLiteral<"shipping">, z.ZodLiteral<"billing">, z.ZodLiteral<"home">, z.ZodLiteral<"work">, z.ZodLiteral<"mobile">, z.ZodLiteral<"fax">, z.ZodLiteral<"pager">]>;
302
- 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">]>;
303
- export declare const autocapitalizationTypeSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"characters">, z.ZodLiteral<"sentences">, z.ZodLiteral<"words">]>;
304
- export declare const searchSearchRequestSchema: z.ZodObject<{
305
- url: z.ZodString;
306
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
307
- param: z.ZodString;
308
- query: z.ZodString;
611
+ export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
612
+ export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
613
+ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
614
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
615
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
616
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
617
+ providesImage: z.ZodOptional<z.ZodBoolean>;
309
618
  }, "strip", z.ZodTypeAny, {
310
- url: string;
311
- param: string;
312
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
313
- query: string;
619
+ providesTitle?: boolean | undefined;
620
+ providesDescription?: boolean | undefined;
621
+ providesIcon?: boolean | undefined;
622
+ providesImage?: boolean | undefined;
314
623
  }, {
315
- url: string;
316
- param: string;
317
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
318
- query: string;
319
- }>;
320
- export declare const errorResponseBodySchema: z.ZodObject<{
321
- refreshFormUrl: z.ZodOptional<z.ZodString>;
322
- analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
323
- error: z.ZodOptional<z.ZodString>;
324
- validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
325
- refreshUrl: z.ZodOptional<z.ZodString>;
326
- }, "strip", z.ZodTypeAny, {
327
- refreshUrl?: string | undefined;
328
- refreshFormUrl?: string | undefined;
329
- analytics?: Record<string, string> | undefined;
330
- validation?: JsonElement | undefined;
331
- error?: string | undefined;
624
+ providesTitle?: boolean | undefined;
625
+ providesDescription?: boolean | undefined;
626
+ providesIcon?: boolean | undefined;
627
+ providesImage?: boolean | undefined;
628
+ }>, z.ZodObject<{
629
+ defaultTitle: z.ZodOptional<z.ZodString>;
630
+ defaultDescription: z.ZodOptional<z.ZodString>;
631
+ defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
632
+ name: z.ZodString;
633
+ }, "strip", z.ZodTypeAny, {
634
+ name: string;
635
+ }, {
636
+ name: string;
637
+ }>, z.ZodObject<{
638
+ text: z.ZodString;
639
+ }, "strip", z.ZodTypeAny, {
640
+ text: string;
641
+ }, {
642
+ text: string;
643
+ }>]>>;
644
+ defaultImage: z.ZodOptional<z.ZodObject<{
645
+ text: z.ZodOptional<z.ZodString>;
646
+ url: z.ZodOptional<z.ZodString>;
647
+ uri: z.ZodOptional<z.ZodString>;
648
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
649
+ }, "strip", z.ZodTypeAny, {
650
+ url?: string | undefined;
651
+ text?: string | undefined;
652
+ uri?: string | undefined;
653
+ accessibilityDescription?: string | undefined;
654
+ }, {
655
+ url?: string | undefined;
656
+ text?: string | undefined;
657
+ uri?: string | undefined;
658
+ accessibilityDescription?: string | undefined;
659
+ }>>;
660
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
661
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
662
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
663
+ providesImage: z.ZodOptional<z.ZodBoolean>;
664
+ }, "strip", z.ZodTypeAny, {
665
+ defaultTitle?: string | undefined;
666
+ defaultDescription?: string | undefined;
667
+ defaultIcon?: {
668
+ name: string;
669
+ } | {
670
+ text: string;
671
+ } | undefined;
672
+ defaultImage?: {
673
+ url?: string | undefined;
674
+ text?: string | undefined;
675
+ uri?: string | undefined;
676
+ accessibilityDescription?: string | undefined;
677
+ } | undefined;
678
+ providesTitle?: boolean | undefined;
679
+ providesDescription?: boolean | undefined;
680
+ providesIcon?: boolean | undefined;
681
+ providesImage?: boolean | undefined;
332
682
  }, {
333
- refreshUrl?: string | undefined;
334
- refreshFormUrl?: string | undefined;
335
- analytics?: Record<string, string> | undefined;
336
- validation?: JsonElement | undefined;
337
- error?: string | undefined;
338
- }>;
339
- export declare const iconTextSchema: z.ZodObject<{
340
- text: z.ZodString;
683
+ defaultTitle?: string | undefined;
684
+ defaultDescription?: string | undefined;
685
+ defaultIcon?: {
686
+ name: string;
687
+ } | {
688
+ text: string;
689
+ } | undefined;
690
+ defaultImage?: {
691
+ url?: string | undefined;
692
+ text?: string | undefined;
693
+ uri?: string | undefined;
694
+ accessibilityDescription?: string | undefined;
695
+ } | undefined;
696
+ providesTitle?: boolean | undefined;
697
+ providesDescription?: boolean | undefined;
698
+ providesIcon?: boolean | undefined;
699
+ providesImage?: boolean | undefined;
700
+ }>]>;
701
+ export declare const linkBehaviorSchema: z.ZodObject<{
702
+ type: z.ZodLiteral<"link">;
703
+ url: z.ZodString;
341
704
  }, "strip", z.ZodTypeAny, {
342
- text: string;
705
+ url: string;
706
+ type: "link";
343
707
  }, {
344
- text: string;
708
+ url: string;
709
+ type: "link";
345
710
  }>;
346
- export declare const iconNamedSchema: z.ZodObject<{
347
- name: z.ZodString;
711
+ export declare const refreshBehaviorSchema: z.ZodObject<{
712
+ type: z.ZodLiteral<"refresh">;
348
713
  }, "strip", z.ZodTypeAny, {
349
- name: string;
714
+ type: "refresh";
350
715
  }, {
351
- name: string;
716
+ type: "refresh";
352
717
  }>;
353
- export declare const mediaImageSchema: z.ZodObject<{
354
- type: z.ZodLiteral<"image">;
355
- uri: z.ZodString;
356
- accessibilityDescription: z.ZodOptional<z.ZodString>;
718
+ export declare const linkSchema: z.ZodObject<{
719
+ url: z.ZodString;
357
720
  }, "strip", z.ZodTypeAny, {
358
- type: "image";
359
- uri: string;
360
- accessibilityDescription?: string | undefined;
721
+ url: string;
361
722
  }, {
362
- type: "image";
363
- uri: string;
364
- accessibilityDescription?: string | undefined;
723
+ url: string;
365
724
  }>;
366
- export declare const avatarTextContentSchema: z.ZodObject<{
725
+ export declare const avatarContentSchema: z.ZodUnion<[z.ZodObject<{
367
726
  type: z.ZodLiteral<"text">;
368
727
  text: z.ZodString;
369
728
  badgeUri: z.ZodOptional<z.ZodString>;
@@ -375,8 +734,7 @@ export declare const avatarTextContentSchema: z.ZodObject<{
375
734
  type: "text";
376
735
  text: string;
377
736
  badgeUri?: string | undefined;
378
- }>;
379
- export declare const avatarUriContentSchema: z.ZodObject<{
737
+ }>, z.ZodObject<{
380
738
  type: z.ZodLiteral<"uri">;
381
739
  uri: z.ZodString;
382
740
  badgeUri: z.ZodOptional<z.ZodString>;
@@ -388,61 +746,7 @@ export declare const avatarUriContentSchema: z.ZodObject<{
388
746
  type: "uri";
389
747
  uri: string;
390
748
  badgeUri?: string | undefined;
391
- }>;
392
- export declare const infoLayoutSchema: z.ZodObject<{
393
- type: z.ZodLiteral<"info">;
394
- markdown: z.ZodString;
395
- align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
396
- control: z.ZodOptional<z.ZodString>;
397
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
398
- analyticsId: z.ZodOptional<z.ZodString>;
399
- }, "strip", z.ZodTypeAny, {
400
- type: "info";
401
- markdown: string;
402
- analyticsId?: string | undefined;
403
- control?: string | undefined;
404
- align?: "left" | "right" | "center" | undefined;
405
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
406
- }, {
407
- type: "info";
408
- markdown: string;
409
- analyticsId?: string | undefined;
410
- control?: string | undefined;
411
- align?: "left" | "right" | "center" | undefined;
412
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
413
- }>;
414
- export declare const formLayoutSchema: z.ZodObject<{
415
- type: z.ZodLiteral<"form">;
416
- schema: z.ZodOptional<z.ZodObject<{
417
- $ref: z.ZodString;
418
- }, "strip", z.ZodTypeAny, {
419
- $ref: string;
420
- }, {
421
- $ref: string;
422
- }>>;
423
- schemaId: z.ZodString;
424
- control: z.ZodOptional<z.ZodString>;
425
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
426
- analyticsId: z.ZodOptional<z.ZodString>;
427
- }, "strip", z.ZodTypeAny, {
428
- type: "form";
429
- schemaId: string;
430
- analyticsId?: string | undefined;
431
- control?: string | undefined;
432
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
433
- schema?: {
434
- $ref: string;
435
- } | undefined;
436
- }, {
437
- type: "form";
438
- schemaId: string;
439
- analyticsId?: string | undefined;
440
- control?: string | undefined;
441
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
442
- schema?: {
443
- $ref: string;
444
- } | undefined;
445
- }>;
749
+ }>]>;
446
750
  export declare const actionSchema: z.ZodObject<{
447
751
  title: z.ZodOptional<z.ZodString>;
448
752
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -486,80 +790,58 @@ export declare const actionSchema: z.ZodObject<{
486
790
  data?: JsonElement | undefined;
487
791
  skipValidation?: boolean | undefined;
488
792
  }>;
489
- export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
490
- name: z.ZodString;
491
- }, "strip", z.ZodTypeAny, {
492
- name: string;
493
- }, {
494
- name: string;
495
- }>, z.ZodObject<{
496
- text: z.ZodString;
497
- }, "strip", z.ZodTypeAny, {
498
- text: string;
499
- }, {
500
- text: string;
501
- }>]>;
502
- export declare const inlineAlertSchema: z.ZodObject<{
503
- content: z.ZodString;
504
- context: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>>;
505
- }, "strip", z.ZodTypeAny, {
506
- content: string;
507
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
508
- }, {
509
- content: string;
510
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
511
- }>;
512
- export declare const instructionsLayoutItemSchema: z.ZodObject<{
513
- text: z.ZodString;
514
- context: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
515
- tag: z.ZodOptional<z.ZodString>;
793
+ export declare const instructionsLayoutSchema: z.ZodObject<{
794
+ type: z.ZodLiteral<"instructions">;
795
+ title: z.ZodOptional<z.ZodString>;
796
+ items: z.ZodArray<z.ZodObject<{
797
+ text: z.ZodString;
798
+ context: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
799
+ tag: z.ZodOptional<z.ZodString>;
800
+ analyticsId: z.ZodOptional<z.ZodString>;
801
+ }, "strip", z.ZodTypeAny, {
802
+ text: string;
803
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
804
+ analyticsId?: string | undefined;
805
+ tag?: string | undefined;
806
+ }, {
807
+ text: string;
808
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
809
+ analyticsId?: string | undefined;
810
+ tag?: string | undefined;
811
+ }>, "many">;
812
+ control: z.ZodOptional<z.ZodString>;
813
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
516
814
  analyticsId: z.ZodOptional<z.ZodString>;
517
815
  }, "strip", z.ZodTypeAny, {
518
- text: string;
519
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
816
+ type: "instructions";
817
+ items: {
818
+ text: string;
819
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
820
+ analyticsId?: string | undefined;
821
+ tag?: string | undefined;
822
+ }[];
520
823
  analyticsId?: string | undefined;
521
- tag?: string | undefined;
824
+ title?: string | undefined;
825
+ control?: string | undefined;
826
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
522
827
  }, {
523
- text: string;
524
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
828
+ type: "instructions";
829
+ items: {
830
+ text: string;
831
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
832
+ analyticsId?: string | undefined;
833
+ tag?: string | undefined;
834
+ }[];
525
835
  analyticsId?: string | undefined;
526
- tag?: string | undefined;
836
+ title?: string | undefined;
837
+ control?: string | undefined;
838
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
527
839
  }>;
528
- export declare const searchLayoutSchema: z.ZodObject<{
840
+ export declare const searchResultSearchSchema: z.ZodObject<{
529
841
  type: z.ZodLiteral<"search">;
530
842
  title: z.ZodString;
531
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
532
- url: z.ZodString;
533
- param: z.ZodString;
534
- emptyMessage: z.ZodOptional<z.ZodString>;
535
- control: z.ZodOptional<z.ZodString>;
536
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
537
- analyticsId: z.ZodOptional<z.ZodString>;
538
- }, "strip", z.ZodTypeAny, {
539
- url: string;
540
- type: "search";
541
- title: string;
542
- param: string;
543
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
544
- analyticsId?: string | undefined;
545
- control?: string | undefined;
546
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
547
- emptyMessage?: string | undefined;
548
- }, {
549
- url: string;
550
- type: "search";
551
- title: string;
552
- param: string;
553
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
554
- analyticsId?: string | undefined;
555
- control?: string | undefined;
556
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
557
- emptyMessage?: string | undefined;
558
- }>;
559
- export declare const summarySummariserSchema: z.ZodObject<{
560
- defaultTitle: z.ZodOptional<z.ZodString>;
561
- defaultDescription: z.ZodOptional<z.ZodString>;
562
- defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
843
+ description: z.ZodOptional<z.ZodString>;
844
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
563
845
  name: z.ZodString;
564
846
  }, "strip", z.ZodTypeAny, {
565
847
  name: string;
@@ -572,7 +854,7 @@ export declare const summarySummariserSchema: z.ZodObject<{
572
854
  }, {
573
855
  text: string;
574
856
  }>]>>;
575
- defaultImage: z.ZodOptional<z.ZodObject<{
857
+ image: z.ZodOptional<z.ZodObject<{
576
858
  text: z.ZodOptional<z.ZodString>;
577
859
  url: z.ZodOptional<z.ZodString>;
578
860
  uri: z.ZodOptional<z.ZodString>;
@@ -588,49 +870,99 @@ export declare const summarySummariserSchema: z.ZodObject<{
588
870
  uri?: string | undefined;
589
871
  accessibilityDescription?: string | undefined;
590
872
  }>>;
591
- providesTitle: z.ZodOptional<z.ZodBoolean>;
592
- providesDescription: z.ZodOptional<z.ZodBoolean>;
593
- providesIcon: z.ZodOptional<z.ZodBoolean>;
594
- providesImage: z.ZodOptional<z.ZodBoolean>;
873
+ value: z.ZodObject<{
874
+ url: z.ZodString;
875
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
876
+ param: z.ZodString;
877
+ query: z.ZodString;
878
+ }, "strip", z.ZodTypeAny, {
879
+ url: string;
880
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
881
+ param: string;
882
+ query: string;
883
+ }, {
884
+ url: string;
885
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
886
+ param: string;
887
+ query: string;
888
+ }>;
595
889
  }, "strip", z.ZodTypeAny, {
596
- providesTitle?: boolean | undefined;
597
- providesDescription?: boolean | undefined;
598
- providesIcon?: boolean | undefined;
599
- providesImage?: boolean | undefined;
600
- defaultTitle?: string | undefined;
601
- defaultDescription?: string | undefined;
602
- defaultIcon?: {
603
- text: string;
604
- } | {
605
- name: string;
606
- } | undefined;
607
- defaultImage?: {
890
+ type: "search";
891
+ title: string;
892
+ value: {
893
+ url: string;
894
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
895
+ param: string;
896
+ query: string;
897
+ };
898
+ image?: {
608
899
  url?: string | undefined;
609
900
  text?: string | undefined;
610
901
  uri?: string | undefined;
611
902
  accessibilityDescription?: string | undefined;
612
903
  } | undefined;
613
- }, {
614
- providesTitle?: boolean | undefined;
615
- providesDescription?: boolean | undefined;
616
- providesIcon?: boolean | undefined;
617
- providesImage?: boolean | undefined;
618
- defaultTitle?: string | undefined;
619
- defaultDescription?: string | undefined;
620
- defaultIcon?: {
621
- text: string;
622
- } | {
904
+ description?: string | undefined;
905
+ icon?: {
623
906
  name: string;
907
+ } | {
908
+ text: string;
624
909
  } | undefined;
625
- defaultImage?: {
910
+ }, {
911
+ type: "search";
912
+ title: string;
913
+ value: {
914
+ url: string;
915
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
916
+ param: string;
917
+ query: string;
918
+ };
919
+ image?: {
626
920
  url?: string | undefined;
627
921
  text?: string | undefined;
628
922
  uri?: string | undefined;
629
923
  accessibilityDescription?: string | undefined;
630
924
  } | undefined;
925
+ description?: string | undefined;
926
+ icon?: {
927
+ name: string;
928
+ } | {
929
+ text: string;
930
+ } | undefined;
631
931
  }>;
632
- export declare const containerBehaviorSchema: z.ZodObject<{
633
- action: z.ZodOptional<z.ZodObject<{
932
+ export declare const searchResultActionSchema: z.ZodObject<{
933
+ type: z.ZodLiteral<"action">;
934
+ title: z.ZodString;
935
+ description: z.ZodOptional<z.ZodString>;
936
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
937
+ name: z.ZodString;
938
+ }, "strip", z.ZodTypeAny, {
939
+ name: string;
940
+ }, {
941
+ name: string;
942
+ }>, z.ZodObject<{
943
+ text: z.ZodString;
944
+ }, "strip", z.ZodTypeAny, {
945
+ text: string;
946
+ }, {
947
+ text: string;
948
+ }>]>>;
949
+ image: z.ZodOptional<z.ZodObject<{
950
+ text: z.ZodOptional<z.ZodString>;
951
+ url: z.ZodOptional<z.ZodString>;
952
+ uri: z.ZodOptional<z.ZodString>;
953
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
954
+ }, "strip", z.ZodTypeAny, {
955
+ url?: string | undefined;
956
+ text?: string | undefined;
957
+ uri?: string | undefined;
958
+ accessibilityDescription?: string | undefined;
959
+ }, {
960
+ url?: string | undefined;
961
+ text?: string | undefined;
962
+ uri?: string | undefined;
963
+ accessibilityDescription?: string | undefined;
964
+ }>>;
965
+ value: z.ZodObject<{
634
966
  title: z.ZodOptional<z.ZodString>;
635
967
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
636
968
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -672,16 +1004,11 @@ export declare const containerBehaviorSchema: z.ZodObject<{
672
1004
  result?: JsonElement | undefined;
673
1005
  data?: JsonElement | undefined;
674
1006
  skipValidation?: boolean | undefined;
675
- }>>;
676
- link: z.ZodOptional<z.ZodObject<{
677
- url: z.ZodString;
678
- }, "strip", z.ZodTypeAny, {
679
- url: string;
680
- }, {
681
- url: string;
682
- }>>;
1007
+ }>;
683
1008
  }, "strip", z.ZodTypeAny, {
684
- action?: {
1009
+ type: "action";
1010
+ title: string;
1011
+ value: {
685
1012
  url?: string | undefined;
686
1013
  $id?: string | undefined;
687
1014
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -695,12 +1022,23 @@ export declare const containerBehaviorSchema: z.ZodObject<{
695
1022
  result?: JsonElement | undefined;
696
1023
  data?: JsonElement | undefined;
697
1024
  skipValidation?: boolean | undefined;
1025
+ };
1026
+ image?: {
1027
+ url?: string | undefined;
1028
+ text?: string | undefined;
1029
+ uri?: string | undefined;
1030
+ accessibilityDescription?: string | undefined;
698
1031
  } | undefined;
699
- link?: {
700
- url: string;
1032
+ description?: string | undefined;
1033
+ icon?: {
1034
+ name: string;
1035
+ } | {
1036
+ text: string;
701
1037
  } | undefined;
702
1038
  }, {
703
- action?: {
1039
+ type: "action";
1040
+ title: string;
1041
+ value: {
704
1042
  url?: string | undefined;
705
1043
  $id?: string | undefined;
706
1044
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -714,13 +1052,21 @@ export declare const containerBehaviorSchema: z.ZodObject<{
714
1052
  result?: JsonElement | undefined;
715
1053
  data?: JsonElement | undefined;
716
1054
  skipValidation?: boolean | undefined;
1055
+ };
1056
+ image?: {
1057
+ url?: string | undefined;
1058
+ text?: string | undefined;
1059
+ uri?: string | undefined;
1060
+ accessibilityDescription?: string | undefined;
717
1061
  } | undefined;
718
- link?: {
719
- url: string;
1062
+ description?: string | undefined;
1063
+ icon?: {
1064
+ name: string;
1065
+ } | {
1066
+ text: string;
720
1067
  } | undefined;
721
1068
  }>;
722
- export declare const navigationBackBehaviorSchema: z.ZodObject<{
723
- title: z.ZodOptional<z.ZodString>;
1069
+ export declare const actionResponseBodySchema: z.ZodObject<{
724
1070
  action: z.ZodObject<{
725
1071
  title: z.ZodOptional<z.ZodString>;
726
1072
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -780,7 +1126,6 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
780
1126
  data?: JsonElement | undefined;
781
1127
  skipValidation?: boolean | undefined;
782
1128
  };
783
- title?: string | undefined;
784
1129
  }, {
785
1130
  action: {
786
1131
  url?: string | undefined;
@@ -797,154 +1142,25 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
797
1142
  data?: JsonElement | undefined;
798
1143
  skipValidation?: boolean | undefined;
799
1144
  };
800
- title?: string | undefined;
801
1145
  }>;
802
- export declare const suggestionsValueSchema: z.ZodObject<{
803
- label: z.ZodString;
804
- value: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
805
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
806
- name: z.ZodString;
807
- }, "strip", z.ZodTypeAny, {
808
- name: string;
809
- }, {
810
- name: string;
811
- }>, z.ZodObject<{
812
- text: z.ZodString;
813
- }, "strip", z.ZodTypeAny, {
814
- text: string;
815
- }, {
816
- text: string;
817
- }>]>>;
818
- image: z.ZodOptional<z.ZodObject<{
819
- text: z.ZodOptional<z.ZodString>;
820
- url: z.ZodOptional<z.ZodString>;
821
- uri: z.ZodOptional<z.ZodString>;
822
- accessibilityDescription: z.ZodOptional<z.ZodString>;
823
- }, "strip", z.ZodTypeAny, {
824
- url?: string | undefined;
825
- text?: string | undefined;
826
- uri?: string | undefined;
827
- accessibilityDescription?: string | undefined;
828
- }, {
829
- url?: string | undefined;
830
- text?: string | undefined;
831
- uri?: string | undefined;
832
- accessibilityDescription?: string | undefined;
833
- }>>;
834
- tag: z.ZodOptional<z.ZodString>;
835
- analyticsId: z.ZodOptional<z.ZodString>;
1146
+ export declare const errorResponseBodySchema: z.ZodObject<{
1147
+ refreshFormUrl: z.ZodOptional<z.ZodString>;
1148
+ analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1149
+ error: z.ZodOptional<z.ZodString>;
1150
+ validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1151
+ refreshUrl: z.ZodOptional<z.ZodString>;
836
1152
  }, "strip", z.ZodTypeAny, {
837
- value: JsonElement;
838
- label: string;
839
- image?: {
840
- url?: string | undefined;
841
- text?: string | undefined;
842
- uri?: string | undefined;
843
- accessibilityDescription?: string | undefined;
844
- } | undefined;
845
- analyticsId?: string | undefined;
846
- icon?: {
847
- text: string;
848
- } | {
849
- name: string;
850
- } | undefined;
851
- tag?: string | undefined;
1153
+ refreshUrl?: string | undefined;
1154
+ refreshFormUrl?: string | undefined;
1155
+ analytics?: Record<string, string> | undefined;
1156
+ validation?: JsonElement | undefined;
1157
+ error?: string | undefined;
852
1158
  }, {
853
- value: JsonElement;
854
- label: string;
855
- image?: {
856
- url?: string | undefined;
857
- text?: string | undefined;
858
- uri?: string | undefined;
859
- accessibilityDescription?: string | undefined;
860
- } | undefined;
861
- analyticsId?: string | undefined;
862
- icon?: {
863
- text: string;
864
- } | {
865
- name: string;
866
- } | undefined;
867
- tag?: string | undefined;
868
- }>;
869
- export declare const actionBehaviorSchema: z.ZodObject<{
870
- type: z.ZodLiteral<"action">;
871
- action: z.ZodObject<{
872
- title: z.ZodOptional<z.ZodString>;
873
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
874
- disabled: z.ZodOptional<z.ZodBoolean>;
875
- $id: z.ZodOptional<z.ZodString>;
876
- $ref: z.ZodOptional<z.ZodString>;
877
- id: z.ZodOptional<z.ZodString>;
878
- url: z.ZodOptional<z.ZodString>;
879
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
880
- exit: z.ZodOptional<z.ZodBoolean>;
881
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
882
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
883
- timeout: z.ZodOptional<z.ZodNumber>;
884
- skipValidation: z.ZodOptional<z.ZodBoolean>;
885
- }, "strip", z.ZodTypeAny, {
886
- url?: string | undefined;
887
- $id?: string | undefined;
888
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
889
- disabled?: boolean | undefined;
890
- title?: string | undefined;
891
- timeout?: number | undefined;
892
- id?: string | undefined;
893
- $ref?: string | undefined;
894
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
895
- exit?: boolean | undefined;
896
- result?: JsonElement | undefined;
897
- data?: JsonElement | undefined;
898
- skipValidation?: boolean | undefined;
899
- }, {
900
- url?: string | undefined;
901
- $id?: string | undefined;
902
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
903
- disabled?: boolean | undefined;
904
- title?: string | undefined;
905
- timeout?: number | undefined;
906
- id?: string | undefined;
907
- $ref?: string | undefined;
908
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
909
- exit?: boolean | undefined;
910
- result?: JsonElement | undefined;
911
- data?: JsonElement | undefined;
912
- skipValidation?: boolean | undefined;
913
- }>;
914
- }, "strip", z.ZodTypeAny, {
915
- action: {
916
- url?: string | undefined;
917
- $id?: string | undefined;
918
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
919
- disabled?: boolean | undefined;
920
- title?: string | undefined;
921
- timeout?: number | undefined;
922
- id?: string | undefined;
923
- $ref?: string | undefined;
924
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
925
- exit?: boolean | undefined;
926
- result?: JsonElement | undefined;
927
- data?: JsonElement | undefined;
928
- skipValidation?: boolean | undefined;
929
- };
930
- type: "action";
931
- }, {
932
- action: {
933
- url?: string | undefined;
934
- $id?: string | undefined;
935
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
936
- disabled?: boolean | undefined;
937
- title?: string | undefined;
938
- timeout?: number | undefined;
939
- id?: string | undefined;
940
- $ref?: string | undefined;
941
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
942
- exit?: boolean | undefined;
943
- result?: JsonElement | undefined;
944
- data?: JsonElement | undefined;
945
- skipValidation?: boolean | undefined;
946
- };
947
- type: "action";
1159
+ refreshUrl?: string | undefined;
1160
+ refreshFormUrl?: string | undefined;
1161
+ analytics?: Record<string, string> | undefined;
1162
+ validation?: JsonElement | undefined;
1163
+ error?: string | undefined;
948
1164
  }>;
949
1165
  export declare const suggestionsSchema: z.ZodObject<{
950
1166
  values: z.ZodArray<z.ZodObject<{
@@ -992,9 +1208,9 @@ export declare const suggestionsSchema: z.ZodObject<{
992
1208
  } | undefined;
993
1209
  analyticsId?: string | undefined;
994
1210
  icon?: {
995
- text: string;
996
- } | {
997
1211
  name: string;
1212
+ } | {
1213
+ text: string;
998
1214
  } | undefined;
999
1215
  tag?: string | undefined;
1000
1216
  }, {
@@ -1008,9 +1224,9 @@ export declare const suggestionsSchema: z.ZodObject<{
1008
1224
  } | undefined;
1009
1225
  analyticsId?: string | undefined;
1010
1226
  icon?: {
1011
- text: string;
1012
- } | {
1013
1227
  name: string;
1228
+ } | {
1229
+ text: string;
1014
1230
  } | undefined;
1015
1231
  tag?: string | undefined;
1016
1232
  }>, "many">;
@@ -1026,9 +1242,9 @@ export declare const suggestionsSchema: z.ZodObject<{
1026
1242
  } | undefined;
1027
1243
  analyticsId?: string | undefined;
1028
1244
  icon?: {
1029
- text: string;
1030
- } | {
1031
1245
  name: string;
1246
+ } | {
1247
+ text: string;
1032
1248
  } | undefined;
1033
1249
  tag?: string | undefined;
1034
1250
  }[];
@@ -1044,14 +1260,15 @@ export declare const suggestionsSchema: z.ZodObject<{
1044
1260
  } | undefined;
1045
1261
  analyticsId?: string | undefined;
1046
1262
  icon?: {
1047
- text: string;
1048
- } | {
1049
1263
  name: string;
1264
+ } | {
1265
+ text: string;
1050
1266
  } | undefined;
1051
1267
  tag?: string | undefined;
1052
1268
  }[];
1053
1269
  }>;
1054
- export declare const actionResponseBodySchema: z.ZodObject<{
1270
+ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1271
+ title: z.ZodOptional<z.ZodString>;
1055
1272
  action: z.ZodObject<{
1056
1273
  title: z.ZodOptional<z.ZodString>;
1057
1274
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1111,6 +1328,7 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1111
1328
  data?: JsonElement | undefined;
1112
1329
  skipValidation?: boolean | undefined;
1113
1330
  };
1331
+ title?: string | undefined;
1114
1332
  }, {
1115
1333
  action: {
1116
1334
  url?: string | undefined;
@@ -1127,41 +1345,11 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1127
1345
  data?: JsonElement | undefined;
1128
1346
  skipValidation?: boolean | undefined;
1129
1347
  };
1348
+ title?: string | undefined;
1130
1349
  }>;
1131
- export declare const searchResultActionSchema: z.ZodObject<{
1350
+ export declare const actionBehaviorSchema: z.ZodObject<{
1132
1351
  type: z.ZodLiteral<"action">;
1133
- title: z.ZodString;
1134
- description: z.ZodOptional<z.ZodString>;
1135
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1136
- name: z.ZodString;
1137
- }, "strip", z.ZodTypeAny, {
1138
- name: string;
1139
- }, {
1140
- name: string;
1141
- }>, z.ZodObject<{
1142
- text: z.ZodString;
1143
- }, "strip", z.ZodTypeAny, {
1144
- text: string;
1145
- }, {
1146
- text: string;
1147
- }>]>>;
1148
- image: z.ZodOptional<z.ZodObject<{
1149
- text: z.ZodOptional<z.ZodString>;
1150
- url: z.ZodOptional<z.ZodString>;
1151
- uri: z.ZodOptional<z.ZodString>;
1152
- accessibilityDescription: z.ZodOptional<z.ZodString>;
1153
- }, "strip", z.ZodTypeAny, {
1154
- url?: string | undefined;
1155
- text?: string | undefined;
1156
- uri?: string | undefined;
1157
- accessibilityDescription?: string | undefined;
1158
- }, {
1159
- url?: string | undefined;
1160
- text?: string | undefined;
1161
- uri?: string | undefined;
1162
- accessibilityDescription?: string | undefined;
1163
- }>>;
1164
- value: z.ZodObject<{
1352
+ action: z.ZodObject<{
1165
1353
  title: z.ZodOptional<z.ZodString>;
1166
1354
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1167
1355
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -1205,9 +1393,7 @@ export declare const searchResultActionSchema: z.ZodObject<{
1205
1393
  skipValidation?: boolean | undefined;
1206
1394
  }>;
1207
1395
  }, "strip", z.ZodTypeAny, {
1208
- type: "action";
1209
- title: string;
1210
- value: {
1396
+ action: {
1211
1397
  url?: string | undefined;
1212
1398
  $id?: string | undefined;
1213
1399
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -1222,22 +1408,9 @@ export declare const searchResultActionSchema: z.ZodObject<{
1222
1408
  data?: JsonElement | undefined;
1223
1409
  skipValidation?: boolean | undefined;
1224
1410
  };
1225
- image?: {
1226
- url?: string | undefined;
1227
- text?: string | undefined;
1228
- uri?: string | undefined;
1229
- accessibilityDescription?: string | undefined;
1230
- } | undefined;
1231
- description?: string | undefined;
1232
- icon?: {
1233
- text: string;
1234
- } | {
1235
- name: string;
1236
- } | undefined;
1237
- }, {
1238
1411
  type: "action";
1239
- title: string;
1240
- value: {
1412
+ }, {
1413
+ action: {
1241
1414
  url?: string | undefined;
1242
1415
  $id?: string | undefined;
1243
1416
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -1252,509 +1425,215 @@ export declare const searchResultActionSchema: z.ZodObject<{
1252
1425
  data?: JsonElement | undefined;
1253
1426
  skipValidation?: boolean | undefined;
1254
1427
  };
1255
- image?: {
1256
- url?: string | undefined;
1257
- text?: string | undefined;
1258
- uri?: string | undefined;
1259
- accessibilityDescription?: string | undefined;
1260
- } | undefined;
1261
- description?: string | undefined;
1262
- icon?: {
1263
- text: string;
1264
- } | {
1265
- name: string;
1266
- } | undefined;
1428
+ type: "action";
1267
1429
  }>;
1268
- export declare const searchResultSearchSchema: z.ZodObject<{
1269
- type: z.ZodLiteral<"search">;
1270
- title: z.ZodString;
1271
- description: z.ZodOptional<z.ZodString>;
1272
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1273
- name: z.ZodString;
1274
- }, "strip", z.ZodTypeAny, {
1275
- name: string;
1276
- }, {
1277
- name: string;
1278
- }>, z.ZodObject<{
1279
- text: z.ZodString;
1280
- }, "strip", z.ZodTypeAny, {
1281
- text: string;
1282
- }, {
1283
- text: string;
1284
- }>]>>;
1285
- image: z.ZodOptional<z.ZodObject<{
1286
- text: z.ZodOptional<z.ZodString>;
1430
+ export declare const containerBehaviorSchema: z.ZodObject<{
1431
+ action: z.ZodOptional<z.ZodObject<{
1432
+ title: z.ZodOptional<z.ZodString>;
1433
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1434
+ disabled: z.ZodOptional<z.ZodBoolean>;
1435
+ $id: z.ZodOptional<z.ZodString>;
1436
+ $ref: z.ZodOptional<z.ZodString>;
1437
+ id: z.ZodOptional<z.ZodString>;
1287
1438
  url: z.ZodOptional<z.ZodString>;
1288
- uri: z.ZodOptional<z.ZodString>;
1289
- accessibilityDescription: z.ZodOptional<z.ZodString>;
1439
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1440
+ exit: z.ZodOptional<z.ZodBoolean>;
1441
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1442
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1443
+ timeout: z.ZodOptional<z.ZodNumber>;
1444
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1290
1445
  }, "strip", z.ZodTypeAny, {
1291
1446
  url?: string | undefined;
1292
- text?: string | undefined;
1293
- uri?: string | undefined;
1294
- accessibilityDescription?: string | undefined;
1447
+ $id?: string | undefined;
1448
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1449
+ disabled?: boolean | undefined;
1450
+ title?: string | undefined;
1451
+ timeout?: number | undefined;
1452
+ id?: string | undefined;
1453
+ $ref?: string | undefined;
1454
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1455
+ exit?: boolean | undefined;
1456
+ result?: JsonElement | undefined;
1457
+ data?: JsonElement | undefined;
1458
+ skipValidation?: boolean | undefined;
1295
1459
  }, {
1296
1460
  url?: string | undefined;
1297
- text?: string | undefined;
1298
- uri?: string | undefined;
1299
- accessibilityDescription?: string | undefined;
1461
+ $id?: string | undefined;
1462
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1463
+ disabled?: boolean | undefined;
1464
+ title?: string | undefined;
1465
+ timeout?: number | undefined;
1466
+ id?: string | undefined;
1467
+ $ref?: string | undefined;
1468
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1469
+ exit?: boolean | undefined;
1470
+ result?: JsonElement | undefined;
1471
+ data?: JsonElement | undefined;
1472
+ skipValidation?: boolean | undefined;
1300
1473
  }>>;
1301
- value: z.ZodObject<{
1302
- url: z.ZodString;
1303
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
1304
- param: z.ZodString;
1305
- query: z.ZodString;
1306
- }, "strip", z.ZodTypeAny, {
1307
- url: string;
1308
- param: string;
1309
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1310
- query: string;
1311
- }, {
1312
- url: string;
1313
- param: string;
1314
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1315
- query: string;
1316
- }>;
1317
- }, "strip", z.ZodTypeAny, {
1318
- type: "search";
1319
- title: string;
1320
- value: {
1321
- url: string;
1322
- param: string;
1323
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1324
- query: string;
1325
- };
1326
- image?: {
1327
- url?: string | undefined;
1328
- text?: string | undefined;
1329
- uri?: string | undefined;
1330
- accessibilityDescription?: string | undefined;
1331
- } | undefined;
1332
- description?: string | undefined;
1333
- icon?: {
1334
- text: string;
1335
- } | {
1336
- name: string;
1337
- } | undefined;
1338
- }, {
1339
- type: "search";
1340
- title: string;
1341
- value: {
1342
- url: string;
1343
- param: string;
1344
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1345
- query: string;
1346
- };
1347
- image?: {
1348
- url?: string | undefined;
1349
- text?: string | undefined;
1350
- uri?: string | undefined;
1351
- accessibilityDescription?: string | undefined;
1352
- } | undefined;
1353
- description?: string | undefined;
1354
- icon?: {
1355
- text: string;
1356
- } | {
1357
- name: string;
1358
- } | undefined;
1359
- }>;
1360
- export declare const avatarContentSchema: z.ZodUnion<[z.ZodObject<{
1361
- type: z.ZodLiteral<"text">;
1362
- text: z.ZodString;
1363
- badgeUri: z.ZodOptional<z.ZodString>;
1364
- }, "strip", z.ZodTypeAny, {
1365
- type: "text";
1366
- text: string;
1367
- badgeUri?: string | undefined;
1368
- }, {
1369
- type: "text";
1370
- text: string;
1371
- badgeUri?: string | undefined;
1372
- }>, z.ZodObject<{
1373
- type: z.ZodLiteral<"uri">;
1374
- uri: z.ZodString;
1375
- badgeUri: z.ZodOptional<z.ZodString>;
1376
- }, "strip", z.ZodTypeAny, {
1377
- type: "uri";
1378
- uri: string;
1379
- badgeUri?: string | undefined;
1380
- }, {
1381
- type: "uri";
1382
- uri: string;
1383
- badgeUri?: string | undefined;
1384
- }>]>;
1385
- export declare const instructionsLayoutSchema: z.ZodObject<{
1386
- type: z.ZodLiteral<"instructions">;
1387
- title: z.ZodOptional<z.ZodString>;
1388
- items: z.ZodArray<z.ZodObject<{
1389
- text: z.ZodString;
1390
- context: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
1391
- tag: z.ZodOptional<z.ZodString>;
1392
- analyticsId: z.ZodOptional<z.ZodString>;
1393
- }, "strip", z.ZodTypeAny, {
1394
- text: string;
1395
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1396
- analyticsId?: string | undefined;
1397
- tag?: string | undefined;
1398
- }, {
1399
- text: string;
1400
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1401
- analyticsId?: string | undefined;
1402
- tag?: string | undefined;
1403
- }>, "many">;
1404
- control: z.ZodOptional<z.ZodString>;
1405
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1406
- analyticsId: z.ZodOptional<z.ZodString>;
1407
- }, "strip", z.ZodTypeAny, {
1408
- type: "instructions";
1409
- items: {
1410
- text: string;
1411
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1412
- analyticsId?: string | undefined;
1413
- tag?: string | undefined;
1414
- }[];
1415
- analyticsId?: string | undefined;
1416
- title?: string | undefined;
1417
- control?: string | undefined;
1418
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1419
- }, {
1420
- type: "instructions";
1421
- items: {
1422
- text: string;
1423
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1424
- analyticsId?: string | undefined;
1425
- tag?: string | undefined;
1426
- }[];
1427
- analyticsId?: string | undefined;
1428
- title?: string | undefined;
1429
- control?: string | undefined;
1430
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1431
- }>;
1432
- export declare const navigationSchema: z.ZodObject<{
1433
- backButton: z.ZodOptional<z.ZodObject<{
1434
- title: z.ZodOptional<z.ZodString>;
1435
- action: z.ZodObject<{
1436
- title: z.ZodOptional<z.ZodString>;
1437
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1438
- disabled: z.ZodOptional<z.ZodBoolean>;
1439
- $id: z.ZodOptional<z.ZodString>;
1440
- $ref: z.ZodOptional<z.ZodString>;
1441
- id: z.ZodOptional<z.ZodString>;
1442
- url: z.ZodOptional<z.ZodString>;
1443
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1444
- exit: z.ZodOptional<z.ZodBoolean>;
1445
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1446
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1447
- timeout: z.ZodOptional<z.ZodNumber>;
1448
- skipValidation: z.ZodOptional<z.ZodBoolean>;
1449
- }, "strip", z.ZodTypeAny, {
1450
- url?: string | undefined;
1451
- $id?: string | undefined;
1452
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1453
- disabled?: boolean | undefined;
1454
- title?: string | undefined;
1455
- timeout?: number | undefined;
1456
- id?: string | undefined;
1457
- $ref?: string | undefined;
1458
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1459
- exit?: boolean | undefined;
1460
- result?: JsonElement | undefined;
1461
- data?: JsonElement | undefined;
1462
- skipValidation?: boolean | undefined;
1463
- }, {
1464
- url?: string | undefined;
1465
- $id?: string | undefined;
1466
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1467
- disabled?: boolean | undefined;
1468
- title?: string | undefined;
1469
- timeout?: number | undefined;
1470
- id?: string | undefined;
1471
- $ref?: string | undefined;
1472
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1473
- exit?: boolean | undefined;
1474
- result?: JsonElement | undefined;
1475
- data?: JsonElement | undefined;
1476
- skipValidation?: boolean | undefined;
1477
- }>;
1478
- }, "strip", z.ZodTypeAny, {
1479
- action: {
1480
- url?: string | undefined;
1481
- $id?: string | undefined;
1482
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1483
- disabled?: boolean | undefined;
1484
- title?: string | undefined;
1485
- timeout?: number | undefined;
1486
- id?: string | undefined;
1487
- $ref?: string | undefined;
1488
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1489
- exit?: boolean | undefined;
1490
- result?: JsonElement | undefined;
1491
- data?: JsonElement | undefined;
1492
- skipValidation?: boolean | undefined;
1493
- };
1494
- title?: string | undefined;
1495
- }, {
1496
- action: {
1497
- url?: string | undefined;
1498
- $id?: string | undefined;
1499
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1500
- disabled?: boolean | undefined;
1501
- title?: string | undefined;
1502
- timeout?: number | undefined;
1503
- id?: string | undefined;
1504
- $ref?: string | undefined;
1505
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1506
- exit?: boolean | undefined;
1507
- result?: JsonElement | undefined;
1508
- data?: JsonElement | undefined;
1509
- skipValidation?: boolean | undefined;
1510
- };
1511
- title?: string | undefined;
1512
- }>>;
1513
- back: z.ZodOptional<z.ZodObject<{
1514
- title: z.ZodOptional<z.ZodString>;
1515
- action: z.ZodObject<{
1516
- title: z.ZodOptional<z.ZodString>;
1517
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1518
- disabled: z.ZodOptional<z.ZodBoolean>;
1519
- $id: z.ZodOptional<z.ZodString>;
1520
- $ref: z.ZodOptional<z.ZodString>;
1521
- id: z.ZodOptional<z.ZodString>;
1522
- url: z.ZodOptional<z.ZodString>;
1523
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1524
- exit: z.ZodOptional<z.ZodBoolean>;
1525
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1526
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1527
- timeout: z.ZodOptional<z.ZodNumber>;
1528
- skipValidation: z.ZodOptional<z.ZodBoolean>;
1529
- }, "strip", z.ZodTypeAny, {
1530
- url?: string | undefined;
1531
- $id?: string | undefined;
1532
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1533
- disabled?: boolean | undefined;
1534
- title?: string | undefined;
1535
- timeout?: number | undefined;
1536
- id?: string | undefined;
1537
- $ref?: string | undefined;
1538
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1539
- exit?: boolean | undefined;
1540
- result?: JsonElement | undefined;
1541
- data?: JsonElement | undefined;
1542
- skipValidation?: boolean | undefined;
1543
- }, {
1544
- url?: string | undefined;
1545
- $id?: string | undefined;
1546
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1547
- disabled?: boolean | undefined;
1548
- title?: string | undefined;
1549
- timeout?: number | undefined;
1550
- id?: string | undefined;
1551
- $ref?: string | undefined;
1552
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1553
- exit?: boolean | undefined;
1554
- result?: JsonElement | undefined;
1555
- data?: JsonElement | undefined;
1556
- skipValidation?: boolean | undefined;
1557
- }>;
1558
- }, "strip", z.ZodTypeAny, {
1559
- action: {
1560
- url?: string | undefined;
1561
- $id?: string | undefined;
1562
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1563
- disabled?: boolean | undefined;
1564
- title?: string | undefined;
1565
- timeout?: number | undefined;
1566
- id?: string | undefined;
1567
- $ref?: string | undefined;
1568
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1569
- exit?: boolean | undefined;
1570
- result?: JsonElement | undefined;
1571
- data?: JsonElement | undefined;
1572
- skipValidation?: boolean | undefined;
1573
- };
1574
- title?: string | undefined;
1575
- }, {
1576
- action: {
1577
- url?: string | undefined;
1578
- $id?: string | undefined;
1579
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1580
- disabled?: boolean | undefined;
1581
- title?: string | undefined;
1582
- timeout?: number | undefined;
1583
- id?: string | undefined;
1584
- $ref?: string | undefined;
1585
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1586
- exit?: boolean | undefined;
1587
- result?: JsonElement | undefined;
1588
- data?: JsonElement | undefined;
1589
- skipValidation?: boolean | undefined;
1590
- };
1591
- title?: string | undefined;
1592
- }>>;
1593
- stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
1594
- }, "strip", z.ZodTypeAny, {
1595
- back?: {
1596
- action: {
1597
- url?: string | undefined;
1598
- $id?: string | undefined;
1599
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1600
- disabled?: boolean | undefined;
1601
- title?: string | undefined;
1602
- timeout?: number | undefined;
1603
- id?: string | undefined;
1604
- $ref?: string | undefined;
1605
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1606
- exit?: boolean | undefined;
1607
- result?: JsonElement | undefined;
1608
- data?: JsonElement | undefined;
1609
- skipValidation?: boolean | undefined;
1610
- };
1611
- title?: string | undefined;
1612
- } | undefined;
1613
- backButton?: {
1614
- action: {
1615
- url?: string | undefined;
1616
- $id?: string | undefined;
1617
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1618
- disabled?: boolean | undefined;
1619
- title?: string | undefined;
1620
- timeout?: number | undefined;
1621
- id?: string | undefined;
1622
- $ref?: string | undefined;
1623
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1624
- exit?: boolean | undefined;
1625
- result?: JsonElement | undefined;
1626
- data?: JsonElement | undefined;
1627
- skipValidation?: boolean | undefined;
1628
- };
1474
+ link: z.ZodOptional<z.ZodObject<{
1475
+ url: z.ZodString;
1476
+ }, "strip", z.ZodTypeAny, {
1477
+ url: string;
1478
+ }, {
1479
+ url: string;
1480
+ }>>;
1481
+ }, "strip", z.ZodTypeAny, {
1482
+ action?: {
1483
+ url?: string | undefined;
1484
+ $id?: string | undefined;
1485
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1486
+ disabled?: boolean | undefined;
1629
1487
  title?: string | undefined;
1488
+ timeout?: number | undefined;
1489
+ id?: string | undefined;
1490
+ $ref?: string | undefined;
1491
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1492
+ exit?: boolean | undefined;
1493
+ result?: JsonElement | undefined;
1494
+ data?: JsonElement | undefined;
1495
+ skipValidation?: boolean | undefined;
1496
+ } | undefined;
1497
+ link?: {
1498
+ url: string;
1630
1499
  } | undefined;
1631
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
1632
1500
  }, {
1633
- back?: {
1634
- action: {
1635
- url?: string | undefined;
1636
- $id?: string | undefined;
1637
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1638
- disabled?: boolean | undefined;
1639
- title?: string | undefined;
1640
- timeout?: number | undefined;
1641
- id?: string | undefined;
1642
- $ref?: string | undefined;
1643
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1644
- exit?: boolean | undefined;
1645
- result?: JsonElement | undefined;
1646
- data?: JsonElement | undefined;
1647
- skipValidation?: boolean | undefined;
1648
- };
1501
+ action?: {
1502
+ url?: string | undefined;
1503
+ $id?: string | undefined;
1504
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1505
+ disabled?: boolean | undefined;
1649
1506
  title?: string | undefined;
1507
+ timeout?: number | undefined;
1508
+ id?: string | undefined;
1509
+ $ref?: string | undefined;
1510
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1511
+ exit?: boolean | undefined;
1512
+ result?: JsonElement | undefined;
1513
+ data?: JsonElement | undefined;
1514
+ skipValidation?: boolean | undefined;
1650
1515
  } | undefined;
1651
- backButton?: {
1652
- action: {
1653
- url?: string | undefined;
1654
- $id?: string | undefined;
1655
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1656
- disabled?: boolean | undefined;
1657
- title?: string | undefined;
1658
- timeout?: number | undefined;
1659
- id?: string | undefined;
1660
- $ref?: string | undefined;
1661
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1662
- exit?: boolean | undefined;
1663
- result?: JsonElement | undefined;
1664
- data?: JsonElement | undefined;
1665
- skipValidation?: boolean | undefined;
1666
- };
1667
- title?: string | undefined;
1516
+ link?: {
1517
+ url: string;
1668
1518
  } | undefined;
1669
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
1670
1519
  }>;
1671
- export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
1672
- providesTitle: z.ZodOptional<z.ZodBoolean>;
1673
- providesDescription: z.ZodOptional<z.ZodBoolean>;
1674
- providesIcon: z.ZodOptional<z.ZodBoolean>;
1675
- providesImage: z.ZodOptional<z.ZodBoolean>;
1676
- }, "strip", z.ZodTypeAny, {
1677
- providesTitle?: boolean | undefined;
1678
- providesDescription?: boolean | undefined;
1679
- providesIcon?: boolean | undefined;
1680
- providesImage?: boolean | undefined;
1681
- }, {
1682
- providesTitle?: boolean | undefined;
1683
- providesDescription?: boolean | undefined;
1684
- providesIcon?: boolean | undefined;
1685
- providesImage?: boolean | undefined;
1686
- }>, z.ZodObject<{
1687
- defaultTitle: z.ZodOptional<z.ZodString>;
1688
- defaultDescription: z.ZodOptional<z.ZodString>;
1689
- defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1690
- name: z.ZodString;
1520
+ export declare const mediaAvatarSchema: z.ZodObject<{
1521
+ type: z.ZodLiteral<"avatar">;
1522
+ content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1523
+ type: z.ZodLiteral<"text">;
1524
+ text: z.ZodString;
1525
+ badgeUri: z.ZodOptional<z.ZodString>;
1691
1526
  }, "strip", z.ZodTypeAny, {
1692
- name: string;
1527
+ type: "text";
1528
+ text: string;
1529
+ badgeUri?: string | undefined;
1693
1530
  }, {
1694
- name: string;
1531
+ type: "text";
1532
+ text: string;
1533
+ badgeUri?: string | undefined;
1695
1534
  }>, z.ZodObject<{
1535
+ type: z.ZodLiteral<"uri">;
1536
+ uri: z.ZodString;
1537
+ badgeUri: z.ZodOptional<z.ZodString>;
1538
+ }, "strip", z.ZodTypeAny, {
1539
+ type: "uri";
1540
+ uri: string;
1541
+ badgeUri?: string | undefined;
1542
+ }, {
1543
+ type: "uri";
1544
+ uri: string;
1545
+ badgeUri?: string | undefined;
1546
+ }>]>, "many">;
1547
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
1548
+ }, "strip", z.ZodTypeAny, {
1549
+ type: "avatar";
1550
+ content: ({
1551
+ type: "uri";
1552
+ uri: string;
1553
+ badgeUri?: string | undefined;
1554
+ } | {
1555
+ type: "text";
1556
+ text: string;
1557
+ badgeUri?: string | undefined;
1558
+ })[];
1559
+ accessibilityDescription?: string | undefined;
1560
+ }, {
1561
+ type: "avatar";
1562
+ content: ({
1563
+ type: "uri";
1564
+ uri: string;
1565
+ badgeUri?: string | undefined;
1566
+ } | {
1567
+ type: "text";
1568
+ text: string;
1569
+ badgeUri?: string | undefined;
1570
+ })[];
1571
+ accessibilityDescription?: string | undefined;
1572
+ }>;
1573
+ export declare const mediaSchema: z.ZodUnion<[z.ZodObject<{
1574
+ type: z.ZodLiteral<"avatar">;
1575
+ content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1576
+ type: z.ZodLiteral<"text">;
1696
1577
  text: z.ZodString;
1578
+ badgeUri: z.ZodOptional<z.ZodString>;
1697
1579
  }, "strip", z.ZodTypeAny, {
1580
+ type: "text";
1698
1581
  text: string;
1582
+ badgeUri?: string | undefined;
1699
1583
  }, {
1584
+ type: "text";
1700
1585
  text: string;
1701
- }>]>>;
1702
- defaultImage: z.ZodOptional<z.ZodObject<{
1703
- text: z.ZodOptional<z.ZodString>;
1704
- url: z.ZodOptional<z.ZodString>;
1705
- uri: z.ZodOptional<z.ZodString>;
1706
- accessibilityDescription: z.ZodOptional<z.ZodString>;
1586
+ badgeUri?: string | undefined;
1587
+ }>, z.ZodObject<{
1588
+ type: z.ZodLiteral<"uri">;
1589
+ uri: z.ZodString;
1590
+ badgeUri: z.ZodOptional<z.ZodString>;
1707
1591
  }, "strip", z.ZodTypeAny, {
1708
- url?: string | undefined;
1709
- text?: string | undefined;
1710
- uri?: string | undefined;
1711
- accessibilityDescription?: string | undefined;
1592
+ type: "uri";
1593
+ uri: string;
1594
+ badgeUri?: string | undefined;
1712
1595
  }, {
1713
- url?: string | undefined;
1714
- text?: string | undefined;
1715
- uri?: string | undefined;
1716
- accessibilityDescription?: string | undefined;
1717
- }>>;
1718
- providesTitle: z.ZodOptional<z.ZodBoolean>;
1719
- providesDescription: z.ZodOptional<z.ZodBoolean>;
1720
- providesIcon: z.ZodOptional<z.ZodBoolean>;
1721
- providesImage: z.ZodOptional<z.ZodBoolean>;
1596
+ type: "uri";
1597
+ uri: string;
1598
+ badgeUri?: string | undefined;
1599
+ }>]>, "many">;
1600
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
1722
1601
  }, "strip", z.ZodTypeAny, {
1723
- providesTitle?: boolean | undefined;
1724
- providesDescription?: boolean | undefined;
1725
- providesIcon?: boolean | undefined;
1726
- providesImage?: boolean | undefined;
1727
- defaultTitle?: string | undefined;
1728
- defaultDescription?: string | undefined;
1729
- defaultIcon?: {
1730
- text: string;
1602
+ type: "avatar";
1603
+ content: ({
1604
+ type: "uri";
1605
+ uri: string;
1606
+ badgeUri?: string | undefined;
1731
1607
  } | {
1732
- name: string;
1733
- } | undefined;
1734
- defaultImage?: {
1735
- url?: string | undefined;
1736
- text?: string | undefined;
1737
- uri?: string | undefined;
1738
- accessibilityDescription?: string | undefined;
1739
- } | undefined;
1740
- }, {
1741
- providesTitle?: boolean | undefined;
1742
- providesDescription?: boolean | undefined;
1743
- providesIcon?: boolean | undefined;
1744
- providesImage?: boolean | undefined;
1745
- defaultTitle?: string | undefined;
1746
- defaultDescription?: string | undefined;
1747
- defaultIcon?: {
1608
+ type: "text";
1748
1609
  text: string;
1610
+ badgeUri?: string | undefined;
1611
+ })[];
1612
+ accessibilityDescription?: string | undefined;
1613
+ }, {
1614
+ type: "avatar";
1615
+ content: ({
1616
+ type: "uri";
1617
+ uri: string;
1618
+ badgeUri?: string | undefined;
1749
1619
  } | {
1750
- name: string;
1751
- } | undefined;
1752
- defaultImage?: {
1753
- url?: string | undefined;
1754
- text?: string | undefined;
1755
- uri?: string | undefined;
1756
- accessibilityDescription?: string | undefined;
1757
- } | undefined;
1620
+ type: "text";
1621
+ text: string;
1622
+ badgeUri?: string | undefined;
1623
+ })[];
1624
+ accessibilityDescription?: string | undefined;
1625
+ }>, z.ZodObject<{
1626
+ type: z.ZodLiteral<"image">;
1627
+ uri: z.ZodString;
1628
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
1629
+ }, "strip", z.ZodTypeAny, {
1630
+ type: "image";
1631
+ uri: string;
1632
+ accessibilityDescription?: string | undefined;
1633
+ }, {
1634
+ type: "image";
1635
+ uri: string;
1636
+ accessibilityDescription?: string | undefined;
1758
1637
  }>]>;
1759
1638
  export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1760
1639
  type: z.ZodLiteral<"action">;
@@ -1858,9 +1737,9 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1858
1737
  } | undefined;
1859
1738
  description?: string | undefined;
1860
1739
  icon?: {
1861
- text: string;
1862
- } | {
1863
1740
  name: string;
1741
+ } | {
1742
+ text: string;
1864
1743
  } | undefined;
1865
1744
  }, {
1866
1745
  type: "action";
@@ -1887,10 +1766,10 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1887
1766
  accessibilityDescription?: string | undefined;
1888
1767
  } | undefined;
1889
1768
  description?: string | undefined;
1890
- icon?: {
1891
- text: string;
1892
- } | {
1769
+ icon?: {
1893
1770
  name: string;
1771
+ } | {
1772
+ text: string;
1894
1773
  } | undefined;
1895
1774
  }>, z.ZodObject<{
1896
1775
  type: z.ZodLiteral<"search">;
@@ -1932,13 +1811,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1932
1811
  query: z.ZodString;
1933
1812
  }, "strip", z.ZodTypeAny, {
1934
1813
  url: string;
1935
- param: string;
1936
1814
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1815
+ param: string;
1937
1816
  query: string;
1938
1817
  }, {
1939
1818
  url: string;
1940
- param: string;
1941
1819
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1820
+ param: string;
1942
1821
  query: string;
1943
1822
  }>;
1944
1823
  }, "strip", z.ZodTypeAny, {
@@ -1946,8 +1825,8 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1946
1825
  title: string;
1947
1826
  value: {
1948
1827
  url: string;
1949
- param: string;
1950
1828
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1829
+ param: string;
1951
1830
  query: string;
1952
1831
  };
1953
1832
  image?: {
@@ -1958,17 +1837,17 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1958
1837
  } | undefined;
1959
1838
  description?: string | undefined;
1960
1839
  icon?: {
1961
- text: string;
1962
- } | {
1963
1840
  name: string;
1841
+ } | {
1842
+ text: string;
1964
1843
  } | undefined;
1965
1844
  }, {
1966
1845
  type: "search";
1967
1846
  title: string;
1968
1847
  value: {
1969
1848
  url: string;
1970
- param: string;
1971
1849
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1850
+ param: string;
1972
1851
  query: string;
1973
1852
  };
1974
1853
  image?: {
@@ -1979,11 +1858,250 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1979
1858
  } | undefined;
1980
1859
  description?: string | undefined;
1981
1860
  icon?: {
1982
- text: string;
1983
- } | {
1984
1861
  name: string;
1862
+ } | {
1863
+ text: string;
1864
+ } | undefined;
1865
+ }>]>;
1866
+ export declare const navigationSchema: z.ZodObject<{
1867
+ backButton: z.ZodOptional<z.ZodObject<{
1868
+ title: z.ZodOptional<z.ZodString>;
1869
+ action: z.ZodObject<{
1870
+ title: z.ZodOptional<z.ZodString>;
1871
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1872
+ disabled: z.ZodOptional<z.ZodBoolean>;
1873
+ $id: z.ZodOptional<z.ZodString>;
1874
+ $ref: z.ZodOptional<z.ZodString>;
1875
+ id: z.ZodOptional<z.ZodString>;
1876
+ url: z.ZodOptional<z.ZodString>;
1877
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1878
+ exit: z.ZodOptional<z.ZodBoolean>;
1879
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1880
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1881
+ timeout: z.ZodOptional<z.ZodNumber>;
1882
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1883
+ }, "strip", z.ZodTypeAny, {
1884
+ url?: string | undefined;
1885
+ $id?: string | undefined;
1886
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1887
+ disabled?: boolean | undefined;
1888
+ title?: string | undefined;
1889
+ timeout?: number | undefined;
1890
+ id?: string | undefined;
1891
+ $ref?: string | undefined;
1892
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1893
+ exit?: boolean | undefined;
1894
+ result?: JsonElement | undefined;
1895
+ data?: JsonElement | undefined;
1896
+ skipValidation?: boolean | undefined;
1897
+ }, {
1898
+ url?: string | undefined;
1899
+ $id?: string | undefined;
1900
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1901
+ disabled?: boolean | undefined;
1902
+ title?: string | undefined;
1903
+ timeout?: number | undefined;
1904
+ id?: string | undefined;
1905
+ $ref?: string | undefined;
1906
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1907
+ exit?: boolean | undefined;
1908
+ result?: JsonElement | undefined;
1909
+ data?: JsonElement | undefined;
1910
+ skipValidation?: boolean | undefined;
1911
+ }>;
1912
+ }, "strip", z.ZodTypeAny, {
1913
+ action: {
1914
+ url?: string | undefined;
1915
+ $id?: string | undefined;
1916
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1917
+ disabled?: boolean | undefined;
1918
+ title?: string | undefined;
1919
+ timeout?: number | undefined;
1920
+ id?: string | undefined;
1921
+ $ref?: string | undefined;
1922
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1923
+ exit?: boolean | undefined;
1924
+ result?: JsonElement | undefined;
1925
+ data?: JsonElement | undefined;
1926
+ skipValidation?: boolean | undefined;
1927
+ };
1928
+ title?: string | undefined;
1929
+ }, {
1930
+ action: {
1931
+ url?: string | undefined;
1932
+ $id?: string | undefined;
1933
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1934
+ disabled?: boolean | undefined;
1935
+ title?: string | undefined;
1936
+ timeout?: number | undefined;
1937
+ id?: string | undefined;
1938
+ $ref?: string | undefined;
1939
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1940
+ exit?: boolean | undefined;
1941
+ result?: JsonElement | undefined;
1942
+ data?: JsonElement | undefined;
1943
+ skipValidation?: boolean | undefined;
1944
+ };
1945
+ title?: string | undefined;
1946
+ }>>;
1947
+ back: z.ZodOptional<z.ZodObject<{
1948
+ title: z.ZodOptional<z.ZodString>;
1949
+ action: z.ZodObject<{
1950
+ title: z.ZodOptional<z.ZodString>;
1951
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1952
+ disabled: z.ZodOptional<z.ZodBoolean>;
1953
+ $id: z.ZodOptional<z.ZodString>;
1954
+ $ref: z.ZodOptional<z.ZodString>;
1955
+ id: z.ZodOptional<z.ZodString>;
1956
+ url: z.ZodOptional<z.ZodString>;
1957
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1958
+ exit: z.ZodOptional<z.ZodBoolean>;
1959
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1960
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1961
+ timeout: z.ZodOptional<z.ZodNumber>;
1962
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1963
+ }, "strip", z.ZodTypeAny, {
1964
+ url?: string | undefined;
1965
+ $id?: string | undefined;
1966
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1967
+ disabled?: boolean | undefined;
1968
+ title?: string | undefined;
1969
+ timeout?: number | undefined;
1970
+ id?: string | undefined;
1971
+ $ref?: string | undefined;
1972
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1973
+ exit?: boolean | undefined;
1974
+ result?: JsonElement | undefined;
1975
+ data?: JsonElement | undefined;
1976
+ skipValidation?: boolean | undefined;
1977
+ }, {
1978
+ url?: string | undefined;
1979
+ $id?: string | undefined;
1980
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1981
+ disabled?: boolean | undefined;
1982
+ title?: string | undefined;
1983
+ timeout?: number | undefined;
1984
+ id?: string | undefined;
1985
+ $ref?: string | undefined;
1986
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1987
+ exit?: boolean | undefined;
1988
+ result?: JsonElement | undefined;
1989
+ data?: JsonElement | undefined;
1990
+ skipValidation?: boolean | undefined;
1991
+ }>;
1992
+ }, "strip", z.ZodTypeAny, {
1993
+ action: {
1994
+ url?: string | undefined;
1995
+ $id?: string | undefined;
1996
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1997
+ disabled?: boolean | undefined;
1998
+ title?: string | undefined;
1999
+ timeout?: number | undefined;
2000
+ id?: string | undefined;
2001
+ $ref?: string | undefined;
2002
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2003
+ exit?: boolean | undefined;
2004
+ result?: JsonElement | undefined;
2005
+ data?: JsonElement | undefined;
2006
+ skipValidation?: boolean | undefined;
2007
+ };
2008
+ title?: string | undefined;
2009
+ }, {
2010
+ action: {
2011
+ url?: string | undefined;
2012
+ $id?: string | undefined;
2013
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2014
+ disabled?: boolean | undefined;
2015
+ title?: string | undefined;
2016
+ timeout?: number | undefined;
2017
+ id?: string | undefined;
2018
+ $ref?: string | undefined;
2019
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2020
+ exit?: boolean | undefined;
2021
+ result?: JsonElement | undefined;
2022
+ data?: JsonElement | undefined;
2023
+ skipValidation?: boolean | undefined;
2024
+ };
2025
+ title?: string | undefined;
2026
+ }>>;
2027
+ stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
2028
+ }, "strip", z.ZodTypeAny, {
2029
+ back?: {
2030
+ action: {
2031
+ url?: string | undefined;
2032
+ $id?: string | undefined;
2033
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2034
+ disabled?: boolean | undefined;
2035
+ title?: string | undefined;
2036
+ timeout?: number | undefined;
2037
+ id?: string | undefined;
2038
+ $ref?: string | undefined;
2039
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2040
+ exit?: boolean | undefined;
2041
+ result?: JsonElement | undefined;
2042
+ data?: JsonElement | undefined;
2043
+ skipValidation?: boolean | undefined;
2044
+ };
2045
+ title?: string | undefined;
2046
+ } | undefined;
2047
+ backButton?: {
2048
+ action: {
2049
+ url?: string | undefined;
2050
+ $id?: string | undefined;
2051
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2052
+ disabled?: boolean | undefined;
2053
+ title?: string | undefined;
2054
+ timeout?: number | undefined;
2055
+ id?: string | undefined;
2056
+ $ref?: string | undefined;
2057
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2058
+ exit?: boolean | undefined;
2059
+ result?: JsonElement | undefined;
2060
+ data?: JsonElement | undefined;
2061
+ skipValidation?: boolean | undefined;
2062
+ };
2063
+ title?: string | undefined;
2064
+ } | undefined;
2065
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
2066
+ }, {
2067
+ back?: {
2068
+ action: {
2069
+ url?: string | undefined;
2070
+ $id?: string | undefined;
2071
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2072
+ disabled?: boolean | undefined;
2073
+ title?: string | undefined;
2074
+ timeout?: number | undefined;
2075
+ id?: string | undefined;
2076
+ $ref?: string | undefined;
2077
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2078
+ exit?: boolean | undefined;
2079
+ result?: JsonElement | undefined;
2080
+ data?: JsonElement | undefined;
2081
+ skipValidation?: boolean | undefined;
2082
+ };
2083
+ title?: string | undefined;
2084
+ } | undefined;
2085
+ backButton?: {
2086
+ action: {
2087
+ url?: string | undefined;
2088
+ $id?: string | undefined;
2089
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2090
+ disabled?: boolean | undefined;
2091
+ title?: string | undefined;
2092
+ timeout?: number | undefined;
2093
+ id?: string | undefined;
2094
+ $ref?: string | undefined;
2095
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2096
+ exit?: boolean | undefined;
2097
+ result?: JsonElement | undefined;
2098
+ data?: JsonElement | undefined;
2099
+ skipValidation?: boolean | undefined;
2100
+ };
2101
+ title?: string | undefined;
1985
2102
  } | undefined;
1986
- }>]>;
2103
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
2104
+ }>;
1987
2105
  export declare const searchResponseBodySchema: z.ZodObject<{
1988
2106
  results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1989
2107
  type: z.ZodLiteral<"action">;
@@ -2087,9 +2205,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2087
2205
  } | undefined;
2088
2206
  description?: string | undefined;
2089
2207
  icon?: {
2090
- text: string;
2091
- } | {
2092
2208
  name: string;
2209
+ } | {
2210
+ text: string;
2093
2211
  } | undefined;
2094
2212
  }, {
2095
2213
  type: "action";
@@ -2117,9 +2235,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2117
2235
  } | undefined;
2118
2236
  description?: string | undefined;
2119
2237
  icon?: {
2120
- text: string;
2121
- } | {
2122
2238
  name: string;
2239
+ } | {
2240
+ text: string;
2123
2241
  } | undefined;
2124
2242
  }>, z.ZodObject<{
2125
2243
  type: z.ZodLiteral<"search">;
@@ -2161,13 +2279,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2161
2279
  query: z.ZodString;
2162
2280
  }, "strip", z.ZodTypeAny, {
2163
2281
  url: string;
2164
- param: string;
2165
2282
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2283
+ param: string;
2166
2284
  query: string;
2167
2285
  }, {
2168
2286
  url: string;
2169
- param: string;
2170
2287
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2288
+ param: string;
2171
2289
  query: string;
2172
2290
  }>;
2173
2291
  }, "strip", z.ZodTypeAny, {
@@ -2175,8 +2293,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2175
2293
  title: string;
2176
2294
  value: {
2177
2295
  url: string;
2178
- param: string;
2179
2296
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2297
+ param: string;
2180
2298
  query: string;
2181
2299
  };
2182
2300
  image?: {
@@ -2187,17 +2305,17 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2187
2305
  } | undefined;
2188
2306
  description?: string | undefined;
2189
2307
  icon?: {
2190
- text: string;
2191
- } | {
2192
2308
  name: string;
2309
+ } | {
2310
+ text: string;
2193
2311
  } | undefined;
2194
2312
  }, {
2195
2313
  type: "search";
2196
2314
  title: string;
2197
2315
  value: {
2198
2316
  url: string;
2199
- param: string;
2200
2317
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2318
+ param: string;
2201
2319
  query: string;
2202
2320
  };
2203
2321
  image?: {
@@ -2208,13 +2326,34 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2208
2326
  } | undefined;
2209
2327
  description?: string | undefined;
2210
2328
  icon?: {
2211
- text: string;
2212
- } | {
2213
2329
  name: string;
2330
+ } | {
2331
+ text: string;
2214
2332
  } | undefined;
2215
2333
  }>]>, "many">;
2216
2334
  }, "strip", z.ZodTypeAny, {
2217
2335
  results: ({
2336
+ type: "search";
2337
+ title: string;
2338
+ value: {
2339
+ url: string;
2340
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2341
+ param: string;
2342
+ query: string;
2343
+ };
2344
+ image?: {
2345
+ url?: string | undefined;
2346
+ text?: string | undefined;
2347
+ uri?: string | undefined;
2348
+ accessibilityDescription?: string | undefined;
2349
+ } | undefined;
2350
+ description?: string | undefined;
2351
+ icon?: {
2352
+ name: string;
2353
+ } | {
2354
+ text: string;
2355
+ } | undefined;
2356
+ } | {
2218
2357
  type: "action";
2219
2358
  title: string;
2220
2359
  value: {
@@ -2240,17 +2379,19 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2240
2379
  } | undefined;
2241
2380
  description?: string | undefined;
2242
2381
  icon?: {
2243
- text: string;
2244
- } | {
2245
2382
  name: string;
2383
+ } | {
2384
+ text: string;
2246
2385
  } | undefined;
2247
- } | {
2386
+ })[];
2387
+ }, {
2388
+ results: ({
2248
2389
  type: "search";
2249
2390
  title: string;
2250
2391
  value: {
2251
2392
  url: string;
2252
- param: string;
2253
2393
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2394
+ param: string;
2254
2395
  query: string;
2255
2396
  };
2256
2397
  image?: {
@@ -2261,13 +2402,11 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2261
2402
  } | undefined;
2262
2403
  description?: string | undefined;
2263
2404
  icon?: {
2264
- text: string;
2265
- } | {
2266
2405
  name: string;
2406
+ } | {
2407
+ text: string;
2267
2408
  } | undefined;
2268
- })[];
2269
- }, {
2270
- results: ({
2409
+ } | {
2271
2410
  type: "action";
2272
2411
  title: string;
2273
2412
  value: {
@@ -2293,193 +2432,54 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2293
2432
  } | undefined;
2294
2433
  description?: string | undefined;
2295
2434
  icon?: {
2296
- text: string;
2297
- } | {
2298
2435
  name: string;
2299
- } | undefined;
2300
- } | {
2301
- type: "search";
2302
- title: string;
2303
- value: {
2304
- url: string;
2305
- param: string;
2306
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2307
- query: string;
2308
- };
2309
- image?: {
2310
- url?: string | undefined;
2311
- text?: string | undefined;
2312
- uri?: string | undefined;
2313
- accessibilityDescription?: string | undefined;
2314
- } | undefined;
2315
- description?: string | undefined;
2316
- icon?: {
2317
- text: string;
2318
2436
  } | {
2319
- name: string;
2437
+ text: string;
2320
2438
  } | undefined;
2321
2439
  })[];
2322
2440
  }>;
2323
- export declare const mediaAvatarSchema: z.ZodObject<{
2324
- type: z.ZodLiteral<"avatar">;
2325
- content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
2326
- type: z.ZodLiteral<"text">;
2327
- text: z.ZodString;
2328
- badgeUri: z.ZodOptional<z.ZodString>;
2329
- }, "strip", z.ZodTypeAny, {
2330
- type: "text";
2331
- text: string;
2332
- badgeUri?: string | undefined;
2333
- }, {
2334
- type: "text";
2335
- text: string;
2336
- badgeUri?: string | undefined;
2337
- }>, z.ZodObject<{
2338
- type: z.ZodLiteral<"uri">;
2339
- uri: z.ZodString;
2340
- badgeUri: z.ZodOptional<z.ZodString>;
2341
- }, "strip", z.ZodTypeAny, {
2342
- type: "uri";
2343
- uri: string;
2344
- badgeUri?: string | undefined;
2345
- }, {
2346
- type: "uri";
2347
- uri: string;
2348
- badgeUri?: string | undefined;
2349
- }>]>, "many">;
2350
- accessibilityDescription: z.ZodOptional<z.ZodString>;
2351
- }, "strip", z.ZodTypeAny, {
2352
- type: "avatar";
2353
- content: ({
2354
- type: "text";
2355
- text: string;
2356
- badgeUri?: string | undefined;
2357
- } | {
2358
- type: "uri";
2359
- uri: string;
2360
- badgeUri?: string | undefined;
2361
- })[];
2362
- accessibilityDescription?: string | undefined;
2363
- }, {
2364
- type: "avatar";
2365
- content: ({
2366
- type: "text";
2367
- text: string;
2368
- badgeUri?: string | undefined;
2369
- } | {
2370
- type: "uri";
2371
- uri: string;
2372
- badgeUri?: string | undefined;
2373
- })[];
2374
- accessibilityDescription?: string | undefined;
2375
- }>;
2376
- export declare const mediaSchema: z.ZodUnion<[z.ZodObject<{
2377
- type: z.ZodLiteral<"avatar">;
2378
- content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
2379
- type: z.ZodLiteral<"text">;
2380
- text: z.ZodString;
2381
- badgeUri: z.ZodOptional<z.ZodString>;
2382
- }, "strip", z.ZodTypeAny, {
2383
- type: "text";
2384
- text: string;
2385
- badgeUri?: string | undefined;
2386
- }, {
2387
- type: "text";
2388
- text: string;
2389
- badgeUri?: string | undefined;
2390
- }>, z.ZodObject<{
2391
- type: z.ZodLiteral<"uri">;
2392
- uri: z.ZodString;
2393
- badgeUri: z.ZodOptional<z.ZodString>;
2394
- }, "strip", z.ZodTypeAny, {
2395
- type: "uri";
2396
- uri: string;
2397
- badgeUri?: string | undefined;
2398
- }, {
2399
- type: "uri";
2400
- uri: string;
2401
- badgeUri?: string | undefined;
2402
- }>]>, "many">;
2403
- accessibilityDescription: z.ZodOptional<z.ZodString>;
2404
- }, "strip", z.ZodTypeAny, {
2405
- type: "avatar";
2406
- content: ({
2407
- type: "text";
2408
- text: string;
2409
- badgeUri?: string | undefined;
2410
- } | {
2411
- type: "uri";
2412
- uri: string;
2413
- badgeUri?: string | undefined;
2414
- })[];
2415
- accessibilityDescription?: string | undefined;
2416
- }, {
2417
- type: "avatar";
2418
- content: ({
2419
- type: "text";
2420
- text: string;
2421
- badgeUri?: string | undefined;
2422
- } | {
2423
- type: "uri";
2424
- uri: string;
2425
- badgeUri?: string | undefined;
2426
- })[];
2427
- accessibilityDescription?: string | undefined;
2428
- }>, z.ZodObject<{
2429
- type: z.ZodLiteral<"image">;
2430
- uri: z.ZodString;
2431
- accessibilityDescription: z.ZodOptional<z.ZodString>;
2432
- }, "strip", z.ZodTypeAny, {
2433
- type: "image";
2434
- uri: string;
2435
- accessibilityDescription?: string | undefined;
2436
- }, {
2437
- type: "image";
2438
- uri: string;
2439
- accessibilityDescription?: string | undefined;
2440
- }>]>;
2441
- export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption>;
2441
+ export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
2442
2442
  export declare const behaviorSchema: z.ZodSchema<Behavior>;
2443
- export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
2444
- export declare const layoutSchema: z.ZodSchema<Layout>;
2443
+ export declare const reviewLayoutCallToActionSchema: z.ZodSchema<ReviewLayoutCallToAction>;
2444
+ export declare const tabsLayoutSchema: z.ZodSchema<TabsLayout>;
2445
+ export declare const tabsLayoutTabSchema: z.ZodSchema<TabsLayoutTab>;
2445
2446
  export declare const alertLayoutSchema: z.ZodSchema<AlertLayout>;
2446
2447
  export declare const alertLayoutCallToActionSchema: z.ZodSchema<AlertLayoutCallToAction>;
2447
2448
  export declare const listLayoutSchema: z.ZodSchema<ListLayout>;
2448
2449
  export declare const listLayoutCallToActionSchema: z.ZodSchema<ListLayoutCallToAction>;
2449
2450
  export declare const listLayoutItemSchema: z.ZodSchema<ListLayoutItem>;
2451
+ export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
2452
+ export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption>;
2450
2453
  export declare const sectionLayoutCallToActionSchema: z.ZodSchema<SectionLayoutCallToAction>;
2451
2454
  export declare const statusListLayoutSchema: z.ZodSchema<StatusListLayout>;
2452
2455
  export declare const statusListLayoutItemSchema: z.ZodSchema<StatusListLayoutItem>;
2453
- export declare const tabsLayoutTabSchema: z.ZodSchema<TabsLayoutTab>;
2454
- export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
2455
2456
  export declare const sectionLayoutSchema: z.ZodSchema<SectionLayout>;
2456
- export declare const reviewLayoutSchema: z.ZodSchema<ReviewLayout>;
2457
- export declare const reviewLayoutFieldSchema: z.ZodSchema<ReviewLayoutField>;
2458
- export declare const reviewLayoutCallToActionSchema: z.ZodSchema<ReviewLayoutCallToAction>;
2459
- export declare const buttonLayoutSchema: z.ZodSchema<ButtonLayout>;
2457
+ export declare const layoutSchema: z.ZodSchema<Layout>;
2460
2458
  export declare const itemCallToActionSchema: z.ZodSchema<ItemCallToAction>;
2461
- export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
2462
- export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
2459
+ export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
2460
+ export declare const buttonLayoutSchema: z.ZodSchema<ButtonLayout>;
2463
2461
  export declare const columnsLayoutSchema: z.ZodSchema<ColumnsLayout>;
2464
2462
  export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
2465
- export declare const tabsLayoutSchema: z.ZodSchema<TabsLayout>;
2463
+ export declare const reviewLayoutSchema: z.ZodSchema<ReviewLayout>;
2464
+ export declare const reviewLayoutFieldSchema: z.ZodSchema<ReviewLayoutField>;
2465
+ export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
2466
+ export declare const modalResponseBodySchema: z.ZodSchema<ModalResponseBody>;
2466
2467
  export declare const stepSchema: z.ZodSchema<Step>;
2467
2468
  export declare const schemaSchema: z.ZodSchema<Schema>;
2468
2469
  export declare const pollingSchema: z.ZodSchema<Polling>;
2469
2470
  export declare const linkHandlerSchema: z.ZodSchema<LinkHandler>;
2470
- export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
2471
- export declare const modalBehaviorSchema: z.ZodSchema<ModalBehavior>;
2472
- export declare const pollingOnErrorSchema: z.ZodSchema<PollingOnError>;
2471
+ export declare const allOfSchemaSchema: z.ZodSchema<AllOfSchema>;
2472
+ export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
2473
2473
  export declare const blobSchemaSchema: z.ZodSchema<BlobSchema>;
2474
- export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
2475
- export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
2476
- export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
2477
- export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
2474
+ export declare const booleanSchemaSchema: z.ZodSchema<BooleanSchema>;
2475
+ export declare const constSchemaSchema: z.ZodSchema<ConstSchema>;
2478
2476
  export declare const integerSchemaSchema: z.ZodSchema<IntegerSchema>;
2477
+ export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
2479
2478
  export declare const objectSchemaSchema: z.ZodSchema<ObjectSchema>;
2480
- export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
2479
+ export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
2480
+ export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
2481
2481
  export declare const arraySchemaListSchema: z.ZodSchema<ArraySchemaList>;
2482
- export declare const constSchemaSchema: z.ZodSchema<ConstSchema>;
2483
- export declare const booleanSchemaSchema: z.ZodSchema<BooleanSchema>;
2484
- export declare const allOfSchemaSchema: z.ZodSchema<AllOfSchema>;
2485
- export declare const modalResponseBodySchema: z.ZodSchema<ModalResponseBody>;
2482
+ export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
2483
+ export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
2484
+ export declare const pollingOnErrorSchema: z.ZodSchema<PollingOnError>;
2485
+ export declare const modalBehaviorSchema: z.ZodSchema<ModalBehavior>;