@wise/dynamic-flow-types 2.16.0 → 2.17.0-experimental-9ab778d

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,65 +1,60 @@
1
1
  import { z } from 'zod';
2
- import type { JsonElement, Layout, BoxLayout, ColumnsLayout, ModalLayout, ModalLayoutContent, Step, Schema, AllOfSchema, ArraySchema, BooleanSchema, IntegerSchema, NumberSchema, ObjectSchema, OneOfSchema, StringSchema, ArraySchemaList, PersistAsync, ArraySchemaTuple } from '../next';
3
- export declare const imageSchema: z.ZodObject<{
4
- text: z.ZodOptional<z.ZodString>;
5
- url: z.ZodString;
6
- accessibilityDescription: z.ZodOptional<z.ZodString>;
2
+ import type { JsonElement, ColumnsLayout, Layout, ModalLayout, ModalLayoutContent, BoxLayout, Schema, AllOfSchema, ArraySchema, BooleanSchema, IntegerSchema, NumberSchema, ObjectSchema, OneOfSchema, StringSchema, PersistAsync, ArraySchemaTuple, ArraySchemaList, Step } from '../next';
3
+ export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
4
+ 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">]>;
5
+ export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
6
+ export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
7
+ export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
8
+ export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
9
+ $ref: z.ZodString;
7
10
  }, "strip", z.ZodTypeAny, {
8
- url: string;
9
- text?: string | undefined;
10
- accessibilityDescription?: string | undefined;
11
+ $ref: string;
11
12
  }, {
12
- url: string;
13
- text?: string | undefined;
14
- accessibilityDescription?: string | undefined;
13
+ $ref: string;
15
14
  }>;
16
- export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
17
- export declare const iconNamedSchema: z.ZodObject<{
18
- name: z.ZodString;
15
+ export declare const modalLayoutTriggerSchema: z.ZodObject<{
16
+ title: z.ZodString;
19
17
  }, "strip", z.ZodTypeAny, {
20
- name: string;
18
+ title: string;
21
19
  }, {
22
- name: string;
20
+ title: string;
23
21
  }>;
24
- 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">]>;
25
- export declare const iconTextSchema: z.ZodObject<{
26
- text: z.ZodString;
22
+ export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
23
+ export declare const dividerLayoutSchema: z.ZodObject<{
24
+ type: z.ZodLiteral<"divider">;
25
+ control: z.ZodOptional<z.ZodString>;
26
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
27
27
  }, "strip", z.ZodTypeAny, {
28
- text: string;
28
+ type: "divider";
29
+ control?: string | undefined;
30
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
29
31
  }, {
30
- text: string;
32
+ type: "divider";
33
+ control?: string | undefined;
34
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
31
35
  }>;
32
- export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
33
- export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
34
- export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
35
- name: z.ZodString;
36
- }, "strip", z.ZodTypeAny, {
37
- name: string;
38
- }, {
39
- name: string;
40
- }>, z.ZodObject<{
36
+ export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
37
+ export declare const headingLayoutSchema: z.ZodObject<{
38
+ type: z.ZodLiteral<"heading">;
41
39
  text: z.ZodString;
42
- }, "strip", z.ZodTypeAny, {
43
- text: string;
44
- }, {
45
- text: string;
46
- }>]>;
47
- 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">]>;
48
- export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
49
- type: z.ZodLiteral<"loading-indicator">;
50
40
  size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
41
+ align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
51
42
  control: z.ZodOptional<z.ZodString>;
52
43
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
53
44
  }, "strip", z.ZodTypeAny, {
54
- type: "loading-indicator";
45
+ type: "heading";
46
+ text: string;
55
47
  control?: string | undefined;
56
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
57
48
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
49
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
50
+ align?: "left" | "right" | "center" | undefined;
58
51
  }, {
59
- type: "loading-indicator";
52
+ type: "heading";
53
+ text: string;
60
54
  control?: string | undefined;
61
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
62
55
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
56
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
57
+ align?: "left" | "right" | "center" | undefined;
63
58
  }>;
64
59
  export declare const alertLayoutSchema: z.ZodObject<{
65
60
  type: z.ZodLiteral<"alert">;
@@ -80,45 +75,34 @@ export declare const alertLayoutSchema: z.ZodObject<{
80
75
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
81
76
  context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
82
77
  }>;
83
- export declare const paragraphLayoutSchema: z.ZodObject<{
84
- type: z.ZodLiteral<"paragraph">;
85
- text: z.ZodString;
86
- align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
87
- control: z.ZodOptional<z.ZodString>;
88
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
89
- }, "strip", z.ZodTypeAny, {
90
- type: "paragraph";
91
- text: string;
92
- control?: string | undefined;
93
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
94
- align?: "left" | "right" | "center" | undefined;
95
- }, {
96
- type: "paragraph";
97
- text: string;
98
- control?: string | undefined;
99
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
100
- align?: "left" | "right" | "center" | undefined;
101
- }>;
102
- export declare const dividerLayoutSchema: z.ZodObject<{
103
- type: z.ZodLiteral<"divider">;
78
+ export declare const formLayoutSchema: z.ZodObject<{
79
+ type: z.ZodLiteral<"form">;
80
+ schema: z.ZodOptional<z.ZodObject<{
81
+ $ref: z.ZodString;
82
+ }, "strip", z.ZodTypeAny, {
83
+ $ref: string;
84
+ }, {
85
+ $ref: string;
86
+ }>>;
87
+ schemaId: z.ZodString;
104
88
  control: z.ZodOptional<z.ZodString>;
105
89
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
106
90
  }, "strip", z.ZodTypeAny, {
107
- type: "divider";
91
+ type: "form";
92
+ schemaId: string;
108
93
  control?: string | undefined;
109
94
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
95
+ schema?: {
96
+ $ref: string;
97
+ } | undefined;
110
98
  }, {
111
- type: "divider";
99
+ type: "form";
100
+ schemaId: string;
112
101
  control?: string | undefined;
113
102
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
114
- }>;
115
- export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
116
- export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
117
- $ref: z.ZodString;
118
- }, "strip", z.ZodTypeAny, {
119
- $ref: string;
120
- }, {
121
- $ref: string;
103
+ schema?: {
104
+ $ref: string;
105
+ } | undefined;
122
106
  }>;
123
107
  export declare const imageLayoutSchema: z.ZodObject<{
124
108
  type: z.ZodLiteral<"image">;
@@ -132,64 +116,18 @@ export declare const imageLayoutSchema: z.ZodObject<{
132
116
  url: string;
133
117
  type: "image";
134
118
  control?: string | undefined;
119
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
135
120
  text?: string | undefined;
136
- accessibilityDescription?: string | undefined;
137
121
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
138
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
122
+ accessibilityDescription?: string | undefined;
139
123
  }, {
140
124
  url: string;
141
125
  type: "image";
142
126
  control?: string | undefined;
127
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
143
128
  text?: string | undefined;
144
- accessibilityDescription?: string | undefined;
145
129
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
146
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
147
- }>;
148
- export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
149
- export declare const instructionsLayoutItemSchema: z.ZodObject<{
150
- text: z.ZodString;
151
- 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">]>;
152
- }, "strip", z.ZodTypeAny, {
153
- text: string;
154
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
155
- }, {
156
- text: string;
157
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
158
- }>;
159
- export declare const modalLayoutTriggerSchema: z.ZodObject<{
160
- title: z.ZodString;
161
- }, "strip", z.ZodTypeAny, {
162
- title: string;
163
- }, {
164
- title: string;
165
- }>;
166
- export declare const searchLayoutSchema: z.ZodObject<{
167
- type: z.ZodLiteral<"search">;
168
- title: z.ZodString;
169
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
170
- url: z.ZodString;
171
- param: z.ZodString;
172
- emptyMessage: z.ZodOptional<z.ZodString>;
173
- control: z.ZodOptional<z.ZodString>;
174
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
175
- }, "strip", z.ZodTypeAny, {
176
- url: string;
177
- type: "search";
178
- title: string;
179
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
180
- param: string;
181
- control?: string | undefined;
182
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
183
- emptyMessage?: string | undefined;
184
- }, {
185
- url: string;
186
- type: "search";
187
- title: string;
188
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
189
- param: string;
190
- control?: string | undefined;
191
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
192
- emptyMessage?: string | undefined;
130
+ accessibilityDescription?: string | undefined;
193
131
  }>;
194
132
  export declare const infoLayoutSchema: z.ZodObject<{
195
133
  type: z.ZodLiteral<"info">;
@@ -210,77 +148,51 @@ export declare const infoLayoutSchema: z.ZodObject<{
210
148
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
211
149
  align?: "left" | "right" | "center" | undefined;
212
150
  }>;
213
- export declare const formLayoutSchema: z.ZodObject<{
214
- type: z.ZodLiteral<"form">;
215
- schema: z.ZodOptional<z.ZodObject<{
216
- $ref: z.ZodString;
217
- }, "strip", z.ZodTypeAny, {
218
- $ref: string;
219
- }, {
220
- $ref: string;
221
- }>>;
222
- schemaId: z.ZodString;
151
+ export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
152
+ type: z.ZodLiteral<"loading-indicator">;
153
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
223
154
  control: z.ZodOptional<z.ZodString>;
224
155
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
225
156
  }, "strip", z.ZodTypeAny, {
226
- type: "form";
227
- schemaId: string;
157
+ type: "loading-indicator";
228
158
  control?: string | undefined;
229
159
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
230
- schema?: {
231
- $ref: string;
232
- } | undefined;
160
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
233
161
  }, {
234
- type: "form";
235
- schemaId: string;
162
+ type: "loading-indicator";
236
163
  control?: string | undefined;
237
164
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
238
- schema?: {
239
- $ref: string;
240
- } | undefined;
165
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
241
166
  }>;
242
- export declare const headingLayoutSchema: z.ZodObject<{
243
- type: z.ZodLiteral<"heading">;
167
+ export declare const paragraphLayoutSchema: z.ZodObject<{
168
+ type: z.ZodLiteral<"paragraph">;
244
169
  text: z.ZodString;
245
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
246
170
  align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
247
171
  control: z.ZodOptional<z.ZodString>;
248
172
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
249
173
  }, "strip", z.ZodTypeAny, {
250
- type: "heading";
174
+ type: "paragraph";
251
175
  text: string;
252
176
  control?: string | undefined;
253
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
254
177
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
255
178
  align?: "left" | "right" | "center" | undefined;
256
179
  }, {
257
- type: "heading";
180
+ type: "paragraph";
258
181
  text: string;
259
182
  control?: string | undefined;
260
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
261
183
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
262
184
  align?: "left" | "right" | "center" | undefined;
263
185
  }>;
264
- export declare const markdownLayoutSchema: z.ZodObject<{
265
- type: z.ZodLiteral<"markdown">;
266
- content: z.ZodString;
267
- align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
268
- control: z.ZodOptional<z.ZodString>;
269
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
186
+ export declare const instructionsLayoutItemSchema: z.ZodObject<{
187
+ text: z.ZodString;
188
+ 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">]>;
270
189
  }, "strip", z.ZodTypeAny, {
271
- type: "markdown";
272
- content: string;
273
- control?: string | undefined;
274
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
275
- align?: "left" | "right" | "center" | undefined;
190
+ text: string;
191
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
276
192
  }, {
277
- type: "markdown";
278
- content: string;
279
- control?: string | undefined;
280
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
281
- align?: "left" | "right" | "center" | undefined;
193
+ text: string;
194
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
282
195
  }>;
283
- export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
284
196
  export declare const helpSchema: z.ZodObject<{
285
197
  markdown: z.ZodString;
286
198
  }, "strip", z.ZodTypeAny, {
@@ -288,23 +200,52 @@ export declare const helpSchema: z.ZodObject<{
288
200
  }, {
289
201
  markdown: string;
290
202
  }>;
291
- export declare const searchSearchRequestSchema: z.ZodObject<{
203
+ export declare const imageSchema: z.ZodObject<{
204
+ text: z.ZodOptional<z.ZodString>;
292
205
  url: z.ZodString;
293
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
294
- param: z.ZodString;
295
- query: z.ZodString;
206
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
296
207
  }, "strip", z.ZodTypeAny, {
297
208
  url: string;
298
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
299
- param: string;
300
- query: string;
209
+ text?: string | undefined;
210
+ accessibilityDescription?: string | undefined;
301
211
  }, {
302
212
  url: string;
213
+ text?: string | undefined;
214
+ accessibilityDescription?: string | undefined;
215
+ }>;
216
+ export declare const summaryProviderSchema: z.ZodObject<{
217
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
218
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
219
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
220
+ providesImage: z.ZodOptional<z.ZodBoolean>;
221
+ }, "strip", z.ZodTypeAny, {
222
+ providesTitle?: boolean | undefined;
223
+ providesDescription?: boolean | undefined;
224
+ providesIcon?: boolean | undefined;
225
+ providesImage?: boolean | undefined;
226
+ }, {
227
+ providesTitle?: boolean | undefined;
228
+ providesDescription?: boolean | undefined;
229
+ providesIcon?: boolean | undefined;
230
+ providesImage?: boolean | undefined;
231
+ }>;
232
+ export declare const validateAsyncSchema: z.ZodObject<{
233
+ param: z.ZodString;
234
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
235
+ url: z.ZodString;
236
+ }, "strip", z.ZodTypeAny, {
237
+ url: string;
238
+ param: string;
303
239
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
240
+ }, {
241
+ url: string;
304
242
  param: string;
305
- query: string;
243
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
306
244
  }>;
245
+ 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">]>;
246
+ 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">]>;
307
247
  export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
248
+ export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
308
249
  export declare const externalSchema: z.ZodObject<{
309
250
  url: z.ZodString;
310
251
  }, "strip", z.ZodTypeAny, {
@@ -322,230 +263,57 @@ export declare const stepErrorSchema: z.ZodObject<{
322
263
  validation?: JsonElement | undefined;
323
264
  error?: string | undefined;
324
265
  }>;
325
- export declare const stringSchemaFormatSchema: z.ZodUnion<[z.ZodLiteral<"date">, z.ZodLiteral<"email">, z.ZodLiteral<"numeric">, z.ZodLiteral<"password">, z.ZodLiteral<"phone-number">, z.ZodLiteral<"base64url">]>;
326
- export declare const summarySummariserSchema: z.ZodObject<{
327
- defaultTitle: z.ZodOptional<z.ZodString>;
328
- defaultDescription: z.ZodOptional<z.ZodString>;
329
- defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
330
- name: z.ZodString;
331
- }, "strip", z.ZodTypeAny, {
332
- name: string;
333
- }, {
334
- name: string;
335
- }>, z.ZodObject<{
336
- text: z.ZodString;
337
- }, "strip", z.ZodTypeAny, {
338
- text: string;
339
- }, {
340
- text: string;
341
- }>]>>;
342
- defaultImage: z.ZodOptional<z.ZodObject<{
343
- type: z.ZodLiteral<"image">;
344
- text: z.ZodOptional<z.ZodString>;
345
- url: z.ZodString;
346
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
347
- accessibilityDescription: z.ZodOptional<z.ZodString>;
348
- control: z.ZodOptional<z.ZodString>;
349
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
350
- }, "strip", z.ZodTypeAny, {
351
- url: string;
352
- type: "image";
353
- control?: string | undefined;
354
- text?: string | undefined;
355
- accessibilityDescription?: string | undefined;
356
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
357
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
358
- }, {
359
- url: string;
360
- type: "image";
361
- control?: string | undefined;
362
- text?: string | undefined;
363
- accessibilityDescription?: string | undefined;
364
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
365
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
366
- }>>;
367
- providesTitle: z.ZodOptional<z.ZodBoolean>;
368
- providesDescription: z.ZodOptional<z.ZodBoolean>;
369
- providesIcon: z.ZodOptional<z.ZodBoolean>;
370
- providesImage: z.ZodOptional<z.ZodBoolean>;
266
+ export declare const errorResponseBodySchema: z.ZodObject<{
267
+ refreshFormUrl: z.ZodOptional<z.ZodString>;
268
+ analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
269
+ error: z.ZodOptional<z.ZodString>;
270
+ validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
271
+ refreshUrl: z.ZodOptional<z.ZodString>;
371
272
  }, "strip", z.ZodTypeAny, {
372
- defaultTitle?: string | undefined;
373
- defaultDescription?: string | undefined;
374
- defaultIcon?: {
375
- name: string;
376
- } | {
377
- text: string;
378
- } | undefined;
379
- defaultImage?: {
380
- url: string;
381
- type: "image";
382
- control?: string | undefined;
383
- text?: string | undefined;
384
- accessibilityDescription?: string | undefined;
385
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
386
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
387
- } | undefined;
388
- providesTitle?: boolean | undefined;
389
- providesDescription?: boolean | undefined;
390
- providesIcon?: boolean | undefined;
391
- providesImage?: boolean | undefined;
273
+ refreshUrl?: string | undefined;
274
+ refreshFormUrl?: string | undefined;
275
+ analytics?: Record<string, string> | undefined;
276
+ validation?: JsonElement | undefined;
277
+ error?: string | undefined;
392
278
  }, {
393
- defaultTitle?: string | undefined;
394
- defaultDescription?: string | undefined;
395
- defaultIcon?: {
396
- name: string;
397
- } | {
398
- text: string;
399
- } | undefined;
400
- defaultImage?: {
401
- url: string;
402
- type: "image";
403
- control?: string | undefined;
404
- text?: string | undefined;
405
- accessibilityDescription?: string | undefined;
406
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
407
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
408
- } | undefined;
409
- providesTitle?: boolean | undefined;
410
- providesDescription?: boolean | undefined;
411
- providesIcon?: boolean | undefined;
412
- providesImage?: boolean | undefined;
279
+ refreshUrl?: string | undefined;
280
+ refreshFormUrl?: string | undefined;
281
+ analytics?: Record<string, string> | undefined;
282
+ validation?: JsonElement | undefined;
283
+ error?: string | undefined;
413
284
  }>;
414
- export declare const validateAsyncSchema: z.ZodObject<{
415
- param: z.ZodString;
416
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
285
+ export declare const searchSearchRequestSchema: z.ZodObject<{
417
286
  url: z.ZodString;
287
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
288
+ param: z.ZodString;
289
+ query: z.ZodString;
418
290
  }, "strip", z.ZodTypeAny, {
419
291
  url: string;
420
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
421
292
  param: string;
293
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
294
+ query: string;
422
295
  }, {
423
296
  url: string;
424
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
425
297
  param: string;
298
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
299
+ query: string;
426
300
  }>;
427
- export declare const summaryProviderSchema: z.ZodObject<{
428
- providesTitle: z.ZodOptional<z.ZodBoolean>;
429
- providesDescription: z.ZodOptional<z.ZodBoolean>;
430
- providesIcon: z.ZodOptional<z.ZodBoolean>;
431
- providesImage: z.ZodOptional<z.ZodBoolean>;
432
- }, "strip", z.ZodTypeAny, {
433
- providesTitle?: boolean | undefined;
434
- providesDescription?: boolean | undefined;
435
- providesIcon?: boolean | undefined;
436
- providesImage?: boolean | undefined;
437
- }, {
438
- providesTitle?: boolean | undefined;
439
- providesDescription?: boolean | undefined;
440
- providesIcon?: boolean | undefined;
441
- providesImage?: boolean | undefined;
442
- }>;
443
- export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
444
301
  export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
445
302
  export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
446
- export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
447
- providesTitle: z.ZodOptional<z.ZodBoolean>;
448
- providesDescription: z.ZodOptional<z.ZodBoolean>;
449
- providesIcon: z.ZodOptional<z.ZodBoolean>;
450
- providesImage: z.ZodOptional<z.ZodBoolean>;
303
+ export declare const iconNamedSchema: z.ZodObject<{
304
+ name: z.ZodString;
451
305
  }, "strip", z.ZodTypeAny, {
452
- providesTitle?: boolean | undefined;
453
- providesDescription?: boolean | undefined;
454
- providesIcon?: boolean | undefined;
455
- providesImage?: boolean | undefined;
306
+ name: string;
456
307
  }, {
457
- providesTitle?: boolean | undefined;
458
- providesDescription?: boolean | undefined;
459
- providesIcon?: boolean | undefined;
460
- providesImage?: boolean | undefined;
461
- }>, z.ZodObject<{
462
- defaultTitle: z.ZodOptional<z.ZodString>;
463
- defaultDescription: z.ZodOptional<z.ZodString>;
464
- defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
465
- name: z.ZodString;
466
- }, "strip", z.ZodTypeAny, {
467
- name: string;
468
- }, {
469
- name: string;
470
- }>, z.ZodObject<{
471
- text: z.ZodString;
472
- }, "strip", z.ZodTypeAny, {
473
- text: string;
474
- }, {
475
- text: string;
476
- }>]>>;
477
- defaultImage: z.ZodOptional<z.ZodObject<{
478
- type: z.ZodLiteral<"image">;
479
- text: z.ZodOptional<z.ZodString>;
480
- url: z.ZodString;
481
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
482
- accessibilityDescription: z.ZodOptional<z.ZodString>;
483
- control: z.ZodOptional<z.ZodString>;
484
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
485
- }, "strip", z.ZodTypeAny, {
486
- url: string;
487
- type: "image";
488
- control?: string | undefined;
489
- text?: string | undefined;
490
- accessibilityDescription?: string | undefined;
491
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
492
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
493
- }, {
494
- url: string;
495
- type: "image";
496
- control?: string | undefined;
497
- text?: string | undefined;
498
- accessibilityDescription?: string | undefined;
499
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
500
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
501
- }>>;
502
- providesTitle: z.ZodOptional<z.ZodBoolean>;
503
- providesDescription: z.ZodOptional<z.ZodBoolean>;
504
- providesIcon: z.ZodOptional<z.ZodBoolean>;
505
- providesImage: z.ZodOptional<z.ZodBoolean>;
308
+ name: string;
309
+ }>;
310
+ export declare const iconTextSchema: z.ZodObject<{
311
+ text: z.ZodString;
506
312
  }, "strip", z.ZodTypeAny, {
507
- defaultTitle?: string | undefined;
508
- defaultDescription?: string | undefined;
509
- defaultIcon?: {
510
- name: string;
511
- } | {
512
- text: string;
513
- } | undefined;
514
- defaultImage?: {
515
- url: string;
516
- type: "image";
517
- control?: string | undefined;
518
- text?: string | undefined;
519
- accessibilityDescription?: string | undefined;
520
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
521
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
522
- } | undefined;
523
- providesTitle?: boolean | undefined;
524
- providesDescription?: boolean | undefined;
525
- providesIcon?: boolean | undefined;
526
- providesImage?: boolean | undefined;
313
+ text: string;
527
314
  }, {
528
- defaultTitle?: string | undefined;
529
- defaultDescription?: string | undefined;
530
- defaultIcon?: {
531
- name: string;
532
- } | {
533
- text: string;
534
- } | undefined;
535
- defaultImage?: {
536
- url: string;
537
- type: "image";
538
- control?: string | undefined;
539
- text?: string | undefined;
540
- accessibilityDescription?: string | undefined;
541
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
542
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
543
- } | undefined;
544
- providesTitle?: boolean | undefined;
545
- providesDescription?: boolean | undefined;
546
- providesIcon?: boolean | undefined;
547
- providesImage?: boolean | undefined;
548
- }>]>;
315
+ text: string;
316
+ }>;
549
317
  export declare const actionSchema: z.ZodObject<{
550
318
  title: z.ZodOptional<z.ZodString>;
551
319
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -589,43 +357,55 @@ export declare const actionSchema: z.ZodObject<{
589
357
  timeout?: number | undefined;
590
358
  skipValidation?: boolean | undefined;
591
359
  }>;
592
- export declare const listLayoutItemSchema: z.ZodObject<{
360
+ export declare const markdownLayoutSchema: z.ZodObject<{
361
+ type: z.ZodLiteral<"markdown">;
362
+ content: z.ZodString;
363
+ align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
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: "markdown";
368
+ content: string;
369
+ control?: string | undefined;
370
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
371
+ align?: "left" | "right" | "center" | undefined;
372
+ }, {
373
+ type: "markdown";
374
+ content: string;
375
+ control?: string | undefined;
376
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
377
+ align?: "left" | "right" | "center" | undefined;
378
+ }>;
379
+ export declare const searchLayoutSchema: z.ZodObject<{
380
+ type: z.ZodLiteral<"search">;
593
381
  title: z.ZodString;
594
- description: z.ZodOptional<z.ZodString>;
595
- icon: z.ZodUnion<[z.ZodObject<{
596
- name: z.ZodString;
597
- }, "strip", z.ZodTypeAny, {
598
- name: string;
599
- }, {
600
- name: string;
601
- }>, z.ZodObject<{
602
- text: z.ZodString;
603
- }, "strip", z.ZodTypeAny, {
604
- text: string;
605
- }, {
606
- text: string;
607
- }>]>;
608
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
382
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
383
+ url: z.ZodString;
384
+ param: z.ZodString;
385
+ emptyMessage: z.ZodOptional<z.ZodString>;
386
+ control: z.ZodOptional<z.ZodString>;
387
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
609
388
  }, "strip", z.ZodTypeAny, {
610
- icon: {
611
- name: string;
612
- } | {
613
- text: string;
614
- };
389
+ url: string;
390
+ type: "search";
615
391
  title: string;
616
- description?: string | undefined;
617
- status?: "neutral" | "warning" | "positive" | undefined;
392
+ param: string;
393
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
394
+ control?: string | undefined;
395
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
396
+ emptyMessage?: string | undefined;
618
397
  }, {
619
- icon: {
620
- name: string;
621
- } | {
622
- text: string;
623
- };
398
+ url: string;
399
+ type: "search";
624
400
  title: string;
625
- description?: string | undefined;
626
- status?: "neutral" | "warning" | "positive" | undefined;
401
+ param: string;
402
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
403
+ control?: string | undefined;
404
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
405
+ emptyMessage?: string | undefined;
627
406
  }>;
628
- export declare const decisionLayoutOptionSchema: z.ZodObject<{
407
+ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
408
+ title: z.ZodString;
629
409
  action: z.ZodObject<{
630
410
  title: z.ZodOptional<z.ZodString>;
631
411
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -669,47 +449,6 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
669
449
  timeout?: number | undefined;
670
450
  skipValidation?: boolean | undefined;
671
451
  }>;
672
- title: z.ZodString;
673
- description: z.ZodOptional<z.ZodString>;
674
- disabled: z.ZodOptional<z.ZodBoolean>;
675
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
676
- name: z.ZodString;
677
- }, "strip", z.ZodTypeAny, {
678
- name: string;
679
- }, {
680
- name: string;
681
- }>, z.ZodObject<{
682
- text: z.ZodString;
683
- }, "strip", z.ZodTypeAny, {
684
- text: string;
685
- }, {
686
- text: string;
687
- }>]>>;
688
- image: z.ZodOptional<z.ZodObject<{
689
- type: z.ZodLiteral<"image">;
690
- text: z.ZodOptional<z.ZodString>;
691
- url: z.ZodString;
692
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
693
- accessibilityDescription: z.ZodOptional<z.ZodString>;
694
- control: z.ZodOptional<z.ZodString>;
695
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
696
- }, "strip", z.ZodTypeAny, {
697
- url: string;
698
- type: "image";
699
- control?: string | undefined;
700
- text?: string | undefined;
701
- accessibilityDescription?: string | undefined;
702
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
703
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
704
- }, {
705
- url: string;
706
- type: "image";
707
- control?: string | undefined;
708
- text?: string | undefined;
709
- accessibilityDescription?: string | undefined;
710
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
711
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
712
- }>>;
713
452
  }, "strip", z.ZodTypeAny, {
714
453
  action: {
715
454
  url?: string | undefined;
@@ -727,22 +466,6 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
727
466
  skipValidation?: boolean | undefined;
728
467
  };
729
468
  title: string;
730
- image?: {
731
- url: string;
732
- type: "image";
733
- control?: string | undefined;
734
- text?: string | undefined;
735
- accessibilityDescription?: string | undefined;
736
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
737
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
738
- } | undefined;
739
- description?: string | undefined;
740
- disabled?: boolean | undefined;
741
- icon?: {
742
- name: string;
743
- } | {
744
- text: string;
745
- } | undefined;
746
469
  }, {
747
470
  action: {
748
471
  url?: string | undefined;
@@ -760,21 +483,75 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
760
483
  skipValidation?: boolean | undefined;
761
484
  };
762
485
  title: string;
763
- image?: {
764
- url: string;
765
- type: "image";
766
- control?: string | undefined;
767
- text?: string | undefined;
768
- accessibilityDescription?: string | undefined;
769
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
770
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
771
- } | undefined;
772
- description?: string | undefined;
773
- disabled?: boolean | undefined;
774
- icon?: {
775
- name: string;
776
- } | {
486
+ }>;
487
+ export declare const instructionsLayoutSchema: z.ZodObject<{
488
+ type: z.ZodLiteral<"instructions">;
489
+ title: z.ZodOptional<z.ZodString>;
490
+ items: z.ZodArray<z.ZodObject<{
491
+ text: z.ZodString;
492
+ 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">]>;
493
+ }, "strip", z.ZodTypeAny, {
494
+ text: string;
495
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
496
+ }, {
497
+ text: string;
498
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
499
+ }>, "many">;
500
+ control: z.ZodOptional<z.ZodString>;
501
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
502
+ }, "strip", z.ZodTypeAny, {
503
+ type: "instructions";
504
+ items: {
505
+ text: string;
506
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
507
+ }[];
508
+ title?: string | undefined;
509
+ control?: string | undefined;
510
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
511
+ }, {
512
+ type: "instructions";
513
+ items: {
777
514
  text: string;
515
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
516
+ }[];
517
+ title?: string | undefined;
518
+ control?: string | undefined;
519
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
520
+ }>;
521
+ export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
522
+ name: z.ZodString;
523
+ }, "strip", z.ZodTypeAny, {
524
+ name: string;
525
+ }, {
526
+ name: string;
527
+ }>, z.ZodObject<{
528
+ text: z.ZodString;
529
+ }, "strip", z.ZodTypeAny, {
530
+ text: string;
531
+ }, {
532
+ text: string;
533
+ }>]>;
534
+ export declare const reviewLayoutFieldSchema: z.ZodObject<{
535
+ label: z.ZodString;
536
+ value: z.ZodString;
537
+ help: z.ZodOptional<z.ZodObject<{
538
+ markdown: z.ZodString;
539
+ }, "strip", z.ZodTypeAny, {
540
+ markdown: string;
541
+ }, {
542
+ markdown: string;
543
+ }>>;
544
+ }, "strip", z.ZodTypeAny, {
545
+ value: string;
546
+ label: string;
547
+ help?: {
548
+ markdown: string;
549
+ } | undefined;
550
+ }, {
551
+ value: string;
552
+ label: string;
553
+ help?: {
554
+ markdown: string;
778
555
  } | undefined;
779
556
  }>;
780
557
  export declare const statusListLayoutItemSchema: z.ZodObject<{
@@ -813,44 +590,495 @@ export declare const statusListLayoutItemSchema: z.ZodObject<{
813
590
  description?: string | undefined;
814
591
  status?: "done" | "not-done" | "pending" | undefined;
815
592
  }>;
816
- export declare const instructionsLayoutSchema: z.ZodObject<{
817
- type: z.ZodLiteral<"instructions">;
593
+ export declare const blobSchemaSchema: z.ZodObject<{
594
+ type: z.ZodLiteral<"blob">;
595
+ promoted: z.ZodOptional<z.ZodBoolean>;
596
+ $id: z.ZodOptional<z.ZodString>;
818
597
  title: z.ZodOptional<z.ZodString>;
819
- items: z.ZodArray<z.ZodObject<{
598
+ description: z.ZodOptional<z.ZodString>;
599
+ control: z.ZodOptional<z.ZodString>;
600
+ hidden: z.ZodOptional<z.ZodBoolean>;
601
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
602
+ name: z.ZodString;
603
+ }, "strip", z.ZodTypeAny, {
604
+ name: string;
605
+ }, {
606
+ name: string;
607
+ }>, z.ZodObject<{
820
608
  text: z.ZodString;
821
- 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">]>;
822
609
  }, "strip", z.ZodTypeAny, {
823
610
  text: string;
824
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
825
611
  }, {
826
612
  text: string;
827
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
828
- }>, "many">;
829
- control: z.ZodOptional<z.ZodString>;
830
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
831
- }, "strip", z.ZodTypeAny, {
832
- type: "instructions";
833
- items: {
613
+ }>]>>;
614
+ image: z.ZodOptional<z.ZodObject<{
615
+ text: z.ZodOptional<z.ZodString>;
616
+ url: z.ZodString;
617
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
618
+ }, "strip", z.ZodTypeAny, {
619
+ url: string;
620
+ text?: string | undefined;
621
+ accessibilityDescription?: string | undefined;
622
+ }, {
623
+ url: string;
624
+ text?: string | undefined;
625
+ accessibilityDescription?: string | undefined;
626
+ }>>;
627
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
628
+ summary: z.ZodOptional<z.ZodObject<{
629
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
630
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
631
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
632
+ providesImage: z.ZodOptional<z.ZodBoolean>;
633
+ }, "strip", z.ZodTypeAny, {
634
+ providesTitle?: boolean | undefined;
635
+ providesDescription?: boolean | undefined;
636
+ providesIcon?: boolean | undefined;
637
+ providesImage?: boolean | undefined;
638
+ }, {
639
+ providesTitle?: boolean | undefined;
640
+ providesDescription?: boolean | undefined;
641
+ providesIcon?: boolean | undefined;
642
+ providesImage?: boolean | undefined;
643
+ }>>;
644
+ analyticsId: z.ZodOptional<z.ZodString>;
645
+ validationAsync: z.ZodOptional<z.ZodObject<{
646
+ param: z.ZodString;
647
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
648
+ url: z.ZodString;
649
+ }, "strip", z.ZodTypeAny, {
650
+ url: string;
651
+ param: string;
652
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
653
+ }, {
654
+ url: string;
655
+ param: string;
656
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
657
+ }>>;
658
+ validationMessages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
659
+ alert: z.ZodOptional<z.ZodObject<{
660
+ type: z.ZodLiteral<"alert">;
661
+ markdown: z.ZodString;
662
+ 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">]>>;
663
+ control: z.ZodOptional<z.ZodString>;
664
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
665
+ }, "strip", z.ZodTypeAny, {
666
+ type: "alert";
667
+ markdown: string;
668
+ control?: string | undefined;
669
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
670
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
671
+ }, {
672
+ type: "alert";
673
+ markdown: string;
674
+ control?: string | undefined;
675
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
676
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
677
+ }>>;
678
+ cameraConfig: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
679
+ accepts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
680
+ maxSize: z.ZodOptional<z.ZodNumber>;
681
+ source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>>;
682
+ disabled: z.ZodOptional<z.ZodBoolean>;
683
+ }, "strip", z.ZodTypeAny, {
684
+ type: "blob";
685
+ image?: {
686
+ url: string;
687
+ text?: string | undefined;
688
+ accessibilityDescription?: string | undefined;
689
+ } | undefined;
690
+ alert?: {
691
+ type: "alert";
692
+ markdown: string;
693
+ control?: string | undefined;
694
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
695
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
696
+ } | undefined;
697
+ $id?: string | undefined;
698
+ analyticsId?: string | undefined;
699
+ description?: string | undefined;
700
+ disabled?: boolean | undefined;
701
+ hidden?: boolean | undefined;
702
+ icon?: {
703
+ name: string;
704
+ } | {
834
705
  text: string;
835
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
836
- }[];
706
+ } | undefined;
707
+ promoted?: boolean | undefined;
708
+ summary?: {
709
+ providesTitle?: boolean | undefined;
710
+ providesDescription?: boolean | undefined;
711
+ providesIcon?: boolean | undefined;
712
+ providesImage?: boolean | undefined;
713
+ } | undefined;
837
714
  title?: string | undefined;
715
+ validationAsync?: {
716
+ url: string;
717
+ param: string;
718
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
719
+ } | undefined;
720
+ validationMessages?: Record<string, string> | undefined;
721
+ keywords?: string[] | undefined;
722
+ source?: "camera" | "file" | undefined;
723
+ cameraConfig?: JsonElement | undefined;
838
724
  control?: string | undefined;
839
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
725
+ maxSize?: number | undefined;
726
+ accepts?: string[] | undefined;
840
727
  }, {
841
- type: "instructions";
842
- items: {
728
+ type: "blob";
729
+ image?: {
730
+ url: string;
731
+ text?: string | undefined;
732
+ accessibilityDescription?: string | undefined;
733
+ } | undefined;
734
+ alert?: {
735
+ type: "alert";
736
+ markdown: string;
737
+ control?: string | undefined;
738
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
739
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
740
+ } | undefined;
741
+ $id?: string | undefined;
742
+ analyticsId?: string | undefined;
743
+ description?: string | undefined;
744
+ disabled?: boolean | undefined;
745
+ hidden?: boolean | undefined;
746
+ icon?: {
747
+ name: string;
748
+ } | {
843
749
  text: string;
844
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
845
- }[];
750
+ } | undefined;
751
+ promoted?: boolean | undefined;
752
+ summary?: {
753
+ providesTitle?: boolean | undefined;
754
+ providesDescription?: boolean | undefined;
755
+ providesIcon?: boolean | undefined;
756
+ providesImage?: boolean | undefined;
757
+ } | undefined;
846
758
  title?: string | undefined;
759
+ validationAsync?: {
760
+ url: string;
761
+ param: string;
762
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
763
+ } | undefined;
764
+ validationMessages?: Record<string, string> | undefined;
765
+ keywords?: string[] | undefined;
766
+ source?: "camera" | "file" | undefined;
767
+ cameraConfig?: JsonElement | undefined;
847
768
  control?: string | undefined;
848
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
769
+ maxSize?: number | undefined;
770
+ accepts?: string[] | undefined;
771
+ }>;
772
+ export declare const constSchemaSchema: z.ZodObject<{
773
+ hidden: z.ZodOptional<z.ZodBoolean>;
774
+ alert: z.ZodOptional<z.ZodObject<{
775
+ type: z.ZodLiteral<"alert">;
776
+ markdown: z.ZodString;
777
+ 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">]>>;
778
+ control: z.ZodOptional<z.ZodString>;
779
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
780
+ }, "strip", z.ZodTypeAny, {
781
+ type: "alert";
782
+ markdown: string;
783
+ control?: string | undefined;
784
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
785
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
786
+ }, {
787
+ type: "alert";
788
+ markdown: string;
789
+ control?: string | undefined;
790
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
791
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
792
+ }>>;
793
+ control: z.ZodOptional<z.ZodString>;
794
+ promoted: z.ZodOptional<z.ZodBoolean>;
795
+ $id: z.ZodOptional<z.ZodString>;
796
+ const: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
797
+ title: z.ZodOptional<z.ZodString>;
798
+ description: z.ZodOptional<z.ZodString>;
799
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
800
+ name: z.ZodString;
801
+ }, "strip", z.ZodTypeAny, {
802
+ name: string;
803
+ }, {
804
+ name: string;
805
+ }>, z.ZodObject<{
806
+ text: z.ZodString;
807
+ }, "strip", z.ZodTypeAny, {
808
+ text: string;
809
+ }, {
810
+ text: string;
811
+ }>]>>;
812
+ image: z.ZodOptional<z.ZodObject<{
813
+ text: z.ZodOptional<z.ZodString>;
814
+ url: z.ZodString;
815
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
816
+ }, "strip", z.ZodTypeAny, {
817
+ url: string;
818
+ text?: string | undefined;
819
+ accessibilityDescription?: string | undefined;
820
+ }, {
821
+ url: string;
822
+ text?: string | undefined;
823
+ accessibilityDescription?: string | undefined;
824
+ }>>;
825
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
826
+ summary: z.ZodOptional<z.ZodObject<{
827
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
828
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
829
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
830
+ providesImage: z.ZodOptional<z.ZodBoolean>;
831
+ }, "strip", z.ZodTypeAny, {
832
+ providesTitle?: boolean | undefined;
833
+ providesDescription?: boolean | undefined;
834
+ providesIcon?: boolean | undefined;
835
+ providesImage?: boolean | undefined;
836
+ }, {
837
+ providesTitle?: boolean | undefined;
838
+ providesDescription?: boolean | undefined;
839
+ providesIcon?: boolean | undefined;
840
+ providesImage?: boolean | undefined;
841
+ }>>;
842
+ analyticsId: z.ZodOptional<z.ZodString>;
843
+ disabled: z.ZodOptional<z.ZodBoolean>;
844
+ }, "strip", z.ZodTypeAny, {
845
+ const: JsonElement;
846
+ image?: {
847
+ url: string;
848
+ text?: string | undefined;
849
+ accessibilityDescription?: string | undefined;
850
+ } | undefined;
851
+ alert?: {
852
+ type: "alert";
853
+ markdown: string;
854
+ control?: string | undefined;
855
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
856
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
857
+ } | undefined;
858
+ $id?: string | undefined;
859
+ analyticsId?: string | undefined;
860
+ description?: string | undefined;
861
+ disabled?: boolean | undefined;
862
+ hidden?: boolean | undefined;
863
+ icon?: {
864
+ name: string;
865
+ } | {
866
+ text: string;
867
+ } | undefined;
868
+ promoted?: boolean | undefined;
869
+ summary?: {
870
+ providesTitle?: boolean | undefined;
871
+ providesDescription?: boolean | undefined;
872
+ providesIcon?: boolean | undefined;
873
+ providesImage?: boolean | undefined;
874
+ } | undefined;
875
+ title?: string | undefined;
876
+ keywords?: string[] | undefined;
877
+ control?: string | undefined;
878
+ }, {
879
+ const: JsonElement;
880
+ image?: {
881
+ url: string;
882
+ text?: string | undefined;
883
+ accessibilityDescription?: string | undefined;
884
+ } | undefined;
885
+ alert?: {
886
+ type: "alert";
887
+ markdown: string;
888
+ control?: string | undefined;
889
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
890
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
891
+ } | undefined;
892
+ $id?: string | undefined;
893
+ analyticsId?: string | undefined;
894
+ description?: string | undefined;
895
+ disabled?: boolean | undefined;
896
+ hidden?: boolean | undefined;
897
+ icon?: {
898
+ name: string;
899
+ } | {
900
+ text: string;
901
+ } | undefined;
902
+ promoted?: boolean | undefined;
903
+ summary?: {
904
+ providesTitle?: boolean | undefined;
905
+ providesDescription?: boolean | undefined;
906
+ providesIcon?: boolean | undefined;
907
+ providesImage?: boolean | undefined;
908
+ } | undefined;
909
+ title?: string | undefined;
910
+ keywords?: string[] | undefined;
911
+ control?: string | undefined;
912
+ }>;
913
+ export declare const summarySummariserSchema: z.ZodObject<{
914
+ defaultTitle: z.ZodOptional<z.ZodString>;
915
+ defaultDescription: z.ZodOptional<z.ZodString>;
916
+ defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
917
+ name: z.ZodString;
918
+ }, "strip", z.ZodTypeAny, {
919
+ name: string;
920
+ }, {
921
+ name: string;
922
+ }>, z.ZodObject<{
923
+ text: z.ZodString;
924
+ }, "strip", z.ZodTypeAny, {
925
+ text: string;
926
+ }, {
927
+ text: string;
928
+ }>]>>;
929
+ defaultImage: z.ZodOptional<z.ZodObject<{
930
+ type: z.ZodLiteral<"image">;
931
+ text: z.ZodOptional<z.ZodString>;
932
+ url: z.ZodString;
933
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
934
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
935
+ control: z.ZodOptional<z.ZodString>;
936
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
937
+ }, "strip", z.ZodTypeAny, {
938
+ url: string;
939
+ type: "image";
940
+ control?: string | undefined;
941
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
942
+ text?: string | undefined;
943
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
944
+ accessibilityDescription?: string | undefined;
945
+ }, {
946
+ url: string;
947
+ type: "image";
948
+ control?: string | undefined;
949
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
950
+ text?: string | undefined;
951
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
952
+ accessibilityDescription?: string | undefined;
953
+ }>>;
954
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
955
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
956
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
957
+ providesImage: z.ZodOptional<z.ZodBoolean>;
958
+ }, "strip", z.ZodTypeAny, {
959
+ providesTitle?: boolean | undefined;
960
+ providesDescription?: boolean | undefined;
961
+ providesIcon?: boolean | undefined;
962
+ providesImage?: boolean | undefined;
963
+ defaultTitle?: string | undefined;
964
+ defaultDescription?: string | undefined;
965
+ defaultIcon?: {
966
+ name: string;
967
+ } | {
968
+ text: string;
969
+ } | undefined;
970
+ defaultImage?: {
971
+ url: string;
972
+ type: "image";
973
+ control?: string | undefined;
974
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
975
+ text?: string | undefined;
976
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
977
+ accessibilityDescription?: string | undefined;
978
+ } | undefined;
979
+ }, {
980
+ providesTitle?: boolean | undefined;
981
+ providesDescription?: boolean | undefined;
982
+ providesIcon?: boolean | undefined;
983
+ providesImage?: boolean | undefined;
984
+ defaultTitle?: string | undefined;
985
+ defaultDescription?: string | undefined;
986
+ defaultIcon?: {
987
+ name: string;
988
+ } | {
989
+ text: string;
990
+ } | undefined;
991
+ defaultImage?: {
992
+ url: string;
993
+ type: "image";
994
+ control?: string | undefined;
995
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
996
+ text?: string | undefined;
997
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
998
+ accessibilityDescription?: string | undefined;
999
+ } | undefined;
1000
+ }>;
1001
+ export declare const linkHandlerSchema: z.ZodObject<{
1002
+ regexPattern: z.ZodString;
1003
+ action: z.ZodObject<{
1004
+ title: z.ZodOptional<z.ZodString>;
1005
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1006
+ disabled: z.ZodOptional<z.ZodBoolean>;
1007
+ $id: z.ZodOptional<z.ZodString>;
1008
+ $ref: z.ZodOptional<z.ZodString>;
1009
+ id: z.ZodOptional<z.ZodString>;
1010
+ url: z.ZodOptional<z.ZodString>;
1011
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1012
+ exit: z.ZodOptional<z.ZodBoolean>;
1013
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1014
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1015
+ timeout: z.ZodOptional<z.ZodNumber>;
1016
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1017
+ }, "strip", z.ZodTypeAny, {
1018
+ url?: string | undefined;
1019
+ $id?: string | undefined;
1020
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1021
+ disabled?: boolean | undefined;
1022
+ title?: string | undefined;
1023
+ id?: string | undefined;
1024
+ $ref?: string | undefined;
1025
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1026
+ exit?: boolean | undefined;
1027
+ result?: JsonElement | undefined;
1028
+ data?: JsonElement | undefined;
1029
+ timeout?: number | undefined;
1030
+ skipValidation?: boolean | undefined;
1031
+ }, {
1032
+ url?: string | undefined;
1033
+ $id?: string | undefined;
1034
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1035
+ disabled?: boolean | undefined;
1036
+ title?: string | undefined;
1037
+ id?: string | undefined;
1038
+ $ref?: string | undefined;
1039
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1040
+ exit?: boolean | undefined;
1041
+ result?: JsonElement | undefined;
1042
+ data?: JsonElement | undefined;
1043
+ timeout?: number | undefined;
1044
+ skipValidation?: boolean | undefined;
1045
+ }>;
1046
+ }, "strip", z.ZodTypeAny, {
1047
+ action: {
1048
+ url?: string | undefined;
1049
+ $id?: string | undefined;
1050
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1051
+ disabled?: boolean | undefined;
1052
+ title?: string | undefined;
1053
+ id?: string | undefined;
1054
+ $ref?: string | undefined;
1055
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1056
+ exit?: boolean | undefined;
1057
+ result?: JsonElement | undefined;
1058
+ data?: JsonElement | undefined;
1059
+ timeout?: number | undefined;
1060
+ skipValidation?: boolean | undefined;
1061
+ };
1062
+ regexPattern: string;
1063
+ }, {
1064
+ action: {
1065
+ url?: string | undefined;
1066
+ $id?: string | undefined;
1067
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1068
+ disabled?: boolean | undefined;
1069
+ title?: string | undefined;
1070
+ id?: string | undefined;
1071
+ $ref?: string | undefined;
1072
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1073
+ exit?: boolean | undefined;
1074
+ result?: JsonElement | undefined;
1075
+ data?: JsonElement | undefined;
1076
+ timeout?: number | undefined;
1077
+ skipValidation?: boolean | undefined;
1078
+ };
1079
+ regexPattern: string;
849
1080
  }>;
850
- export declare const buttonLayoutSchema: z.ZodObject<{
851
- type: z.ZodLiteral<"button">;
852
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
853
- title: z.ZodOptional<z.ZodString>;
1081
+ export declare const actionResponseBodySchema: z.ZodObject<{
854
1082
  action: z.ZodObject<{
855
1083
  title: z.ZodOptional<z.ZodString>;
856
1084
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -894,11 +1122,6 @@ export declare const buttonLayoutSchema: z.ZodObject<{
894
1122
  timeout?: number | undefined;
895
1123
  skipValidation?: boolean | undefined;
896
1124
  }>;
897
- 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">]>>;
898
- disabled: z.ZodOptional<z.ZodBoolean>;
899
- pinOrder: z.ZodOptional<z.ZodNumber>;
900
- control: z.ZodOptional<z.ZodString>;
901
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
902
1125
  }, "strip", z.ZodTypeAny, {
903
1126
  action: {
904
1127
  url?: string | undefined;
@@ -915,14 +1138,6 @@ export declare const buttonLayoutSchema: z.ZodObject<{
915
1138
  timeout?: number | undefined;
916
1139
  skipValidation?: boolean | undefined;
917
1140
  };
918
- type: "button";
919
- disabled?: boolean | undefined;
920
- title?: string | undefined;
921
- control?: string | undefined;
922
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
923
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
924
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
925
- pinOrder?: number | undefined;
926
1141
  }, {
927
1142
  action: {
928
1143
  url?: string | undefined;
@@ -939,37 +1154,6 @@ export declare const buttonLayoutSchema: z.ZodObject<{
939
1154
  timeout?: number | undefined;
940
1155
  skipValidation?: boolean | undefined;
941
1156
  };
942
- type: "button";
943
- disabled?: boolean | undefined;
944
- title?: string | undefined;
945
- control?: string | undefined;
946
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
947
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
948
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
949
- pinOrder?: number | undefined;
950
- }>;
951
- export declare const reviewLayoutFieldSchema: z.ZodObject<{
952
- label: z.ZodString;
953
- value: z.ZodString;
954
- help: z.ZodOptional<z.ZodObject<{
955
- markdown: z.ZodString;
956
- }, "strip", z.ZodTypeAny, {
957
- markdown: string;
958
- }, {
959
- markdown: string;
960
- }>>;
961
- }, "strip", z.ZodTypeAny, {
962
- value: string;
963
- label: string;
964
- help?: {
965
- markdown: string;
966
- } | undefined;
967
- }, {
968
- value: string;
969
- label: string;
970
- help?: {
971
- markdown: string;
972
- } | undefined;
973
1157
  }>;
974
1158
  export declare const searchResultSearchSchema: z.ZodObject<{
975
1159
  type: z.ZodLiteral<"search">;
@@ -1000,18 +1184,18 @@ export declare const searchResultSearchSchema: z.ZodObject<{
1000
1184
  url: string;
1001
1185
  type: "image";
1002
1186
  control?: string | undefined;
1187
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1003
1188
  text?: string | undefined;
1004
- accessibilityDescription?: string | undefined;
1005
1189
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1006
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1190
+ accessibilityDescription?: string | undefined;
1007
1191
  }, {
1008
1192
  url: string;
1009
1193
  type: "image";
1010
1194
  control?: string | undefined;
1195
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1011
1196
  text?: string | undefined;
1012
- accessibilityDescription?: string | undefined;
1013
1197
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1014
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1198
+ accessibilityDescription?: string | undefined;
1015
1199
  }>>;
1016
1200
  value: z.ZodObject<{
1017
1201
  url: z.ZodString;
@@ -1020,13 +1204,13 @@ export declare const searchResultSearchSchema: z.ZodObject<{
1020
1204
  query: z.ZodString;
1021
1205
  }, "strip", z.ZodTypeAny, {
1022
1206
  url: string;
1023
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1024
1207
  param: string;
1208
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1025
1209
  query: string;
1026
1210
  }, {
1027
1211
  url: string;
1028
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1029
1212
  param: string;
1213
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1030
1214
  query: string;
1031
1215
  }>;
1032
1216
  }, "strip", z.ZodTypeAny, {
@@ -1034,18 +1218,18 @@ export declare const searchResultSearchSchema: z.ZodObject<{
1034
1218
  title: string;
1035
1219
  value: {
1036
1220
  url: string;
1037
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1038
1221
  param: string;
1222
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1039
1223
  query: string;
1040
1224
  };
1041
1225
  image?: {
1042
1226
  url: string;
1043
1227
  type: "image";
1044
1228
  control?: string | undefined;
1229
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1045
1230
  text?: string | undefined;
1046
- accessibilityDescription?: string | undefined;
1047
1231
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1048
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1232
+ accessibilityDescription?: string | undefined;
1049
1233
  } | undefined;
1050
1234
  description?: string | undefined;
1051
1235
  icon?: {
@@ -1058,18 +1242,18 @@ export declare const searchResultSearchSchema: z.ZodObject<{
1058
1242
  title: string;
1059
1243
  value: {
1060
1244
  url: string;
1061
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1062
1245
  param: string;
1246
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1063
1247
  query: string;
1064
1248
  };
1065
1249
  image?: {
1066
1250
  url: string;
1067
1251
  type: "image";
1068
1252
  control?: string | undefined;
1253
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1069
1254
  text?: string | undefined;
1070
- accessibilityDescription?: string | undefined;
1071
1255
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1072
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1256
+ accessibilityDescription?: string | undefined;
1073
1257
  } | undefined;
1074
1258
  description?: string | undefined;
1075
1259
  icon?: {
@@ -1107,18 +1291,18 @@ export declare const searchResultActionSchema: z.ZodObject<{
1107
1291
  url: string;
1108
1292
  type: "image";
1109
1293
  control?: string | undefined;
1294
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1110
1295
  text?: string | undefined;
1111
- accessibilityDescription?: string | undefined;
1112
1296
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1113
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1297
+ accessibilityDescription?: string | undefined;
1114
1298
  }, {
1115
1299
  url: string;
1116
1300
  type: "image";
1117
1301
  control?: string | undefined;
1302
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1118
1303
  text?: string | undefined;
1119
- accessibilityDescription?: string | undefined;
1120
1304
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1121
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1305
+ accessibilityDescription?: string | undefined;
1122
1306
  }>>;
1123
1307
  value: z.ZodObject<{
1124
1308
  title: z.ZodOptional<z.ZodString>;
@@ -1185,10 +1369,10 @@ export declare const searchResultActionSchema: z.ZodObject<{
1185
1369
  url: string;
1186
1370
  type: "image";
1187
1371
  control?: string | undefined;
1372
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1188
1373
  text?: string | undefined;
1189
- accessibilityDescription?: string | undefined;
1190
1374
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1191
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1375
+ accessibilityDescription?: string | undefined;
1192
1376
  } | undefined;
1193
1377
  description?: string | undefined;
1194
1378
  icon?: {
@@ -1218,10 +1402,10 @@ export declare const searchResultActionSchema: z.ZodObject<{
1218
1402
  url: string;
1219
1403
  type: "image";
1220
1404
  control?: string | undefined;
1405
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1221
1406
  text?: string | undefined;
1222
- accessibilityDescription?: string | undefined;
1223
1407
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1224
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1408
+ accessibilityDescription?: string | undefined;
1225
1409
  } | undefined;
1226
1410
  description?: string | undefined;
1227
1411
  icon?: {
@@ -1230,7 +1414,7 @@ export declare const searchResultActionSchema: z.ZodObject<{
1230
1414
  text: string;
1231
1415
  } | undefined;
1232
1416
  }>;
1233
- export declare const actionResponseBodySchema: z.ZodObject<{
1417
+ export declare const pollingOnErrorSchema: z.ZodObject<{
1234
1418
  action: z.ZodObject<{
1235
1419
  title: z.ZodOptional<z.ZodString>;
1236
1420
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1307,27 +1491,8 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1307
1491
  skipValidation?: boolean | undefined;
1308
1492
  };
1309
1493
  }>;
1310
- export declare const errorResponseBodySchema: z.ZodObject<{
1311
- refreshFormUrl: z.ZodOptional<z.ZodString>;
1312
- analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1313
- error: z.ZodOptional<z.ZodString>;
1314
- validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1315
- refreshUrl: z.ZodOptional<z.ZodString>;
1316
- }, "strip", z.ZodTypeAny, {
1317
- refreshUrl?: string | undefined;
1318
- refreshFormUrl?: string | undefined;
1319
- analytics?: Record<string, string> | undefined;
1320
- validation?: JsonElement | undefined;
1321
- error?: string | undefined;
1322
- }, {
1323
- refreshUrl?: string | undefined;
1324
- refreshFormUrl?: string | undefined;
1325
- analytics?: Record<string, string> | undefined;
1326
- validation?: JsonElement | undefined;
1327
- error?: string | undefined;
1328
- }>;
1329
- export declare const linkHandlerSchema: z.ZodObject<{
1330
- regexPattern: z.ZodString;
1494
+ export declare const navigationBackBehaviourSchema: z.ZodObject<{
1495
+ title: z.ZodOptional<z.ZodString>;
1331
1496
  action: z.ZodObject<{
1332
1497
  title: z.ZodOptional<z.ZodString>;
1333
1498
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1359,260 +1524,72 @@ export declare const linkHandlerSchema: z.ZodObject<{
1359
1524
  }, {
1360
1525
  url?: string | undefined;
1361
1526
  $id?: string | undefined;
1362
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1363
- disabled?: boolean | undefined;
1364
- title?: string | undefined;
1365
- id?: string | undefined;
1366
- $ref?: string | undefined;
1367
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1368
- exit?: boolean | undefined;
1369
- result?: JsonElement | undefined;
1370
- data?: JsonElement | undefined;
1371
- timeout?: number | undefined;
1372
- skipValidation?: boolean | undefined;
1373
- }>;
1374
- }, "strip", z.ZodTypeAny, {
1375
- action: {
1376
- url?: string | undefined;
1377
- $id?: string | undefined;
1378
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1379
- disabled?: boolean | undefined;
1380
- title?: string | undefined;
1381
- id?: string | undefined;
1382
- $ref?: string | undefined;
1383
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1384
- exit?: boolean | undefined;
1385
- result?: JsonElement | undefined;
1386
- data?: JsonElement | undefined;
1387
- timeout?: number | undefined;
1388
- skipValidation?: boolean | undefined;
1389
- };
1390
- regexPattern: string;
1391
- }, {
1392
- action: {
1393
- url?: string | undefined;
1394
- $id?: string | undefined;
1395
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1396
- disabled?: boolean | undefined;
1397
- title?: string | 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
- timeout?: number | undefined;
1405
- skipValidation?: boolean | undefined;
1406
- };
1407
- regexPattern: string;
1408
- }>;
1409
- export declare const blobSchemaSchema: z.ZodObject<{
1410
- type: z.ZodLiteral<"blob">;
1411
- promoted: z.ZodOptional<z.ZodBoolean>;
1412
- $id: z.ZodOptional<z.ZodString>;
1413
- title: z.ZodOptional<z.ZodString>;
1414
- description: z.ZodOptional<z.ZodString>;
1415
- control: z.ZodOptional<z.ZodString>;
1416
- hidden: z.ZodOptional<z.ZodBoolean>;
1417
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1418
- name: z.ZodString;
1419
- }, "strip", z.ZodTypeAny, {
1420
- name: string;
1421
- }, {
1422
- name: string;
1423
- }>, z.ZodObject<{
1424
- text: z.ZodString;
1425
- }, "strip", z.ZodTypeAny, {
1426
- text: string;
1427
- }, {
1428
- text: string;
1429
- }>]>>;
1430
- image: z.ZodOptional<z.ZodObject<{
1431
- text: z.ZodOptional<z.ZodString>;
1432
- url: z.ZodString;
1433
- accessibilityDescription: z.ZodOptional<z.ZodString>;
1434
- }, "strip", z.ZodTypeAny, {
1435
- url: string;
1436
- text?: string | undefined;
1437
- accessibilityDescription?: string | undefined;
1438
- }, {
1439
- url: string;
1440
- text?: string | undefined;
1441
- accessibilityDescription?: string | undefined;
1442
- }>>;
1443
- keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1444
- summary: z.ZodOptional<z.ZodObject<{
1445
- providesTitle: z.ZodOptional<z.ZodBoolean>;
1446
- providesDescription: z.ZodOptional<z.ZodBoolean>;
1447
- providesIcon: z.ZodOptional<z.ZodBoolean>;
1448
- providesImage: z.ZodOptional<z.ZodBoolean>;
1449
- }, "strip", z.ZodTypeAny, {
1450
- providesTitle?: boolean | undefined;
1451
- providesDescription?: boolean | undefined;
1452
- providesIcon?: boolean | undefined;
1453
- providesImage?: boolean | undefined;
1454
- }, {
1455
- providesTitle?: boolean | undefined;
1456
- providesDescription?: boolean | undefined;
1457
- providesIcon?: boolean | undefined;
1458
- providesImage?: boolean | undefined;
1459
- }>>;
1460
- analyticsId: z.ZodOptional<z.ZodString>;
1461
- validationAsync: z.ZodOptional<z.ZodObject<{
1462
- param: z.ZodString;
1463
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
1464
- url: z.ZodString;
1465
- }, "strip", z.ZodTypeAny, {
1466
- url: string;
1467
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1468
- param: string;
1469
- }, {
1470
- url: string;
1471
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1472
- param: string;
1473
- }>>;
1474
- validationMessages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1475
- alert: z.ZodOptional<z.ZodObject<{
1476
- type: z.ZodLiteral<"alert">;
1477
- markdown: z.ZodString;
1478
- 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">]>>;
1479
- control: z.ZodOptional<z.ZodString>;
1480
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1481
- }, "strip", z.ZodTypeAny, {
1482
- type: "alert";
1483
- markdown: string;
1484
- control?: string | undefined;
1485
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1486
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1487
- }, {
1488
- type: "alert";
1489
- markdown: string;
1490
- control?: string | undefined;
1491
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1492
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1493
- }>>;
1494
- cameraConfig: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1495
- accepts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1496
- maxSize: z.ZodOptional<z.ZodNumber>;
1497
- source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>>;
1498
- disabled: z.ZodOptional<z.ZodBoolean>;
1527
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1528
+ disabled?: boolean | undefined;
1529
+ title?: string | undefined;
1530
+ id?: string | undefined;
1531
+ $ref?: string | undefined;
1532
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1533
+ exit?: boolean | undefined;
1534
+ result?: JsonElement | undefined;
1535
+ data?: JsonElement | undefined;
1536
+ timeout?: number | undefined;
1537
+ skipValidation?: boolean | undefined;
1538
+ }>;
1499
1539
  }, "strip", z.ZodTypeAny, {
1500
- type: "blob";
1501
- image?: {
1502
- url: string;
1503
- text?: string | undefined;
1504
- accessibilityDescription?: string | undefined;
1505
- } | undefined;
1506
- alert?: {
1507
- type: "alert";
1508
- markdown: string;
1509
- control?: string | undefined;
1510
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1511
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1512
- } | undefined;
1513
- $id?: string | undefined;
1514
- analyticsId?: string | undefined;
1515
- description?: string | undefined;
1516
- disabled?: boolean | undefined;
1517
- hidden?: boolean | undefined;
1518
- icon?: {
1519
- name: string;
1520
- } | {
1521
- text: string;
1522
- } | undefined;
1523
- promoted?: boolean | undefined;
1524
- summary?: {
1525
- providesTitle?: boolean | undefined;
1526
- providesDescription?: boolean | undefined;
1527
- providesIcon?: boolean | undefined;
1528
- providesImage?: boolean | undefined;
1529
- } | undefined;
1540
+ action: {
1541
+ url?: string | undefined;
1542
+ $id?: string | undefined;
1543
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1544
+ disabled?: boolean | undefined;
1545
+ title?: string | undefined;
1546
+ id?: string | undefined;
1547
+ $ref?: string | undefined;
1548
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1549
+ exit?: boolean | undefined;
1550
+ result?: JsonElement | undefined;
1551
+ data?: JsonElement | undefined;
1552
+ timeout?: number | undefined;
1553
+ skipValidation?: boolean | undefined;
1554
+ };
1530
1555
  title?: string | undefined;
1531
- validationAsync?: {
1532
- url: string;
1533
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1534
- param: string;
1535
- } | undefined;
1536
- validationMessages?: Record<string, string> | undefined;
1537
- keywords?: string[] | undefined;
1538
- source?: "camera" | "file" | undefined;
1539
- cameraConfig?: JsonElement | undefined;
1540
- control?: string | undefined;
1541
- maxSize?: number | undefined;
1542
- accepts?: string[] | undefined;
1543
1556
  }, {
1544
- type: "blob";
1545
- image?: {
1546
- url: string;
1547
- text?: string | undefined;
1548
- accessibilityDescription?: string | undefined;
1549
- } | undefined;
1550
- alert?: {
1551
- type: "alert";
1552
- markdown: string;
1553
- control?: string | undefined;
1554
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1555
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1556
- } | undefined;
1557
- $id?: string | undefined;
1558
- analyticsId?: string | undefined;
1559
- description?: string | undefined;
1560
- disabled?: boolean | undefined;
1561
- hidden?: boolean | undefined;
1562
- icon?: {
1563
- name: string;
1564
- } | {
1565
- text: string;
1566
- } | undefined;
1567
- promoted?: boolean | undefined;
1568
- summary?: {
1569
- providesTitle?: boolean | undefined;
1570
- providesDescription?: boolean | undefined;
1571
- providesIcon?: boolean | undefined;
1572
- providesImage?: boolean | undefined;
1573
- } | undefined;
1557
+ action: {
1558
+ url?: string | undefined;
1559
+ $id?: string | undefined;
1560
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1561
+ disabled?: boolean | undefined;
1562
+ title?: string | undefined;
1563
+ id?: string | undefined;
1564
+ $ref?: string | undefined;
1565
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1566
+ exit?: boolean | undefined;
1567
+ result?: JsonElement | undefined;
1568
+ data?: JsonElement | undefined;
1569
+ timeout?: number | undefined;
1570
+ skipValidation?: boolean | undefined;
1571
+ };
1574
1572
  title?: string | undefined;
1575
- validationAsync?: {
1576
- url: string;
1577
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1578
- param: string;
1579
- } | undefined;
1580
- validationMessages?: Record<string, string> | undefined;
1581
- keywords?: string[] | undefined;
1582
- source?: "camera" | "file" | undefined;
1583
- cameraConfig?: JsonElement | undefined;
1584
- control?: string | undefined;
1585
- maxSize?: number | undefined;
1586
- accepts?: string[] | undefined;
1587
1573
  }>;
1588
- export declare const constSchemaSchema: z.ZodObject<{
1589
- hidden: z.ZodOptional<z.ZodBoolean>;
1590
- alert: z.ZodOptional<z.ZodObject<{
1591
- type: z.ZodLiteral<"alert">;
1592
- markdown: z.ZodString;
1593
- 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">]>>;
1594
- control: z.ZodOptional<z.ZodString>;
1595
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1596
- }, "strip", z.ZodTypeAny, {
1597
- type: "alert";
1598
- markdown: string;
1599
- control?: string | undefined;
1600
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1601
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1602
- }, {
1603
- type: "alert";
1604
- markdown: string;
1605
- control?: string | undefined;
1606
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1607
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1608
- }>>;
1609
- control: z.ZodOptional<z.ZodString>;
1610
- promoted: z.ZodOptional<z.ZodBoolean>;
1611
- $id: z.ZodOptional<z.ZodString>;
1612
- const: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
1613
- title: z.ZodOptional<z.ZodString>;
1614
- description: z.ZodOptional<z.ZodString>;
1615
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1574
+ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
1575
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
1576
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
1577
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
1578
+ providesImage: z.ZodOptional<z.ZodBoolean>;
1579
+ }, "strip", z.ZodTypeAny, {
1580
+ providesTitle?: boolean | undefined;
1581
+ providesDescription?: boolean | undefined;
1582
+ providesIcon?: boolean | undefined;
1583
+ providesImage?: boolean | undefined;
1584
+ }, {
1585
+ providesTitle?: boolean | undefined;
1586
+ providesDescription?: boolean | undefined;
1587
+ providesIcon?: boolean | undefined;
1588
+ providesImage?: boolean | undefined;
1589
+ }>, z.ZodObject<{
1590
+ defaultTitle: z.ZodOptional<z.ZodString>;
1591
+ defaultDescription: z.ZodOptional<z.ZodString>;
1592
+ defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1616
1593
  name: z.ZodString;
1617
1594
  }, "strip", z.ZodTypeAny, {
1618
1595
  name: string;
@@ -1625,108 +1602,82 @@ export declare const constSchemaSchema: z.ZodObject<{
1625
1602
  }, {
1626
1603
  text: string;
1627
1604
  }>]>>;
1628
- image: z.ZodOptional<z.ZodObject<{
1605
+ defaultImage: z.ZodOptional<z.ZodObject<{
1606
+ type: z.ZodLiteral<"image">;
1629
1607
  text: z.ZodOptional<z.ZodString>;
1630
1608
  url: z.ZodString;
1609
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1631
1610
  accessibilityDescription: z.ZodOptional<z.ZodString>;
1611
+ control: z.ZodOptional<z.ZodString>;
1612
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1632
1613
  }, "strip", z.ZodTypeAny, {
1633
1614
  url: string;
1615
+ type: "image";
1616
+ control?: string | undefined;
1617
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1634
1618
  text?: string | undefined;
1619
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1635
1620
  accessibilityDescription?: string | undefined;
1636
1621
  }, {
1637
1622
  url: string;
1623
+ type: "image";
1624
+ control?: string | undefined;
1625
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1638
1626
  text?: string | undefined;
1627
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1639
1628
  accessibilityDescription?: string | undefined;
1640
1629
  }>>;
1641
- keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1642
- summary: z.ZodOptional<z.ZodObject<{
1643
- providesTitle: z.ZodOptional<z.ZodBoolean>;
1644
- providesDescription: z.ZodOptional<z.ZodBoolean>;
1645
- providesIcon: z.ZodOptional<z.ZodBoolean>;
1646
- providesImage: z.ZodOptional<z.ZodBoolean>;
1647
- }, "strip", z.ZodTypeAny, {
1648
- providesTitle?: boolean | undefined;
1649
- providesDescription?: boolean | undefined;
1650
- providesIcon?: boolean | undefined;
1651
- providesImage?: boolean | undefined;
1652
- }, {
1653
- providesTitle?: boolean | undefined;
1654
- providesDescription?: boolean | undefined;
1655
- providesIcon?: boolean | undefined;
1656
- providesImage?: boolean | undefined;
1657
- }>>;
1658
- analyticsId: z.ZodOptional<z.ZodString>;
1659
- disabled: z.ZodOptional<z.ZodBoolean>;
1630
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
1631
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
1632
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
1633
+ providesImage: z.ZodOptional<z.ZodBoolean>;
1660
1634
  }, "strip", z.ZodTypeAny, {
1661
- const: JsonElement;
1662
- image?: {
1663
- url: string;
1664
- text?: string | undefined;
1665
- accessibilityDescription?: string | undefined;
1666
- } | undefined;
1667
- alert?: {
1668
- type: "alert";
1669
- markdown: string;
1670
- control?: string | undefined;
1671
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1672
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1673
- } | undefined;
1674
- $id?: string | undefined;
1675
- analyticsId?: string | undefined;
1676
- description?: string | undefined;
1677
- disabled?: boolean | undefined;
1678
- hidden?: boolean | undefined;
1679
- icon?: {
1635
+ providesTitle?: boolean | undefined;
1636
+ providesDescription?: boolean | undefined;
1637
+ providesIcon?: boolean | undefined;
1638
+ providesImage?: boolean | undefined;
1639
+ defaultTitle?: string | undefined;
1640
+ defaultDescription?: string | undefined;
1641
+ defaultIcon?: {
1680
1642
  name: string;
1681
1643
  } | {
1682
1644
  text: string;
1683
1645
  } | undefined;
1684
- promoted?: boolean | undefined;
1685
- summary?: {
1686
- providesTitle?: boolean | undefined;
1687
- providesDescription?: boolean | undefined;
1688
- providesIcon?: boolean | undefined;
1689
- providesImage?: boolean | undefined;
1690
- } | undefined;
1691
- title?: string | undefined;
1692
- keywords?: string[] | undefined;
1693
- control?: string | undefined;
1694
- }, {
1695
- const: JsonElement;
1696
- image?: {
1646
+ defaultImage?: {
1697
1647
  url: string;
1698
- text?: string | undefined;
1699
- accessibilityDescription?: string | undefined;
1700
- } | undefined;
1701
- alert?: {
1702
- type: "alert";
1703
- markdown: string;
1648
+ type: "image";
1704
1649
  control?: string | undefined;
1705
1650
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1706
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1651
+ text?: string | undefined;
1652
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1653
+ accessibilityDescription?: string | undefined;
1707
1654
  } | undefined;
1708
- $id?: string | undefined;
1709
- analyticsId?: string | undefined;
1710
- description?: string | undefined;
1711
- disabled?: boolean | undefined;
1712
- hidden?: boolean | undefined;
1713
- icon?: {
1655
+ }, {
1656
+ providesTitle?: boolean | undefined;
1657
+ providesDescription?: boolean | undefined;
1658
+ providesIcon?: boolean | undefined;
1659
+ providesImage?: boolean | undefined;
1660
+ defaultTitle?: string | undefined;
1661
+ defaultDescription?: string | undefined;
1662
+ defaultIcon?: {
1714
1663
  name: string;
1715
1664
  } | {
1716
1665
  text: string;
1717
1666
  } | undefined;
1718
- promoted?: boolean | undefined;
1719
- summary?: {
1720
- providesTitle?: boolean | undefined;
1721
- providesDescription?: boolean | undefined;
1722
- providesIcon?: boolean | undefined;
1723
- providesImage?: boolean | undefined;
1667
+ defaultImage?: {
1668
+ url: string;
1669
+ type: "image";
1670
+ control?: string | undefined;
1671
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1672
+ text?: string | undefined;
1673
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1674
+ accessibilityDescription?: string | undefined;
1724
1675
  } | undefined;
1725
- title?: string | undefined;
1726
- keywords?: string[] | undefined;
1727
- control?: string | undefined;
1728
- }>;
1729
- export declare const pollingOnErrorSchema: z.ZodObject<{
1676
+ }>]>;
1677
+ export declare const buttonLayoutSchema: z.ZodObject<{
1678
+ type: z.ZodLiteral<"button">;
1679
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1680
+ title: z.ZodOptional<z.ZodString>;
1730
1681
  action: z.ZodObject<{
1731
1682
  title: z.ZodOptional<z.ZodString>;
1732
1683
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1770,6 +1721,11 @@ export declare const pollingOnErrorSchema: z.ZodObject<{
1770
1721
  timeout?: number | undefined;
1771
1722
  skipValidation?: boolean | undefined;
1772
1723
  }>;
1724
+ 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">]>>;
1725
+ disabled: z.ZodOptional<z.ZodBoolean>;
1726
+ pinOrder: z.ZodOptional<z.ZodNumber>;
1727
+ control: z.ZodOptional<z.ZodString>;
1728
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1773
1729
  }, "strip", z.ZodTypeAny, {
1774
1730
  action: {
1775
1731
  url?: string | undefined;
@@ -1786,6 +1742,14 @@ export declare const pollingOnErrorSchema: z.ZodObject<{
1786
1742
  timeout?: number | undefined;
1787
1743
  skipValidation?: boolean | undefined;
1788
1744
  };
1745
+ type: "button";
1746
+ disabled?: boolean | undefined;
1747
+ title?: string | undefined;
1748
+ control?: string | undefined;
1749
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1750
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1751
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1752
+ pinOrder?: number | undefined;
1789
1753
  }, {
1790
1754
  action: {
1791
1755
  url?: string | undefined;
@@ -1802,9 +1766,16 @@ export declare const pollingOnErrorSchema: z.ZodObject<{
1802
1766
  timeout?: number | undefined;
1803
1767
  skipValidation?: boolean | undefined;
1804
1768
  };
1769
+ type: "button";
1770
+ disabled?: boolean | undefined;
1771
+ title?: string | undefined;
1772
+ control?: string | undefined;
1773
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1774
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1775
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1776
+ pinOrder?: number | undefined;
1805
1777
  }>;
1806
- export declare const navigationBackBehaviourSchema: z.ZodObject<{
1807
- title: z.ZodOptional<z.ZodString>;
1778
+ export declare const decisionLayoutOptionSchema: z.ZodObject<{
1808
1779
  action: z.ZodObject<{
1809
1780
  title: z.ZodOptional<z.ZodString>;
1810
1781
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1848,6 +1819,47 @@ export declare const navigationBackBehaviourSchema: z.ZodObject<{
1848
1819
  timeout?: number | undefined;
1849
1820
  skipValidation?: boolean | undefined;
1850
1821
  }>;
1822
+ title: z.ZodString;
1823
+ description: z.ZodOptional<z.ZodString>;
1824
+ disabled: z.ZodOptional<z.ZodBoolean>;
1825
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1826
+ name: z.ZodString;
1827
+ }, "strip", z.ZodTypeAny, {
1828
+ name: string;
1829
+ }, {
1830
+ name: string;
1831
+ }>, z.ZodObject<{
1832
+ text: z.ZodString;
1833
+ }, "strip", z.ZodTypeAny, {
1834
+ text: string;
1835
+ }, {
1836
+ text: string;
1837
+ }>]>>;
1838
+ image: z.ZodOptional<z.ZodObject<{
1839
+ type: z.ZodLiteral<"image">;
1840
+ text: z.ZodOptional<z.ZodString>;
1841
+ url: z.ZodString;
1842
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1843
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
1844
+ control: z.ZodOptional<z.ZodString>;
1845
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1846
+ }, "strip", z.ZodTypeAny, {
1847
+ url: string;
1848
+ type: "image";
1849
+ control?: string | undefined;
1850
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1851
+ text?: string | undefined;
1852
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1853
+ accessibilityDescription?: string | undefined;
1854
+ }, {
1855
+ url: string;
1856
+ type: "image";
1857
+ control?: string | undefined;
1858
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1859
+ text?: string | undefined;
1860
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1861
+ accessibilityDescription?: string | undefined;
1862
+ }>>;
1851
1863
  }, "strip", z.ZodTypeAny, {
1852
1864
  action: {
1853
1865
  url?: string | undefined;
@@ -1864,7 +1876,23 @@ export declare const navigationBackBehaviourSchema: z.ZodObject<{
1864
1876
  timeout?: number | undefined;
1865
1877
  skipValidation?: boolean | undefined;
1866
1878
  };
1867
- title?: string | undefined;
1879
+ title: string;
1880
+ image?: {
1881
+ url: string;
1882
+ type: "image";
1883
+ control?: string | undefined;
1884
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1885
+ text?: string | undefined;
1886
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1887
+ accessibilityDescription?: string | undefined;
1888
+ } | undefined;
1889
+ description?: string | undefined;
1890
+ disabled?: boolean | undefined;
1891
+ icon?: {
1892
+ name: string;
1893
+ } | {
1894
+ text: string;
1895
+ } | undefined;
1868
1896
  }, {
1869
1897
  action: {
1870
1898
  url?: string | undefined;
@@ -1881,11 +1909,28 @@ export declare const navigationBackBehaviourSchema: z.ZodObject<{
1881
1909
  timeout?: number | undefined;
1882
1910
  skipValidation?: boolean | undefined;
1883
1911
  };
1884
- title?: string | undefined;
1912
+ title: string;
1913
+ image?: {
1914
+ url: string;
1915
+ type: "image";
1916
+ control?: string | undefined;
1917
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1918
+ text?: string | undefined;
1919
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1920
+ accessibilityDescription?: string | undefined;
1921
+ } | undefined;
1922
+ description?: string | undefined;
1923
+ disabled?: boolean | undefined;
1924
+ icon?: {
1925
+ name: string;
1926
+ } | {
1927
+ text: string;
1928
+ } | undefined;
1885
1929
  }>;
1886
- export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
1887
- title: z.ZodString;
1888
- action: z.ZodObject<{
1930
+ export declare const reviewLayoutSchema: z.ZodObject<{
1931
+ type: z.ZodLiteral<"review">;
1932
+ orientation: z.ZodOptional<z.ZodString>;
1933
+ action: z.ZodOptional<z.ZodObject<{
1889
1934
  title: z.ZodOptional<z.ZodString>;
1890
1935
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1891
1936
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -1927,9 +1972,123 @@ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
1927
1972
  data?: JsonElement | undefined;
1928
1973
  timeout?: number | undefined;
1929
1974
  skipValidation?: boolean | undefined;
1930
- }>;
1975
+ }>>;
1976
+ fields: z.ZodArray<z.ZodObject<{
1977
+ label: z.ZodString;
1978
+ value: z.ZodString;
1979
+ help: z.ZodOptional<z.ZodObject<{
1980
+ markdown: z.ZodString;
1981
+ }, "strip", z.ZodTypeAny, {
1982
+ markdown: string;
1983
+ }, {
1984
+ markdown: string;
1985
+ }>>;
1986
+ }, "strip", z.ZodTypeAny, {
1987
+ value: string;
1988
+ label: string;
1989
+ help?: {
1990
+ markdown: string;
1991
+ } | undefined;
1992
+ }, {
1993
+ value: string;
1994
+ label: string;
1995
+ help?: {
1996
+ markdown: string;
1997
+ } | undefined;
1998
+ }>, "many">;
1999
+ title: z.ZodOptional<z.ZodString>;
2000
+ callToAction: z.ZodOptional<z.ZodObject<{
2001
+ title: z.ZodString;
2002
+ action: z.ZodObject<{
2003
+ title: z.ZodOptional<z.ZodString>;
2004
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2005
+ disabled: z.ZodOptional<z.ZodBoolean>;
2006
+ $id: z.ZodOptional<z.ZodString>;
2007
+ $ref: z.ZodOptional<z.ZodString>;
2008
+ id: z.ZodOptional<z.ZodString>;
2009
+ url: z.ZodOptional<z.ZodString>;
2010
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2011
+ exit: z.ZodOptional<z.ZodBoolean>;
2012
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2013
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2014
+ timeout: z.ZodOptional<z.ZodNumber>;
2015
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
2016
+ }, "strip", z.ZodTypeAny, {
2017
+ url?: string | undefined;
2018
+ $id?: string | undefined;
2019
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2020
+ disabled?: boolean | undefined;
2021
+ title?: string | undefined;
2022
+ id?: string | undefined;
2023
+ $ref?: string | undefined;
2024
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2025
+ exit?: boolean | undefined;
2026
+ result?: JsonElement | undefined;
2027
+ data?: JsonElement | undefined;
2028
+ timeout?: number | undefined;
2029
+ skipValidation?: boolean | undefined;
2030
+ }, {
2031
+ url?: string | undefined;
2032
+ $id?: string | undefined;
2033
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2034
+ disabled?: boolean | undefined;
2035
+ title?: string | undefined;
2036
+ id?: string | undefined;
2037
+ $ref?: string | undefined;
2038
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2039
+ exit?: boolean | undefined;
2040
+ result?: JsonElement | undefined;
2041
+ data?: JsonElement | undefined;
2042
+ timeout?: number | undefined;
2043
+ skipValidation?: boolean | undefined;
2044
+ }>;
2045
+ }, "strip", z.ZodTypeAny, {
2046
+ action: {
2047
+ url?: string | undefined;
2048
+ $id?: string | undefined;
2049
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2050
+ disabled?: boolean | undefined;
2051
+ title?: string | undefined;
2052
+ id?: string | undefined;
2053
+ $ref?: string | undefined;
2054
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2055
+ exit?: boolean | undefined;
2056
+ result?: JsonElement | undefined;
2057
+ data?: JsonElement | undefined;
2058
+ timeout?: number | undefined;
2059
+ skipValidation?: boolean | undefined;
2060
+ };
2061
+ title: string;
2062
+ }, {
2063
+ action: {
2064
+ url?: string | undefined;
2065
+ $id?: string | undefined;
2066
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2067
+ disabled?: boolean | undefined;
2068
+ title?: string | undefined;
2069
+ id?: string | undefined;
2070
+ $ref?: string | undefined;
2071
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2072
+ exit?: boolean | undefined;
2073
+ result?: JsonElement | undefined;
2074
+ data?: JsonElement | undefined;
2075
+ timeout?: number | undefined;
2076
+ skipValidation?: boolean | undefined;
2077
+ };
2078
+ title: string;
2079
+ }>>;
2080
+ control: z.ZodOptional<z.ZodString>;
2081
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1931
2082
  }, "strip", z.ZodTypeAny, {
1932
- action: {
2083
+ type: "review";
2084
+ fields: {
2085
+ value: string;
2086
+ label: string;
2087
+ help?: {
2088
+ markdown: string;
2089
+ } | undefined;
2090
+ }[];
2091
+ action?: {
1933
2092
  url?: string | undefined;
1934
2093
  $id?: string | undefined;
1935
2094
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
@@ -1943,10 +2102,39 @@ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
1943
2102
  data?: JsonElement | undefined;
1944
2103
  timeout?: number | undefined;
1945
2104
  skipValidation?: boolean | undefined;
1946
- };
1947
- title: string;
2105
+ } | undefined;
2106
+ title?: string | undefined;
2107
+ control?: string | undefined;
2108
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2109
+ orientation?: string | undefined;
2110
+ callToAction?: {
2111
+ action: {
2112
+ url?: string | undefined;
2113
+ $id?: string | undefined;
2114
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2115
+ disabled?: boolean | undefined;
2116
+ title?: string | undefined;
2117
+ id?: string | undefined;
2118
+ $ref?: string | undefined;
2119
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2120
+ exit?: boolean | undefined;
2121
+ result?: JsonElement | undefined;
2122
+ data?: JsonElement | undefined;
2123
+ timeout?: number | undefined;
2124
+ skipValidation?: boolean | undefined;
2125
+ };
2126
+ title: string;
2127
+ } | undefined;
1948
2128
  }, {
1949
- action: {
2129
+ type: "review";
2130
+ fields: {
2131
+ value: string;
2132
+ label: string;
2133
+ help?: {
2134
+ markdown: string;
2135
+ } | undefined;
2136
+ }[];
2137
+ action?: {
1950
2138
  url?: string | undefined;
1951
2139
  $id?: string | undefined;
1952
2140
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
@@ -1960,11 +2148,32 @@ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
1960
2148
  data?: JsonElement | undefined;
1961
2149
  timeout?: number | undefined;
1962
2150
  skipValidation?: boolean | undefined;
1963
- };
1964
- title: string;
2151
+ } | undefined;
2152
+ title?: string | undefined;
2153
+ control?: string | undefined;
2154
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2155
+ orientation?: string | undefined;
2156
+ callToAction?: {
2157
+ action: {
2158
+ url?: string | undefined;
2159
+ $id?: string | undefined;
2160
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2161
+ disabled?: boolean | undefined;
2162
+ title?: string | undefined;
2163
+ id?: string | undefined;
2164
+ $ref?: string | undefined;
2165
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2166
+ exit?: boolean | undefined;
2167
+ result?: JsonElement | undefined;
2168
+ data?: JsonElement | undefined;
2169
+ timeout?: number | undefined;
2170
+ skipValidation?: boolean | undefined;
2171
+ };
2172
+ title: string;
2173
+ } | undefined;
1965
2174
  }>;
1966
- export declare const listLayoutSchema: z.ZodObject<{
1967
- type: z.ZodLiteral<"list">;
2175
+ export declare const statusListLayoutSchema: z.ZodObject<{
2176
+ type: z.ZodLiteral<"status-list">;
1968
2177
  items: z.ZodArray<z.ZodObject<{
1969
2178
  title: z.ZodString;
1970
2179
  description: z.ZodOptional<z.ZodString>;
@@ -1981,7 +2190,7 @@ export declare const listLayoutSchema: z.ZodObject<{
1981
2190
  }, {
1982
2191
  text: string;
1983
2192
  }>]>;
1984
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
2193
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
1985
2194
  }, "strip", z.ZodTypeAny, {
1986
2195
  icon: {
1987
2196
  name: string;
@@ -1990,7 +2199,7 @@ export declare const listLayoutSchema: z.ZodObject<{
1990
2199
  };
1991
2200
  title: string;
1992
2201
  description?: string | undefined;
1993
- status?: "neutral" | "warning" | "positive" | undefined;
2202
+ status?: "done" | "not-done" | "pending" | undefined;
1994
2203
  }, {
1995
2204
  icon: {
1996
2205
  name: string;
@@ -1999,13 +2208,13 @@ export declare const listLayoutSchema: z.ZodObject<{
1999
2208
  };
2000
2209
  title: string;
2001
2210
  description?: string | undefined;
2002
- status?: "neutral" | "warning" | "positive" | undefined;
2211
+ status?: "done" | "not-done" | "pending" | undefined;
2003
2212
  }>, "many">;
2004
2213
  title: z.ZodOptional<z.ZodString>;
2005
2214
  control: z.ZodOptional<z.ZodString>;
2006
2215
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2007
2216
  }, "strip", z.ZodTypeAny, {
2008
- type: "list";
2217
+ type: "status-list";
2009
2218
  items: {
2010
2219
  icon: {
2011
2220
  name: string;
@@ -2014,13 +2223,13 @@ export declare const listLayoutSchema: z.ZodObject<{
2014
2223
  };
2015
2224
  title: string;
2016
2225
  description?: string | undefined;
2017
- status?: "neutral" | "warning" | "positive" | undefined;
2226
+ status?: "done" | "not-done" | "pending" | undefined;
2018
2227
  }[];
2019
2228
  title?: string | undefined;
2020
2229
  control?: string | undefined;
2021
2230
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2022
2231
  }, {
2023
- type: "list";
2232
+ type: "status-list";
2024
2233
  items: {
2025
2234
  icon: {
2026
2235
  name: string;
@@ -2029,16 +2238,53 @@ export declare const listLayoutSchema: z.ZodObject<{
2029
2238
  };
2030
2239
  title: string;
2031
2240
  description?: string | undefined;
2032
- status?: "neutral" | "warning" | "positive" | undefined;
2241
+ status?: "done" | "not-done" | "pending" | undefined;
2033
2242
  }[];
2034
2243
  title?: string | undefined;
2035
2244
  control?: string | undefined;
2036
2245
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2037
2246
  }>;
2038
- export declare const decisionLayoutSchema: z.ZodObject<{
2039
- type: z.ZodLiteral<"decision">;
2040
- title: z.ZodOptional<z.ZodString>;
2041
- options: z.ZodArray<z.ZodObject<{
2247
+ export declare const listLayoutItemSchema: z.ZodObject<{
2248
+ title: z.ZodString;
2249
+ description: z.ZodOptional<z.ZodString>;
2250
+ icon: z.ZodUnion<[z.ZodObject<{
2251
+ name: z.ZodString;
2252
+ }, "strip", z.ZodTypeAny, {
2253
+ name: string;
2254
+ }, {
2255
+ name: string;
2256
+ }>, z.ZodObject<{
2257
+ text: z.ZodString;
2258
+ }, "strip", z.ZodTypeAny, {
2259
+ text: string;
2260
+ }, {
2261
+ text: string;
2262
+ }>]>;
2263
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
2264
+ }, "strip", z.ZodTypeAny, {
2265
+ icon: {
2266
+ name: string;
2267
+ } | {
2268
+ text: string;
2269
+ };
2270
+ title: string;
2271
+ description?: string | undefined;
2272
+ status?: "neutral" | "warning" | "positive" | undefined;
2273
+ }, {
2274
+ icon: {
2275
+ name: string;
2276
+ } | {
2277
+ text: string;
2278
+ };
2279
+ title: string;
2280
+ description?: string | undefined;
2281
+ status?: "neutral" | "warning" | "positive" | undefined;
2282
+ }>;
2283
+ export declare const pollingSchema: z.ZodObject<{
2284
+ url: z.ZodString;
2285
+ interval: z.ZodNumber;
2286
+ maxAttempts: z.ZodNumber;
2287
+ onError: z.ZodObject<{
2042
2288
  action: z.ZodObject<{
2043
2289
  title: z.ZodOptional<z.ZodString>;
2044
2290
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -2082,47 +2328,6 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2082
2328
  timeout?: number | undefined;
2083
2329
  skipValidation?: boolean | undefined;
2084
2330
  }>;
2085
- title: z.ZodString;
2086
- description: z.ZodOptional<z.ZodString>;
2087
- disabled: z.ZodOptional<z.ZodBoolean>;
2088
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2089
- name: z.ZodString;
2090
- }, "strip", z.ZodTypeAny, {
2091
- name: string;
2092
- }, {
2093
- name: string;
2094
- }>, z.ZodObject<{
2095
- text: z.ZodString;
2096
- }, "strip", z.ZodTypeAny, {
2097
- text: string;
2098
- }, {
2099
- text: string;
2100
- }>]>>;
2101
- image: z.ZodOptional<z.ZodObject<{
2102
- type: z.ZodLiteral<"image">;
2103
- text: z.ZodOptional<z.ZodString>;
2104
- url: z.ZodString;
2105
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2106
- accessibilityDescription: z.ZodOptional<z.ZodString>;
2107
- control: z.ZodOptional<z.ZodString>;
2108
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2109
- }, "strip", z.ZodTypeAny, {
2110
- url: string;
2111
- type: "image";
2112
- control?: string | undefined;
2113
- text?: string | undefined;
2114
- accessibilityDescription?: string | undefined;
2115
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2116
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2117
- }, {
2118
- url: string;
2119
- type: "image";
2120
- control?: string | undefined;
2121
- text?: string | undefined;
2122
- accessibilityDescription?: string | undefined;
2123
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2124
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2125
- }>>;
2126
2331
  }, "strip", z.ZodTypeAny, {
2127
2332
  action: {
2128
2333
  url?: string | undefined;
@@ -2138,26 +2343,99 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2138
2343
  data?: JsonElement | undefined;
2139
2344
  timeout?: number | undefined;
2140
2345
  skipValidation?: boolean | undefined;
2141
- };
2142
- title: string;
2143
- image?: {
2144
- url: string;
2145
- type: "image";
2146
- control?: string | undefined;
2147
- text?: string | undefined;
2148
- accessibilityDescription?: string | undefined;
2149
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2150
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2151
- } | undefined;
2152
- description?: string | undefined;
2153
- disabled?: boolean | undefined;
2154
- icon?: {
2155
- name: string;
2156
- } | {
2157
- text: string;
2158
- } | undefined;
2159
- }, {
2160
- action: {
2346
+ };
2347
+ }, {
2348
+ action: {
2349
+ url?: string | undefined;
2350
+ $id?: string | undefined;
2351
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2352
+ disabled?: boolean | undefined;
2353
+ title?: string | undefined;
2354
+ id?: string | undefined;
2355
+ $ref?: string | undefined;
2356
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2357
+ exit?: boolean | undefined;
2358
+ result?: JsonElement | undefined;
2359
+ data?: JsonElement | undefined;
2360
+ timeout?: number | undefined;
2361
+ skipValidation?: boolean | undefined;
2362
+ };
2363
+ }>;
2364
+ }, "strip", z.ZodTypeAny, {
2365
+ url: string;
2366
+ interval: number;
2367
+ maxAttempts: number;
2368
+ onError: {
2369
+ action: {
2370
+ url?: string | undefined;
2371
+ $id?: string | undefined;
2372
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2373
+ disabled?: boolean | undefined;
2374
+ title?: string | undefined;
2375
+ id?: string | undefined;
2376
+ $ref?: string | undefined;
2377
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2378
+ exit?: boolean | undefined;
2379
+ result?: JsonElement | undefined;
2380
+ data?: JsonElement | undefined;
2381
+ timeout?: number | undefined;
2382
+ skipValidation?: boolean | undefined;
2383
+ };
2384
+ };
2385
+ }, {
2386
+ url: string;
2387
+ interval: number;
2388
+ maxAttempts: number;
2389
+ onError: {
2390
+ action: {
2391
+ url?: string | undefined;
2392
+ $id?: string | undefined;
2393
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2394
+ disabled?: boolean | undefined;
2395
+ title?: string | undefined;
2396
+ id?: string | undefined;
2397
+ $ref?: string | undefined;
2398
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2399
+ exit?: boolean | undefined;
2400
+ result?: JsonElement | undefined;
2401
+ data?: JsonElement | undefined;
2402
+ timeout?: number | undefined;
2403
+ skipValidation?: boolean | undefined;
2404
+ };
2405
+ };
2406
+ }>;
2407
+ export declare const navigationSchema: z.ZodObject<{
2408
+ backButton: z.ZodOptional<z.ZodObject<{
2409
+ title: z.ZodOptional<z.ZodString>;
2410
+ action: z.ZodObject<{
2411
+ title: z.ZodOptional<z.ZodString>;
2412
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2413
+ disabled: z.ZodOptional<z.ZodBoolean>;
2414
+ $id: z.ZodOptional<z.ZodString>;
2415
+ $ref: z.ZodOptional<z.ZodString>;
2416
+ id: z.ZodOptional<z.ZodString>;
2417
+ url: z.ZodOptional<z.ZodString>;
2418
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2419
+ exit: z.ZodOptional<z.ZodBoolean>;
2420
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2421
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2422
+ timeout: z.ZodOptional<z.ZodNumber>;
2423
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
2424
+ }, "strip", z.ZodTypeAny, {
2425
+ url?: string | undefined;
2426
+ $id?: string | undefined;
2427
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2428
+ disabled?: boolean | undefined;
2429
+ title?: string | undefined;
2430
+ id?: string | undefined;
2431
+ $ref?: string | undefined;
2432
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2433
+ exit?: boolean | undefined;
2434
+ result?: JsonElement | undefined;
2435
+ data?: JsonElement | undefined;
2436
+ timeout?: number | undefined;
2437
+ skipValidation?: boolean | undefined;
2438
+ }, {
2161
2439
  url?: string | undefined;
2162
2440
  $id?: string | undefined;
2163
2441
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
@@ -2171,30 +2449,8 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2171
2449
  data?: JsonElement | undefined;
2172
2450
  timeout?: number | undefined;
2173
2451
  skipValidation?: boolean | undefined;
2174
- };
2175
- title: string;
2176
- image?: {
2177
- url: string;
2178
- type: "image";
2179
- control?: string | undefined;
2180
- text?: string | undefined;
2181
- accessibilityDescription?: string | undefined;
2182
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2183
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2184
- } | undefined;
2185
- description?: string | undefined;
2186
- disabled?: boolean | undefined;
2187
- icon?: {
2188
- name: string;
2189
- } | {
2190
- text: string;
2191
- } | undefined;
2192
- }>, "many">;
2193
- control: z.ZodOptional<z.ZodString>;
2194
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2195
- }, "strip", z.ZodTypeAny, {
2196
- type: "decision";
2197
- options: {
2452
+ }>;
2453
+ }, "strip", z.ZodTypeAny, {
2198
2454
  action: {
2199
2455
  url?: string | undefined;
2200
2456
  $id?: string | undefined;
@@ -2210,30 +2466,8 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2210
2466
  timeout?: number | undefined;
2211
2467
  skipValidation?: boolean | undefined;
2212
2468
  };
2213
- title: string;
2214
- image?: {
2215
- url: string;
2216
- type: "image";
2217
- control?: string | undefined;
2218
- text?: string | undefined;
2219
- accessibilityDescription?: string | undefined;
2220
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2221
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2222
- } | undefined;
2223
- description?: string | undefined;
2224
- disabled?: boolean | undefined;
2225
- icon?: {
2226
- name: string;
2227
- } | {
2228
- text: string;
2229
- } | undefined;
2230
- }[];
2231
- title?: string | undefined;
2232
- control?: string | undefined;
2233
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2234
- }, {
2235
- type: "decision";
2236
- options: {
2469
+ title?: string | undefined;
2470
+ }, {
2237
2471
  action: {
2238
2472
  url?: string | undefined;
2239
2473
  $id?: string | undefined;
@@ -2245,176 +2479,14 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2245
2479
  method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2246
2480
  exit?: boolean | undefined;
2247
2481
  result?: JsonElement | undefined;
2248
- data?: JsonElement | undefined;
2249
- timeout?: number | undefined;
2250
- skipValidation?: boolean | undefined;
2251
- };
2252
- title: string;
2253
- image?: {
2254
- url: string;
2255
- type: "image";
2256
- control?: string | undefined;
2257
- text?: string | undefined;
2258
- accessibilityDescription?: string | undefined;
2259
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2260
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2261
- } | undefined;
2262
- description?: string | undefined;
2263
- disabled?: boolean | undefined;
2264
- icon?: {
2265
- name: string;
2266
- } | {
2267
- text: string;
2268
- } | undefined;
2269
- }[];
2270
- title?: string | undefined;
2271
- control?: string | undefined;
2272
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2273
- }>;
2274
- export declare const statusListLayoutSchema: z.ZodObject<{
2275
- type: z.ZodLiteral<"status-list">;
2276
- items: z.ZodArray<z.ZodObject<{
2277
- title: z.ZodString;
2278
- description: z.ZodOptional<z.ZodString>;
2279
- icon: z.ZodUnion<[z.ZodObject<{
2280
- name: z.ZodString;
2281
- }, "strip", z.ZodTypeAny, {
2282
- name: string;
2283
- }, {
2284
- name: string;
2285
- }>, z.ZodObject<{
2286
- text: z.ZodString;
2287
- }, "strip", z.ZodTypeAny, {
2288
- text: string;
2289
- }, {
2290
- text: string;
2291
- }>]>;
2292
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
2293
- }, "strip", z.ZodTypeAny, {
2294
- icon: {
2295
- name: string;
2296
- } | {
2297
- text: string;
2298
- };
2299
- title: string;
2300
- description?: string | undefined;
2301
- status?: "done" | "not-done" | "pending" | undefined;
2302
- }, {
2303
- icon: {
2304
- name: string;
2305
- } | {
2306
- text: string;
2307
- };
2308
- title: string;
2309
- description?: string | undefined;
2310
- status?: "done" | "not-done" | "pending" | undefined;
2311
- }>, "many">;
2312
- title: z.ZodOptional<z.ZodString>;
2313
- control: z.ZodOptional<z.ZodString>;
2314
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2315
- }, "strip", z.ZodTypeAny, {
2316
- type: "status-list";
2317
- items: {
2318
- icon: {
2319
- name: string;
2320
- } | {
2321
- text: string;
2322
- };
2323
- title: string;
2324
- description?: string | undefined;
2325
- status?: "done" | "not-done" | "pending" | undefined;
2326
- }[];
2327
- title?: string | undefined;
2328
- control?: string | undefined;
2329
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2330
- }, {
2331
- type: "status-list";
2332
- items: {
2333
- icon: {
2334
- name: string;
2335
- } | {
2336
- text: string;
2337
- };
2338
- title: string;
2339
- description?: string | undefined;
2340
- status?: "done" | "not-done" | "pending" | undefined;
2341
- }[];
2342
- title?: string | undefined;
2343
- control?: string | undefined;
2344
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2345
- }>;
2346
- export declare const reviewLayoutSchema: z.ZodObject<{
2347
- type: z.ZodLiteral<"review">;
2348
- orientation: z.ZodOptional<z.ZodString>;
2349
- action: z.ZodOptional<z.ZodObject<{
2350
- title: z.ZodOptional<z.ZodString>;
2351
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2352
- disabled: z.ZodOptional<z.ZodBoolean>;
2353
- $id: z.ZodOptional<z.ZodString>;
2354
- $ref: z.ZodOptional<z.ZodString>;
2355
- id: z.ZodOptional<z.ZodString>;
2356
- url: z.ZodOptional<z.ZodString>;
2357
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2358
- exit: z.ZodOptional<z.ZodBoolean>;
2359
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2360
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2361
- timeout: z.ZodOptional<z.ZodNumber>;
2362
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2363
- }, "strip", z.ZodTypeAny, {
2364
- url?: string | undefined;
2365
- $id?: string | undefined;
2366
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2367
- disabled?: boolean | undefined;
2368
- title?: string | undefined;
2369
- id?: string | undefined;
2370
- $ref?: string | undefined;
2371
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2372
- exit?: boolean | undefined;
2373
- result?: JsonElement | undefined;
2374
- data?: JsonElement | undefined;
2375
- timeout?: number | undefined;
2376
- skipValidation?: boolean | undefined;
2377
- }, {
2378
- url?: string | undefined;
2379
- $id?: string | undefined;
2380
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2381
- disabled?: boolean | undefined;
2382
- title?: string | undefined;
2383
- id?: string | undefined;
2384
- $ref?: string | undefined;
2385
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2386
- exit?: boolean | undefined;
2387
- result?: JsonElement | undefined;
2388
- data?: JsonElement | undefined;
2389
- timeout?: number | undefined;
2390
- skipValidation?: boolean | undefined;
2391
- }>>;
2392
- fields: z.ZodArray<z.ZodObject<{
2393
- label: z.ZodString;
2394
- value: z.ZodString;
2395
- help: z.ZodOptional<z.ZodObject<{
2396
- markdown: z.ZodString;
2397
- }, "strip", z.ZodTypeAny, {
2398
- markdown: string;
2399
- }, {
2400
- markdown: string;
2401
- }>>;
2402
- }, "strip", z.ZodTypeAny, {
2403
- value: string;
2404
- label: string;
2405
- help?: {
2406
- markdown: string;
2407
- } | undefined;
2408
- }, {
2409
- value: string;
2410
- label: string;
2411
- help?: {
2412
- markdown: string;
2413
- } | undefined;
2414
- }>, "many">;
2415
- title: z.ZodOptional<z.ZodString>;
2416
- callToAction: z.ZodOptional<z.ZodObject<{
2417
- title: z.ZodString;
2482
+ data?: JsonElement | undefined;
2483
+ timeout?: number | undefined;
2484
+ skipValidation?: boolean | undefined;
2485
+ };
2486
+ title?: string | undefined;
2487
+ }>>;
2488
+ back: z.ZodOptional<z.ZodObject<{
2489
+ title: z.ZodOptional<z.ZodString>;
2418
2490
  action: z.ZodObject<{
2419
2491
  title: z.ZodOptional<z.ZodString>;
2420
2492
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -2474,7 +2546,7 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2474
2546
  timeout?: number | undefined;
2475
2547
  skipValidation?: boolean | undefined;
2476
2548
  };
2477
- title: string;
2549
+ title?: string | undefined;
2478
2550
  }, {
2479
2551
  action: {
2480
2552
  url?: string | undefined;
@@ -2491,39 +2563,29 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2491
2563
  timeout?: number | undefined;
2492
2564
  skipValidation?: boolean | undefined;
2493
2565
  };
2494
- title: string;
2566
+ title?: string | undefined;
2495
2567
  }>>;
2496
- control: z.ZodOptional<z.ZodString>;
2497
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2568
+ stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
2498
2569
  }, "strip", z.ZodTypeAny, {
2499
- type: "review";
2500
- fields: {
2501
- value: string;
2502
- label: string;
2503
- help?: {
2504
- markdown: string;
2505
- } | undefined;
2506
- }[];
2507
- action?: {
2508
- url?: string | undefined;
2509
- $id?: string | undefined;
2510
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2511
- disabled?: boolean | undefined;
2570
+ back?: {
2571
+ action: {
2572
+ url?: string | undefined;
2573
+ $id?: string | undefined;
2574
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2575
+ disabled?: boolean | undefined;
2576
+ title?: string | undefined;
2577
+ id?: string | undefined;
2578
+ $ref?: string | undefined;
2579
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2580
+ exit?: boolean | undefined;
2581
+ result?: JsonElement | undefined;
2582
+ data?: JsonElement | undefined;
2583
+ timeout?: number | undefined;
2584
+ skipValidation?: boolean | undefined;
2585
+ };
2512
2586
  title?: string | undefined;
2513
- id?: string | undefined;
2514
- $ref?: string | undefined;
2515
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2516
- exit?: boolean | undefined;
2517
- result?: JsonElement | undefined;
2518
- data?: JsonElement | undefined;
2519
- timeout?: number | undefined;
2520
- skipValidation?: boolean | undefined;
2521
2587
  } | undefined;
2522
- title?: string | undefined;
2523
- control?: string | undefined;
2524
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2525
- orientation?: string | undefined;
2526
- callToAction?: {
2588
+ backButton?: {
2527
2589
  action: {
2528
2590
  url?: string | undefined;
2529
2591
  $id?: string | undefined;
@@ -2539,37 +2601,29 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2539
2601
  timeout?: number | undefined;
2540
2602
  skipValidation?: boolean | undefined;
2541
2603
  };
2542
- title: string;
2604
+ title?: string | undefined;
2543
2605
  } | undefined;
2606
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
2544
2607
  }, {
2545
- type: "review";
2546
- fields: {
2547
- value: string;
2548
- label: string;
2549
- help?: {
2550
- markdown: string;
2551
- } | undefined;
2552
- }[];
2553
- action?: {
2554
- url?: string | undefined;
2555
- $id?: string | undefined;
2556
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2557
- disabled?: boolean | undefined;
2608
+ back?: {
2609
+ action: {
2610
+ url?: string | undefined;
2611
+ $id?: string | undefined;
2612
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2613
+ disabled?: boolean | undefined;
2614
+ title?: string | undefined;
2615
+ id?: string | undefined;
2616
+ $ref?: string | undefined;
2617
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2618
+ exit?: boolean | undefined;
2619
+ result?: JsonElement | undefined;
2620
+ data?: JsonElement | undefined;
2621
+ timeout?: number | undefined;
2622
+ skipValidation?: boolean | undefined;
2623
+ };
2558
2624
  title?: string | undefined;
2559
- id?: string | undefined;
2560
- $ref?: string | undefined;
2561
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2562
- exit?: boolean | undefined;
2563
- result?: JsonElement | undefined;
2564
- data?: JsonElement | undefined;
2565
- timeout?: number | undefined;
2566
- skipValidation?: boolean | undefined;
2567
2625
  } | undefined;
2568
- title?: string | undefined;
2569
- control?: string | undefined;
2570
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2571
- orientation?: string | undefined;
2572
- callToAction?: {
2626
+ backButton?: {
2573
2627
  action: {
2574
2628
  url?: string | undefined;
2575
2629
  $id?: string | undefined;
@@ -2585,8 +2639,9 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2585
2639
  timeout?: number | undefined;
2586
2640
  skipValidation?: boolean | undefined;
2587
2641
  };
2588
- title: string;
2642
+ title?: string | undefined;
2589
2643
  } | undefined;
2644
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
2590
2645
  }>;
2591
2646
  export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2592
2647
  type: z.ZodLiteral<"action">;
@@ -2617,18 +2672,18 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2617
2672
  url: string;
2618
2673
  type: "image";
2619
2674
  control?: string | undefined;
2675
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2620
2676
  text?: string | undefined;
2621
- accessibilityDescription?: string | undefined;
2622
2677
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2623
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2678
+ accessibilityDescription?: string | undefined;
2624
2679
  }, {
2625
2680
  url: string;
2626
2681
  type: "image";
2627
2682
  control?: string | undefined;
2683
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2628
2684
  text?: string | undefined;
2629
- accessibilityDescription?: string | undefined;
2630
2685
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2631
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2686
+ accessibilityDescription?: string | undefined;
2632
2687
  }>>;
2633
2688
  value: z.ZodObject<{
2634
2689
  title: z.ZodOptional<z.ZodString>;
@@ -2695,10 +2750,10 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2695
2750
  url: string;
2696
2751
  type: "image";
2697
2752
  control?: string | undefined;
2753
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2698
2754
  text?: string | undefined;
2699
- accessibilityDescription?: string | undefined;
2700
2755
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2701
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2756
+ accessibilityDescription?: string | undefined;
2702
2757
  } | undefined;
2703
2758
  description?: string | undefined;
2704
2759
  icon?: {
@@ -2728,10 +2783,10 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2728
2783
  url: string;
2729
2784
  type: "image";
2730
2785
  control?: string | undefined;
2786
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2731
2787
  text?: string | undefined;
2732
- accessibilityDescription?: string | undefined;
2733
2788
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2734
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2789
+ accessibilityDescription?: string | undefined;
2735
2790
  } | undefined;
2736
2791
  description?: string | undefined;
2737
2792
  icon?: {
@@ -2768,211 +2823,88 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2768
2823
  url: string;
2769
2824
  type: "image";
2770
2825
  control?: string | undefined;
2771
- text?: string | undefined;
2772
- accessibilityDescription?: string | undefined;
2773
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2774
2826
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2775
- }, {
2776
- url: string;
2777
- type: "image";
2778
- control?: string | undefined;
2779
2827
  text?: string | undefined;
2780
- accessibilityDescription?: string | undefined;
2781
2828
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2782
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2783
- }>>;
2784
- value: z.ZodObject<{
2785
- url: z.ZodString;
2786
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
2787
- param: z.ZodString;
2788
- query: z.ZodString;
2789
- }, "strip", z.ZodTypeAny, {
2790
- url: string;
2791
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2792
- param: string;
2793
- query: string;
2829
+ accessibilityDescription?: string | undefined;
2794
2830
  }, {
2795
- url: string;
2796
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2797
- param: string;
2798
- query: string;
2799
- }>;
2800
- }, "strip", z.ZodTypeAny, {
2801
- type: "search";
2802
- title: string;
2803
- value: {
2804
- url: string;
2805
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2806
- param: string;
2807
- query: string;
2808
- };
2809
- image?: {
2810
2831
  url: string;
2811
2832
  type: "image";
2812
2833
  control?: string | undefined;
2813
- text?: string | undefined;
2814
- accessibilityDescription?: string | undefined;
2815
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2816
2834
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2817
- } | undefined;
2818
- description?: string | undefined;
2819
- icon?: {
2820
- name: string;
2821
- } | {
2822
- text: string;
2823
- } | undefined;
2824
- }, {
2825
- type: "search";
2826
- title: string;
2827
- value: {
2828
- url: string;
2829
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2830
- param: string;
2831
- query: string;
2832
- };
2833
- image?: {
2834
- url: string;
2835
- type: "image";
2836
- control?: string | undefined;
2837
2835
  text?: string | undefined;
2838
- accessibilityDescription?: string | undefined;
2839
2836
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2840
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2841
- } | undefined;
2842
- description?: string | undefined;
2843
- icon?: {
2844
- name: string;
2845
- } | {
2846
- text: string;
2847
- } | undefined;
2848
- }>]>;
2849
- export declare const pollingSchema: z.ZodObject<{
2850
- url: z.ZodString;
2851
- interval: z.ZodNumber;
2852
- maxAttempts: z.ZodNumber;
2853
- onError: z.ZodObject<{
2854
- action: z.ZodObject<{
2855
- title: z.ZodOptional<z.ZodString>;
2856
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2857
- disabled: z.ZodOptional<z.ZodBoolean>;
2858
- $id: z.ZodOptional<z.ZodString>;
2859
- $ref: z.ZodOptional<z.ZodString>;
2860
- id: z.ZodOptional<z.ZodString>;
2861
- url: z.ZodOptional<z.ZodString>;
2862
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2863
- exit: z.ZodOptional<z.ZodBoolean>;
2864
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2865
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2866
- timeout: z.ZodOptional<z.ZodNumber>;
2867
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2868
- }, "strip", z.ZodTypeAny, {
2869
- url?: string | undefined;
2870
- $id?: string | undefined;
2871
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2872
- disabled?: boolean | undefined;
2873
- title?: string | undefined;
2874
- id?: string | undefined;
2875
- $ref?: string | undefined;
2876
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2877
- exit?: boolean | undefined;
2878
- result?: JsonElement | undefined;
2879
- data?: JsonElement | undefined;
2880
- timeout?: number | undefined;
2881
- skipValidation?: boolean | undefined;
2882
- }, {
2883
- url?: string | undefined;
2884
- $id?: string | undefined;
2885
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2886
- disabled?: boolean | undefined;
2887
- title?: string | undefined;
2888
- id?: string | undefined;
2889
- $ref?: string | undefined;
2890
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2891
- exit?: boolean | undefined;
2892
- result?: JsonElement | undefined;
2893
- data?: JsonElement | undefined;
2894
- timeout?: number | undefined;
2895
- skipValidation?: boolean | undefined;
2896
- }>;
2897
- }, "strip", z.ZodTypeAny, {
2898
- action: {
2899
- url?: string | undefined;
2900
- $id?: string | undefined;
2901
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2902
- disabled?: boolean | undefined;
2903
- title?: string | undefined;
2904
- id?: string | undefined;
2905
- $ref?: string | undefined;
2906
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2907
- exit?: boolean | undefined;
2908
- result?: JsonElement | undefined;
2909
- data?: JsonElement | undefined;
2910
- timeout?: number | undefined;
2911
- skipValidation?: boolean | undefined;
2912
- };
2837
+ accessibilityDescription?: string | undefined;
2838
+ }>>;
2839
+ value: z.ZodObject<{
2840
+ url: z.ZodString;
2841
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
2842
+ param: z.ZodString;
2843
+ query: z.ZodString;
2844
+ }, "strip", z.ZodTypeAny, {
2845
+ url: string;
2846
+ param: string;
2847
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2848
+ query: string;
2913
2849
  }, {
2914
- action: {
2915
- url?: string | undefined;
2916
- $id?: string | undefined;
2917
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2918
- disabled?: boolean | undefined;
2919
- title?: string | undefined;
2920
- id?: string | undefined;
2921
- $ref?: string | undefined;
2922
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2923
- exit?: boolean | undefined;
2924
- result?: JsonElement | undefined;
2925
- data?: JsonElement | undefined;
2926
- timeout?: number | undefined;
2927
- skipValidation?: boolean | undefined;
2928
- };
2850
+ url: string;
2851
+ param: string;
2852
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2853
+ query: string;
2929
2854
  }>;
2930
2855
  }, "strip", z.ZodTypeAny, {
2931
- url: string;
2932
- interval: number;
2933
- maxAttempts: number;
2934
- onError: {
2935
- action: {
2936
- url?: string | undefined;
2937
- $id?: string | undefined;
2938
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2939
- disabled?: boolean | undefined;
2940
- title?: string | undefined;
2941
- id?: string | undefined;
2942
- $ref?: string | undefined;
2943
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2944
- exit?: boolean | undefined;
2945
- result?: JsonElement | undefined;
2946
- data?: JsonElement | undefined;
2947
- timeout?: number | undefined;
2948
- skipValidation?: boolean | undefined;
2949
- };
2856
+ type: "search";
2857
+ title: string;
2858
+ value: {
2859
+ url: string;
2860
+ param: string;
2861
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2862
+ query: string;
2950
2863
  };
2864
+ image?: {
2865
+ url: string;
2866
+ type: "image";
2867
+ control?: string | undefined;
2868
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2869
+ text?: string | undefined;
2870
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2871
+ accessibilityDescription?: string | undefined;
2872
+ } | undefined;
2873
+ description?: string | undefined;
2874
+ icon?: {
2875
+ name: string;
2876
+ } | {
2877
+ text: string;
2878
+ } | undefined;
2951
2879
  }, {
2952
- url: string;
2953
- interval: number;
2954
- maxAttempts: number;
2955
- onError: {
2956
- action: {
2957
- url?: string | undefined;
2958
- $id?: string | undefined;
2959
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2960
- disabled?: boolean | undefined;
2961
- title?: string | undefined;
2962
- id?: string | undefined;
2963
- $ref?: string | undefined;
2964
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2965
- exit?: boolean | undefined;
2966
- result?: JsonElement | undefined;
2967
- data?: JsonElement | undefined;
2968
- timeout?: number | undefined;
2969
- skipValidation?: boolean | undefined;
2970
- };
2880
+ type: "search";
2881
+ title: string;
2882
+ value: {
2883
+ url: string;
2884
+ param: string;
2885
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2886
+ query: string;
2971
2887
  };
2972
- }>;
2973
- export declare const navigationSchema: z.ZodObject<{
2974
- backButton: z.ZodOptional<z.ZodObject<{
2975
- title: z.ZodOptional<z.ZodString>;
2888
+ image?: {
2889
+ url: string;
2890
+ type: "image";
2891
+ control?: string | undefined;
2892
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2893
+ text?: string | undefined;
2894
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2895
+ accessibilityDescription?: string | undefined;
2896
+ } | undefined;
2897
+ description?: string | undefined;
2898
+ icon?: {
2899
+ name: string;
2900
+ } | {
2901
+ text: string;
2902
+ } | undefined;
2903
+ }>]>;
2904
+ export declare const decisionLayoutSchema: z.ZodObject<{
2905
+ type: z.ZodLiteral<"decision">;
2906
+ title: z.ZodOptional<z.ZodString>;
2907
+ options: z.ZodArray<z.ZodObject<{
2976
2908
  action: z.ZodObject<{
2977
2909
  title: z.ZodOptional<z.ZodString>;
2978
2910
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -3016,86 +2948,47 @@ export declare const navigationSchema: z.ZodObject<{
3016
2948
  timeout?: number | undefined;
3017
2949
  skipValidation?: boolean | undefined;
3018
2950
  }>;
3019
- }, "strip", z.ZodTypeAny, {
3020
- action: {
3021
- url?: string | undefined;
3022
- $id?: string | undefined;
3023
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3024
- disabled?: boolean | undefined;
3025
- title?: string | undefined;
3026
- id?: string | undefined;
3027
- $ref?: string | undefined;
3028
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3029
- exit?: boolean | undefined;
3030
- result?: JsonElement | undefined;
3031
- data?: JsonElement | undefined;
3032
- timeout?: number | undefined;
3033
- skipValidation?: boolean | undefined;
3034
- };
3035
- title?: string | undefined;
3036
- }, {
3037
- action: {
3038
- url?: string | undefined;
3039
- $id?: string | undefined;
3040
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3041
- disabled?: boolean | undefined;
3042
- title?: string | undefined;
3043
- id?: string | undefined;
3044
- $ref?: string | undefined;
3045
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3046
- exit?: boolean | undefined;
3047
- result?: JsonElement | undefined;
3048
- data?: JsonElement | undefined;
3049
- timeout?: number | undefined;
3050
- skipValidation?: boolean | undefined;
3051
- };
3052
- title?: string | undefined;
3053
- }>>;
3054
- back: z.ZodOptional<z.ZodObject<{
3055
- title: z.ZodOptional<z.ZodString>;
3056
- action: z.ZodObject<{
3057
- title: z.ZodOptional<z.ZodString>;
3058
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
3059
- disabled: z.ZodOptional<z.ZodBoolean>;
3060
- $id: z.ZodOptional<z.ZodString>;
3061
- $ref: z.ZodOptional<z.ZodString>;
3062
- id: z.ZodOptional<z.ZodString>;
3063
- url: z.ZodOptional<z.ZodString>;
3064
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
3065
- exit: z.ZodOptional<z.ZodBoolean>;
3066
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3067
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3068
- timeout: z.ZodOptional<z.ZodNumber>;
3069
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2951
+ title: z.ZodString;
2952
+ description: z.ZodOptional<z.ZodString>;
2953
+ disabled: z.ZodOptional<z.ZodBoolean>;
2954
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2955
+ name: z.ZodString;
3070
2956
  }, "strip", z.ZodTypeAny, {
3071
- url?: string | undefined;
3072
- $id?: string | undefined;
3073
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3074
- disabled?: boolean | undefined;
3075
- title?: string | undefined;
3076
- id?: string | undefined;
3077
- $ref?: string | undefined;
3078
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3079
- exit?: boolean | undefined;
3080
- result?: JsonElement | undefined;
3081
- data?: JsonElement | undefined;
3082
- timeout?: number | undefined;
3083
- skipValidation?: boolean | undefined;
2957
+ name: string;
3084
2958
  }, {
3085
- url?: string | undefined;
3086
- $id?: string | undefined;
3087
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3088
- disabled?: boolean | undefined;
3089
- title?: string | undefined;
3090
- id?: string | undefined;
3091
- $ref?: string | undefined;
3092
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3093
- exit?: boolean | undefined;
3094
- result?: JsonElement | undefined;
3095
- data?: JsonElement | undefined;
3096
- timeout?: number | undefined;
3097
- skipValidation?: boolean | undefined;
3098
- }>;
2959
+ name: string;
2960
+ }>, z.ZodObject<{
2961
+ text: z.ZodString;
2962
+ }, "strip", z.ZodTypeAny, {
2963
+ text: string;
2964
+ }, {
2965
+ text: string;
2966
+ }>]>>;
2967
+ image: z.ZodOptional<z.ZodObject<{
2968
+ type: z.ZodLiteral<"image">;
2969
+ text: z.ZodOptional<z.ZodString>;
2970
+ url: z.ZodString;
2971
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2972
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
2973
+ control: z.ZodOptional<z.ZodString>;
2974
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2975
+ }, "strip", z.ZodTypeAny, {
2976
+ url: string;
2977
+ type: "image";
2978
+ control?: string | undefined;
2979
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2980
+ text?: string | undefined;
2981
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2982
+ accessibilityDescription?: string | undefined;
2983
+ }, {
2984
+ url: string;
2985
+ type: "image";
2986
+ control?: string | undefined;
2987
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2988
+ text?: string | undefined;
2989
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2990
+ accessibilityDescription?: string | undefined;
2991
+ }>>;
3099
2992
  }, "strip", z.ZodTypeAny, {
3100
2993
  action: {
3101
2994
  url?: string | undefined;
@@ -3112,28 +3005,24 @@ export declare const navigationSchema: z.ZodObject<{
3112
3005
  timeout?: number | undefined;
3113
3006
  skipValidation?: boolean | undefined;
3114
3007
  };
3115
- title?: string | undefined;
3116
- }, {
3117
- action: {
3118
- url?: string | undefined;
3119
- $id?: string | undefined;
3120
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3121
- disabled?: boolean | undefined;
3122
- title?: string | undefined;
3123
- id?: string | undefined;
3124
- $ref?: string | undefined;
3125
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3126
- exit?: boolean | undefined;
3127
- result?: JsonElement | undefined;
3128
- data?: JsonElement | undefined;
3129
- timeout?: number | undefined;
3130
- skipValidation?: boolean | undefined;
3131
- };
3132
- title?: string | undefined;
3133
- }>>;
3134
- stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
3135
- }, "strip", z.ZodTypeAny, {
3136
- back?: {
3008
+ title: string;
3009
+ image?: {
3010
+ url: string;
3011
+ type: "image";
3012
+ control?: string | undefined;
3013
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3014
+ text?: string | undefined;
3015
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3016
+ accessibilityDescription?: string | undefined;
3017
+ } | undefined;
3018
+ description?: string | undefined;
3019
+ disabled?: boolean | undefined;
3020
+ icon?: {
3021
+ name: string;
3022
+ } | {
3023
+ text: string;
3024
+ } | undefined;
3025
+ }, {
3137
3026
  action: {
3138
3027
  url?: string | undefined;
3139
3028
  $id?: string | undefined;
@@ -3149,9 +3038,29 @@ export declare const navigationSchema: z.ZodObject<{
3149
3038
  timeout?: number | undefined;
3150
3039
  skipValidation?: boolean | undefined;
3151
3040
  };
3152
- title?: string | undefined;
3153
- } | undefined;
3154
- backButton?: {
3041
+ title: string;
3042
+ image?: {
3043
+ url: string;
3044
+ type: "image";
3045
+ control?: string | undefined;
3046
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3047
+ text?: string | undefined;
3048
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3049
+ accessibilityDescription?: string | undefined;
3050
+ } | undefined;
3051
+ description?: string | undefined;
3052
+ disabled?: boolean | undefined;
3053
+ icon?: {
3054
+ name: string;
3055
+ } | {
3056
+ text: string;
3057
+ } | undefined;
3058
+ }>, "many">;
3059
+ control: z.ZodOptional<z.ZodString>;
3060
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3061
+ }, "strip", z.ZodTypeAny, {
3062
+ type: "decision";
3063
+ options: {
3155
3064
  action: {
3156
3065
  url?: string | undefined;
3157
3066
  $id?: string | undefined;
@@ -3167,11 +3076,30 @@ export declare const navigationSchema: z.ZodObject<{
3167
3076
  timeout?: number | undefined;
3168
3077
  skipValidation?: boolean | undefined;
3169
3078
  };
3170
- title?: string | undefined;
3171
- } | undefined;
3172
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
3079
+ title: string;
3080
+ image?: {
3081
+ url: string;
3082
+ type: "image";
3083
+ control?: string | undefined;
3084
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3085
+ text?: string | undefined;
3086
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3087
+ accessibilityDescription?: string | undefined;
3088
+ } | undefined;
3089
+ description?: string | undefined;
3090
+ disabled?: boolean | undefined;
3091
+ icon?: {
3092
+ name: string;
3093
+ } | {
3094
+ text: string;
3095
+ } | undefined;
3096
+ }[];
3097
+ title?: string | undefined;
3098
+ control?: string | undefined;
3099
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3173
3100
  }, {
3174
- back?: {
3101
+ type: "decision";
3102
+ options: {
3175
3103
  action: {
3176
3104
  url?: string | undefined;
3177
3105
  $id?: string | undefined;
@@ -3187,27 +3115,99 @@ export declare const navigationSchema: z.ZodObject<{
3187
3115
  timeout?: number | undefined;
3188
3116
  skipValidation?: boolean | undefined;
3189
3117
  };
3190
- title?: string | undefined;
3191
- } | undefined;
3192
- backButton?: {
3193
- action: {
3194
- url?: string | undefined;
3195
- $id?: string | undefined;
3196
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3197
- disabled?: boolean | undefined;
3198
- title?: string | undefined;
3199
- id?: string | undefined;
3200
- $ref?: string | undefined;
3201
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3202
- exit?: boolean | undefined;
3203
- result?: JsonElement | undefined;
3204
- data?: JsonElement | undefined;
3205
- timeout?: number | undefined;
3206
- skipValidation?: boolean | undefined;
3118
+ title: string;
3119
+ image?: {
3120
+ url: string;
3121
+ type: "image";
3122
+ control?: string | undefined;
3123
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3124
+ text?: string | undefined;
3125
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3126
+ accessibilityDescription?: string | undefined;
3127
+ } | undefined;
3128
+ description?: string | undefined;
3129
+ disabled?: boolean | undefined;
3130
+ icon?: {
3131
+ name: string;
3132
+ } | {
3133
+ text: string;
3134
+ } | undefined;
3135
+ }[];
3136
+ title?: string | undefined;
3137
+ control?: string | undefined;
3138
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3139
+ }>;
3140
+ export declare const listLayoutSchema: z.ZodObject<{
3141
+ type: z.ZodLiteral<"list">;
3142
+ items: z.ZodArray<z.ZodObject<{
3143
+ title: z.ZodString;
3144
+ description: z.ZodOptional<z.ZodString>;
3145
+ icon: z.ZodUnion<[z.ZodObject<{
3146
+ name: z.ZodString;
3147
+ }, "strip", z.ZodTypeAny, {
3148
+ name: string;
3149
+ }, {
3150
+ name: string;
3151
+ }>, z.ZodObject<{
3152
+ text: z.ZodString;
3153
+ }, "strip", z.ZodTypeAny, {
3154
+ text: string;
3155
+ }, {
3156
+ text: string;
3157
+ }>]>;
3158
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
3159
+ }, "strip", z.ZodTypeAny, {
3160
+ icon: {
3161
+ name: string;
3162
+ } | {
3163
+ text: string;
3207
3164
  };
3208
- title?: string | undefined;
3209
- } | undefined;
3210
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
3165
+ title: string;
3166
+ description?: string | undefined;
3167
+ status?: "neutral" | "warning" | "positive" | undefined;
3168
+ }, {
3169
+ icon: {
3170
+ name: string;
3171
+ } | {
3172
+ text: string;
3173
+ };
3174
+ title: string;
3175
+ description?: string | undefined;
3176
+ status?: "neutral" | "warning" | "positive" | undefined;
3177
+ }>, "many">;
3178
+ title: z.ZodOptional<z.ZodString>;
3179
+ control: z.ZodOptional<z.ZodString>;
3180
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3181
+ }, "strip", z.ZodTypeAny, {
3182
+ type: "list";
3183
+ items: {
3184
+ icon: {
3185
+ name: string;
3186
+ } | {
3187
+ text: string;
3188
+ };
3189
+ title: string;
3190
+ description?: string | undefined;
3191
+ status?: "neutral" | "warning" | "positive" | undefined;
3192
+ }[];
3193
+ title?: string | undefined;
3194
+ control?: string | undefined;
3195
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3196
+ }, {
3197
+ type: "list";
3198
+ items: {
3199
+ icon: {
3200
+ name: string;
3201
+ } | {
3202
+ text: string;
3203
+ };
3204
+ title: string;
3205
+ description?: string | undefined;
3206
+ status?: "neutral" | "warning" | "positive" | undefined;
3207
+ }[];
3208
+ title?: string | undefined;
3209
+ control?: string | undefined;
3210
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3211
3211
  }>;
3212
3212
  export declare const searchResponseBodySchema: z.ZodObject<{
3213
3213
  results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -3239,18 +3239,18 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3239
3239
  url: string;
3240
3240
  type: "image";
3241
3241
  control?: string | undefined;
3242
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3242
3243
  text?: string | undefined;
3243
- accessibilityDescription?: string | undefined;
3244
3244
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3245
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3245
+ accessibilityDescription?: string | undefined;
3246
3246
  }, {
3247
3247
  url: string;
3248
3248
  type: "image";
3249
3249
  control?: string | undefined;
3250
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3250
3251
  text?: string | undefined;
3251
- accessibilityDescription?: string | undefined;
3252
3252
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3253
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3253
+ accessibilityDescription?: string | undefined;
3254
3254
  }>>;
3255
3255
  value: z.ZodObject<{
3256
3256
  title: z.ZodOptional<z.ZodString>;
@@ -3317,10 +3317,10 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3317
3317
  url: string;
3318
3318
  type: "image";
3319
3319
  control?: string | undefined;
3320
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3320
3321
  text?: string | undefined;
3321
- accessibilityDescription?: string | undefined;
3322
3322
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3323
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3323
+ accessibilityDescription?: string | undefined;
3324
3324
  } | undefined;
3325
3325
  description?: string | undefined;
3326
3326
  icon?: {
@@ -3350,10 +3350,10 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3350
3350
  url: string;
3351
3351
  type: "image";
3352
3352
  control?: string | undefined;
3353
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3353
3354
  text?: string | undefined;
3354
- accessibilityDescription?: string | undefined;
3355
3355
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3356
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3356
+ accessibilityDescription?: string | undefined;
3357
3357
  } | undefined;
3358
3358
  description?: string | undefined;
3359
3359
  icon?: {
@@ -3390,18 +3390,18 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3390
3390
  url: string;
3391
3391
  type: "image";
3392
3392
  control?: string | undefined;
3393
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3393
3394
  text?: string | undefined;
3394
- accessibilityDescription?: string | undefined;
3395
3395
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3396
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3396
+ accessibilityDescription?: string | undefined;
3397
3397
  }, {
3398
3398
  url: string;
3399
3399
  type: "image";
3400
3400
  control?: string | undefined;
3401
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3401
3402
  text?: string | undefined;
3402
- accessibilityDescription?: string | undefined;
3403
3403
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3404
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3404
+ accessibilityDescription?: string | undefined;
3405
3405
  }>>;
3406
3406
  value: z.ZodObject<{
3407
3407
  url: z.ZodString;
@@ -3410,13 +3410,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3410
3410
  query: z.ZodString;
3411
3411
  }, "strip", z.ZodTypeAny, {
3412
3412
  url: string;
3413
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3414
3413
  param: string;
3414
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3415
3415
  query: string;
3416
3416
  }, {
3417
3417
  url: string;
3418
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3419
3418
  param: string;
3419
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3420
3420
  query: string;
3421
3421
  }>;
3422
3422
  }, "strip", z.ZodTypeAny, {
@@ -3424,18 +3424,18 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3424
3424
  title: string;
3425
3425
  value: {
3426
3426
  url: string;
3427
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3428
3427
  param: string;
3428
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3429
3429
  query: string;
3430
3430
  };
3431
3431
  image?: {
3432
3432
  url: string;
3433
3433
  type: "image";
3434
3434
  control?: string | undefined;
3435
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3435
3436
  text?: string | undefined;
3436
- accessibilityDescription?: string | undefined;
3437
3437
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3438
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3438
+ accessibilityDescription?: string | undefined;
3439
3439
  } | undefined;
3440
3440
  description?: string | undefined;
3441
3441
  icon?: {
@@ -3448,18 +3448,18 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3448
3448
  title: string;
3449
3449
  value: {
3450
3450
  url: string;
3451
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3452
3451
  param: string;
3452
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3453
3453
  query: string;
3454
3454
  };
3455
3455
  image?: {
3456
3456
  url: string;
3457
3457
  type: "image";
3458
3458
  control?: string | undefined;
3459
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3459
3460
  text?: string | undefined;
3460
- accessibilityDescription?: string | undefined;
3461
3461
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3462
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3462
+ accessibilityDescription?: string | undefined;
3463
3463
  } | undefined;
3464
3464
  description?: string | undefined;
3465
3465
  icon?: {
@@ -3474,18 +3474,18 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3474
3474
  title: string;
3475
3475
  value: {
3476
3476
  url: string;
3477
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3478
3477
  param: string;
3478
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3479
3479
  query: string;
3480
3480
  };
3481
3481
  image?: {
3482
3482
  url: string;
3483
3483
  type: "image";
3484
3484
  control?: string | undefined;
3485
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3485
3486
  text?: string | undefined;
3486
- accessibilityDescription?: string | undefined;
3487
3487
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3488
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3488
+ accessibilityDescription?: string | undefined;
3489
3489
  } | undefined;
3490
3490
  description?: string | undefined;
3491
3491
  icon?: {
@@ -3515,10 +3515,10 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3515
3515
  url: string;
3516
3516
  type: "image";
3517
3517
  control?: string | undefined;
3518
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3518
3519
  text?: string | undefined;
3519
- accessibilityDescription?: string | undefined;
3520
3520
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3521
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3521
+ accessibilityDescription?: string | undefined;
3522
3522
  } | undefined;
3523
3523
  description?: string | undefined;
3524
3524
  icon?: {
@@ -3533,18 +3533,18 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3533
3533
  title: string;
3534
3534
  value: {
3535
3535
  url: string;
3536
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3537
3536
  param: string;
3537
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3538
3538
  query: string;
3539
3539
  };
3540
3540
  image?: {
3541
3541
  url: string;
3542
3542
  type: "image";
3543
3543
  control?: string | undefined;
3544
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3544
3545
  text?: string | undefined;
3545
- accessibilityDescription?: string | undefined;
3546
3546
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3547
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3547
+ accessibilityDescription?: string | undefined;
3548
3548
  } | undefined;
3549
3549
  description?: string | undefined;
3550
3550
  icon?: {
@@ -3574,10 +3574,10 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3574
3574
  url: string;
3575
3575
  type: "image";
3576
3576
  control?: string | undefined;
3577
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3577
3578
  text?: string | undefined;
3578
- accessibilityDescription?: string | undefined;
3579
3579
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3580
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3580
+ accessibilityDescription?: string | undefined;
3581
3581
  } | undefined;
3582
3582
  description?: string | undefined;
3583
3583
  icon?: {
@@ -3587,12 +3587,11 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3587
3587
  } | undefined;
3588
3588
  })[];
3589
3589
  }>;
3590
- export declare const layoutSchema: z.ZodSchema<Layout>;
3591
- export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
3592
3590
  export declare const columnsLayoutSchema: z.ZodSchema<ColumnsLayout>;
3591
+ export declare const layoutSchema: z.ZodSchema<Layout>;
3593
3592
  export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
3594
3593
  export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
3595
- export declare const stepSchema: z.ZodSchema<Step>;
3594
+ export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
3596
3595
  export declare const schemaSchema: z.ZodSchema<Schema>;
3597
3596
  export declare const allOfSchemaSchema: z.ZodSchema<AllOfSchema>;
3598
3597
  export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
@@ -3602,6 +3601,7 @@ export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
3602
3601
  export declare const objectSchemaSchema: z.ZodSchema<ObjectSchema>;
3603
3602
  export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
3604
3603
  export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
3605
- export declare const arraySchemaListSchema: z.ZodSchema<ArraySchemaList>;
3606
3604
  export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
3607
3605
  export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
3606
+ export declare const arraySchemaListSchema: z.ZodSchema<ArraySchemaList>;
3607
+ export declare const stepSchema: z.ZodSchema<Step>;