@wise/dynamic-flow-types 3.9.0-experimental-189acbd → 3.9.0

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