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

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,5 +1,15 @@
1
1
  import { z } from 'zod';
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';
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
+ }>;
3
13
  export declare const imageSchema: z.ZodObject<{
4
14
  text: z.ZodOptional<z.ZodString>;
5
15
  url: z.ZodOptional<z.ZodString>;
@@ -16,14 +26,6 @@ export declare const imageSchema: z.ZodObject<{
16
26
  uri?: string | undefined;
17
27
  accessibilityDescription?: string | undefined;
18
28
  }>;
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
- }>;
27
29
  export declare const supportingValuesSchema: z.ZodObject<{
28
30
  value: z.ZodOptional<z.ZodString>;
29
31
  subvalue: z.ZodOptional<z.ZodString>;
@@ -34,145 +36,55 @@ export declare const supportingValuesSchema: z.ZodObject<{
34
36
  value?: string | undefined;
35
37
  subvalue?: string | undefined;
36
38
  }>;
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">;
39
+ export declare const headingLayoutSchema: z.ZodObject<{
40
+ type: z.ZodLiteral<"heading">;
99
41
  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">;
113
42
  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">]>>;
114
44
  control: z.ZodOptional<z.ZodString>;
115
45
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
116
46
  analyticsId: z.ZodOptional<z.ZodString>;
117
47
  }, "strip", z.ZodTypeAny, {
118
- type: "loading-indicator";
48
+ type: "heading";
49
+ text: string;
119
50
  analyticsId?: string | undefined;
120
51
  control?: string | undefined;
121
52
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
53
+ align?: "left" | "right" | "center" | undefined;
122
54
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
123
55
  }, {
124
- type: "loading-indicator";
56
+ type: "heading";
57
+ text: string;
125
58
  analyticsId?: string | undefined;
126
59
  control?: string | undefined;
127
60
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
61
+ align?: "left" | "right" | "center" | undefined;
128
62
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
129
63
  }>;
130
- export declare const paragraphLayoutSchema: z.ZodObject<{
131
- type: z.ZodLiteral<"paragraph">;
132
- text: z.ZodString;
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;
133
69
  align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
134
70
  control: z.ZodOptional<z.ZodString>;
135
71
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
136
72
  analyticsId: z.ZodOptional<z.ZodString>;
137
73
  }, "strip", z.ZodTypeAny, {
138
- type: "paragraph";
139
- text: string;
140
- analyticsId?: string | undefined;
141
- control?: string | undefined;
142
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
143
- align?: "left" | "right" | "center" | undefined;
144
- }, {
145
- type: "paragraph";
146
- text: string;
74
+ type: "markdown";
75
+ content: string;
147
76
  analyticsId?: string | undefined;
148
77
  control?: string | undefined;
149
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
150
78
  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
79
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
162
80
  }, {
163
- type: "divider";
81
+ type: "markdown";
82
+ content: string;
164
83
  analyticsId?: string | undefined;
165
84
  control?: string | undefined;
85
+ align?: "left" | "right" | "center" | undefined;
166
86
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
167
87
  }>;
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
- }>;
176
88
  export declare const imageLayoutSchema: z.ZodObject<{
177
89
  type: z.ZodLiteral<"image">;
178
90
  text: z.ZodOptional<z.ZodString>;
@@ -206,15 +118,15 @@ export declare const imageLayoutSchema: z.ZodObject<{
206
118
  control?: string | undefined;
207
119
  text?: string | undefined;
208
120
  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;
209
124
  content?: {
210
125
  url?: string | undefined;
211
126
  text?: string | undefined;
212
127
  uri?: string | undefined;
213
128
  accessibilityDescription?: string | undefined;
214
129
  } | undefined;
215
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
216
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
217
- align?: "left" | "right" | "center" | undefined;
218
130
  }, {
219
131
  type: "image";
220
132
  url?: string | undefined;
@@ -222,32 +134,15 @@ export declare const imageLayoutSchema: z.ZodObject<{
222
134
  control?: string | undefined;
223
135
  text?: string | undefined;
224
136
  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;
225
140
  content?: {
226
141
  url?: string | undefined;
227
142
  text?: string | undefined;
228
143
  uri?: string | undefined;
229
144
  accessibilityDescription?: string | undefined;
230
145
  } | 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;
251
146
  }>;
252
147
  export declare const modalLayoutTriggerSchema: z.ZodObject<{
253
148
  title: z.ZodString;
@@ -256,162 +151,72 @@ export declare const modalLayoutTriggerSchema: z.ZodObject<{
256
151
  }, {
257
152
  title: string;
258
153
  }>;
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>;
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">]>>;
266
158
  control: z.ZodOptional<z.ZodString>;
267
159
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
268
160
  analyticsId: z.ZodOptional<z.ZodString>;
269
161
  }, "strip", z.ZodTypeAny, {
270
- url: string;
271
- type: "search";
272
- title: string;
273
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
274
- param: string;
162
+ type: "loading-indicator";
275
163
  analyticsId?: string | undefined;
276
164
  control?: string | undefined;
165
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
277
166
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
278
- emptyMessage?: string | undefined;
279
167
  }, {
280
- url: string;
281
- type: "search";
282
- title: string;
283
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
284
- param: string;
168
+ type: "loading-indicator";
285
169
  analyticsId?: string | undefined;
286
170
  control?: string | undefined;
171
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
287
172
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
288
- emptyMessage?: string | undefined;
289
173
  }>;
290
- export declare const infoLayoutSchema: z.ZodObject<{
291
- type: z.ZodLiteral<"info">;
174
+ export declare const helpSchema: z.ZodObject<{
292
175
  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>;
297
176
  }, "strip", z.ZodTypeAny, {
298
- type: "info";
299
177
  markdown: string;
300
- analyticsId?: string | undefined;
301
- control?: string | undefined;
302
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
303
- align?: "left" | "right" | "center" | undefined;
304
178
  }, {
305
- type: "info";
306
179
  markdown: string;
307
- analyticsId?: string | undefined;
308
- control?: string | undefined;
309
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
310
- align?: "left" | "right" | "center" | undefined;
311
180
  }>;
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;
181
+ export declare const dividerLayoutSchema: z.ZodObject<{
182
+ type: z.ZodLiteral<"divider">;
322
183
  control: z.ZodOptional<z.ZodString>;
323
184
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
324
185
  analyticsId: z.ZodOptional<z.ZodString>;
325
186
  }, "strip", z.ZodTypeAny, {
326
- type: "form";
327
- schemaId: string;
187
+ type: "divider";
328
188
  analyticsId?: string | undefined;
329
189
  control?: string | undefined;
330
190
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
331
- schema?: {
332
- $ref: string;
333
- } | undefined;
334
191
  }, {
335
- type: "form";
336
- schemaId: string;
192
+ type: "divider";
337
193
  analyticsId?: string | undefined;
338
194
  control?: string | undefined;
339
195
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
340
- schema?: {
341
- $ref: string;
342
- } | undefined;
343
196
  }>;
344
- export declare const headingLayoutSchema: z.ZodObject<{
345
- type: z.ZodLiteral<"heading">;
197
+ export declare const paragraphLayoutSchema: z.ZodObject<{
198
+ type: z.ZodLiteral<"paragraph">;
346
199
  text: z.ZodString;
347
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
348
200
  align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
349
201
  control: z.ZodOptional<z.ZodString>;
350
202
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
351
203
  analyticsId: z.ZodOptional<z.ZodString>;
352
204
  }, "strip", z.ZodTypeAny, {
353
- type: "heading";
205
+ type: "paragraph";
354
206
  text: string;
355
207
  analyticsId?: string | undefined;
356
208
  control?: string | undefined;
357
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
358
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
359
209
  align?: "left" | "right" | "center" | undefined;
210
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
360
211
  }, {
361
- type: "heading";
212
+ type: "paragraph";
362
213
  text: string;
363
214
  analyticsId?: string | undefined;
364
215
  control?: string | undefined;
365
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
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
216
  align?: "left" | "right" | "center" | undefined;
383
- }, {
384
- type: "markdown";
385
- content: string;
386
- analyticsId?: string | undefined;
387
- control?: string | undefined;
388
217
  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;
414
218
  }>;
219
+ export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
415
220
  export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
416
221
  export declare const externalSchema: z.ZodObject<{
417
222
  url: z.ZodString;
@@ -430,299 +235,135 @@ export declare const stepErrorSchema: z.ZodObject<{
430
235
  validation?: JsonElement | undefined;
431
236
  error?: string | undefined;
432
237
  }>;
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
- }>>;
238
+ export declare const summaryProviderSchema: z.ZodObject<{
466
239
  providesTitle: z.ZodOptional<z.ZodBoolean>;
467
240
  providesDescription: z.ZodOptional<z.ZodBoolean>;
468
241
  providesIcon: z.ZodOptional<z.ZodBoolean>;
469
242
  providesImage: z.ZodOptional<z.ZodBoolean>;
470
243
  }, "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;
484
244
  providesTitle?: boolean | undefined;
485
245
  providesDescription?: boolean | undefined;
486
246
  providesIcon?: boolean | undefined;
487
247
  providesImage?: boolean | undefined;
488
248
  }, {
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;
502
249
  providesTitle?: boolean | undefined;
503
250
  providesDescription?: boolean | undefined;
504
251
  providesIcon?: boolean | undefined;
505
252
  providesImage?: boolean | undefined;
506
253
  }>;
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
+ }>;
507
262
  export declare const validateAsyncSchema: z.ZodObject<{
508
263
  param: z.ZodString;
509
264
  method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
510
265
  url: z.ZodString;
511
266
  }, "strip", z.ZodTypeAny, {
512
267
  url: string;
513
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
514
268
  param: string;
269
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
515
270
  }, {
516
271
  url: string;
517
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
518
272
  param: string;
273
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
519
274
  }>;
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>;
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">;
525
279
  }, "strip", z.ZodTypeAny, {
526
- providesTitle?: boolean | undefined;
527
- providesDescription?: boolean | undefined;
528
- providesIcon?: boolean | undefined;
529
- providesImage?: boolean | undefined;
280
+ type: "dismiss";
530
281
  }, {
531
- providesTitle?: boolean | undefined;
532
- providesDescription?: boolean | undefined;
533
- providesIcon?: boolean | undefined;
534
- providesImage?: boolean | undefined;
282
+ type: "dismiss";
535
283
  }>;
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>;
284
+ export declare const linkBehaviorSchema: z.ZodObject<{
285
+ type: z.ZodLiteral<"link">;
286
+ url: z.ZodString;
571
287
  }, "strip", z.ZodTypeAny, {
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;
288
+ url: string;
289
+ type: "link";
587
290
  }, {
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;
291
+ url: string;
292
+ type: "link";
603
293
  }>;
604
- export declare const dismissBehaviorSchema: z.ZodObject<{
605
- type: z.ZodLiteral<"dismiss">;
294
+ export declare const refreshBehaviorSchema: z.ZodObject<{
295
+ type: z.ZodLiteral<"refresh">;
606
296
  }, "strip", z.ZodTypeAny, {
607
- type: "dismiss";
297
+ type: "refresh";
608
298
  }, {
609
- type: "dismiss";
299
+ type: "refresh";
610
300
  }>;
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>;
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;
618
309
  }, "strip", z.ZodTypeAny, {
619
- providesTitle?: boolean | undefined;
620
- providesDescription?: boolean | undefined;
621
- providesIcon?: boolean | undefined;
622
- providesImage?: boolean | undefined;
310
+ url: string;
311
+ param: string;
312
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
313
+ query: string;
623
314
  }, {
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>;
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>;
664
326
  }, "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;
327
+ refreshUrl?: string | undefined;
328
+ refreshFormUrl?: string | undefined;
329
+ analytics?: Record<string, string> | undefined;
330
+ validation?: JsonElement | undefined;
331
+ error?: string | undefined;
682
332
  }, {
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;
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;
704
341
  }, "strip", z.ZodTypeAny, {
705
- url: string;
706
- type: "link";
342
+ text: string;
707
343
  }, {
708
- url: string;
709
- type: "link";
344
+ text: string;
710
345
  }>;
711
- export declare const refreshBehaviorSchema: z.ZodObject<{
712
- type: z.ZodLiteral<"refresh">;
346
+ export declare const iconNamedSchema: z.ZodObject<{
347
+ name: z.ZodString;
713
348
  }, "strip", z.ZodTypeAny, {
714
- type: "refresh";
349
+ name: string;
715
350
  }, {
716
- type: "refresh";
351
+ name: string;
717
352
  }>;
718
- export declare const linkSchema: z.ZodObject<{
719
- url: z.ZodString;
353
+ export declare const mediaImageSchema: z.ZodObject<{
354
+ type: z.ZodLiteral<"image">;
355
+ uri: z.ZodString;
356
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
720
357
  }, "strip", z.ZodTypeAny, {
721
- url: string;
358
+ type: "image";
359
+ uri: string;
360
+ accessibilityDescription?: string | undefined;
722
361
  }, {
723
- url: string;
362
+ type: "image";
363
+ uri: string;
364
+ accessibilityDescription?: string | undefined;
724
365
  }>;
725
- export declare const avatarContentSchema: z.ZodUnion<[z.ZodObject<{
366
+ export declare const avatarTextContentSchema: z.ZodObject<{
726
367
  type: z.ZodLiteral<"text">;
727
368
  text: z.ZodString;
728
369
  badgeUri: z.ZodOptional<z.ZodString>;
@@ -734,7 +375,8 @@ export declare const avatarContentSchema: z.ZodUnion<[z.ZodObject<{
734
375
  type: "text";
735
376
  text: string;
736
377
  badgeUri?: string | undefined;
737
- }>, z.ZodObject<{
378
+ }>;
379
+ export declare const avatarUriContentSchema: z.ZodObject<{
738
380
  type: z.ZodLiteral<"uri">;
739
381
  uri: z.ZodString;
740
382
  badgeUri: z.ZodOptional<z.ZodString>;
@@ -746,7 +388,61 @@ export declare const avatarContentSchema: z.ZodUnion<[z.ZodObject<{
746
388
  type: "uri";
747
389
  uri: string;
748
390
  badgeUri?: string | undefined;
749
- }>]>;
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
+ }>;
750
446
  export declare const actionSchema: z.ZodObject<{
751
447
  title: z.ZodOptional<z.ZodString>;
752
448
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -790,60 +486,82 @@ export declare const actionSchema: z.ZodObject<{
790
486
  data?: JsonElement | undefined;
791
487
  skipValidation?: boolean | undefined;
792
488
  }>;
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">]>>;
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>;
814
516
  analyticsId: z.ZodOptional<z.ZodString>;
815
517
  }, "strip", z.ZodTypeAny, {
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
- }[];
518
+ text: string;
519
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
823
520
  analyticsId?: string | undefined;
824
- title?: string | undefined;
825
- control?: string | undefined;
826
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
521
+ tag?: string | undefined;
827
522
  }, {
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
- }[];
523
+ text: string;
524
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
835
525
  analyticsId?: string | undefined;
836
- title?: string | undefined;
837
- control?: string | undefined;
838
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
526
+ tag?: string | undefined;
839
527
  }>;
840
- export declare const searchResultSearchSchema: z.ZodObject<{
528
+ export declare const searchLayoutSchema: z.ZodObject<{
841
529
  type: z.ZodLiteral<"search">;
842
530
  title: z.ZodString;
843
- description: z.ZodOptional<z.ZodString>;
844
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
845
- name: z.ZodString;
846
- }, "strip", z.ZodTypeAny, {
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<{
563
+ name: z.ZodString;
564
+ }, "strip", z.ZodTypeAny, {
847
565
  name: string;
848
566
  }, {
849
567
  name: string;
@@ -854,7 +572,7 @@ export declare const searchResultSearchSchema: z.ZodObject<{
854
572
  }, {
855
573
  text: string;
856
574
  }>]>>;
857
- image: z.ZodOptional<z.ZodObject<{
575
+ defaultImage: z.ZodOptional<z.ZodObject<{
858
576
  text: z.ZodOptional<z.ZodString>;
859
577
  url: z.ZodOptional<z.ZodString>;
860
578
  uri: z.ZodOptional<z.ZodString>;
@@ -870,99 +588,49 @@ export declare const searchResultSearchSchema: z.ZodObject<{
870
588
  uri?: string | undefined;
871
589
  accessibilityDescription?: string | undefined;
872
590
  }>>;
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
- }>;
591
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
592
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
593
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
594
+ providesImage: z.ZodOptional<z.ZodBoolean>;
889
595
  }, "strip", z.ZodTypeAny, {
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?: {
899
- url?: string | undefined;
900
- text?: string | undefined;
901
- uri?: string | undefined;
902
- accessibilityDescription?: string | undefined;
903
- } | undefined;
904
- description?: string | undefined;
905
- icon?: {
906
- name: string;
907
- } | {
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?: {
908
603
  text: string;
604
+ } | {
605
+ name: string;
909
606
  } | undefined;
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?: {
607
+ defaultImage?: {
920
608
  url?: string | undefined;
921
609
  text?: string | undefined;
922
610
  uri?: string | undefined;
923
611
  accessibilityDescription?: string | undefined;
924
612
  } | undefined;
925
- description?: string | undefined;
926
- icon?: {
927
- name: string;
928
- } | {
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?: {
929
621
  text: string;
930
- } | undefined;
931
- }>;
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
- }, {
622
+ } | {
941
623
  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
- }, {
624
+ } | undefined;
625
+ defaultImage?: {
960
626
  url?: string | undefined;
961
627
  text?: string | undefined;
962
628
  uri?: string | undefined;
963
629
  accessibilityDescription?: string | undefined;
964
- }>>;
965
- value: z.ZodObject<{
630
+ } | undefined;
631
+ }>;
632
+ export declare const containerBehaviorSchema: z.ZodObject<{
633
+ action: z.ZodOptional<z.ZodObject<{
966
634
  title: z.ZodOptional<z.ZodString>;
967
635
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
968
636
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -1004,11 +672,16 @@ export declare const searchResultActionSchema: z.ZodObject<{
1004
672
  result?: JsonElement | undefined;
1005
673
  data?: JsonElement | undefined;
1006
674
  skipValidation?: boolean | undefined;
1007
- }>;
675
+ }>>;
676
+ link: z.ZodOptional<z.ZodObject<{
677
+ url: z.ZodString;
678
+ }, "strip", z.ZodTypeAny, {
679
+ url: string;
680
+ }, {
681
+ url: string;
682
+ }>>;
1008
683
  }, "strip", z.ZodTypeAny, {
1009
- type: "action";
1010
- title: string;
1011
- value: {
684
+ action?: {
1012
685
  url?: string | undefined;
1013
686
  $id?: string | undefined;
1014
687
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -1022,23 +695,12 @@ export declare const searchResultActionSchema: z.ZodObject<{
1022
695
  result?: JsonElement | undefined;
1023
696
  data?: JsonElement | undefined;
1024
697
  skipValidation?: boolean | undefined;
1025
- };
1026
- image?: {
1027
- url?: string | undefined;
1028
- text?: string | undefined;
1029
- uri?: string | undefined;
1030
- accessibilityDescription?: string | undefined;
1031
698
  } | undefined;
1032
- description?: string | undefined;
1033
- icon?: {
1034
- name: string;
1035
- } | {
1036
- text: string;
699
+ link?: {
700
+ url: string;
1037
701
  } | undefined;
1038
702
  }, {
1039
- type: "action";
1040
- title: string;
1041
- value: {
703
+ action?: {
1042
704
  url?: string | undefined;
1043
705
  $id?: string | undefined;
1044
706
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -1052,21 +714,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
1052
714
  result?: JsonElement | undefined;
1053
715
  data?: JsonElement | undefined;
1054
716
  skipValidation?: boolean | undefined;
1055
- };
1056
- image?: {
1057
- url?: string | undefined;
1058
- text?: string | undefined;
1059
- uri?: string | undefined;
1060
- accessibilityDescription?: string | undefined;
1061
717
  } | undefined;
1062
- description?: string | undefined;
1063
- icon?: {
1064
- name: string;
1065
- } | {
1066
- text: string;
718
+ link?: {
719
+ url: string;
1067
720
  } | undefined;
1068
721
  }>;
1069
- export declare const actionResponseBodySchema: z.ZodObject<{
722
+ export declare const navigationBackBehaviorSchema: z.ZodObject<{
723
+ title: z.ZodOptional<z.ZodString>;
1070
724
  action: z.ZodObject<{
1071
725
  title: z.ZodOptional<z.ZodString>;
1072
726
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1126,6 +780,7 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1126
780
  data?: JsonElement | undefined;
1127
781
  skipValidation?: boolean | undefined;
1128
782
  };
783
+ title?: string | undefined;
1129
784
  }, {
1130
785
  action: {
1131
786
  url?: string | undefined;
@@ -1142,25 +797,154 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1142
797
  data?: JsonElement | undefined;
1143
798
  skipValidation?: boolean | undefined;
1144
799
  };
800
+ title?: string | undefined;
1145
801
  }>;
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>;
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>;
1152
836
  }, "strip", z.ZodTypeAny, {
1153
- refreshUrl?: string | undefined;
1154
- refreshFormUrl?: string | undefined;
1155
- analytics?: Record<string, string> | undefined;
1156
- validation?: JsonElement | undefined;
1157
- error?: string | undefined;
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;
1158
852
  }, {
1159
- refreshUrl?: string | undefined;
1160
- refreshFormUrl?: string | undefined;
1161
- analytics?: Record<string, string> | undefined;
1162
- validation?: JsonElement | undefined;
1163
- error?: string | undefined;
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";
1164
948
  }>;
1165
949
  export declare const suggestionsSchema: z.ZodObject<{
1166
950
  values: z.ZodArray<z.ZodObject<{
@@ -1208,9 +992,9 @@ export declare const suggestionsSchema: z.ZodObject<{
1208
992
  } | undefined;
1209
993
  analyticsId?: string | undefined;
1210
994
  icon?: {
1211
- name: string;
1212
- } | {
1213
995
  text: string;
996
+ } | {
997
+ name: string;
1214
998
  } | undefined;
1215
999
  tag?: string | undefined;
1216
1000
  }, {
@@ -1224,9 +1008,9 @@ export declare const suggestionsSchema: z.ZodObject<{
1224
1008
  } | undefined;
1225
1009
  analyticsId?: string | undefined;
1226
1010
  icon?: {
1227
- name: string;
1228
- } | {
1229
1011
  text: string;
1012
+ } | {
1013
+ name: string;
1230
1014
  } | undefined;
1231
1015
  tag?: string | undefined;
1232
1016
  }>, "many">;
@@ -1242,9 +1026,9 @@ export declare const suggestionsSchema: z.ZodObject<{
1242
1026
  } | undefined;
1243
1027
  analyticsId?: string | undefined;
1244
1028
  icon?: {
1245
- name: string;
1246
- } | {
1247
1029
  text: string;
1030
+ } | {
1031
+ name: string;
1248
1032
  } | undefined;
1249
1033
  tag?: string | undefined;
1250
1034
  }[];
@@ -1260,15 +1044,14 @@ export declare const suggestionsSchema: z.ZodObject<{
1260
1044
  } | undefined;
1261
1045
  analyticsId?: string | undefined;
1262
1046
  icon?: {
1263
- name: string;
1264
- } | {
1265
1047
  text: string;
1048
+ } | {
1049
+ name: string;
1266
1050
  } | undefined;
1267
1051
  tag?: string | undefined;
1268
1052
  }[];
1269
1053
  }>;
1270
- export declare const navigationBackBehaviorSchema: z.ZodObject<{
1271
- title: z.ZodOptional<z.ZodString>;
1054
+ export declare const actionResponseBodySchema: z.ZodObject<{
1272
1055
  action: z.ZodObject<{
1273
1056
  title: z.ZodOptional<z.ZodString>;
1274
1057
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1328,7 +1111,6 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1328
1111
  data?: JsonElement | undefined;
1329
1112
  skipValidation?: boolean | undefined;
1330
1113
  };
1331
- title?: string | undefined;
1332
1114
  }, {
1333
1115
  action: {
1334
1116
  url?: string | undefined;
@@ -1345,11 +1127,41 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1345
1127
  data?: JsonElement | undefined;
1346
1128
  skipValidation?: boolean | undefined;
1347
1129
  };
1348
- title?: string | undefined;
1349
1130
  }>;
1350
- export declare const actionBehaviorSchema: z.ZodObject<{
1131
+ export declare const searchResultActionSchema: z.ZodObject<{
1351
1132
  type: z.ZodLiteral<"action">;
1352
- action: z.ZodObject<{
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<{
1353
1165
  title: z.ZodOptional<z.ZodString>;
1354
1166
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1355
1167
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -1393,7 +1205,9 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1393
1205
  skipValidation?: boolean | undefined;
1394
1206
  }>;
1395
1207
  }, "strip", z.ZodTypeAny, {
1396
- action: {
1208
+ type: "action";
1209
+ title: string;
1210
+ value: {
1397
1211
  url?: string | undefined;
1398
1212
  $id?: string | undefined;
1399
1213
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -1408,9 +1222,22 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1408
1222
  data?: JsonElement | undefined;
1409
1223
  skipValidation?: boolean | undefined;
1410
1224
  };
1411
- type: "action";
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;
1412
1237
  }, {
1413
- action: {
1238
+ type: "action";
1239
+ title: string;
1240
+ value: {
1414
1241
  url?: string | undefined;
1415
1242
  $id?: string | undefined;
1416
1243
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -1425,215 +1252,509 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1425
1252
  data?: JsonElement | undefined;
1426
1253
  skipValidation?: boolean | undefined;
1427
1254
  };
1428
- type: "action";
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;
1429
1267
  }>;
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>;
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>;
1438
1287
  url: 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>;
1288
+ uri: z.ZodOptional<z.ZodString>;
1289
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
1445
1290
  }, "strip", z.ZodTypeAny, {
1446
1291
  url?: 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;
1292
+ text?: string | undefined;
1293
+ uri?: string | undefined;
1294
+ accessibilityDescription?: string | undefined;
1459
1295
  }, {
1460
1296
  url?: 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;
1297
+ text?: string | undefined;
1298
+ uri?: string | undefined;
1299
+ accessibilityDescription?: string | undefined;
1473
1300
  }>>;
1474
- link: z.ZodOptional<z.ZodObject<{
1301
+ value: z.ZodObject<{
1475
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;
1476
1306
  }, "strip", z.ZodTypeAny, {
1477
1307
  url: string;
1308
+ param: string;
1309
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1310
+ query: string;
1478
1311
  }, {
1479
1312
  url: string;
1480
- }>>;
1313
+ param: string;
1314
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1315
+ query: string;
1316
+ }>;
1481
1317
  }, "strip", z.ZodTypeAny, {
1482
- action?: {
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?: {
1483
1327
  url?: string | undefined;
1484
- $id?: string | undefined;
1485
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1486
- disabled?: boolean | 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
+ };
1487
1611
  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
1612
  } | undefined;
1497
- link?: {
1498
- url: string;
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
+ };
1629
+ title?: string | undefined;
1499
1630
  } | undefined;
1631
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
1500
1632
  }, {
1501
- action?: {
1502
- url?: string | undefined;
1503
- $id?: string | undefined;
1504
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1505
- disabled?: boolean | undefined;
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
+ };
1506
1649
  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;
1515
1650
  } | undefined;
1516
- link?: {
1517
- url: string;
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;
1518
1668
  } | undefined;
1669
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
1519
1670
  }>;
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>;
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;
1526
1691
  }, "strip", z.ZodTypeAny, {
1527
- type: "text";
1528
- text: string;
1529
- badgeUri?: string | undefined;
1692
+ name: string;
1530
1693
  }, {
1531
- type: "text";
1532
- text: string;
1533
- badgeUri?: string | undefined;
1694
+ name: string;
1534
1695
  }>, 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">;
1577
1696
  text: z.ZodString;
1578
- badgeUri: z.ZodOptional<z.ZodString>;
1579
1697
  }, "strip", z.ZodTypeAny, {
1580
- type: "text";
1581
1698
  text: string;
1582
- badgeUri?: string | undefined;
1583
1699
  }, {
1584
- type: "text";
1585
1700
  text: string;
1586
- badgeUri?: string | undefined;
1587
- }>, z.ZodObject<{
1588
- type: z.ZodLiteral<"uri">;
1589
- uri: z.ZodString;
1590
- badgeUri: z.ZodOptional<z.ZodString>;
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>;
1591
1707
  }, "strip", z.ZodTypeAny, {
1592
- type: "uri";
1593
- uri: string;
1594
- badgeUri?: string | undefined;
1708
+ url?: string | undefined;
1709
+ text?: string | undefined;
1710
+ uri?: string | undefined;
1711
+ accessibilityDescription?: string | undefined;
1595
1712
  }, {
1596
- type: "uri";
1597
- uri: string;
1598
- badgeUri?: string | undefined;
1599
- }>]>, "many">;
1600
- accessibilityDescription: z.ZodOptional<z.ZodString>;
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>;
1601
1722
  }, "strip", z.ZodTypeAny, {
1602
- type: "avatar";
1603
- content: ({
1604
- type: "uri";
1605
- uri: string;
1606
- badgeUri?: string | undefined;
1607
- } | {
1608
- type: "text";
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?: {
1609
1730
  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;
1619
1731
  } | {
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;
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;
1633
1740
  }, {
1634
- type: "image";
1635
- uri: string;
1636
- accessibilityDescription?: string | undefined;
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?: {
1748
+ text: string;
1749
+ } | {
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;
1637
1758
  }>]>;
1638
1759
  export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1639
1760
  type: z.ZodLiteral<"action">;
@@ -1737,9 +1858,9 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1737
1858
  } | undefined;
1738
1859
  description?: string | undefined;
1739
1860
  icon?: {
1740
- name: string;
1741
- } | {
1742
1861
  text: string;
1862
+ } | {
1863
+ name: string;
1743
1864
  } | undefined;
1744
1865
  }, {
1745
1866
  type: "action";
@@ -1766,10 +1887,10 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1766
1887
  accessibilityDescription?: string | undefined;
1767
1888
  } | undefined;
1768
1889
  description?: string | undefined;
1769
- icon?: {
1770
- name: string;
1771
- } | {
1890
+ icon?: {
1772
1891
  text: string;
1892
+ } | {
1893
+ name: string;
1773
1894
  } | undefined;
1774
1895
  }>, z.ZodObject<{
1775
1896
  type: z.ZodLiteral<"search">;
@@ -1811,13 +1932,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1811
1932
  query: z.ZodString;
1812
1933
  }, "strip", z.ZodTypeAny, {
1813
1934
  url: string;
1814
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1815
1935
  param: string;
1936
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1816
1937
  query: string;
1817
1938
  }, {
1818
1939
  url: string;
1819
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1820
1940
  param: string;
1941
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1821
1942
  query: string;
1822
1943
  }>;
1823
1944
  }, "strip", z.ZodTypeAny, {
@@ -1825,8 +1946,8 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1825
1946
  title: string;
1826
1947
  value: {
1827
1948
  url: string;
1828
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1829
1949
  param: string;
1950
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1830
1951
  query: string;
1831
1952
  };
1832
1953
  image?: {
@@ -1837,17 +1958,17 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1837
1958
  } | undefined;
1838
1959
  description?: string | undefined;
1839
1960
  icon?: {
1840
- name: string;
1841
- } | {
1842
1961
  text: string;
1962
+ } | {
1963
+ name: string;
1843
1964
  } | undefined;
1844
1965
  }, {
1845
1966
  type: "search";
1846
1967
  title: string;
1847
1968
  value: {
1848
1969
  url: string;
1849
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1850
1970
  param: string;
1971
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1851
1972
  query: string;
1852
1973
  };
1853
1974
  image?: {
@@ -1858,250 +1979,11 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1858
1979
  } | undefined;
1859
1980
  description?: string | undefined;
1860
1981
  icon?: {
1861
- name: string;
1862
- } | {
1863
1982
  text: string;
1983
+ } | {
1984
+ name: string;
1864
1985
  } | 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;
2102
- } | undefined;
2103
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
2104
- }>;
1986
+ }>]>;
2105
1987
  export declare const searchResponseBodySchema: z.ZodObject<{
2106
1988
  results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
2107
1989
  type: z.ZodLiteral<"action">;
@@ -2205,9 +2087,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2205
2087
  } | undefined;
2206
2088
  description?: string | undefined;
2207
2089
  icon?: {
2208
- name: string;
2209
- } | {
2210
2090
  text: string;
2091
+ } | {
2092
+ name: string;
2211
2093
  } | undefined;
2212
2094
  }, {
2213
2095
  type: "action";
@@ -2235,9 +2117,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2235
2117
  } | undefined;
2236
2118
  description?: string | undefined;
2237
2119
  icon?: {
2238
- name: string;
2239
- } | {
2240
2120
  text: string;
2121
+ } | {
2122
+ name: string;
2241
2123
  } | undefined;
2242
2124
  }>, z.ZodObject<{
2243
2125
  type: z.ZodLiteral<"search">;
@@ -2279,13 +2161,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2279
2161
  query: z.ZodString;
2280
2162
  }, "strip", z.ZodTypeAny, {
2281
2163
  url: string;
2282
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2283
2164
  param: string;
2165
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2284
2166
  query: string;
2285
2167
  }, {
2286
2168
  url: string;
2287
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2288
2169
  param: string;
2170
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2289
2171
  query: string;
2290
2172
  }>;
2291
2173
  }, "strip", z.ZodTypeAny, {
@@ -2293,8 +2175,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2293
2175
  title: string;
2294
2176
  value: {
2295
2177
  url: string;
2296
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2297
2178
  param: string;
2179
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2298
2180
  query: string;
2299
2181
  };
2300
2182
  image?: {
@@ -2305,17 +2187,17 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2305
2187
  } | undefined;
2306
2188
  description?: string | undefined;
2307
2189
  icon?: {
2308
- name: string;
2309
- } | {
2310
2190
  text: string;
2191
+ } | {
2192
+ name: string;
2311
2193
  } | undefined;
2312
2194
  }, {
2313
2195
  type: "search";
2314
2196
  title: string;
2315
2197
  value: {
2316
2198
  url: string;
2317
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2318
2199
  param: string;
2200
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2319
2201
  query: string;
2320
2202
  };
2321
2203
  image?: {
@@ -2326,34 +2208,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2326
2208
  } | undefined;
2327
2209
  description?: string | undefined;
2328
2210
  icon?: {
2329
- name: string;
2330
- } | {
2331
2211
  text: string;
2212
+ } | {
2213
+ name: string;
2332
2214
  } | undefined;
2333
2215
  }>]>, "many">;
2334
2216
  }, "strip", z.ZodTypeAny, {
2335
2217
  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
- } | {
2357
2218
  type: "action";
2358
2219
  title: string;
2359
2220
  value: {
@@ -2379,19 +2240,17 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2379
2240
  } | undefined;
2380
2241
  description?: string | undefined;
2381
2242
  icon?: {
2382
- name: string;
2383
- } | {
2384
2243
  text: string;
2244
+ } | {
2245
+ name: string;
2385
2246
  } | undefined;
2386
- })[];
2387
- }, {
2388
- results: ({
2247
+ } | {
2389
2248
  type: "search";
2390
2249
  title: string;
2391
2250
  value: {
2392
2251
  url: string;
2393
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2394
2252
  param: string;
2253
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2395
2254
  query: string;
2396
2255
  };
2397
2256
  image?: {
@@ -2402,11 +2261,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2402
2261
  } | undefined;
2403
2262
  description?: string | undefined;
2404
2263
  icon?: {
2405
- name: string;
2406
- } | {
2407
2264
  text: string;
2265
+ } | {
2266
+ name: string;
2408
2267
  } | undefined;
2409
- } | {
2268
+ })[];
2269
+ }, {
2270
+ results: ({
2410
2271
  type: "action";
2411
2272
  title: string;
2412
2273
  value: {
@@ -2432,54 +2293,193 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2432
2293
  } | undefined;
2433
2294
  description?: string | undefined;
2434
2295
  icon?: {
2435
- name: string;
2296
+ text: string;
2436
2297
  } | {
2298
+ 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?: {
2437
2317
  text: string;
2318
+ } | {
2319
+ name: string;
2438
2320
  } | undefined;
2439
2321
  })[];
2440
2322
  }>;
2441
- export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
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>;
2442
2442
  export declare const behaviorSchema: z.ZodSchema<Behavior>;
2443
- export declare const reviewLayoutCallToActionSchema: z.ZodSchema<ReviewLayoutCallToAction>;
2444
- export declare const tabsLayoutSchema: z.ZodSchema<TabsLayout>;
2445
- export declare const tabsLayoutTabSchema: z.ZodSchema<TabsLayoutTab>;
2443
+ export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
2444
+ export declare const layoutSchema: z.ZodSchema<Layout>;
2446
2445
  export declare const alertLayoutSchema: z.ZodSchema<AlertLayout>;
2447
2446
  export declare const alertLayoutCallToActionSchema: z.ZodSchema<AlertLayoutCallToAction>;
2448
2447
  export declare const listLayoutSchema: z.ZodSchema<ListLayout>;
2449
2448
  export declare const listLayoutCallToActionSchema: z.ZodSchema<ListLayoutCallToAction>;
2450
2449
  export declare const listLayoutItemSchema: z.ZodSchema<ListLayoutItem>;
2451
- export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
2452
- export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption>;
2453
2450
  export declare const sectionLayoutCallToActionSchema: z.ZodSchema<SectionLayoutCallToAction>;
2454
2451
  export declare const statusListLayoutSchema: z.ZodSchema<StatusListLayout>;
2455
2452
  export declare const statusListLayoutItemSchema: z.ZodSchema<StatusListLayoutItem>;
2456
- export declare const sectionLayoutSchema: z.ZodSchema<SectionLayout>;
2457
- export declare const layoutSchema: z.ZodSchema<Layout>;
2458
- export declare const itemCallToActionSchema: z.ZodSchema<ItemCallToAction>;
2453
+ export declare const tabsLayoutTabSchema: z.ZodSchema<TabsLayoutTab>;
2459
2454
  export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
2455
+ 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>;
2460
2459
  export declare const buttonLayoutSchema: z.ZodSchema<ButtonLayout>;
2460
+ export declare const itemCallToActionSchema: z.ZodSchema<ItemCallToAction>;
2461
+ export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
2462
+ export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
2461
2463
  export declare const columnsLayoutSchema: z.ZodSchema<ColumnsLayout>;
2462
2464
  export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
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>;
2465
+ export declare const tabsLayoutSchema: z.ZodSchema<TabsLayout>;
2467
2466
  export declare const stepSchema: z.ZodSchema<Step>;
2468
2467
  export declare const schemaSchema: z.ZodSchema<Schema>;
2469
2468
  export declare const pollingSchema: z.ZodSchema<Polling>;
2470
2469
  export declare const linkHandlerSchema: z.ZodSchema<LinkHandler>;
2471
- export declare const allOfSchemaSchema: z.ZodSchema<AllOfSchema>;
2472
- export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
2470
+ export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
2471
+ export declare const modalBehaviorSchema: z.ZodSchema<ModalBehavior>;
2472
+ export declare const pollingOnErrorSchema: z.ZodSchema<PollingOnError>;
2473
2473
  export declare const blobSchemaSchema: z.ZodSchema<BlobSchema>;
2474
- export declare const booleanSchemaSchema: z.ZodSchema<BooleanSchema>;
2475
- export declare const constSchemaSchema: z.ZodSchema<ConstSchema>;
2476
- export declare const integerSchemaSchema: z.ZodSchema<IntegerSchema>;
2477
- export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
2478
- export declare const objectSchemaSchema: z.ZodSchema<ObjectSchema>;
2479
2474
  export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
2475
+ export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
2480
2476
  export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
2477
+ export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
2478
+ export declare const integerSchemaSchema: z.ZodSchema<IntegerSchema>;
2479
+ export declare const objectSchemaSchema: z.ZodSchema<ObjectSchema>;
2480
+ export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
2481
2481
  export declare const arraySchemaListSchema: z.ZodSchema<ArraySchemaList>;
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>;
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>;