@wise/dynamic-flow-types 3.6.3-experimental-f87d7c4 → 3.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,15 +1,5 @@
1
1
  import { z } from 'zod';
2
- import type { JsonElement, DecisionLayoutOption, Behavior, ModalLayoutContent, Layout, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, TabsLayoutTab, BoxLayout, SectionLayout, ReviewLayout, ReviewLayoutField, ReviewLayoutCallToAction, ButtonLayout, ItemCallToAction, DecisionLayout, AdditionalInfo, ColumnsLayout, ModalLayout, TabsLayout, Step, Schema, Polling, LinkHandler, PersistAsync, ModalBehavior, PollingOnError, BlobSchema, OneOfSchema, ArraySchemaTuple, StringSchema, NumberSchema, IntegerSchema, ObjectSchema, ArraySchema, ArraySchemaList, ConstSchema, BooleanSchema, AllOfSchema, ModalResponseBody } from '../next';
3
- export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
4
- export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
5
- export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
6
- export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
7
- $ref: z.ZodString;
8
- }, "strip", z.ZodTypeAny, {
9
- $ref: string;
10
- }, {
11
- $ref: string;
12
- }>;
2
+ import type { JsonElement, AdditionalInfo, Behavior, ReviewLayoutCallToAction, TabsLayout, TabsLayoutTab, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, DecisionLayout, DecisionLayoutOption, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, SectionLayout, Layout, ItemCallToAction, BoxLayout, ButtonLayout, ColumnsLayout, ModalLayout, ReviewLayout, ReviewLayoutField, ModalLayoutContent, ModalResponseBody, Step, Schema, Polling, LinkHandler, AllOfSchema, ArraySchema, BlobSchema, BooleanSchema, ConstSchema, IntegerSchema, NumberSchema, ObjectSchema, OneOfSchema, StringSchema, ArraySchemaList, PersistAsync, ArraySchemaTuple, PollingOnError, ModalBehavior } from '../next';
13
3
  export declare const imageSchema: z.ZodObject<{
14
4
  text: z.ZodOptional<z.ZodString>;
15
5
  url: z.ZodOptional<z.ZodString>;
@@ -26,6 +16,14 @@ export declare const imageSchema: z.ZodObject<{
26
16
  uri?: string | undefined;
27
17
  accessibilityDescription?: string | undefined;
28
18
  }>;
19
+ export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
20
+ export declare const iconNamedSchema: z.ZodObject<{
21
+ name: z.ZodString;
22
+ }, "strip", z.ZodTypeAny, {
23
+ name: string;
24
+ }, {
25
+ name: string;
26
+ }>;
29
27
  export declare const supportingValuesSchema: z.ZodObject<{
30
28
  value: z.ZodOptional<z.ZodString>;
31
29
  subvalue: z.ZodOptional<z.ZodString>;
@@ -36,49 +34,97 @@ export declare const supportingValuesSchema: z.ZodObject<{
36
34
  value?: string | undefined;
37
35
  subvalue?: string | undefined;
38
36
  }>;
39
- export declare const headingLayoutSchema: z.ZodObject<{
40
- type: z.ZodLiteral<"heading">;
37
+ export declare const contextSchema: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
38
+ export declare const inlineAlertSchema: z.ZodObject<{
39
+ content: z.ZodString;
40
+ context: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>>;
41
+ }, "strip", z.ZodTypeAny, {
42
+ content: string;
43
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
44
+ }, {
45
+ content: string;
46
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
47
+ }>;
48
+ export declare const iconTextSchema: z.ZodObject<{
41
49
  text: z.ZodString;
50
+ }, "strip", z.ZodTypeAny, {
51
+ text: string;
52
+ }, {
53
+ text: string;
54
+ }>;
55
+ export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
56
+ export declare const autocapitalizationTypeSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"characters">, z.ZodLiteral<"sentences">, z.ZodLiteral<"words">]>;
57
+ export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
58
+ export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
59
+ name: z.ZodString;
60
+ }, "strip", z.ZodTypeAny, {
61
+ name: string;
62
+ }, {
63
+ name: string;
64
+ }>, z.ZodObject<{
65
+ text: z.ZodString;
66
+ }, "strip", z.ZodTypeAny, {
67
+ text: string;
68
+ }, {
69
+ text: string;
70
+ }>]>;
71
+ export declare const 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">]>;
72
+ export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
73
+ type: z.ZodLiteral<"loading-indicator">;
42
74
  size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
43
- align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
44
75
  control: z.ZodOptional<z.ZodString>;
45
76
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
46
77
  }, "strip", z.ZodTypeAny, {
47
- type: "heading";
48
- text: string;
78
+ type: "loading-indicator";
49
79
  control?: string | undefined;
50
80
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
51
- align?: "left" | "right" | "center" | undefined;
52
81
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
53
82
  }, {
54
- type: "heading";
55
- text: string;
83
+ type: "loading-indicator";
56
84
  control?: string | undefined;
57
85
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
58
- align?: "left" | "right" | "center" | undefined;
59
86
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
60
87
  }>;
61
- export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
62
- 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">]>;
63
- export declare const markdownLayoutSchema: z.ZodObject<{
64
- type: z.ZodLiteral<"markdown">;
65
- content: z.ZodString;
88
+ export declare const paragraphLayoutSchema: z.ZodObject<{
89
+ type: z.ZodLiteral<"paragraph">;
90
+ text: z.ZodString;
66
91
  align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
67
92
  control: z.ZodOptional<z.ZodString>;
68
93
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
69
94
  }, "strip", z.ZodTypeAny, {
70
- type: "markdown";
71
- content: string;
95
+ type: "paragraph";
96
+ text: string;
72
97
  control?: string | undefined;
73
- align?: "left" | "right" | "center" | undefined;
74
98
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
99
+ align?: "left" | "right" | "center" | undefined;
75
100
  }, {
76
- type: "markdown";
77
- content: string;
101
+ type: "paragraph";
102
+ text: string;
78
103
  control?: string | undefined;
104
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
79
105
  align?: "left" | "right" | "center" | undefined;
106
+ }>;
107
+ export declare const dividerLayoutSchema: z.ZodObject<{
108
+ type: z.ZodLiteral<"divider">;
109
+ control: z.ZodOptional<z.ZodString>;
110
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ type: "divider";
113
+ control?: string | undefined;
114
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
115
+ }, {
116
+ type: "divider";
117
+ control?: string | undefined;
80
118
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
81
119
  }>;
120
+ export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
121
+ export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
122
+ $ref: z.ZodString;
123
+ }, "strip", z.ZodTypeAny, {
124
+ $ref: string;
125
+ }, {
126
+ $ref: string;
127
+ }>;
82
128
  export declare const imageLayoutSchema: z.ZodObject<{
83
129
  type: z.ZodLiteral<"image">;
84
130
  text: z.ZodOptional<z.ZodString>;
@@ -110,30 +156,44 @@ export declare const imageLayoutSchema: z.ZodObject<{
110
156
  control?: string | undefined;
111
157
  text?: string | undefined;
112
158
  accessibilityDescription?: string | undefined;
113
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
114
- align?: "left" | "right" | "center" | undefined;
115
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
116
159
  content?: {
117
160
  url?: string | undefined;
118
161
  text?: string | undefined;
119
162
  uri?: string | undefined;
120
163
  accessibilityDescription?: string | undefined;
121
164
  } | undefined;
165
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
166
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
167
+ align?: "left" | "right" | "center" | undefined;
122
168
  }, {
123
169
  type: "image";
124
170
  url?: string | undefined;
125
171
  control?: string | undefined;
126
172
  text?: string | undefined;
127
173
  accessibilityDescription?: string | undefined;
128
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
129
- align?: "left" | "right" | "center" | undefined;
130
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
131
174
  content?: {
132
175
  url?: string | undefined;
133
176
  text?: string | undefined;
134
177
  uri?: string | undefined;
135
178
  accessibilityDescription?: string | undefined;
136
179
  } | undefined;
180
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
181
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
182
+ align?: "left" | "right" | "center" | undefined;
183
+ }>;
184
+ export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
185
+ export declare const instructionsLayoutItemSchema: z.ZodObject<{
186
+ text: z.ZodString;
187
+ 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">]>;
188
+ tag: z.ZodOptional<z.ZodString>;
189
+ }, "strip", z.ZodTypeAny, {
190
+ text: string;
191
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
192
+ tag?: string | undefined;
193
+ }, {
194
+ text: string;
195
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
196
+ tag?: string | undefined;
137
197
  }>;
138
198
  export declare const modalLayoutTriggerSchema: z.ZodObject<{
139
199
  title: z.ZodString;
@@ -142,63 +202,147 @@ export declare const modalLayoutTriggerSchema: z.ZodObject<{
142
202
  }, {
143
203
  title: string;
144
204
  }>;
145
- export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
146
- export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
147
- type: z.ZodLiteral<"loading-indicator">;
148
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
205
+ export declare const searchLayoutSchema: z.ZodObject<{
206
+ type: z.ZodLiteral<"search">;
207
+ title: z.ZodString;
208
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
209
+ url: z.ZodString;
210
+ param: z.ZodString;
211
+ emptyMessage: z.ZodOptional<z.ZodString>;
149
212
  control: z.ZodOptional<z.ZodString>;
150
213
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
151
214
  }, "strip", z.ZodTypeAny, {
152
- type: "loading-indicator";
215
+ url: string;
216
+ type: "search";
217
+ title: string;
218
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
219
+ param: string;
153
220
  control?: string | undefined;
154
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
155
221
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
222
+ emptyMessage?: string | undefined;
156
223
  }, {
157
- type: "loading-indicator";
224
+ url: string;
225
+ type: "search";
226
+ title: string;
227
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
228
+ param: string;
158
229
  control?: string | undefined;
159
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
160
230
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
231
+ emptyMessage?: string | undefined;
161
232
  }>;
162
- export declare const helpSchema: z.ZodObject<{
233
+ export declare const infoLayoutSchema: z.ZodObject<{
234
+ type: z.ZodLiteral<"info">;
163
235
  markdown: z.ZodString;
236
+ align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
237
+ control: z.ZodOptional<z.ZodString>;
238
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
164
239
  }, "strip", z.ZodTypeAny, {
240
+ type: "info";
165
241
  markdown: string;
242
+ control?: string | undefined;
243
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
244
+ align?: "left" | "right" | "center" | undefined;
166
245
  }, {
246
+ type: "info";
167
247
  markdown: string;
248
+ control?: string | undefined;
249
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
250
+ align?: "left" | "right" | "center" | undefined;
168
251
  }>;
169
- export declare const dividerLayoutSchema: z.ZodObject<{
170
- type: z.ZodLiteral<"divider">;
252
+ export declare const formLayoutSchema: z.ZodObject<{
253
+ type: z.ZodLiteral<"form">;
254
+ schema: z.ZodOptional<z.ZodObject<{
255
+ $ref: z.ZodString;
256
+ }, "strip", z.ZodTypeAny, {
257
+ $ref: string;
258
+ }, {
259
+ $ref: string;
260
+ }>>;
261
+ schemaId: z.ZodString;
171
262
  control: z.ZodOptional<z.ZodString>;
172
263
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
173
264
  }, "strip", z.ZodTypeAny, {
174
- type: "divider";
265
+ type: "form";
266
+ schemaId: string;
175
267
  control?: string | undefined;
176
268
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
269
+ schema?: {
270
+ $ref: string;
271
+ } | undefined;
177
272
  }, {
178
- type: "divider";
273
+ type: "form";
274
+ schemaId: string;
179
275
  control?: string | undefined;
180
276
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
277
+ schema?: {
278
+ $ref: string;
279
+ } | undefined;
181
280
  }>;
182
- export declare const paragraphLayoutSchema: z.ZodObject<{
183
- type: z.ZodLiteral<"paragraph">;
281
+ export declare const headingLayoutSchema: z.ZodObject<{
282
+ type: z.ZodLiteral<"heading">;
184
283
  text: z.ZodString;
284
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
185
285
  align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
186
286
  control: z.ZodOptional<z.ZodString>;
187
287
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
188
288
  }, "strip", z.ZodTypeAny, {
189
- type: "paragraph";
289
+ type: "heading";
190
290
  text: string;
191
291
  control?: string | undefined;
192
- align?: "left" | "right" | "center" | undefined;
292
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
193
293
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
294
+ align?: "left" | "right" | "center" | undefined;
194
295
  }, {
195
- type: "paragraph";
296
+ type: "heading";
196
297
  text: string;
197
298
  control?: string | undefined;
299
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
300
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
301
+ align?: "left" | "right" | "center" | undefined;
302
+ }>;
303
+ export declare const markdownLayoutSchema: z.ZodObject<{
304
+ type: z.ZodLiteral<"markdown">;
305
+ content: z.ZodString;
306
+ align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
307
+ control: z.ZodOptional<z.ZodString>;
308
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
309
+ }, "strip", z.ZodTypeAny, {
310
+ type: "markdown";
311
+ content: string;
312
+ control?: string | undefined;
313
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
198
314
  align?: "left" | "right" | "center" | undefined;
315
+ }, {
316
+ type: "markdown";
317
+ content: string;
318
+ control?: string | undefined;
199
319
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
320
+ align?: "left" | "right" | "center" | undefined;
321
+ }>;
322
+ export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
323
+ export declare const helpSchema: z.ZodObject<{
324
+ markdown: z.ZodString;
325
+ }, "strip", z.ZodTypeAny, {
326
+ markdown: string;
327
+ }, {
328
+ markdown: string;
329
+ }>;
330
+ export declare const searchSearchRequestSchema: z.ZodObject<{
331
+ url: z.ZodString;
332
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
333
+ param: z.ZodString;
334
+ query: z.ZodString;
335
+ }, "strip", z.ZodTypeAny, {
336
+ url: string;
337
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
338
+ param: string;
339
+ query: string;
340
+ }, {
341
+ url: string;
342
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
343
+ param: string;
344
+ query: string;
200
345
  }>;
201
- export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
202
346
  export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
203
347
  export declare const externalSchema: z.ZodObject<{
204
348
  url: z.ZodString;
@@ -217,45 +361,174 @@ export declare const stepErrorSchema: z.ZodObject<{
217
361
  validation?: JsonElement | undefined;
218
362
  error?: string | undefined;
219
363
  }>;
220
- export declare const summaryProviderSchema: z.ZodObject<{
221
- providesTitle: z.ZodOptional<z.ZodBoolean>;
222
- providesDescription: z.ZodOptional<z.ZodBoolean>;
223
- providesIcon: z.ZodOptional<z.ZodBoolean>;
364
+ 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">]>;
365
+ export declare const summarySummariserSchema: z.ZodObject<{
366
+ defaultTitle: z.ZodOptional<z.ZodString>;
367
+ defaultDescription: z.ZodOptional<z.ZodString>;
368
+ defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
369
+ name: z.ZodString;
370
+ }, "strip", z.ZodTypeAny, {
371
+ name: string;
372
+ }, {
373
+ name: string;
374
+ }>, z.ZodObject<{
375
+ text: z.ZodString;
376
+ }, "strip", z.ZodTypeAny, {
377
+ text: string;
378
+ }, {
379
+ text: string;
380
+ }>]>>;
381
+ defaultImage: z.ZodOptional<z.ZodObject<{
382
+ text: z.ZodOptional<z.ZodString>;
383
+ url: z.ZodOptional<z.ZodString>;
384
+ uri: z.ZodOptional<z.ZodString>;
385
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
386
+ }, "strip", z.ZodTypeAny, {
387
+ url?: string | undefined;
388
+ text?: string | undefined;
389
+ uri?: string | undefined;
390
+ accessibilityDescription?: string | undefined;
391
+ }, {
392
+ url?: string | undefined;
393
+ text?: string | undefined;
394
+ uri?: string | undefined;
395
+ accessibilityDescription?: string | undefined;
396
+ }>>;
397
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
398
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
399
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
224
400
  providesImage: z.ZodOptional<z.ZodBoolean>;
225
401
  }, "strip", z.ZodTypeAny, {
402
+ defaultTitle?: string | undefined;
403
+ defaultDescription?: string | undefined;
404
+ defaultIcon?: {
405
+ name: string;
406
+ } | {
407
+ text: string;
408
+ } | undefined;
409
+ defaultImage?: {
410
+ url?: string | undefined;
411
+ text?: string | undefined;
412
+ uri?: string | undefined;
413
+ accessibilityDescription?: string | undefined;
414
+ } | undefined;
226
415
  providesTitle?: boolean | undefined;
227
416
  providesDescription?: boolean | undefined;
228
417
  providesIcon?: boolean | undefined;
229
418
  providesImage?: boolean | undefined;
230
419
  }, {
420
+ defaultTitle?: string | undefined;
421
+ defaultDescription?: string | undefined;
422
+ defaultIcon?: {
423
+ name: string;
424
+ } | {
425
+ text: string;
426
+ } | undefined;
427
+ defaultImage?: {
428
+ url?: string | undefined;
429
+ text?: string | undefined;
430
+ uri?: string | undefined;
431
+ accessibilityDescription?: string | undefined;
432
+ } | undefined;
231
433
  providesTitle?: boolean | undefined;
232
434
  providesDescription?: boolean | undefined;
233
435
  providesIcon?: boolean | undefined;
234
436
  providesImage?: boolean | undefined;
235
437
  }>;
236
- export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
237
- export declare const linkSchema: z.ZodObject<{
238
- url: z.ZodString;
239
- }, "strip", z.ZodTypeAny, {
240
- url: string;
241
- }, {
242
- url: string;
243
- }>;
244
438
  export declare const validateAsyncSchema: z.ZodObject<{
245
439
  param: z.ZodString;
246
440
  method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
247
441
  url: z.ZodString;
248
442
  }, "strip", z.ZodTypeAny, {
249
443
  url: string;
250
- param: string;
251
444
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
445
+ param: string;
252
446
  }, {
253
447
  url: string;
254
- param: string;
255
448
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
449
+ param: string;
450
+ }>;
451
+ export declare const summaryProviderSchema: z.ZodObject<{
452
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
453
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
454
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
455
+ providesImage: z.ZodOptional<z.ZodBoolean>;
456
+ }, "strip", z.ZodTypeAny, {
457
+ providesTitle?: boolean | undefined;
458
+ providesDescription?: boolean | undefined;
459
+ providesIcon?: boolean | undefined;
460
+ providesImage?: boolean | undefined;
461
+ }, {
462
+ providesTitle?: boolean | undefined;
463
+ providesDescription?: boolean | undefined;
464
+ providesIcon?: boolean | undefined;
465
+ providesImage?: boolean | undefined;
466
+ }>;
467
+ export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
468
+ export declare const suggestionsValueSchema: z.ZodObject<{
469
+ label: z.ZodString;
470
+ value: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
471
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
472
+ name: z.ZodString;
473
+ }, "strip", z.ZodTypeAny, {
474
+ name: string;
475
+ }, {
476
+ name: string;
477
+ }>, z.ZodObject<{
478
+ text: z.ZodString;
479
+ }, "strip", z.ZodTypeAny, {
480
+ text: string;
481
+ }, {
482
+ text: string;
483
+ }>]>>;
484
+ image: z.ZodOptional<z.ZodObject<{
485
+ text: z.ZodOptional<z.ZodString>;
486
+ url: z.ZodOptional<z.ZodString>;
487
+ uri: z.ZodOptional<z.ZodString>;
488
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
489
+ }, "strip", z.ZodTypeAny, {
490
+ url?: string | undefined;
491
+ text?: string | undefined;
492
+ uri?: string | undefined;
493
+ accessibilityDescription?: string | undefined;
494
+ }, {
495
+ url?: string | undefined;
496
+ text?: string | undefined;
497
+ uri?: string | undefined;
498
+ accessibilityDescription?: string | undefined;
499
+ }>>;
500
+ tag: z.ZodOptional<z.ZodString>;
501
+ }, "strip", z.ZodTypeAny, {
502
+ value: JsonElement;
503
+ label: string;
504
+ image?: {
505
+ url?: string | undefined;
506
+ text?: string | undefined;
507
+ uri?: string | undefined;
508
+ accessibilityDescription?: string | undefined;
509
+ } | undefined;
510
+ icon?: {
511
+ name: string;
512
+ } | {
513
+ text: string;
514
+ } | undefined;
515
+ tag?: string | undefined;
516
+ }, {
517
+ value: JsonElement;
518
+ label: string;
519
+ image?: {
520
+ url?: string | undefined;
521
+ text?: string | undefined;
522
+ uri?: string | undefined;
523
+ accessibilityDescription?: string | undefined;
524
+ } | undefined;
525
+ icon?: {
526
+ name: string;
527
+ } | {
528
+ text: string;
529
+ } | undefined;
530
+ tag?: string | undefined;
256
531
  }>;
257
- export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
258
- export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
259
532
  export declare const dismissBehaviorSchema: z.ZodObject<{
260
533
  type: z.ZodLiteral<"dismiss">;
261
534
  }, "strip", z.ZodTypeAny, {
@@ -263,6 +536,96 @@ export declare const dismissBehaviorSchema: z.ZodObject<{
263
536
  }, {
264
537
  type: "dismiss";
265
538
  }>;
539
+ export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
540
+ export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
541
+ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
542
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
543
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
544
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
545
+ providesImage: z.ZodOptional<z.ZodBoolean>;
546
+ }, "strip", z.ZodTypeAny, {
547
+ providesTitle?: boolean | undefined;
548
+ providesDescription?: boolean | undefined;
549
+ providesIcon?: boolean | undefined;
550
+ providesImage?: boolean | undefined;
551
+ }, {
552
+ providesTitle?: boolean | undefined;
553
+ providesDescription?: boolean | undefined;
554
+ providesIcon?: boolean | undefined;
555
+ providesImage?: boolean | undefined;
556
+ }>, z.ZodObject<{
557
+ defaultTitle: z.ZodOptional<z.ZodString>;
558
+ defaultDescription: z.ZodOptional<z.ZodString>;
559
+ defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
560
+ name: z.ZodString;
561
+ }, "strip", z.ZodTypeAny, {
562
+ name: string;
563
+ }, {
564
+ name: string;
565
+ }>, z.ZodObject<{
566
+ text: z.ZodString;
567
+ }, "strip", z.ZodTypeAny, {
568
+ text: string;
569
+ }, {
570
+ text: string;
571
+ }>]>>;
572
+ defaultImage: z.ZodOptional<z.ZodObject<{
573
+ text: z.ZodOptional<z.ZodString>;
574
+ url: z.ZodOptional<z.ZodString>;
575
+ uri: z.ZodOptional<z.ZodString>;
576
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
577
+ }, "strip", z.ZodTypeAny, {
578
+ url?: string | undefined;
579
+ text?: string | undefined;
580
+ uri?: string | undefined;
581
+ accessibilityDescription?: string | undefined;
582
+ }, {
583
+ url?: string | undefined;
584
+ text?: string | undefined;
585
+ uri?: string | undefined;
586
+ accessibilityDescription?: string | undefined;
587
+ }>>;
588
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
589
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
590
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
591
+ providesImage: z.ZodOptional<z.ZodBoolean>;
592
+ }, "strip", z.ZodTypeAny, {
593
+ defaultTitle?: string | undefined;
594
+ defaultDescription?: string | undefined;
595
+ defaultIcon?: {
596
+ name: string;
597
+ } | {
598
+ text: string;
599
+ } | undefined;
600
+ defaultImage?: {
601
+ url?: string | undefined;
602
+ text?: string | undefined;
603
+ uri?: string | undefined;
604
+ accessibilityDescription?: string | undefined;
605
+ } | undefined;
606
+ providesTitle?: boolean | undefined;
607
+ providesDescription?: boolean | undefined;
608
+ providesIcon?: boolean | undefined;
609
+ providesImage?: boolean | undefined;
610
+ }, {
611
+ defaultTitle?: string | undefined;
612
+ defaultDescription?: string | undefined;
613
+ defaultIcon?: {
614
+ name: string;
615
+ } | {
616
+ text: string;
617
+ } | undefined;
618
+ defaultImage?: {
619
+ url?: string | undefined;
620
+ text?: string | undefined;
621
+ uri?: string | undefined;
622
+ accessibilityDescription?: string | undefined;
623
+ } | undefined;
624
+ providesTitle?: boolean | undefined;
625
+ providesDescription?: boolean | undefined;
626
+ providesIcon?: boolean | undefined;
627
+ providesImage?: boolean | undefined;
628
+ }>]>;
266
629
  export declare const linkBehaviorSchema: z.ZodObject<{
267
630
  type: z.ZodLiteral<"link">;
268
631
  url: z.ZodString;
@@ -280,105 +643,12 @@ export declare const refreshBehaviorSchema: z.ZodObject<{
280
643
  }, {
281
644
  type: "refresh";
282
645
  }>;
283
- 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">]>;
284
- 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">]>;
285
- export declare const autocapitalizationTypeSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"characters">, z.ZodLiteral<"sentences">, z.ZodLiteral<"words">]>;
286
- export declare const searchSearchRequestSchema: z.ZodObject<{
646
+ export declare const linkSchema: z.ZodObject<{
287
647
  url: z.ZodString;
288
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
289
- param: z.ZodString;
290
- query: z.ZodString;
291
648
  }, "strip", z.ZodTypeAny, {
292
649
  url: string;
293
- param: string;
294
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
295
- query: string;
296
650
  }, {
297
651
  url: string;
298
- param: string;
299
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
300
- query: string;
301
- }>;
302
- export declare const errorResponseBodySchema: z.ZodObject<{
303
- refreshFormUrl: z.ZodOptional<z.ZodString>;
304
- analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
305
- error: z.ZodOptional<z.ZodString>;
306
- validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
307
- refreshUrl: z.ZodOptional<z.ZodString>;
308
- }, "strip", z.ZodTypeAny, {
309
- refreshUrl?: string | undefined;
310
- refreshFormUrl?: string | undefined;
311
- analytics?: Record<string, string> | undefined;
312
- validation?: JsonElement | undefined;
313
- error?: string | undefined;
314
- }, {
315
- refreshUrl?: string | undefined;
316
- refreshFormUrl?: string | undefined;
317
- analytics?: Record<string, string> | undefined;
318
- validation?: JsonElement | undefined;
319
- error?: string | undefined;
320
- }>;
321
- export declare const iconTextSchema: z.ZodObject<{
322
- text: z.ZodString;
323
- }, "strip", z.ZodTypeAny, {
324
- text: string;
325
- }, {
326
- text: string;
327
- }>;
328
- export declare const iconNamedSchema: z.ZodObject<{
329
- name: z.ZodString;
330
- }, "strip", z.ZodTypeAny, {
331
- name: string;
332
- }, {
333
- name: string;
334
- }>;
335
- export declare const infoLayoutSchema: z.ZodObject<{
336
- type: z.ZodLiteral<"info">;
337
- markdown: z.ZodString;
338
- align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
339
- control: z.ZodOptional<z.ZodString>;
340
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
341
- }, "strip", z.ZodTypeAny, {
342
- type: "info";
343
- markdown: string;
344
- control?: string | undefined;
345
- align?: "left" | "right" | "center" | undefined;
346
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
347
- }, {
348
- type: "info";
349
- markdown: string;
350
- control?: string | undefined;
351
- align?: "left" | "right" | "center" | undefined;
352
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
353
- }>;
354
- export declare const formLayoutSchema: z.ZodObject<{
355
- type: z.ZodLiteral<"form">;
356
- schema: z.ZodOptional<z.ZodObject<{
357
- $ref: z.ZodString;
358
- }, "strip", z.ZodTypeAny, {
359
- $ref: string;
360
- }, {
361
- $ref: string;
362
- }>>;
363
- schemaId: z.ZodString;
364
- control: z.ZodOptional<z.ZodString>;
365
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
366
- }, "strip", z.ZodTypeAny, {
367
- type: "form";
368
- schemaId: string;
369
- control?: string | undefined;
370
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
371
- schema?: {
372
- $ref: string;
373
- } | undefined;
374
- }, {
375
- type: "form";
376
- schemaId: string;
377
- control?: string | undefined;
378
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
379
- schema?: {
380
- $ref: string;
381
- } | undefined;
382
652
  }>;
383
653
  export declare const actionSchema: z.ZodObject<{
384
654
  title: z.ZodOptional<z.ZodString>;
@@ -423,74 +693,50 @@ export declare const actionSchema: z.ZodObject<{
423
693
  data?: JsonElement | undefined;
424
694
  skipValidation?: boolean | undefined;
425
695
  }>;
426
- export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
427
- name: z.ZodString;
428
- }, "strip", z.ZodTypeAny, {
429
- name: string;
430
- }, {
431
- name: string;
432
- }>, z.ZodObject<{
433
- text: z.ZodString;
434
- }, "strip", z.ZodTypeAny, {
435
- text: string;
436
- }, {
437
- text: string;
438
- }>]>;
439
- export declare const inlineAlertSchema: z.ZodObject<{
440
- content: z.ZodString;
441
- 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">]>>;
442
- }, "strip", z.ZodTypeAny, {
443
- content: string;
444
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
445
- }, {
446
- content: string;
447
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
448
- }>;
449
- export declare const instructionsLayoutItemSchema: z.ZodObject<{
450
- text: z.ZodString;
451
- 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">]>;
452
- tag: z.ZodOptional<z.ZodString>;
453
- }, "strip", z.ZodTypeAny, {
454
- text: string;
455
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
456
- tag?: string | undefined;
457
- }, {
458
- text: string;
459
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
460
- tag?: string | undefined;
461
- }>;
462
- export declare const searchLayoutSchema: z.ZodObject<{
463
- type: z.ZodLiteral<"search">;
464
- title: z.ZodString;
465
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
466
- url: z.ZodString;
467
- param: z.ZodString;
468
- emptyMessage: z.ZodOptional<z.ZodString>;
696
+ export declare const instructionsLayoutSchema: z.ZodObject<{
697
+ type: z.ZodLiteral<"instructions">;
698
+ title: z.ZodOptional<z.ZodString>;
699
+ items: z.ZodArray<z.ZodObject<{
700
+ text: z.ZodString;
701
+ 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">]>;
702
+ tag: z.ZodOptional<z.ZodString>;
703
+ }, "strip", z.ZodTypeAny, {
704
+ text: string;
705
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
706
+ tag?: string | undefined;
707
+ }, {
708
+ text: string;
709
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
710
+ tag?: string | undefined;
711
+ }>, "many">;
469
712
  control: z.ZodOptional<z.ZodString>;
470
713
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
471
714
  }, "strip", z.ZodTypeAny, {
472
- url: string;
473
- type: "search";
474
- title: string;
475
- param: string;
476
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
715
+ type: "instructions";
716
+ items: {
717
+ text: string;
718
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
719
+ tag?: string | undefined;
720
+ }[];
721
+ title?: string | undefined;
477
722
  control?: string | undefined;
478
723
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
479
- emptyMessage?: string | undefined;
480
724
  }, {
481
- url: string;
482
- type: "search";
483
- title: string;
484
- param: string;
485
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
725
+ type: "instructions";
726
+ items: {
727
+ text: string;
728
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
729
+ tag?: string | undefined;
730
+ }[];
731
+ title?: string | undefined;
486
732
  control?: string | undefined;
487
733
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
488
- emptyMessage?: string | undefined;
489
734
  }>;
490
- export declare const summarySummariserSchema: z.ZodObject<{
491
- defaultTitle: z.ZodOptional<z.ZodString>;
492
- defaultDescription: z.ZodOptional<z.ZodString>;
493
- defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
735
+ export declare const searchResultSearchSchema: z.ZodObject<{
736
+ type: z.ZodLiteral<"search">;
737
+ title: z.ZodString;
738
+ description: z.ZodOptional<z.ZodString>;
739
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
494
740
  name: z.ZodString;
495
741
  }, "strip", z.ZodTypeAny, {
496
742
  name: string;
@@ -503,7 +749,7 @@ export declare const summarySummariserSchema: z.ZodObject<{
503
749
  }, {
504
750
  text: string;
505
751
  }>]>>;
506
- defaultImage: z.ZodOptional<z.ZodObject<{
752
+ image: z.ZodOptional<z.ZodObject<{
507
753
  text: z.ZodOptional<z.ZodString>;
508
754
  url: z.ZodOptional<z.ZodString>;
509
755
  uri: z.ZodOptional<z.ZodString>;
@@ -519,140 +765,99 @@ export declare const summarySummariserSchema: z.ZodObject<{
519
765
  uri?: string | undefined;
520
766
  accessibilityDescription?: string | undefined;
521
767
  }>>;
522
- providesTitle: z.ZodOptional<z.ZodBoolean>;
523
- providesDescription: z.ZodOptional<z.ZodBoolean>;
524
- providesIcon: z.ZodOptional<z.ZodBoolean>;
525
- providesImage: z.ZodOptional<z.ZodBoolean>;
768
+ value: z.ZodObject<{
769
+ url: z.ZodString;
770
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
771
+ param: z.ZodString;
772
+ query: z.ZodString;
773
+ }, "strip", z.ZodTypeAny, {
774
+ url: string;
775
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
776
+ param: string;
777
+ query: string;
778
+ }, {
779
+ url: string;
780
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
781
+ param: string;
782
+ query: string;
783
+ }>;
526
784
  }, "strip", z.ZodTypeAny, {
527
- providesTitle?: boolean | undefined;
528
- providesDescription?: boolean | undefined;
529
- providesIcon?: boolean | undefined;
530
- providesImage?: boolean | undefined;
531
- defaultTitle?: string | undefined;
532
- defaultDescription?: string | undefined;
533
- defaultIcon?: {
534
- text: string;
535
- } | {
536
- name: string;
537
- } | undefined;
538
- defaultImage?: {
785
+ type: "search";
786
+ title: string;
787
+ value: {
788
+ url: string;
789
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
790
+ param: string;
791
+ query: string;
792
+ };
793
+ image?: {
539
794
  url?: string | undefined;
540
795
  text?: string | undefined;
541
796
  uri?: string | undefined;
542
797
  accessibilityDescription?: string | undefined;
543
798
  } | undefined;
544
- }, {
545
- providesTitle?: boolean | undefined;
546
- providesDescription?: boolean | undefined;
547
- providesIcon?: boolean | undefined;
548
- providesImage?: boolean | undefined;
549
- defaultTitle?: string | undefined;
550
- defaultDescription?: string | undefined;
551
- defaultIcon?: {
552
- text: string;
553
- } | {
799
+ description?: string | undefined;
800
+ icon?: {
554
801
  name: string;
802
+ } | {
803
+ text: string;
555
804
  } | undefined;
556
- defaultImage?: {
805
+ }, {
806
+ type: "search";
807
+ title: string;
808
+ value: {
809
+ url: string;
810
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
811
+ param: string;
812
+ query: string;
813
+ };
814
+ image?: {
557
815
  url?: string | undefined;
558
816
  text?: string | undefined;
559
817
  uri?: string | undefined;
560
818
  accessibilityDescription?: string | undefined;
561
819
  } | undefined;
820
+ description?: string | undefined;
821
+ icon?: {
822
+ name: string;
823
+ } | {
824
+ text: string;
825
+ } | undefined;
562
826
  }>;
563
- export declare const containerBehaviorSchema: z.ZodObject<{
564
- action: z.ZodOptional<z.ZodObject<{
565
- title: z.ZodOptional<z.ZodString>;
566
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
567
- disabled: z.ZodOptional<z.ZodBoolean>;
568
- $id: z.ZodOptional<z.ZodString>;
569
- $ref: z.ZodOptional<z.ZodString>;
570
- id: z.ZodOptional<z.ZodString>;
571
- url: z.ZodOptional<z.ZodString>;
572
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
573
- exit: z.ZodOptional<z.ZodBoolean>;
574
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
575
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
576
- timeout: z.ZodOptional<z.ZodNumber>;
577
- skipValidation: z.ZodOptional<z.ZodBoolean>;
827
+ export declare const searchResultActionSchema: z.ZodObject<{
828
+ type: z.ZodLiteral<"action">;
829
+ title: z.ZodString;
830
+ description: z.ZodOptional<z.ZodString>;
831
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
832
+ name: z.ZodString;
578
833
  }, "strip", z.ZodTypeAny, {
579
- url?: string | undefined;
580
- $id?: string | undefined;
581
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
582
- disabled?: boolean | undefined;
583
- title?: string | undefined;
584
- timeout?: number | undefined;
585
- id?: string | undefined;
586
- $ref?: string | undefined;
587
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
588
- exit?: boolean | undefined;
589
- result?: JsonElement | undefined;
590
- data?: JsonElement | undefined;
591
- skipValidation?: boolean | undefined;
834
+ name: string;
592
835
  }, {
593
- url?: string | undefined;
594
- $id?: string | undefined;
595
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
596
- disabled?: boolean | undefined;
597
- title?: string | undefined;
598
- timeout?: number | undefined;
599
- id?: string | undefined;
600
- $ref?: string | undefined;
601
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
602
- exit?: boolean | undefined;
603
- result?: JsonElement | undefined;
604
- data?: JsonElement | undefined;
605
- skipValidation?: boolean | undefined;
606
- }>>;
607
- link: z.ZodOptional<z.ZodObject<{
608
- url: z.ZodString;
836
+ name: string;
837
+ }>, z.ZodObject<{
838
+ text: z.ZodString;
609
839
  }, "strip", z.ZodTypeAny, {
610
- url: string;
840
+ text: string;
611
841
  }, {
612
- url: string;
613
- }>>;
614
- }, "strip", z.ZodTypeAny, {
615
- action?: {
842
+ text: string;
843
+ }>]>>;
844
+ image: z.ZodOptional<z.ZodObject<{
845
+ text: z.ZodOptional<z.ZodString>;
846
+ url: z.ZodOptional<z.ZodString>;
847
+ uri: z.ZodOptional<z.ZodString>;
848
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
849
+ }, "strip", z.ZodTypeAny, {
616
850
  url?: string | undefined;
617
- $id?: string | undefined;
618
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
619
- disabled?: boolean | undefined;
620
- title?: string | undefined;
621
- timeout?: number | undefined;
622
- id?: string | undefined;
623
- $ref?: string | undefined;
624
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
625
- exit?: boolean | undefined;
626
- result?: JsonElement | undefined;
627
- data?: JsonElement | undefined;
628
- skipValidation?: boolean | undefined;
629
- } | undefined;
630
- link?: {
631
- url: string;
632
- } | undefined;
633
- }, {
634
- action?: {
851
+ text?: string | undefined;
852
+ uri?: string | undefined;
853
+ accessibilityDescription?: string | undefined;
854
+ }, {
635
855
  url?: string | undefined;
636
- $id?: string | undefined;
637
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
638
- disabled?: boolean | undefined;
639
- title?: string | undefined;
640
- timeout?: number | undefined;
641
- id?: string | undefined;
642
- $ref?: string | undefined;
643
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
644
- exit?: boolean | undefined;
645
- result?: JsonElement | undefined;
646
- data?: JsonElement | undefined;
647
- skipValidation?: boolean | undefined;
648
- } | undefined;
649
- link?: {
650
- url: string;
651
- } | undefined;
652
- }>;
653
- export declare const navigationBackBehaviorSchema: z.ZodObject<{
654
- title: z.ZodOptional<z.ZodString>;
655
- action: z.ZodObject<{
856
+ text?: string | undefined;
857
+ uri?: string | undefined;
858
+ accessibilityDescription?: string | undefined;
859
+ }>>;
860
+ value: z.ZodObject<{
656
861
  title: z.ZodOptional<z.ZodString>;
657
862
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
658
863
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -696,7 +901,9 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
696
901
  skipValidation?: boolean | undefined;
697
902
  }>;
698
903
  }, "strip", z.ZodTypeAny, {
699
- action: {
904
+ type: "action";
905
+ title: string;
906
+ value: {
700
907
  url?: string | undefined;
701
908
  $id?: string | undefined;
702
909
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -711,9 +918,22 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
711
918
  data?: JsonElement | undefined;
712
919
  skipValidation?: boolean | undefined;
713
920
  };
714
- title?: string | undefined;
921
+ image?: {
922
+ url?: string | undefined;
923
+ text?: string | undefined;
924
+ uri?: string | undefined;
925
+ accessibilityDescription?: string | undefined;
926
+ } | undefined;
927
+ description?: string | undefined;
928
+ icon?: {
929
+ name: string;
930
+ } | {
931
+ text: string;
932
+ } | undefined;
715
933
  }, {
716
- action: {
934
+ type: "action";
935
+ title: string;
936
+ value: {
717
937
  url?: string | undefined;
718
938
  $id?: string | undefined;
719
939
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -728,74 +948,20 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
728
948
  data?: JsonElement | undefined;
729
949
  skipValidation?: boolean | undefined;
730
950
  };
731
- title?: string | undefined;
732
- }>;
733
- export declare const suggestionsValueSchema: z.ZodObject<{
734
- label: z.ZodString;
735
- value: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
736
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
737
- name: z.ZodString;
738
- }, "strip", z.ZodTypeAny, {
739
- name: string;
740
- }, {
741
- name: string;
742
- }>, z.ZodObject<{
743
- text: z.ZodString;
744
- }, "strip", z.ZodTypeAny, {
745
- text: string;
746
- }, {
747
- text: string;
748
- }>]>>;
749
- image: z.ZodOptional<z.ZodObject<{
750
- text: z.ZodOptional<z.ZodString>;
751
- url: z.ZodOptional<z.ZodString>;
752
- uri: z.ZodOptional<z.ZodString>;
753
- accessibilityDescription: z.ZodOptional<z.ZodString>;
754
- }, "strip", z.ZodTypeAny, {
755
- url?: string | undefined;
756
- text?: string | undefined;
757
- uri?: string | undefined;
758
- accessibilityDescription?: string | undefined;
759
- }, {
760
- url?: string | undefined;
761
- text?: string | undefined;
762
- uri?: string | undefined;
763
- accessibilityDescription?: string | undefined;
764
- }>>;
765
- tag: z.ZodOptional<z.ZodString>;
766
- }, "strip", z.ZodTypeAny, {
767
- value: JsonElement;
768
- label: string;
769
951
  image?: {
770
952
  url?: string | undefined;
771
953
  text?: string | undefined;
772
954
  uri?: string | undefined;
773
955
  accessibilityDescription?: string | undefined;
774
956
  } | undefined;
957
+ description?: string | undefined;
775
958
  icon?: {
776
- text: string;
777
- } | {
778
959
  name: string;
779
- } | undefined;
780
- tag?: string | undefined;
781
- }, {
782
- value: JsonElement;
783
- label: string;
784
- image?: {
785
- url?: string | undefined;
786
- text?: string | undefined;
787
- uri?: string | undefined;
788
- accessibilityDescription?: string | undefined;
789
- } | undefined;
790
- icon?: {
791
- text: string;
792
960
  } | {
793
- name: string;
961
+ text: string;
794
962
  } | undefined;
795
- tag?: string | undefined;
796
963
  }>;
797
- export declare const actionBehaviorSchema: z.ZodObject<{
798
- type: z.ZodLiteral<"action">;
964
+ export declare const actionResponseBodySchema: z.ZodObject<{
799
965
  action: z.ZodObject<{
800
966
  title: z.ZodOptional<z.ZodString>;
801
967
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -855,7 +1021,6 @@ export declare const actionBehaviorSchema: z.ZodObject<{
855
1021
  data?: JsonElement | undefined;
856
1022
  skipValidation?: boolean | undefined;
857
1023
  };
858
- type: "action";
859
1024
  }, {
860
1025
  action: {
861
1026
  url?: string | undefined;
@@ -872,7 +1037,25 @@ export declare const actionBehaviorSchema: z.ZodObject<{
872
1037
  data?: JsonElement | undefined;
873
1038
  skipValidation?: boolean | undefined;
874
1039
  };
875
- type: "action";
1040
+ }>;
1041
+ export declare const errorResponseBodySchema: z.ZodObject<{
1042
+ refreshFormUrl: z.ZodOptional<z.ZodString>;
1043
+ analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1044
+ error: z.ZodOptional<z.ZodString>;
1045
+ validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1046
+ refreshUrl: z.ZodOptional<z.ZodString>;
1047
+ }, "strip", z.ZodTypeAny, {
1048
+ refreshUrl?: string | undefined;
1049
+ refreshFormUrl?: string | undefined;
1050
+ analytics?: Record<string, string> | undefined;
1051
+ validation?: JsonElement | undefined;
1052
+ error?: string | undefined;
1053
+ }, {
1054
+ refreshUrl?: string | undefined;
1055
+ refreshFormUrl?: string | undefined;
1056
+ analytics?: Record<string, string> | undefined;
1057
+ validation?: JsonElement | undefined;
1058
+ error?: string | undefined;
876
1059
  }>;
877
1060
  export declare const suggestionsSchema: z.ZodObject<{
878
1061
  values: z.ZodArray<z.ZodObject<{
@@ -918,9 +1101,9 @@ export declare const suggestionsSchema: z.ZodObject<{
918
1101
  accessibilityDescription?: string | undefined;
919
1102
  } | undefined;
920
1103
  icon?: {
921
- text: string;
922
- } | {
923
1104
  name: string;
1105
+ } | {
1106
+ text: string;
924
1107
  } | undefined;
925
1108
  tag?: string | undefined;
926
1109
  }, {
@@ -933,9 +1116,9 @@ export declare const suggestionsSchema: z.ZodObject<{
933
1116
  accessibilityDescription?: string | undefined;
934
1117
  } | undefined;
935
1118
  icon?: {
936
- text: string;
937
- } | {
938
1119
  name: string;
1120
+ } | {
1121
+ text: string;
939
1122
  } | undefined;
940
1123
  tag?: string | undefined;
941
1124
  }>, "many">;
@@ -950,9 +1133,9 @@ export declare const suggestionsSchema: z.ZodObject<{
950
1133
  accessibilityDescription?: string | undefined;
951
1134
  } | undefined;
952
1135
  icon?: {
953
- text: string;
954
- } | {
955
1136
  name: string;
1137
+ } | {
1138
+ text: string;
956
1139
  } | undefined;
957
1140
  tag?: string | undefined;
958
1141
  }[];
@@ -967,14 +1150,15 @@ export declare const suggestionsSchema: z.ZodObject<{
967
1150
  accessibilityDescription?: string | undefined;
968
1151
  } | undefined;
969
1152
  icon?: {
970
- text: string;
971
- } | {
972
1153
  name: string;
1154
+ } | {
1155
+ text: string;
973
1156
  } | undefined;
974
1157
  tag?: string | undefined;
975
1158
  }[];
976
1159
  }>;
977
- export declare const actionResponseBodySchema: z.ZodObject<{
1160
+ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1161
+ title: z.ZodOptional<z.ZodString>;
978
1162
  action: z.ZodObject<{
979
1163
  title: z.ZodOptional<z.ZodString>;
980
1164
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1034,6 +1218,7 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1034
1218
  data?: JsonElement | undefined;
1035
1219
  skipValidation?: boolean | undefined;
1036
1220
  };
1221
+ title?: string | undefined;
1037
1222
  }, {
1038
1223
  action: {
1039
1224
  url?: string | undefined;
@@ -1050,54 +1235,24 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1050
1235
  data?: JsonElement | undefined;
1051
1236
  skipValidation?: boolean | undefined;
1052
1237
  };
1238
+ title?: string | undefined;
1053
1239
  }>;
1054
- export declare const searchResultActionSchema: z.ZodObject<{
1240
+ export declare const actionBehaviorSchema: z.ZodObject<{
1055
1241
  type: z.ZodLiteral<"action">;
1056
- title: z.ZodString;
1057
- description: z.ZodOptional<z.ZodString>;
1058
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1059
- name: z.ZodString;
1060
- }, "strip", z.ZodTypeAny, {
1061
- name: string;
1062
- }, {
1063
- name: string;
1064
- }>, z.ZodObject<{
1065
- text: z.ZodString;
1066
- }, "strip", z.ZodTypeAny, {
1067
- text: string;
1068
- }, {
1069
- text: string;
1070
- }>]>>;
1071
- image: z.ZodOptional<z.ZodObject<{
1072
- text: z.ZodOptional<z.ZodString>;
1073
- url: z.ZodOptional<z.ZodString>;
1074
- uri: z.ZodOptional<z.ZodString>;
1075
- accessibilityDescription: z.ZodOptional<z.ZodString>;
1076
- }, "strip", z.ZodTypeAny, {
1077
- url?: string | undefined;
1078
- text?: string | undefined;
1079
- uri?: string | undefined;
1080
- accessibilityDescription?: string | undefined;
1081
- }, {
1082
- url?: string | undefined;
1083
- text?: string | undefined;
1084
- uri?: string | undefined;
1085
- accessibilityDescription?: string | undefined;
1086
- }>>;
1087
- value: z.ZodObject<{
1088
- title: z.ZodOptional<z.ZodString>;
1089
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1090
- disabled: z.ZodOptional<z.ZodBoolean>;
1091
- $id: z.ZodOptional<z.ZodString>;
1092
- $ref: z.ZodOptional<z.ZodString>;
1093
- id: z.ZodOptional<z.ZodString>;
1094
- url: z.ZodOptional<z.ZodString>;
1095
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1096
- exit: z.ZodOptional<z.ZodBoolean>;
1097
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1098
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1099
- timeout: z.ZodOptional<z.ZodNumber>;
1100
- skipValidation: z.ZodOptional<z.ZodBoolean>;
1242
+ action: z.ZodObject<{
1243
+ title: z.ZodOptional<z.ZodString>;
1244
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1245
+ disabled: z.ZodOptional<z.ZodBoolean>;
1246
+ $id: z.ZodOptional<z.ZodString>;
1247
+ $ref: z.ZodOptional<z.ZodString>;
1248
+ id: z.ZodOptional<z.ZodString>;
1249
+ url: z.ZodOptional<z.ZodString>;
1250
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1251
+ exit: z.ZodOptional<z.ZodBoolean>;
1252
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1253
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1254
+ timeout: z.ZodOptional<z.ZodNumber>;
1255
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1101
1256
  }, "strip", z.ZodTypeAny, {
1102
1257
  url?: string | undefined;
1103
1258
  $id?: string | undefined;
@@ -1128,9 +1283,7 @@ export declare const searchResultActionSchema: z.ZodObject<{
1128
1283
  skipValidation?: boolean | undefined;
1129
1284
  }>;
1130
1285
  }, "strip", z.ZodTypeAny, {
1131
- type: "action";
1132
- title: string;
1133
- value: {
1286
+ action: {
1134
1287
  url?: string | undefined;
1135
1288
  $id?: string | undefined;
1136
1289
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -1145,22 +1298,9 @@ export declare const searchResultActionSchema: z.ZodObject<{
1145
1298
  data?: JsonElement | undefined;
1146
1299
  skipValidation?: boolean | undefined;
1147
1300
  };
1148
- image?: {
1149
- url?: string | undefined;
1150
- text?: string | undefined;
1151
- uri?: string | undefined;
1152
- accessibilityDescription?: string | undefined;
1153
- } | undefined;
1154
- description?: string | undefined;
1155
- icon?: {
1156
- text: string;
1157
- } | {
1158
- name: string;
1159
- } | undefined;
1160
- }, {
1161
1301
  type: "action";
1162
- title: string;
1163
- value: {
1302
+ }, {
1303
+ action: {
1164
1304
  url?: string | undefined;
1165
1305
  $id?: string | undefined;
1166
1306
  type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
@@ -1175,477 +1315,98 @@ export declare const searchResultActionSchema: z.ZodObject<{
1175
1315
  data?: JsonElement | undefined;
1176
1316
  skipValidation?: boolean | undefined;
1177
1317
  };
1178
- image?: {
1179
- url?: string | undefined;
1180
- text?: string | undefined;
1181
- uri?: string | undefined;
1182
- accessibilityDescription?: string | undefined;
1183
- } | undefined;
1184
- description?: string | undefined;
1185
- icon?: {
1186
- text: string;
1187
- } | {
1188
- name: string;
1189
- } | undefined;
1318
+ type: "action";
1190
1319
  }>;
1191
- export declare const searchResultSearchSchema: z.ZodObject<{
1192
- type: z.ZodLiteral<"search">;
1193
- title: z.ZodString;
1194
- description: z.ZodOptional<z.ZodString>;
1195
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1196
- name: z.ZodString;
1197
- }, "strip", z.ZodTypeAny, {
1198
- name: string;
1199
- }, {
1200
- name: string;
1201
- }>, z.ZodObject<{
1202
- text: z.ZodString;
1203
- }, "strip", z.ZodTypeAny, {
1204
- text: string;
1205
- }, {
1206
- text: string;
1207
- }>]>>;
1208
- image: z.ZodOptional<z.ZodObject<{
1209
- text: z.ZodOptional<z.ZodString>;
1320
+ export declare const containerBehaviorSchema: z.ZodObject<{
1321
+ action: z.ZodOptional<z.ZodObject<{
1322
+ title: z.ZodOptional<z.ZodString>;
1323
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1324
+ disabled: z.ZodOptional<z.ZodBoolean>;
1325
+ $id: z.ZodOptional<z.ZodString>;
1326
+ $ref: z.ZodOptional<z.ZodString>;
1327
+ id: z.ZodOptional<z.ZodString>;
1210
1328
  url: z.ZodOptional<z.ZodString>;
1211
- uri: z.ZodOptional<z.ZodString>;
1212
- accessibilityDescription: z.ZodOptional<z.ZodString>;
1329
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1330
+ exit: z.ZodOptional<z.ZodBoolean>;
1331
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1332
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1333
+ timeout: z.ZodOptional<z.ZodNumber>;
1334
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1213
1335
  }, "strip", z.ZodTypeAny, {
1214
1336
  url?: string | undefined;
1215
- text?: string | undefined;
1216
- uri?: string | undefined;
1217
- accessibilityDescription?: string | undefined;
1337
+ $id?: string | undefined;
1338
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1339
+ disabled?: boolean | undefined;
1340
+ title?: string | undefined;
1341
+ timeout?: number | undefined;
1342
+ id?: string | undefined;
1343
+ $ref?: string | undefined;
1344
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1345
+ exit?: boolean | undefined;
1346
+ result?: JsonElement | undefined;
1347
+ data?: JsonElement | undefined;
1348
+ skipValidation?: boolean | undefined;
1218
1349
  }, {
1219
1350
  url?: string | undefined;
1220
- text?: string | undefined;
1221
- uri?: string | undefined;
1222
- accessibilityDescription?: string | undefined;
1351
+ $id?: string | undefined;
1352
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1353
+ disabled?: boolean | undefined;
1354
+ title?: string | undefined;
1355
+ timeout?: number | undefined;
1356
+ id?: string | undefined;
1357
+ $ref?: string | undefined;
1358
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1359
+ exit?: boolean | undefined;
1360
+ result?: JsonElement | undefined;
1361
+ data?: JsonElement | undefined;
1362
+ skipValidation?: boolean | undefined;
1223
1363
  }>>;
1224
- value: z.ZodObject<{
1364
+ link: z.ZodOptional<z.ZodObject<{
1225
1365
  url: z.ZodString;
1226
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
1227
- param: z.ZodString;
1228
- query: z.ZodString;
1229
1366
  }, "strip", z.ZodTypeAny, {
1230
1367
  url: string;
1231
- param: string;
1232
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1233
- query: string;
1234
1368
  }, {
1235
1369
  url: string;
1236
- param: string;
1237
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1238
- query: string;
1239
- }>;
1240
- }, "strip", z.ZodTypeAny, {
1241
- type: "search";
1242
- title: string;
1243
- value: {
1244
- url: string;
1245
- param: string;
1246
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1247
- query: string;
1248
- };
1249
- image?: {
1250
- url?: string | undefined;
1251
- text?: string | undefined;
1252
- uri?: string | undefined;
1253
- accessibilityDescription?: string | undefined;
1254
- } | undefined;
1255
- description?: string | undefined;
1256
- icon?: {
1257
- text: string;
1258
- } | {
1259
- name: string;
1260
- } | undefined;
1261
- }, {
1262
- type: "search";
1263
- title: string;
1264
- value: {
1265
- url: string;
1266
- param: string;
1267
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1268
- query: string;
1269
- };
1270
- image?: {
1271
- url?: string | undefined;
1272
- text?: string | undefined;
1273
- uri?: string | undefined;
1274
- accessibilityDescription?: string | undefined;
1275
- } | undefined;
1276
- description?: string | undefined;
1277
- icon?: {
1278
- text: string;
1279
- } | {
1280
- name: string;
1281
- } | undefined;
1282
- }>;
1283
- export declare const instructionsLayoutSchema: z.ZodObject<{
1284
- type: z.ZodLiteral<"instructions">;
1285
- title: z.ZodOptional<z.ZodString>;
1286
- items: z.ZodArray<z.ZodObject<{
1287
- text: z.ZodString;
1288
- 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">]>;
1289
- tag: z.ZodOptional<z.ZodString>;
1290
- }, "strip", z.ZodTypeAny, {
1291
- text: string;
1292
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1293
- tag?: string | undefined;
1294
- }, {
1295
- text: string;
1296
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1297
- tag?: string | undefined;
1298
- }>, "many">;
1299
- control: z.ZodOptional<z.ZodString>;
1300
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1301
- }, "strip", z.ZodTypeAny, {
1302
- type: "instructions";
1303
- items: {
1304
- text: string;
1305
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1306
- tag?: string | undefined;
1307
- }[];
1308
- title?: string | undefined;
1309
- control?: string | undefined;
1310
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1311
- }, {
1312
- type: "instructions";
1313
- items: {
1314
- text: string;
1315
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1316
- tag?: string | undefined;
1317
- }[];
1318
- title?: string | undefined;
1319
- control?: string | undefined;
1320
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1321
- }>;
1322
- export declare const navigationSchema: z.ZodObject<{
1323
- backButton: z.ZodOptional<z.ZodObject<{
1324
- title: z.ZodOptional<z.ZodString>;
1325
- action: z.ZodObject<{
1326
- title: z.ZodOptional<z.ZodString>;
1327
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1328
- disabled: z.ZodOptional<z.ZodBoolean>;
1329
- $id: z.ZodOptional<z.ZodString>;
1330
- $ref: z.ZodOptional<z.ZodString>;
1331
- id: z.ZodOptional<z.ZodString>;
1332
- url: z.ZodOptional<z.ZodString>;
1333
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1334
- exit: z.ZodOptional<z.ZodBoolean>;
1335
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1336
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1337
- timeout: z.ZodOptional<z.ZodNumber>;
1338
- skipValidation: z.ZodOptional<z.ZodBoolean>;
1339
- }, "strip", z.ZodTypeAny, {
1340
- url?: string | undefined;
1341
- $id?: string | undefined;
1342
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1343
- disabled?: boolean | undefined;
1344
- title?: string | undefined;
1345
- timeout?: number | undefined;
1346
- id?: string | undefined;
1347
- $ref?: string | undefined;
1348
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1349
- exit?: boolean | undefined;
1350
- result?: JsonElement | undefined;
1351
- data?: JsonElement | undefined;
1352
- skipValidation?: boolean | undefined;
1353
- }, {
1354
- url?: string | undefined;
1355
- $id?: string | undefined;
1356
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1357
- disabled?: boolean | undefined;
1358
- title?: string | undefined;
1359
- timeout?: number | undefined;
1360
- id?: string | undefined;
1361
- $ref?: string | undefined;
1362
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1363
- exit?: boolean | undefined;
1364
- result?: JsonElement | undefined;
1365
- data?: JsonElement | undefined;
1366
- skipValidation?: boolean | undefined;
1367
- }>;
1368
- }, "strip", z.ZodTypeAny, {
1369
- action: {
1370
- url?: string | undefined;
1371
- $id?: string | undefined;
1372
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1373
- disabled?: boolean | undefined;
1374
- title?: string | undefined;
1375
- timeout?: number | undefined;
1376
- id?: string | undefined;
1377
- $ref?: string | undefined;
1378
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1379
- exit?: boolean | undefined;
1380
- result?: JsonElement | undefined;
1381
- data?: JsonElement | undefined;
1382
- skipValidation?: boolean | undefined;
1383
- };
1384
- title?: string | undefined;
1385
- }, {
1386
- action: {
1387
- url?: string | undefined;
1388
- $id?: string | undefined;
1389
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1390
- disabled?: boolean | undefined;
1391
- title?: string | undefined;
1392
- timeout?: number | undefined;
1393
- id?: string | undefined;
1394
- $ref?: string | undefined;
1395
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1396
- exit?: boolean | undefined;
1397
- result?: JsonElement | undefined;
1398
- data?: JsonElement | undefined;
1399
- skipValidation?: boolean | undefined;
1400
- };
1401
- title?: string | undefined;
1402
- }>>;
1403
- back: z.ZodOptional<z.ZodObject<{
1404
- title: z.ZodOptional<z.ZodString>;
1405
- action: z.ZodObject<{
1406
- title: z.ZodOptional<z.ZodString>;
1407
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1408
- disabled: z.ZodOptional<z.ZodBoolean>;
1409
- $id: z.ZodOptional<z.ZodString>;
1410
- $ref: z.ZodOptional<z.ZodString>;
1411
- id: z.ZodOptional<z.ZodString>;
1412
- url: z.ZodOptional<z.ZodString>;
1413
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1414
- exit: z.ZodOptional<z.ZodBoolean>;
1415
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1416
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1417
- timeout: z.ZodOptional<z.ZodNumber>;
1418
- skipValidation: z.ZodOptional<z.ZodBoolean>;
1419
- }, "strip", z.ZodTypeAny, {
1420
- url?: string | undefined;
1421
- $id?: string | undefined;
1422
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1423
- disabled?: boolean | undefined;
1424
- title?: string | undefined;
1425
- timeout?: number | undefined;
1426
- id?: string | undefined;
1427
- $ref?: string | undefined;
1428
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1429
- exit?: boolean | undefined;
1430
- result?: JsonElement | undefined;
1431
- data?: JsonElement | undefined;
1432
- skipValidation?: boolean | undefined;
1433
- }, {
1434
- url?: string | undefined;
1435
- $id?: string | undefined;
1436
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1437
- disabled?: boolean | undefined;
1438
- title?: string | undefined;
1439
- timeout?: number | undefined;
1440
- id?: string | undefined;
1441
- $ref?: string | undefined;
1442
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1443
- exit?: boolean | undefined;
1444
- result?: JsonElement | undefined;
1445
- data?: JsonElement | undefined;
1446
- skipValidation?: boolean | undefined;
1447
- }>;
1448
- }, "strip", z.ZodTypeAny, {
1449
- action: {
1450
- url?: string | undefined;
1451
- $id?: string | undefined;
1452
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1453
- disabled?: boolean | undefined;
1454
- title?: string | undefined;
1455
- timeout?: number | undefined;
1456
- id?: string | undefined;
1457
- $ref?: string | undefined;
1458
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1459
- exit?: boolean | undefined;
1460
- result?: JsonElement | undefined;
1461
- data?: JsonElement | undefined;
1462
- skipValidation?: boolean | undefined;
1463
- };
1464
- title?: string | undefined;
1465
- }, {
1466
- action: {
1467
- url?: string | undefined;
1468
- $id?: string | undefined;
1469
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1470
- disabled?: boolean | undefined;
1471
- title?: string | undefined;
1472
- timeout?: number | undefined;
1473
- id?: string | undefined;
1474
- $ref?: string | undefined;
1475
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1476
- exit?: boolean | undefined;
1477
- result?: JsonElement | undefined;
1478
- data?: JsonElement | undefined;
1479
- skipValidation?: boolean | undefined;
1480
- };
1481
- title?: string | undefined;
1482
- }>>;
1483
- stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
1484
- }, "strip", z.ZodTypeAny, {
1485
- back?: {
1486
- action: {
1487
- url?: string | undefined;
1488
- $id?: string | undefined;
1489
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1490
- disabled?: boolean | undefined;
1491
- title?: string | undefined;
1492
- timeout?: number | undefined;
1493
- id?: string | undefined;
1494
- $ref?: string | undefined;
1495
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1496
- exit?: boolean | undefined;
1497
- result?: JsonElement | undefined;
1498
- data?: JsonElement | undefined;
1499
- skipValidation?: boolean | undefined;
1500
- };
1501
- title?: string | undefined;
1502
- } | undefined;
1503
- backButton?: {
1504
- action: {
1505
- url?: string | undefined;
1506
- $id?: string | undefined;
1507
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1508
- disabled?: boolean | undefined;
1509
- title?: string | undefined;
1510
- timeout?: number | undefined;
1511
- id?: string | undefined;
1512
- $ref?: string | undefined;
1513
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1514
- exit?: boolean | undefined;
1515
- result?: JsonElement | undefined;
1516
- data?: JsonElement | undefined;
1517
- skipValidation?: boolean | undefined;
1518
- };
1519
- title?: string | undefined;
1520
- } | undefined;
1521
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
1522
- }, {
1523
- back?: {
1524
- action: {
1525
- url?: string | undefined;
1526
- $id?: string | undefined;
1527
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1528
- disabled?: boolean | undefined;
1529
- title?: string | undefined;
1530
- timeout?: number | undefined;
1531
- id?: string | undefined;
1532
- $ref?: string | undefined;
1533
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1534
- exit?: boolean | undefined;
1535
- result?: JsonElement | undefined;
1536
- data?: JsonElement | undefined;
1537
- skipValidation?: boolean | undefined;
1538
- };
1539
- title?: string | undefined;
1540
- } | undefined;
1541
- backButton?: {
1542
- action: {
1543
- url?: string | undefined;
1544
- $id?: string | undefined;
1545
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1546
- disabled?: boolean | undefined;
1547
- title?: string | undefined;
1548
- timeout?: number | undefined;
1549
- id?: string | undefined;
1550
- $ref?: string | undefined;
1551
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1552
- exit?: boolean | undefined;
1553
- result?: JsonElement | undefined;
1554
- data?: JsonElement | undefined;
1555
- skipValidation?: boolean | undefined;
1556
- };
1557
- title?: string | undefined;
1558
- } | undefined;
1559
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
1560
- }>;
1561
- export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
1562
- providesTitle: z.ZodOptional<z.ZodBoolean>;
1563
- providesDescription: z.ZodOptional<z.ZodBoolean>;
1564
- providesIcon: z.ZodOptional<z.ZodBoolean>;
1565
- providesImage: z.ZodOptional<z.ZodBoolean>;
1566
- }, "strip", z.ZodTypeAny, {
1567
- providesTitle?: boolean | undefined;
1568
- providesDescription?: boolean | undefined;
1569
- providesIcon?: boolean | undefined;
1570
- providesImage?: boolean | undefined;
1571
- }, {
1572
- providesTitle?: boolean | undefined;
1573
- providesDescription?: boolean | undefined;
1574
- providesIcon?: boolean | undefined;
1575
- providesImage?: boolean | undefined;
1576
- }>, z.ZodObject<{
1577
- defaultTitle: z.ZodOptional<z.ZodString>;
1578
- defaultDescription: z.ZodOptional<z.ZodString>;
1579
- defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1580
- name: z.ZodString;
1581
- }, "strip", z.ZodTypeAny, {
1582
- name: string;
1583
- }, {
1584
- name: string;
1585
- }>, z.ZodObject<{
1586
- text: z.ZodString;
1587
- }, "strip", z.ZodTypeAny, {
1588
- text: string;
1589
- }, {
1590
- text: string;
1591
- }>]>>;
1592
- defaultImage: z.ZodOptional<z.ZodObject<{
1593
- text: z.ZodOptional<z.ZodString>;
1594
- url: z.ZodOptional<z.ZodString>;
1595
- uri: z.ZodOptional<z.ZodString>;
1596
- accessibilityDescription: z.ZodOptional<z.ZodString>;
1597
- }, "strip", z.ZodTypeAny, {
1598
- url?: string | undefined;
1599
- text?: string | undefined;
1600
- uri?: string | undefined;
1601
- accessibilityDescription?: string | undefined;
1602
- }, {
1603
- url?: string | undefined;
1604
- text?: string | undefined;
1605
- uri?: string | undefined;
1606
- accessibilityDescription?: string | undefined;
1607
1370
  }>>;
1608
- providesTitle: z.ZodOptional<z.ZodBoolean>;
1609
- providesDescription: z.ZodOptional<z.ZodBoolean>;
1610
- providesIcon: z.ZodOptional<z.ZodBoolean>;
1611
- providesImage: z.ZodOptional<z.ZodBoolean>;
1612
- }, "strip", z.ZodTypeAny, {
1613
- providesTitle?: boolean | undefined;
1614
- providesDescription?: boolean | undefined;
1615
- providesIcon?: boolean | undefined;
1616
- providesImage?: boolean | undefined;
1617
- defaultTitle?: string | undefined;
1618
- defaultDescription?: string | undefined;
1619
- defaultIcon?: {
1620
- text: string;
1621
- } | {
1622
- name: string;
1623
- } | undefined;
1624
- defaultImage?: {
1371
+ }, "strip", z.ZodTypeAny, {
1372
+ action?: {
1625
1373
  url?: string | undefined;
1626
- text?: string | undefined;
1627
- uri?: string | undefined;
1628
- accessibilityDescription?: string | undefined;
1374
+ $id?: string | undefined;
1375
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1376
+ disabled?: boolean | undefined;
1377
+ title?: string | undefined;
1378
+ timeout?: number | undefined;
1379
+ id?: string | undefined;
1380
+ $ref?: string | undefined;
1381
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1382
+ exit?: boolean | undefined;
1383
+ result?: JsonElement | undefined;
1384
+ data?: JsonElement | undefined;
1385
+ skipValidation?: boolean | undefined;
1629
1386
  } | undefined;
1630
- }, {
1631
- providesTitle?: boolean | undefined;
1632
- providesDescription?: boolean | undefined;
1633
- providesIcon?: boolean | undefined;
1634
- providesImage?: boolean | undefined;
1635
- defaultTitle?: string | undefined;
1636
- defaultDescription?: string | undefined;
1637
- defaultIcon?: {
1638
- text: string;
1639
- } | {
1640
- name: string;
1387
+ link?: {
1388
+ url: string;
1641
1389
  } | undefined;
1642
- defaultImage?: {
1390
+ }, {
1391
+ action?: {
1643
1392
  url?: string | undefined;
1644
- text?: string | undefined;
1645
- uri?: string | undefined;
1646
- accessibilityDescription?: string | undefined;
1393
+ $id?: string | undefined;
1394
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1395
+ disabled?: boolean | undefined;
1396
+ title?: string | undefined;
1397
+ timeout?: number | undefined;
1398
+ id?: string | undefined;
1399
+ $ref?: string | undefined;
1400
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1401
+ exit?: boolean | undefined;
1402
+ result?: JsonElement | undefined;
1403
+ data?: JsonElement | undefined;
1404
+ skipValidation?: boolean | undefined;
1647
1405
  } | undefined;
1648
- }>]>;
1406
+ link?: {
1407
+ url: string;
1408
+ } | undefined;
1409
+ }>;
1649
1410
  export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1650
1411
  type: z.ZodLiteral<"action">;
1651
1412
  title: z.ZodString;
@@ -1748,9 +1509,9 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1748
1509
  } | undefined;
1749
1510
  description?: string | undefined;
1750
1511
  icon?: {
1751
- text: string;
1752
- } | {
1753
1512
  name: string;
1513
+ } | {
1514
+ text: string;
1754
1515
  } | undefined;
1755
1516
  }, {
1756
1517
  type: "action";
@@ -1778,9 +1539,9 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1778
1539
  } | undefined;
1779
1540
  description?: string | undefined;
1780
1541
  icon?: {
1781
- text: string;
1782
- } | {
1783
1542
  name: string;
1543
+ } | {
1544
+ text: string;
1784
1545
  } | undefined;
1785
1546
  }>, z.ZodObject<{
1786
1547
  type: z.ZodLiteral<"search">;
@@ -1822,58 +1583,297 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
1822
1583
  query: z.ZodString;
1823
1584
  }, "strip", z.ZodTypeAny, {
1824
1585
  url: string;
1825
- param: string;
1826
1586
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1587
+ param: string;
1827
1588
  query: string;
1828
1589
  }, {
1829
1590
  url: string;
1830
- param: string;
1831
1591
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1592
+ param: string;
1832
1593
  query: string;
1833
1594
  }>;
1834
1595
  }, "strip", z.ZodTypeAny, {
1835
- type: "search";
1836
- title: string;
1837
- value: {
1838
- url: string;
1839
- param: string;
1840
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1841
- query: string;
1842
- };
1843
- image?: {
1844
- url?: string | undefined;
1845
- text?: string | undefined;
1846
- uri?: string | undefined;
1847
- accessibilityDescription?: string | undefined;
1596
+ type: "search";
1597
+ title: string;
1598
+ value: {
1599
+ url: string;
1600
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1601
+ param: string;
1602
+ query: string;
1603
+ };
1604
+ image?: {
1605
+ url?: string | undefined;
1606
+ text?: string | undefined;
1607
+ uri?: string | undefined;
1608
+ accessibilityDescription?: string | undefined;
1609
+ } | undefined;
1610
+ description?: string | undefined;
1611
+ icon?: {
1612
+ name: string;
1613
+ } | {
1614
+ text: string;
1615
+ } | undefined;
1616
+ }, {
1617
+ type: "search";
1618
+ title: string;
1619
+ value: {
1620
+ url: string;
1621
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1622
+ param: string;
1623
+ query: string;
1624
+ };
1625
+ image?: {
1626
+ url?: string | undefined;
1627
+ text?: string | undefined;
1628
+ uri?: string | undefined;
1629
+ accessibilityDescription?: string | undefined;
1630
+ } | undefined;
1631
+ description?: string | undefined;
1632
+ icon?: {
1633
+ name: string;
1634
+ } | {
1635
+ text: string;
1636
+ } | undefined;
1637
+ }>]>;
1638
+ export declare const navigationSchema: z.ZodObject<{
1639
+ backButton: z.ZodOptional<z.ZodObject<{
1640
+ title: z.ZodOptional<z.ZodString>;
1641
+ action: z.ZodObject<{
1642
+ title: z.ZodOptional<z.ZodString>;
1643
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1644
+ disabled: z.ZodOptional<z.ZodBoolean>;
1645
+ $id: z.ZodOptional<z.ZodString>;
1646
+ $ref: z.ZodOptional<z.ZodString>;
1647
+ id: z.ZodOptional<z.ZodString>;
1648
+ url: z.ZodOptional<z.ZodString>;
1649
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1650
+ exit: z.ZodOptional<z.ZodBoolean>;
1651
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1652
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1653
+ timeout: z.ZodOptional<z.ZodNumber>;
1654
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1655
+ }, "strip", z.ZodTypeAny, {
1656
+ url?: string | undefined;
1657
+ $id?: string | undefined;
1658
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1659
+ disabled?: boolean | undefined;
1660
+ title?: string | undefined;
1661
+ timeout?: number | undefined;
1662
+ id?: string | undefined;
1663
+ $ref?: string | undefined;
1664
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1665
+ exit?: boolean | undefined;
1666
+ result?: JsonElement | undefined;
1667
+ data?: JsonElement | undefined;
1668
+ skipValidation?: boolean | undefined;
1669
+ }, {
1670
+ url?: string | undefined;
1671
+ $id?: string | undefined;
1672
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1673
+ disabled?: boolean | undefined;
1674
+ title?: string | undefined;
1675
+ timeout?: number | undefined;
1676
+ id?: string | undefined;
1677
+ $ref?: string | undefined;
1678
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1679
+ exit?: boolean | undefined;
1680
+ result?: JsonElement | undefined;
1681
+ data?: JsonElement | undefined;
1682
+ skipValidation?: boolean | undefined;
1683
+ }>;
1684
+ }, "strip", z.ZodTypeAny, {
1685
+ action: {
1686
+ url?: string | undefined;
1687
+ $id?: string | undefined;
1688
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1689
+ disabled?: boolean | undefined;
1690
+ title?: string | undefined;
1691
+ timeout?: number | undefined;
1692
+ id?: string | undefined;
1693
+ $ref?: string | undefined;
1694
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1695
+ exit?: boolean | undefined;
1696
+ result?: JsonElement | undefined;
1697
+ data?: JsonElement | undefined;
1698
+ skipValidation?: boolean | undefined;
1699
+ };
1700
+ title?: string | undefined;
1701
+ }, {
1702
+ action: {
1703
+ url?: string | undefined;
1704
+ $id?: string | undefined;
1705
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1706
+ disabled?: boolean | undefined;
1707
+ title?: string | undefined;
1708
+ timeout?: number | undefined;
1709
+ id?: string | undefined;
1710
+ $ref?: string | undefined;
1711
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1712
+ exit?: boolean | undefined;
1713
+ result?: JsonElement | undefined;
1714
+ data?: JsonElement | undefined;
1715
+ skipValidation?: boolean | undefined;
1716
+ };
1717
+ title?: string | undefined;
1718
+ }>>;
1719
+ back: z.ZodOptional<z.ZodObject<{
1720
+ title: z.ZodOptional<z.ZodString>;
1721
+ action: z.ZodObject<{
1722
+ title: z.ZodOptional<z.ZodString>;
1723
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1724
+ disabled: z.ZodOptional<z.ZodBoolean>;
1725
+ $id: z.ZodOptional<z.ZodString>;
1726
+ $ref: z.ZodOptional<z.ZodString>;
1727
+ id: z.ZodOptional<z.ZodString>;
1728
+ url: z.ZodOptional<z.ZodString>;
1729
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1730
+ exit: z.ZodOptional<z.ZodBoolean>;
1731
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1732
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1733
+ timeout: z.ZodOptional<z.ZodNumber>;
1734
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1735
+ }, "strip", z.ZodTypeAny, {
1736
+ url?: string | undefined;
1737
+ $id?: string | undefined;
1738
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1739
+ disabled?: boolean | undefined;
1740
+ title?: string | undefined;
1741
+ timeout?: number | undefined;
1742
+ id?: string | undefined;
1743
+ $ref?: string | undefined;
1744
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1745
+ exit?: boolean | undefined;
1746
+ result?: JsonElement | undefined;
1747
+ data?: JsonElement | undefined;
1748
+ skipValidation?: boolean | undefined;
1749
+ }, {
1750
+ url?: string | undefined;
1751
+ $id?: string | undefined;
1752
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1753
+ disabled?: boolean | undefined;
1754
+ title?: string | undefined;
1755
+ timeout?: number | undefined;
1756
+ id?: string | undefined;
1757
+ $ref?: string | undefined;
1758
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1759
+ exit?: boolean | undefined;
1760
+ result?: JsonElement | undefined;
1761
+ data?: JsonElement | undefined;
1762
+ skipValidation?: boolean | undefined;
1763
+ }>;
1764
+ }, "strip", z.ZodTypeAny, {
1765
+ action: {
1766
+ url?: string | undefined;
1767
+ $id?: string | undefined;
1768
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1769
+ disabled?: boolean | undefined;
1770
+ title?: string | undefined;
1771
+ timeout?: number | undefined;
1772
+ id?: string | undefined;
1773
+ $ref?: string | undefined;
1774
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1775
+ exit?: boolean | undefined;
1776
+ result?: JsonElement | undefined;
1777
+ data?: JsonElement | undefined;
1778
+ skipValidation?: boolean | undefined;
1779
+ };
1780
+ title?: string | undefined;
1781
+ }, {
1782
+ action: {
1783
+ url?: string | undefined;
1784
+ $id?: string | undefined;
1785
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1786
+ disabled?: boolean | undefined;
1787
+ title?: string | undefined;
1788
+ timeout?: number | undefined;
1789
+ id?: string | undefined;
1790
+ $ref?: string | undefined;
1791
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1792
+ exit?: boolean | undefined;
1793
+ result?: JsonElement | undefined;
1794
+ data?: JsonElement | undefined;
1795
+ skipValidation?: boolean | undefined;
1796
+ };
1797
+ title?: string | undefined;
1798
+ }>>;
1799
+ stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
1800
+ }, "strip", z.ZodTypeAny, {
1801
+ back?: {
1802
+ action: {
1803
+ url?: string | undefined;
1804
+ $id?: string | undefined;
1805
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1806
+ disabled?: boolean | undefined;
1807
+ title?: string | undefined;
1808
+ timeout?: number | undefined;
1809
+ id?: string | undefined;
1810
+ $ref?: string | undefined;
1811
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1812
+ exit?: boolean | undefined;
1813
+ result?: JsonElement | undefined;
1814
+ data?: JsonElement | undefined;
1815
+ skipValidation?: boolean | undefined;
1816
+ };
1817
+ title?: string | undefined;
1848
1818
  } | undefined;
1849
- description?: string | undefined;
1850
- icon?: {
1851
- text: string;
1852
- } | {
1853
- name: string;
1819
+ backButton?: {
1820
+ action: {
1821
+ url?: string | undefined;
1822
+ $id?: string | undefined;
1823
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1824
+ disabled?: boolean | undefined;
1825
+ title?: string | undefined;
1826
+ timeout?: number | undefined;
1827
+ id?: string | undefined;
1828
+ $ref?: string | undefined;
1829
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1830
+ exit?: boolean | undefined;
1831
+ result?: JsonElement | undefined;
1832
+ data?: JsonElement | undefined;
1833
+ skipValidation?: boolean | undefined;
1834
+ };
1835
+ title?: string | undefined;
1854
1836
  } | undefined;
1837
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
1855
1838
  }, {
1856
- type: "search";
1857
- title: string;
1858
- value: {
1859
- url: string;
1860
- param: string;
1861
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1862
- query: string;
1863
- };
1864
- image?: {
1865
- url?: string | undefined;
1866
- text?: string | undefined;
1867
- uri?: string | undefined;
1868
- accessibilityDescription?: string | undefined;
1839
+ back?: {
1840
+ action: {
1841
+ url?: string | undefined;
1842
+ $id?: string | undefined;
1843
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1844
+ disabled?: boolean | undefined;
1845
+ title?: string | undefined;
1846
+ timeout?: number | undefined;
1847
+ id?: string | undefined;
1848
+ $ref?: string | undefined;
1849
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1850
+ exit?: boolean | undefined;
1851
+ result?: JsonElement | undefined;
1852
+ data?: JsonElement | undefined;
1853
+ skipValidation?: boolean | undefined;
1854
+ };
1855
+ title?: string | undefined;
1869
1856
  } | undefined;
1870
- description?: string | undefined;
1871
- icon?: {
1872
- text: string;
1873
- } | {
1874
- name: string;
1857
+ backButton?: {
1858
+ action: {
1859
+ url?: string | undefined;
1860
+ $id?: string | undefined;
1861
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1862
+ disabled?: boolean | undefined;
1863
+ title?: string | undefined;
1864
+ timeout?: number | undefined;
1865
+ id?: string | undefined;
1866
+ $ref?: string | undefined;
1867
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1868
+ exit?: boolean | undefined;
1869
+ result?: JsonElement | undefined;
1870
+ data?: JsonElement | undefined;
1871
+ skipValidation?: boolean | undefined;
1872
+ };
1873
+ title?: string | undefined;
1875
1874
  } | undefined;
1876
- }>]>;
1875
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
1876
+ }>;
1877
1877
  export declare const searchResponseBodySchema: z.ZodObject<{
1878
1878
  results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1879
1879
  type: z.ZodLiteral<"action">;
@@ -1977,9 +1977,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
1977
1977
  } | undefined;
1978
1978
  description?: string | undefined;
1979
1979
  icon?: {
1980
- text: string;
1981
- } | {
1982
1980
  name: string;
1981
+ } | {
1982
+ text: string;
1983
1983
  } | undefined;
1984
1984
  }, {
1985
1985
  type: "action";
@@ -2007,9 +2007,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2007
2007
  } | undefined;
2008
2008
  description?: string | undefined;
2009
2009
  icon?: {
2010
- text: string;
2011
- } | {
2012
2010
  name: string;
2011
+ } | {
2012
+ text: string;
2013
2013
  } | undefined;
2014
2014
  }>, z.ZodObject<{
2015
2015
  type: z.ZodLiteral<"search">;
@@ -2051,13 +2051,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2051
2051
  query: z.ZodString;
2052
2052
  }, "strip", z.ZodTypeAny, {
2053
2053
  url: string;
2054
- param: string;
2055
2054
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2055
+ param: string;
2056
2056
  query: string;
2057
2057
  }, {
2058
2058
  url: string;
2059
- param: string;
2060
2059
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2060
+ param: string;
2061
2061
  query: string;
2062
2062
  }>;
2063
2063
  }, "strip", z.ZodTypeAny, {
@@ -2065,8 +2065,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2065
2065
  title: string;
2066
2066
  value: {
2067
2067
  url: string;
2068
- param: string;
2069
2068
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2069
+ param: string;
2070
2070
  query: string;
2071
2071
  };
2072
2072
  image?: {
@@ -2077,17 +2077,17 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2077
2077
  } | undefined;
2078
2078
  description?: string | undefined;
2079
2079
  icon?: {
2080
- text: string;
2081
- } | {
2082
2080
  name: string;
2081
+ } | {
2082
+ text: string;
2083
2083
  } | undefined;
2084
2084
  }, {
2085
2085
  type: "search";
2086
2086
  title: string;
2087
2087
  value: {
2088
2088
  url: string;
2089
- param: string;
2090
2089
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2090
+ param: string;
2091
2091
  query: string;
2092
2092
  };
2093
2093
  image?: {
@@ -2098,13 +2098,34 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2098
2098
  } | undefined;
2099
2099
  description?: string | undefined;
2100
2100
  icon?: {
2101
- text: string;
2102
- } | {
2103
2101
  name: string;
2102
+ } | {
2103
+ text: string;
2104
2104
  } | undefined;
2105
2105
  }>]>, "many">;
2106
2106
  }, "strip", z.ZodTypeAny, {
2107
2107
  results: ({
2108
+ type: "search";
2109
+ title: string;
2110
+ value: {
2111
+ url: string;
2112
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2113
+ param: string;
2114
+ query: string;
2115
+ };
2116
+ image?: {
2117
+ url?: string | undefined;
2118
+ text?: string | undefined;
2119
+ uri?: string | undefined;
2120
+ accessibilityDescription?: string | undefined;
2121
+ } | undefined;
2122
+ description?: string | undefined;
2123
+ icon?: {
2124
+ name: string;
2125
+ } | {
2126
+ text: string;
2127
+ } | undefined;
2128
+ } | {
2108
2129
  type: "action";
2109
2130
  title: string;
2110
2131
  value: {
@@ -2130,17 +2151,19 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2130
2151
  } | undefined;
2131
2152
  description?: string | undefined;
2132
2153
  icon?: {
2133
- text: string;
2134
- } | {
2135
2154
  name: string;
2155
+ } | {
2156
+ text: string;
2136
2157
  } | undefined;
2137
- } | {
2158
+ })[];
2159
+ }, {
2160
+ results: ({
2138
2161
  type: "search";
2139
2162
  title: string;
2140
2163
  value: {
2141
2164
  url: string;
2142
- param: string;
2143
2165
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2166
+ param: string;
2144
2167
  query: string;
2145
2168
  };
2146
2169
  image?: {
@@ -2151,13 +2174,11 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2151
2174
  } | undefined;
2152
2175
  description?: string | undefined;
2153
2176
  icon?: {
2154
- text: string;
2155
- } | {
2156
2177
  name: string;
2178
+ } | {
2179
+ text: string;
2157
2180
  } | undefined;
2158
- })[];
2159
- }, {
2160
- results: ({
2181
+ } | {
2161
2182
  type: "action";
2162
2183
  title: string;
2163
2184
  value: {
@@ -2183,75 +2204,54 @@ export declare const searchResponseBodySchema: z.ZodObject<{
2183
2204
  } | undefined;
2184
2205
  description?: string | undefined;
2185
2206
  icon?: {
2186
- text: string;
2187
- } | {
2188
2207
  name: string;
2189
- } | undefined;
2190
- } | {
2191
- type: "search";
2192
- title: string;
2193
- value: {
2194
- url: string;
2195
- param: string;
2196
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2197
- query: string;
2198
- };
2199
- image?: {
2200
- url?: string | undefined;
2201
- text?: string | undefined;
2202
- uri?: string | undefined;
2203
- accessibilityDescription?: string | undefined;
2204
- } | undefined;
2205
- description?: string | undefined;
2206
- icon?: {
2207
- text: string;
2208
2208
  } | {
2209
- name: string;
2209
+ text: string;
2210
2210
  } | undefined;
2211
2211
  })[];
2212
2212
  }>;
2213
- export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption>;
2213
+ export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
2214
2214
  export declare const behaviorSchema: z.ZodSchema<Behavior>;
2215
- export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
2216
- export declare const layoutSchema: z.ZodSchema<Layout>;
2215
+ export declare const reviewLayoutCallToActionSchema: z.ZodSchema<ReviewLayoutCallToAction>;
2216
+ export declare const tabsLayoutSchema: z.ZodSchema<TabsLayout>;
2217
+ export declare const tabsLayoutTabSchema: z.ZodSchema<TabsLayoutTab>;
2217
2218
  export declare const alertLayoutSchema: z.ZodSchema<AlertLayout>;
2218
2219
  export declare const alertLayoutCallToActionSchema: z.ZodSchema<AlertLayoutCallToAction>;
2219
2220
  export declare const listLayoutSchema: z.ZodSchema<ListLayout>;
2220
2221
  export declare const listLayoutCallToActionSchema: z.ZodSchema<ListLayoutCallToAction>;
2221
2222
  export declare const listLayoutItemSchema: z.ZodSchema<ListLayoutItem>;
2223
+ export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
2224
+ export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption>;
2222
2225
  export declare const sectionLayoutCallToActionSchema: z.ZodSchema<SectionLayoutCallToAction>;
2223
2226
  export declare const statusListLayoutSchema: z.ZodSchema<StatusListLayout>;
2224
2227
  export declare const statusListLayoutItemSchema: z.ZodSchema<StatusListLayoutItem>;
2225
- export declare const tabsLayoutTabSchema: z.ZodSchema<TabsLayoutTab>;
2226
- export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
2227
2228
  export declare const sectionLayoutSchema: z.ZodSchema<SectionLayout>;
2228
- export declare const reviewLayoutSchema: z.ZodSchema<ReviewLayout>;
2229
- export declare const reviewLayoutFieldSchema: z.ZodSchema<ReviewLayoutField>;
2230
- export declare const reviewLayoutCallToActionSchema: z.ZodSchema<ReviewLayoutCallToAction>;
2231
- export declare const buttonLayoutSchema: z.ZodSchema<ButtonLayout>;
2229
+ export declare const layoutSchema: z.ZodSchema<Layout>;
2232
2230
  export declare const itemCallToActionSchema: z.ZodSchema<ItemCallToAction>;
2233
- export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
2234
- export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
2231
+ export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
2232
+ export declare const buttonLayoutSchema: z.ZodSchema<ButtonLayout>;
2235
2233
  export declare const columnsLayoutSchema: z.ZodSchema<ColumnsLayout>;
2236
2234
  export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
2237
- export declare const tabsLayoutSchema: z.ZodSchema<TabsLayout>;
2235
+ export declare const reviewLayoutSchema: z.ZodSchema<ReviewLayout>;
2236
+ export declare const reviewLayoutFieldSchema: z.ZodSchema<ReviewLayoutField>;
2237
+ export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
2238
+ export declare const modalResponseBodySchema: z.ZodSchema<ModalResponseBody>;
2238
2239
  export declare const stepSchema: z.ZodSchema<Step>;
2239
2240
  export declare const schemaSchema: z.ZodSchema<Schema>;
2240
2241
  export declare const pollingSchema: z.ZodSchema<Polling>;
2241
2242
  export declare const linkHandlerSchema: z.ZodSchema<LinkHandler>;
2242
- export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
2243
- export declare const modalBehaviorSchema: z.ZodSchema<ModalBehavior>;
2244
- export declare const pollingOnErrorSchema: z.ZodSchema<PollingOnError>;
2243
+ export declare const allOfSchemaSchema: z.ZodSchema<AllOfSchema>;
2244
+ export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
2245
2245
  export declare const blobSchemaSchema: z.ZodSchema<BlobSchema>;
2246
- export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
2247
- export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
2248
- export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
2249
- export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
2246
+ export declare const booleanSchemaSchema: z.ZodSchema<BooleanSchema>;
2247
+ export declare const constSchemaSchema: z.ZodSchema<ConstSchema>;
2250
2248
  export declare const integerSchemaSchema: z.ZodSchema<IntegerSchema>;
2249
+ export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
2251
2250
  export declare const objectSchemaSchema: z.ZodSchema<ObjectSchema>;
2252
- export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
2251
+ export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
2252
+ export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
2253
2253
  export declare const arraySchemaListSchema: z.ZodSchema<ArraySchemaList>;
2254
- export declare const constSchemaSchema: z.ZodSchema<ConstSchema>;
2255
- export declare const booleanSchemaSchema: z.ZodSchema<BooleanSchema>;
2256
- export declare const allOfSchemaSchema: z.ZodSchema<AllOfSchema>;
2257
- export declare const modalResponseBodySchema: z.ZodSchema<ModalResponseBody>;
2254
+ export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
2255
+ export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
2256
+ export declare const pollingOnErrorSchema: z.ZodSchema<PollingOnError>;
2257
+ export declare const modalBehaviorSchema: z.ZodSchema<ModalBehavior>;