@wise/dynamic-flow-types 2.15.0 → 2.15.1-experimental-node20-6554c5d

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
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';
2
+ import type { JsonElement, ArraySchemaTuple, Schema, PersistAsync, OneOfSchema, ObjectSchema, ArraySchemaList, AllOfSchema, ArraySchema, BooleanSchema, IntegerSchema, NumberSchema, StringSchema, Step, Layout, BoxLayout, ModalLayout, ModalLayoutContent, ColumnsLayout } from '../next';
3
3
  export declare const imageSchema: z.ZodObject<{
4
4
  text: z.ZodOptional<z.ZodString>;
5
5
  url: z.ZodString;
@@ -13,106 +13,63 @@ export declare const imageSchema: z.ZodObject<{
13
13
  text?: string | undefined;
14
14
  accessibilityDescription?: string | undefined;
15
15
  }>;
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;
19
- }, "strip", z.ZodTypeAny, {
20
- name: string;
21
- }, {
22
- name: string;
23
- }>;
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;
27
- }, "strip", z.ZodTypeAny, {
28
- text: string;
29
- }, {
30
- text: string;
31
- }>;
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<{
41
- 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
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
51
- control: z.ZodOptional<z.ZodString>;
52
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
16
+ export declare const summaryProviderSchema: z.ZodObject<{
17
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
18
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
19
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
20
+ providesImage: z.ZodOptional<z.ZodBoolean>;
53
21
  }, "strip", z.ZodTypeAny, {
54
- type: "loading-indicator";
55
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
56
- control?: string | undefined;
57
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
22
+ providesTitle?: boolean | undefined;
23
+ providesDescription?: boolean | undefined;
24
+ providesIcon?: boolean | undefined;
25
+ providesImage?: boolean | undefined;
58
26
  }, {
59
- type: "loading-indicator";
60
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
61
- control?: string | undefined;
62
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
27
+ providesTitle?: boolean | undefined;
28
+ providesDescription?: boolean | undefined;
29
+ providesIcon?: boolean | undefined;
30
+ providesImage?: boolean | undefined;
63
31
  }>;
64
- export declare const alertLayoutSchema: z.ZodObject<{
65
- type: z.ZodLiteral<"alert">;
32
+ export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
33
+ export declare const helpSchema: z.ZodObject<{
66
34
  markdown: z.ZodString;
67
- 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">]>>;
68
- control: z.ZodOptional<z.ZodString>;
69
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
70
35
  }, "strip", z.ZodTypeAny, {
71
- type: "alert";
72
36
  markdown: string;
73
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
74
- control?: string | undefined;
75
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
76
37
  }, {
77
- type: "alert";
78
38
  markdown: string;
79
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
80
- control?: string | undefined;
81
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
82
39
  }>;
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">]>>;
40
+ 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">]>;
41
+ export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
42
+ 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">]>;
43
+ export declare const externalSchema: z.ZodObject<{
44
+ url: z.ZodString;
89
45
  }, "strip", z.ZodTypeAny, {
90
- type: "paragraph";
91
- text: string;
92
- align?: "left" | "right" | "center" | undefined;
93
- control?: string | undefined;
94
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
46
+ url: string;
95
47
  }, {
96
- type: "paragraph";
97
- text: string;
98
- align?: "left" | "right" | "center" | undefined;
99
- control?: string | undefined;
100
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
48
+ url: string;
101
49
  }>;
102
- export declare const dividerLayoutSchema: z.ZodObject<{
103
- type: z.ZodLiteral<"divider">;
104
- control: z.ZodOptional<z.ZodString>;
105
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
50
+ export declare const stepErrorSchema: z.ZodObject<{
51
+ error: z.ZodOptional<z.ZodString>;
52
+ validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
106
53
  }, "strip", z.ZodTypeAny, {
107
- type: "divider";
108
- control?: string | undefined;
109
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
54
+ error?: string | undefined;
55
+ validation?: JsonElement | undefined;
110
56
  }, {
111
- type: "divider";
112
- control?: string | undefined;
113
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
57
+ error?: string | undefined;
58
+ validation?: JsonElement | undefined;
114
59
  }>;
60
+ export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
61
+ export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
62
+ export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
63
+ export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
115
64
  export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
65
+ export declare const contextSchema: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
66
+ export declare const modalLayoutTriggerSchema: z.ZodObject<{
67
+ title: z.ZodString;
68
+ }, "strip", z.ZodTypeAny, {
69
+ title: string;
70
+ }, {
71
+ title: string;
72
+ }>;
116
73
  export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
117
74
  $ref: z.ZodString;
118
75
  }, "strip", z.ZodTypeAny, {
@@ -120,32 +77,19 @@ export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
120
77
  }, {
121
78
  $ref: string;
122
79
  }>;
123
- export declare const imageLayoutSchema: z.ZodObject<{
124
- type: z.ZodLiteral<"image">;
125
- text: z.ZodOptional<z.ZodString>;
126
- url: z.ZodString;
127
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
128
- accessibilityDescription: z.ZodOptional<z.ZodString>;
80
+ export declare const dividerLayoutSchema: z.ZodObject<{
81
+ type: z.ZodLiteral<"divider">;
129
82
  control: z.ZodOptional<z.ZodString>;
130
83
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
131
84
  }, "strip", z.ZodTypeAny, {
132
- url: string;
133
- type: "image";
134
- text?: string | undefined;
135
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
136
- accessibilityDescription?: string | undefined;
85
+ type: "divider";
137
86
  control?: string | undefined;
138
87
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
139
88
  }, {
140
- url: string;
141
- type: "image";
142
- text?: string | undefined;
143
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
144
- accessibilityDescription?: string | undefined;
89
+ type: "divider";
145
90
  control?: string | undefined;
146
91
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
147
92
  }>;
148
- export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
149
93
  export declare const instructionsLayoutItemSchema: z.ZodObject<{
150
94
  text: z.ZodString;
151
95
  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">]>;
@@ -156,12 +100,29 @@ export declare const instructionsLayoutItemSchema: z.ZodObject<{
156
100
  text: string;
157
101
  context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
158
102
  }>;
159
- export declare const modalLayoutTriggerSchema: z.ZodObject<{
160
- title: z.ZodString;
103
+ export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
104
+ export declare const reviewLayoutFieldSchema: z.ZodObject<{
105
+ label: z.ZodString;
106
+ value: z.ZodString;
107
+ help: z.ZodOptional<z.ZodObject<{
108
+ markdown: z.ZodString;
109
+ }, "strip", z.ZodTypeAny, {
110
+ markdown: string;
111
+ }, {
112
+ markdown: string;
113
+ }>>;
161
114
  }, "strip", z.ZodTypeAny, {
162
- title: string;
115
+ value: string;
116
+ label: string;
117
+ help?: {
118
+ markdown: string;
119
+ } | undefined;
163
120
  }, {
164
- title: string;
121
+ value: string;
122
+ label: string;
123
+ help?: {
124
+ markdown: string;
125
+ } | undefined;
165
126
  }>;
166
127
  export declare const searchLayoutSchema: z.ZodObject<{
167
128
  type: z.ZodLiteral<"search">;
@@ -191,51 +152,39 @@ export declare const searchLayoutSchema: z.ZodObject<{
191
152
  control?: string | undefined;
192
153
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
193
154
  }>;
194
- export declare const infoLayoutSchema: z.ZodObject<{
195
- type: z.ZodLiteral<"info">;
196
- markdown: z.ZodString;
155
+ export declare const paragraphLayoutSchema: z.ZodObject<{
156
+ type: z.ZodLiteral<"paragraph">;
157
+ text: z.ZodString;
197
158
  align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
198
159
  control: z.ZodOptional<z.ZodString>;
199
160
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
200
161
  }, "strip", z.ZodTypeAny, {
201
- type: "info";
202
- markdown: string;
162
+ type: "paragraph";
163
+ text: string;
203
164
  align?: "left" | "right" | "center" | undefined;
204
165
  control?: string | undefined;
205
166
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
206
167
  }, {
207
- type: "info";
208
- markdown: string;
168
+ type: "paragraph";
169
+ text: string;
209
170
  align?: "left" | "right" | "center" | undefined;
210
171
  control?: string | undefined;
211
172
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
212
173
  }>;
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;
174
+ export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
175
+ export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
176
+ type: z.ZodLiteral<"loading-indicator">;
177
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
223
178
  control: z.ZodOptional<z.ZodString>;
224
179
  margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
225
180
  }, "strip", z.ZodTypeAny, {
226
- type: "form";
227
- schemaId: string;
228
- schema?: {
229
- $ref: string;
230
- } | undefined;
181
+ type: "loading-indicator";
182
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
231
183
  control?: string | undefined;
232
184
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
233
185
  }, {
234
- type: "form";
235
- schemaId: string;
236
- schema?: {
237
- $ref: string;
238
- } | undefined;
186
+ type: "loading-indicator";
187
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
239
188
  control?: string | undefined;
240
189
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
241
190
  }>;
@@ -261,6 +210,7 @@ export declare const headingLayoutSchema: z.ZodObject<{
261
210
  control?: string | undefined;
262
211
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
263
212
  }>;
213
+ export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
264
214
  export declare const markdownLayoutSchema: z.ZodObject<{
265
215
  type: z.ZodLiteral<"markdown">;
266
216
  content: z.ZodString;
@@ -280,13 +230,19 @@ export declare const markdownLayoutSchema: z.ZodObject<{
280
230
  control?: string | undefined;
281
231
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
282
232
  }>;
283
- export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
284
- export declare const helpSchema: z.ZodObject<{
285
- markdown: z.ZodString;
233
+ export declare const iconTextSchema: z.ZodObject<{
234
+ text: z.ZodString;
286
235
  }, "strip", z.ZodTypeAny, {
287
- markdown: string;
236
+ text: string;
288
237
  }, {
289
- markdown: string;
238
+ text: string;
239
+ }>;
240
+ export declare const iconNamedSchema: z.ZodObject<{
241
+ name: z.ZodString;
242
+ }, "strip", z.ZodTypeAny, {
243
+ name: string;
244
+ }, {
245
+ name: string;
290
246
  }>;
291
247
  export declare const searchSearchRequestSchema: z.ZodObject<{
292
248
  url: z.ZodString;
@@ -304,113 +260,38 @@ export declare const searchSearchRequestSchema: z.ZodObject<{
304
260
  param: string;
305
261
  query: string;
306
262
  }>;
307
- export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
308
- export declare const externalSchema: z.ZodObject<{
309
- url: z.ZodString;
310
- }, "strip", z.ZodTypeAny, {
311
- url: string;
312
- }, {
313
- url: string;
314
- }>;
315
- export declare const stepErrorSchema: z.ZodObject<{
263
+ export declare const errorResponseBodySchema: z.ZodObject<{
264
+ refreshFormUrl: z.ZodOptional<z.ZodString>;
265
+ analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
316
266
  error: z.ZodOptional<z.ZodString>;
317
267
  validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
268
+ refreshUrl: z.ZodOptional<z.ZodString>;
318
269
  }, "strip", z.ZodTypeAny, {
270
+ refreshFormUrl?: string | undefined;
271
+ analytics?: Record<string, string> | undefined;
319
272
  error?: string | undefined;
320
273
  validation?: JsonElement | undefined;
274
+ refreshUrl?: string | undefined;
321
275
  }, {
276
+ refreshFormUrl?: string | undefined;
277
+ analytics?: Record<string, string> | undefined;
322
278
  error?: string | undefined;
323
279
  validation?: JsonElement | undefined;
280
+ refreshUrl?: string | undefined;
324
281
  }>;
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
- text?: string | undefined;
354
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
355
- accessibilityDescription?: string | undefined;
356
- control?: string | undefined;
357
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
358
- }, {
359
- url: string;
360
- type: "image";
361
- text?: string | undefined;
362
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
363
- accessibilityDescription?: string | undefined;
364
- control?: string | 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>;
282
+ export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
283
+ name: z.ZodString;
371
284
  }, "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
- text?: string | undefined;
383
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
384
- accessibilityDescription?: string | undefined;
385
- control?: string | 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;
285
+ name: string;
392
286
  }, {
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
- text?: string | undefined;
404
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
405
- accessibilityDescription?: string | undefined;
406
- control?: string | 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;
413
- }>;
287
+ name: string;
288
+ }>, z.ZodObject<{
289
+ text: z.ZodString;
290
+ }, "strip", z.ZodTypeAny, {
291
+ text: string;
292
+ }, {
293
+ text: string;
294
+ }>]>;
414
295
  export declare const validateAsyncSchema: z.ZodObject<{
415
296
  param: z.ZodString;
416
297
  method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
@@ -424,44 +305,34 @@ export declare const validateAsyncSchema: z.ZodObject<{
424
305
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
425
306
  param: string;
426
307
  }>;
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>;
308
+ export declare const alertLayoutSchema: z.ZodObject<{
309
+ type: z.ZodLiteral<"alert">;
310
+ markdown: z.ZodString;
311
+ 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">]>>;
312
+ control: z.ZodOptional<z.ZodString>;
313
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
432
314
  }, "strip", z.ZodTypeAny, {
433
- providesTitle?: boolean | undefined;
434
- providesDescription?: boolean | undefined;
435
- providesIcon?: boolean | undefined;
436
- providesImage?: boolean | undefined;
315
+ type: "alert";
316
+ markdown: string;
317
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
318
+ control?: string | undefined;
319
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
437
320
  }, {
438
- providesTitle?: boolean | undefined;
439
- providesDescription?: boolean | undefined;
440
- providesIcon?: boolean | undefined;
441
- providesImage?: boolean | undefined;
321
+ type: "alert";
322
+ markdown: string;
323
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
324
+ control?: string | undefined;
325
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
442
326
  }>;
443
- export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
444
- export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
445
- 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>;
451
- }, "strip", z.ZodTypeAny, {
452
- providesTitle?: boolean | undefined;
453
- providesDescription?: boolean | undefined;
454
- providesIcon?: boolean | undefined;
455
- providesImage?: boolean | undefined;
456
- }, {
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<{
327
+ export declare const blobSchemaSchema: z.ZodObject<{
328
+ type: z.ZodLiteral<"blob">;
329
+ promoted: z.ZodOptional<z.ZodBoolean>;
330
+ $id: z.ZodOptional<z.ZodString>;
331
+ title: z.ZodOptional<z.ZodString>;
332
+ description: z.ZodOptional<z.ZodString>;
333
+ control: z.ZodOptional<z.ZodString>;
334
+ hidden: z.ZodOptional<z.ZodBoolean>;
335
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
465
336
  name: z.ZodString;
466
337
  }, "strip", z.ZodTypeAny, {
467
338
  name: string;
@@ -474,78 +345,305 @@ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
474
345
  }, {
475
346
  text: string;
476
347
  }>]>>;
477
- defaultImage: z.ZodOptional<z.ZodObject<{
478
- type: z.ZodLiteral<"image">;
348
+ image: z.ZodOptional<z.ZodObject<{
479
349
  text: z.ZodOptional<z.ZodString>;
480
350
  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
351
  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
352
  }, "strip", z.ZodTypeAny, {
486
353
  url: string;
487
- type: "image";
488
354
  text?: string | undefined;
489
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
490
355
  accessibilityDescription?: string | undefined;
491
- control?: string | undefined;
492
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
493
356
  }, {
494
357
  url: string;
495
- type: "image";
496
358
  text?: string | undefined;
497
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
498
359
  accessibilityDescription?: string | undefined;
360
+ }>>;
361
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
362
+ summary: z.ZodOptional<z.ZodObject<{
363
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
364
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
365
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
366
+ providesImage: z.ZodOptional<z.ZodBoolean>;
367
+ }, "strip", z.ZodTypeAny, {
368
+ providesTitle?: boolean | undefined;
369
+ providesDescription?: boolean | undefined;
370
+ providesIcon?: boolean | undefined;
371
+ providesImage?: boolean | undefined;
372
+ }, {
373
+ providesTitle?: boolean | undefined;
374
+ providesDescription?: boolean | undefined;
375
+ providesIcon?: boolean | undefined;
376
+ providesImage?: boolean | undefined;
377
+ }>>;
378
+ analyticsId: z.ZodOptional<z.ZodString>;
379
+ validationAsync: z.ZodOptional<z.ZodObject<{
380
+ param: z.ZodString;
381
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
382
+ url: z.ZodString;
383
+ }, "strip", z.ZodTypeAny, {
384
+ url: string;
385
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
386
+ param: string;
387
+ }, {
388
+ url: string;
389
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
390
+ param: string;
391
+ }>>;
392
+ validationMessages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
393
+ alert: z.ZodOptional<z.ZodObject<{
394
+ type: z.ZodLiteral<"alert">;
395
+ markdown: z.ZodString;
396
+ 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">]>>;
397
+ control: z.ZodOptional<z.ZodString>;
398
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
399
+ }, "strip", z.ZodTypeAny, {
400
+ type: "alert";
401
+ markdown: string;
402
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
403
+ control?: string | undefined;
404
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
405
+ }, {
406
+ type: "alert";
407
+ markdown: string;
408
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
499
409
  control?: string | undefined;
500
410
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
501
411
  }>>;
502
- providesTitle: z.ZodOptional<z.ZodBoolean>;
503
- providesDescription: z.ZodOptional<z.ZodBoolean>;
504
- providesIcon: z.ZodOptional<z.ZodBoolean>;
505
- providesImage: z.ZodOptional<z.ZodBoolean>;
412
+ cameraConfig: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
413
+ accepts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
414
+ maxSize: z.ZodOptional<z.ZodNumber>;
415
+ source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>>;
416
+ disabled: z.ZodOptional<z.ZodBoolean>;
506
417
  }, "strip", z.ZodTypeAny, {
507
- defaultTitle?: string | undefined;
508
- defaultDescription?: string | undefined;
509
- defaultIcon?: {
510
- name: string;
511
- } | {
418
+ type: "blob";
419
+ promoted?: boolean | undefined;
420
+ $id?: string | undefined;
421
+ title?: string | undefined;
422
+ description?: string | undefined;
423
+ control?: string | undefined;
424
+ hidden?: boolean | undefined;
425
+ icon?: {
512
426
  text: string;
427
+ } | {
428
+ name: string;
513
429
  } | undefined;
514
- defaultImage?: {
430
+ image?: {
515
431
  url: string;
516
- type: "image";
517
432
  text?: string | undefined;
518
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
519
433
  accessibilityDescription?: string | undefined;
520
- control?: string | 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;
527
- }, {
528
- defaultTitle?: string | undefined;
529
- defaultDescription?: string | undefined;
530
- defaultIcon?: {
531
- name: string;
532
- } | {
533
- text: string;
534
434
  } | undefined;
535
- defaultImage?: {
536
- url: string;
537
- type: "image";
435
+ keywords?: string[] | undefined;
436
+ summary?: {
437
+ providesTitle?: boolean | undefined;
438
+ providesDescription?: boolean | undefined;
439
+ providesIcon?: boolean | undefined;
440
+ providesImage?: boolean | undefined;
441
+ } | undefined;
442
+ analyticsId?: string | undefined;
443
+ validationAsync?: {
444
+ url: string;
445
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
446
+ param: string;
447
+ } | undefined;
448
+ validationMessages?: Record<string, string> | undefined;
449
+ alert?: {
450
+ type: "alert";
451
+ markdown: string;
452
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
453
+ control?: string | undefined;
454
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
455
+ } | undefined;
456
+ cameraConfig?: JsonElement | undefined;
457
+ accepts?: string[] | undefined;
458
+ maxSize?: number | undefined;
459
+ source?: "camera" | "file" | undefined;
460
+ disabled?: boolean | undefined;
461
+ }, {
462
+ type: "blob";
463
+ promoted?: boolean | undefined;
464
+ $id?: string | undefined;
465
+ title?: string | undefined;
466
+ description?: string | undefined;
467
+ control?: string | undefined;
468
+ hidden?: boolean | undefined;
469
+ icon?: {
470
+ text: string;
471
+ } | {
472
+ name: string;
473
+ } | undefined;
474
+ image?: {
475
+ url: string;
538
476
  text?: string | undefined;
539
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
540
477
  accessibilityDescription?: string | undefined;
478
+ } | undefined;
479
+ keywords?: string[] | undefined;
480
+ summary?: {
481
+ providesTitle?: boolean | undefined;
482
+ providesDescription?: boolean | undefined;
483
+ providesIcon?: boolean | undefined;
484
+ providesImage?: boolean | undefined;
485
+ } | undefined;
486
+ analyticsId?: string | undefined;
487
+ validationAsync?: {
488
+ url: string;
489
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
490
+ param: string;
491
+ } | undefined;
492
+ validationMessages?: Record<string, string> | undefined;
493
+ alert?: {
494
+ type: "alert";
495
+ markdown: string;
496
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
541
497
  control?: string | undefined;
542
498
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
543
499
  } | undefined;
544
- providesTitle?: boolean | undefined;
545
- providesDescription?: boolean | undefined;
546
- providesIcon?: boolean | undefined;
547
- providesImage?: boolean | undefined;
548
- }>]>;
500
+ cameraConfig?: JsonElement | undefined;
501
+ accepts?: string[] | undefined;
502
+ maxSize?: number | undefined;
503
+ source?: "camera" | "file" | undefined;
504
+ disabled?: boolean | undefined;
505
+ }>;
506
+ export declare const constSchemaSchema: z.ZodObject<{
507
+ hidden: z.ZodOptional<z.ZodBoolean>;
508
+ alert: z.ZodOptional<z.ZodObject<{
509
+ type: z.ZodLiteral<"alert">;
510
+ markdown: z.ZodString;
511
+ 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">]>>;
512
+ control: z.ZodOptional<z.ZodString>;
513
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
514
+ }, "strip", z.ZodTypeAny, {
515
+ type: "alert";
516
+ markdown: string;
517
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
518
+ control?: string | undefined;
519
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
520
+ }, {
521
+ type: "alert";
522
+ markdown: string;
523
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
524
+ control?: string | undefined;
525
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
526
+ }>>;
527
+ control: z.ZodOptional<z.ZodString>;
528
+ promoted: z.ZodOptional<z.ZodBoolean>;
529
+ $id: z.ZodOptional<z.ZodString>;
530
+ const: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
531
+ title: z.ZodOptional<z.ZodString>;
532
+ description: z.ZodOptional<z.ZodString>;
533
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
534
+ name: z.ZodString;
535
+ }, "strip", z.ZodTypeAny, {
536
+ name: string;
537
+ }, {
538
+ name: string;
539
+ }>, z.ZodObject<{
540
+ text: z.ZodString;
541
+ }, "strip", z.ZodTypeAny, {
542
+ text: string;
543
+ }, {
544
+ text: string;
545
+ }>]>>;
546
+ image: z.ZodOptional<z.ZodObject<{
547
+ text: z.ZodOptional<z.ZodString>;
548
+ url: z.ZodString;
549
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
550
+ }, "strip", z.ZodTypeAny, {
551
+ url: string;
552
+ text?: string | undefined;
553
+ accessibilityDescription?: string | undefined;
554
+ }, {
555
+ url: string;
556
+ text?: string | undefined;
557
+ accessibilityDescription?: string | undefined;
558
+ }>>;
559
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
560
+ summary: z.ZodOptional<z.ZodObject<{
561
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
562
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
563
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
564
+ providesImage: z.ZodOptional<z.ZodBoolean>;
565
+ }, "strip", z.ZodTypeAny, {
566
+ providesTitle?: boolean | undefined;
567
+ providesDescription?: boolean | undefined;
568
+ providesIcon?: boolean | undefined;
569
+ providesImage?: boolean | undefined;
570
+ }, {
571
+ providesTitle?: boolean | undefined;
572
+ providesDescription?: boolean | undefined;
573
+ providesIcon?: boolean | undefined;
574
+ providesImage?: boolean | undefined;
575
+ }>>;
576
+ analyticsId: z.ZodOptional<z.ZodString>;
577
+ disabled: z.ZodOptional<z.ZodBoolean>;
578
+ }, "strip", z.ZodTypeAny, {
579
+ const: ((string | number | boolean | import("../next").JsonObject | import("../next").JsonArray) & (string | number | boolean | import("../next").JsonObject | import("../next").JsonArray | undefined)) | null;
580
+ hidden?: boolean | undefined;
581
+ alert?: {
582
+ type: "alert";
583
+ markdown: string;
584
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
585
+ control?: string | undefined;
586
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
587
+ } | undefined;
588
+ control?: string | undefined;
589
+ promoted?: boolean | undefined;
590
+ $id?: string | undefined;
591
+ title?: string | undefined;
592
+ description?: string | undefined;
593
+ icon?: {
594
+ text: string;
595
+ } | {
596
+ name: string;
597
+ } | undefined;
598
+ image?: {
599
+ url: string;
600
+ text?: string | undefined;
601
+ accessibilityDescription?: string | undefined;
602
+ } | undefined;
603
+ keywords?: string[] | undefined;
604
+ summary?: {
605
+ providesTitle?: boolean | undefined;
606
+ providesDescription?: boolean | undefined;
607
+ providesIcon?: boolean | undefined;
608
+ providesImage?: boolean | undefined;
609
+ } | undefined;
610
+ analyticsId?: string | undefined;
611
+ disabled?: boolean | undefined;
612
+ }, {
613
+ const: ((string | number | boolean | import("../next").JsonObject | import("../next").JsonArray) & (string | number | boolean | import("../next").JsonObject | import("../next").JsonArray | undefined)) | null;
614
+ hidden?: boolean | undefined;
615
+ alert?: {
616
+ type: "alert";
617
+ markdown: string;
618
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
619
+ control?: string | undefined;
620
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
621
+ } | undefined;
622
+ control?: string | undefined;
623
+ promoted?: boolean | undefined;
624
+ $id?: string | undefined;
625
+ title?: string | undefined;
626
+ description?: string | undefined;
627
+ icon?: {
628
+ text: string;
629
+ } | {
630
+ name: string;
631
+ } | undefined;
632
+ image?: {
633
+ url: string;
634
+ text?: string | undefined;
635
+ accessibilityDescription?: string | undefined;
636
+ } | undefined;
637
+ keywords?: string[] | undefined;
638
+ summary?: {
639
+ providesTitle?: boolean | undefined;
640
+ providesDescription?: boolean | undefined;
641
+ providesIcon?: boolean | undefined;
642
+ providesImage?: boolean | undefined;
643
+ } | undefined;
644
+ analyticsId?: string | undefined;
645
+ disabled?: boolean | undefined;
646
+ }>;
549
647
  export declare const actionSchema: z.ZodObject<{
550
648
  title: z.ZodOptional<z.ZodString>;
551
649
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -589,51 +687,88 @@ export declare const actionSchema: z.ZodObject<{
589
687
  timeout?: number | undefined;
590
688
  skipValidation?: boolean | undefined;
591
689
  }>;
592
- export declare const listLayoutItemSchema: z.ZodObject<{
593
- 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;
690
+ export declare const linkHandlerSchema: z.ZodObject<{
691
+ regexPattern: z.ZodString;
692
+ action: z.ZodObject<{
693
+ title: z.ZodOptional<z.ZodString>;
694
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
695
+ disabled: z.ZodOptional<z.ZodBoolean>;
696
+ $id: z.ZodOptional<z.ZodString>;
697
+ $ref: z.ZodOptional<z.ZodString>;
698
+ id: z.ZodOptional<z.ZodString>;
699
+ url: z.ZodOptional<z.ZodString>;
700
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
701
+ exit: z.ZodOptional<z.ZodBoolean>;
702
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
703
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
704
+ timeout: z.ZodOptional<z.ZodNumber>;
705
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
603
706
  }, "strip", z.ZodTypeAny, {
604
- text: string;
707
+ title?: string | undefined;
708
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
709
+ disabled?: boolean | undefined;
710
+ $id?: string | undefined;
711
+ $ref?: string | undefined;
712
+ id?: string | undefined;
713
+ url?: string | undefined;
714
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
715
+ exit?: boolean | undefined;
716
+ result?: JsonElement | undefined;
717
+ data?: JsonElement | undefined;
718
+ timeout?: number | undefined;
719
+ skipValidation?: boolean | undefined;
605
720
  }, {
606
- text: string;
607
- }>]>;
608
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
721
+ title?: string | undefined;
722
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
723
+ disabled?: boolean | undefined;
724
+ $id?: string | undefined;
725
+ $ref?: string | undefined;
726
+ id?: string | undefined;
727
+ url?: string | undefined;
728
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
729
+ exit?: boolean | undefined;
730
+ result?: JsonElement | undefined;
731
+ data?: JsonElement | undefined;
732
+ timeout?: number | undefined;
733
+ skipValidation?: boolean | undefined;
734
+ }>;
609
735
  }, "strip", z.ZodTypeAny, {
610
- icon: ({
611
- name: string;
612
- } | {
613
- text: string;
614
- }) & ({
615
- name: string;
616
- } | {
617
- text: string;
618
- } | undefined);
619
- title: string;
620
- description?: string | undefined;
621
- status?: "neutral" | "warning" | "positive" | undefined;
736
+ action: {
737
+ title?: string | undefined;
738
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
739
+ disabled?: boolean | undefined;
740
+ $id?: string | undefined;
741
+ $ref?: string | undefined;
742
+ id?: string | undefined;
743
+ url?: string | undefined;
744
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
745
+ exit?: boolean | undefined;
746
+ result?: JsonElement | undefined;
747
+ data?: JsonElement | undefined;
748
+ timeout?: number | undefined;
749
+ skipValidation?: boolean | undefined;
750
+ };
751
+ regexPattern: string;
622
752
  }, {
623
- icon: ({
624
- name: string;
625
- } | {
626
- text: string;
627
- }) & ({
628
- name: string;
629
- } | {
630
- text: string;
631
- } | undefined);
632
- title: string;
633
- description?: string | undefined;
634
- status?: "neutral" | "warning" | "positive" | undefined;
753
+ action: {
754
+ title?: string | undefined;
755
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
756
+ disabled?: boolean | undefined;
757
+ $id?: string | undefined;
758
+ $ref?: string | undefined;
759
+ id?: string | undefined;
760
+ url?: string | undefined;
761
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
762
+ exit?: boolean | undefined;
763
+ result?: JsonElement | undefined;
764
+ data?: JsonElement | undefined;
765
+ timeout?: number | undefined;
766
+ skipValidation?: boolean | undefined;
767
+ };
768
+ regexPattern: string;
635
769
  }>;
636
- export declare const decisionLayoutOptionSchema: z.ZodObject<{
770
+ export declare const navigationBackBehaviourSchema: z.ZodObject<{
771
+ title: z.ZodOptional<z.ZodString>;
637
772
  action: z.ZodObject<{
638
773
  title: z.ZodOptional<z.ZodString>;
639
774
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -677,47 +812,6 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
677
812
  timeout?: number | undefined;
678
813
  skipValidation?: boolean | undefined;
679
814
  }>;
680
- title: z.ZodString;
681
- description: z.ZodOptional<z.ZodString>;
682
- disabled: z.ZodOptional<z.ZodBoolean>;
683
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
684
- name: z.ZodString;
685
- }, "strip", z.ZodTypeAny, {
686
- name: string;
687
- }, {
688
- name: string;
689
- }>, z.ZodObject<{
690
- text: z.ZodString;
691
- }, "strip", z.ZodTypeAny, {
692
- text: string;
693
- }, {
694
- text: string;
695
- }>]>>;
696
- image: z.ZodOptional<z.ZodObject<{
697
- type: z.ZodLiteral<"image">;
698
- text: z.ZodOptional<z.ZodString>;
699
- url: z.ZodString;
700
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
701
- accessibilityDescription: z.ZodOptional<z.ZodString>;
702
- control: z.ZodOptional<z.ZodString>;
703
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
704
- }, "strip", z.ZodTypeAny, {
705
- url: string;
706
- type: "image";
707
- text?: string | undefined;
708
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
709
- accessibilityDescription?: string | undefined;
710
- control?: string | undefined;
711
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
712
- }, {
713
- url: string;
714
- type: "image";
715
- text?: string | undefined;
716
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
717
- accessibilityDescription?: string | undefined;
718
- control?: string | undefined;
719
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
720
- }>>;
721
815
  }, "strip", z.ZodTypeAny, {
722
816
  action: {
723
817
  title?: string | undefined;
@@ -734,23 +828,7 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
734
828
  timeout?: number | undefined;
735
829
  skipValidation?: boolean | undefined;
736
830
  };
737
- title: string;
738
- description?: string | undefined;
739
- disabled?: boolean | undefined;
740
- icon?: {
741
- name: string;
742
- } | {
743
- text: string;
744
- } | undefined;
745
- image?: {
746
- url: string;
747
- type: "image";
748
- text?: string | undefined;
749
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
750
- accessibilityDescription?: string | undefined;
751
- control?: string | undefined;
752
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
753
- } | undefined;
831
+ title?: string | undefined;
754
832
  }, {
755
833
  action: {
756
834
  title?: string | undefined;
@@ -767,106 +845,9 @@ export declare const decisionLayoutOptionSchema: z.ZodObject<{
767
845
  timeout?: number | undefined;
768
846
  skipValidation?: boolean | undefined;
769
847
  };
770
- title: string;
771
- description?: string | undefined;
772
- disabled?: boolean | undefined;
773
- icon?: {
774
- name: string;
775
- } | {
776
- text: string;
777
- } | undefined;
778
- image?: {
779
- url: string;
780
- type: "image";
781
- text?: string | undefined;
782
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
783
- accessibilityDescription?: string | undefined;
784
- control?: string | undefined;
785
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
786
- } | undefined;
787
- }>;
788
- export declare const statusListLayoutItemSchema: z.ZodObject<{
789
- title: z.ZodString;
790
- description: z.ZodOptional<z.ZodString>;
791
- icon: z.ZodUnion<[z.ZodObject<{
792
- name: z.ZodString;
793
- }, "strip", z.ZodTypeAny, {
794
- name: string;
795
- }, {
796
- name: string;
797
- }>, z.ZodObject<{
798
- text: z.ZodString;
799
- }, "strip", z.ZodTypeAny, {
800
- text: string;
801
- }, {
802
- text: string;
803
- }>]>;
804
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
805
- }, "strip", z.ZodTypeAny, {
806
- icon: ({
807
- name: string;
808
- } | {
809
- text: string;
810
- }) & ({
811
- name: string;
812
- } | {
813
- text: string;
814
- } | undefined);
815
- title: string;
816
- description?: string | undefined;
817
- status?: "done" | "not-done" | "pending" | undefined;
818
- }, {
819
- icon: ({
820
- name: string;
821
- } | {
822
- text: string;
823
- }) & ({
824
- name: string;
825
- } | {
826
- text: string;
827
- } | undefined);
828
- title: string;
829
- description?: string | undefined;
830
- status?: "done" | "not-done" | "pending" | undefined;
831
- }>;
832
- export declare const instructionsLayoutSchema: z.ZodObject<{
833
- type: z.ZodLiteral<"instructions">;
834
- title: z.ZodOptional<z.ZodString>;
835
- items: z.ZodArray<z.ZodObject<{
836
- text: z.ZodString;
837
- 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">]>;
838
- }, "strip", z.ZodTypeAny, {
839
- text: string;
840
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
841
- }, {
842
- text: string;
843
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
844
- }>, "many">;
845
- control: z.ZodOptional<z.ZodString>;
846
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
847
- }, "strip", z.ZodTypeAny, {
848
- type: "instructions";
849
- items: {
850
- text: string;
851
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
852
- }[];
853
- title?: string | undefined;
854
- control?: string | undefined;
855
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
856
- }, {
857
- type: "instructions";
858
- items: {
859
- text: string;
860
- context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
861
- }[];
862
848
  title?: string | undefined;
863
- control?: string | undefined;
864
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
865
849
  }>;
866
- export declare const buttonLayoutSchema: z.ZodObject<{
867
- type: z.ZodLiteral<"button">;
868
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
869
- title: z.ZodOptional<z.ZodString>;
850
+ export declare const pollingOnErrorSchema: z.ZodObject<{
870
851
  action: z.ZodObject<{
871
852
  title: z.ZodOptional<z.ZodString>;
872
853
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -910,11 +891,6 @@ export declare const buttonLayoutSchema: z.ZodObject<{
910
891
  timeout?: number | undefined;
911
892
  skipValidation?: boolean | undefined;
912
893
  }>;
913
- 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">]>>;
914
- disabled: z.ZodOptional<z.ZodBoolean>;
915
- pinOrder: z.ZodOptional<z.ZodNumber>;
916
- control: z.ZodOptional<z.ZodString>;
917
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
918
894
  }, "strip", z.ZodTypeAny, {
919
895
  action: {
920
896
  title?: string | undefined;
@@ -931,14 +907,6 @@ export declare const buttonLayoutSchema: z.ZodObject<{
931
907
  timeout?: number | undefined;
932
908
  skipValidation?: boolean | undefined;
933
909
  };
934
- type: "button";
935
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
936
- title?: string | undefined;
937
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
938
- disabled?: boolean | undefined;
939
- pinOrder?: number | undefined;
940
- control?: string | undefined;
941
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
942
910
  }, {
943
911
  action: {
944
912
  title?: string | undefined;
@@ -955,149 +923,79 @@ export declare const buttonLayoutSchema: z.ZodObject<{
955
923
  timeout?: number | undefined;
956
924
  skipValidation?: boolean | undefined;
957
925
  };
958
- type: "button";
959
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
960
- title?: string | undefined;
961
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
962
- disabled?: boolean | undefined;
963
- pinOrder?: number | undefined;
964
- control?: string | undefined;
965
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
966
926
  }>;
967
- export declare const reviewLayoutFieldSchema: z.ZodObject<{
968
- label: z.ZodString;
969
- value: z.ZodString;
970
- help: z.ZodOptional<z.ZodObject<{
971
- markdown: z.ZodString;
972
- }, "strip", z.ZodTypeAny, {
973
- markdown: string;
974
- }, {
975
- markdown: string;
976
- }>>;
927
+ export declare const imageLayoutSchema: z.ZodObject<{
928
+ type: z.ZodLiteral<"image">;
929
+ text: z.ZodOptional<z.ZodString>;
930
+ url: z.ZodString;
931
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
932
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
933
+ control: z.ZodOptional<z.ZodString>;
934
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
977
935
  }, "strip", z.ZodTypeAny, {
978
- value: string;
979
- label: string;
980
- help?: {
981
- markdown: string;
982
- } | undefined;
936
+ url: string;
937
+ type: "image";
938
+ text?: string | undefined;
939
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
940
+ accessibilityDescription?: string | undefined;
941
+ control?: string | undefined;
942
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
983
943
  }, {
984
- value: string;
985
- label: string;
986
- help?: {
987
- markdown: string;
988
- } | undefined;
944
+ url: string;
945
+ type: "image";
946
+ text?: string | undefined;
947
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
948
+ accessibilityDescription?: string | undefined;
949
+ control?: string | undefined;
950
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
989
951
  }>;
990
- export declare const searchResultSearchSchema: z.ZodObject<{
991
- type: z.ZodLiteral<"search">;
992
- title: z.ZodString;
993
- description: z.ZodOptional<z.ZodString>;
994
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
995
- name: z.ZodString;
996
- }, "strip", z.ZodTypeAny, {
997
- name: string;
998
- }, {
999
- name: string;
1000
- }>, z.ZodObject<{
1001
- text: z.ZodString;
1002
- }, "strip", z.ZodTypeAny, {
1003
- text: string;
1004
- }, {
1005
- text: string;
1006
- }>]>>;
1007
- image: z.ZodOptional<z.ZodObject<{
1008
- type: z.ZodLiteral<"image">;
1009
- text: z.ZodOptional<z.ZodString>;
1010
- url: z.ZodString;
1011
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1012
- accessibilityDescription: z.ZodOptional<z.ZodString>;
1013
- control: z.ZodOptional<z.ZodString>;
1014
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1015
- }, "strip", z.ZodTypeAny, {
1016
- url: string;
1017
- type: "image";
1018
- text?: string | undefined;
1019
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1020
- accessibilityDescription?: string | undefined;
1021
- control?: string | undefined;
1022
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1023
- }, {
1024
- url: string;
1025
- type: "image";
1026
- text?: string | undefined;
1027
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1028
- accessibilityDescription?: string | undefined;
1029
- control?: string | undefined;
1030
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1031
- }>>;
1032
- value: z.ZodObject<{
1033
- url: z.ZodString;
1034
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
1035
- param: z.ZodString;
1036
- query: z.ZodString;
952
+ export declare const decisionLayoutOptionSchema: z.ZodObject<{
953
+ action: z.ZodObject<{
954
+ title: z.ZodOptional<z.ZodString>;
955
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
956
+ disabled: z.ZodOptional<z.ZodBoolean>;
957
+ $id: z.ZodOptional<z.ZodString>;
958
+ $ref: z.ZodOptional<z.ZodString>;
959
+ id: z.ZodOptional<z.ZodString>;
960
+ url: z.ZodOptional<z.ZodString>;
961
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
962
+ exit: z.ZodOptional<z.ZodBoolean>;
963
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
964
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
965
+ timeout: z.ZodOptional<z.ZodNumber>;
966
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1037
967
  }, "strip", z.ZodTypeAny, {
1038
- url: string;
1039
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1040
- param: string;
1041
- query: string;
968
+ title?: string | undefined;
969
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
970
+ disabled?: boolean | undefined;
971
+ $id?: string | undefined;
972
+ $ref?: string | undefined;
973
+ id?: string | undefined;
974
+ url?: string | undefined;
975
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
976
+ exit?: boolean | undefined;
977
+ result?: JsonElement | undefined;
978
+ data?: JsonElement | undefined;
979
+ timeout?: number | undefined;
980
+ skipValidation?: boolean | undefined;
1042
981
  }, {
1043
- url: string;
1044
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1045
- param: string;
1046
- query: string;
982
+ title?: string | undefined;
983
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
984
+ disabled?: boolean | undefined;
985
+ $id?: string | undefined;
986
+ $ref?: string | undefined;
987
+ id?: string | undefined;
988
+ url?: string | undefined;
989
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
990
+ exit?: boolean | undefined;
991
+ result?: JsonElement | undefined;
992
+ data?: JsonElement | undefined;
993
+ timeout?: number | undefined;
994
+ skipValidation?: boolean | undefined;
1047
995
  }>;
1048
- }, "strip", z.ZodTypeAny, {
1049
- type: "search";
1050
- title: string;
1051
- value: {
1052
- url: string;
1053
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1054
- param: string;
1055
- query: string;
1056
- };
1057
- description?: string | undefined;
1058
- icon?: {
1059
- name: string;
1060
- } | {
1061
- text: string;
1062
- } | undefined;
1063
- image?: {
1064
- url: string;
1065
- type: "image";
1066
- text?: string | undefined;
1067
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1068
- accessibilityDescription?: string | undefined;
1069
- control?: string | undefined;
1070
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1071
- } | undefined;
1072
- }, {
1073
- type: "search";
1074
- title: string;
1075
- value: {
1076
- url: string;
1077
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1078
- param: string;
1079
- query: string;
1080
- };
1081
- description?: string | undefined;
1082
- icon?: {
1083
- name: string;
1084
- } | {
1085
- text: string;
1086
- } | undefined;
1087
- image?: {
1088
- url: string;
1089
- type: "image";
1090
- text?: string | undefined;
1091
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1092
- accessibilityDescription?: string | undefined;
1093
- control?: string | undefined;
1094
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1095
- } | undefined;
1096
- }>;
1097
- export declare const searchResultActionSchema: z.ZodObject<{
1098
- type: z.ZodLiteral<"action">;
1099
996
  title: z.ZodString;
1100
997
  description: z.ZodOptional<z.ZodString>;
998
+ disabled: z.ZodOptional<z.ZodBoolean>;
1101
999
  icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1102
1000
  name: z.ZodString;
1103
1001
  }, "strip", z.ZodTypeAny, {
@@ -1136,53 +1034,8 @@ export declare const searchResultActionSchema: z.ZodObject<{
1136
1034
  control?: string | undefined;
1137
1035
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1138
1036
  }>>;
1139
- value: z.ZodObject<{
1140
- title: z.ZodOptional<z.ZodString>;
1141
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1142
- disabled: z.ZodOptional<z.ZodBoolean>;
1143
- $id: z.ZodOptional<z.ZodString>;
1144
- $ref: z.ZodOptional<z.ZodString>;
1145
- id: z.ZodOptional<z.ZodString>;
1146
- url: z.ZodOptional<z.ZodString>;
1147
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1148
- exit: z.ZodOptional<z.ZodBoolean>;
1149
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1150
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1151
- timeout: z.ZodOptional<z.ZodNumber>;
1152
- skipValidation: z.ZodOptional<z.ZodBoolean>;
1153
- }, "strip", z.ZodTypeAny, {
1154
- title?: string | undefined;
1155
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1156
- disabled?: boolean | undefined;
1157
- $id?: string | undefined;
1158
- $ref?: string | undefined;
1159
- id?: string | undefined;
1160
- url?: string | undefined;
1161
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1162
- exit?: boolean | undefined;
1163
- result?: JsonElement | undefined;
1164
- data?: JsonElement | undefined;
1165
- timeout?: number | undefined;
1166
- skipValidation?: boolean | undefined;
1167
- }, {
1168
- title?: string | undefined;
1169
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1170
- disabled?: boolean | undefined;
1171
- $id?: string | undefined;
1172
- $ref?: string | undefined;
1173
- id?: string | undefined;
1174
- url?: string | undefined;
1175
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1176
- exit?: boolean | undefined;
1177
- result?: JsonElement | undefined;
1178
- data?: JsonElement | undefined;
1179
- timeout?: number | undefined;
1180
- skipValidation?: boolean | undefined;
1181
- }>;
1182
1037
  }, "strip", z.ZodTypeAny, {
1183
- type: "action";
1184
- title: string;
1185
- value: {
1038
+ action: {
1186
1039
  title?: string | undefined;
1187
1040
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1188
1041
  disabled?: boolean | undefined;
@@ -1197,11 +1050,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
1197
1050
  timeout?: number | undefined;
1198
1051
  skipValidation?: boolean | undefined;
1199
1052
  };
1053
+ title: string;
1200
1054
  description?: string | undefined;
1055
+ disabled?: boolean | undefined;
1201
1056
  icon?: {
1202
- name: string;
1203
- } | {
1204
1057
  text: string;
1058
+ } | {
1059
+ name: string;
1205
1060
  } | undefined;
1206
1061
  image?: {
1207
1062
  url: string;
@@ -1213,9 +1068,7 @@ export declare const searchResultActionSchema: z.ZodObject<{
1213
1068
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1214
1069
  } | undefined;
1215
1070
  }, {
1216
- type: "action";
1217
- title: string;
1218
- value: {
1071
+ action: {
1219
1072
  title?: string | undefined;
1220
1073
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1221
1074
  disabled?: boolean | undefined;
@@ -1230,11 +1083,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
1230
1083
  timeout?: number | undefined;
1231
1084
  skipValidation?: boolean | undefined;
1232
1085
  };
1086
+ title: string;
1233
1087
  description?: string | undefined;
1088
+ disabled?: boolean | undefined;
1234
1089
  icon?: {
1235
- name: string;
1236
- } | {
1237
1090
  text: string;
1091
+ } | {
1092
+ name: string;
1238
1093
  } | undefined;
1239
1094
  image?: {
1240
1095
  url: string;
@@ -1246,11 +1101,184 @@ export declare const searchResultActionSchema: z.ZodObject<{
1246
1101
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1247
1102
  } | undefined;
1248
1103
  }>;
1249
- export declare const actionResponseBodySchema: z.ZodObject<{
1250
- action: z.ZodObject<{
1251
- title: z.ZodOptional<z.ZodString>;
1252
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1253
- disabled: z.ZodOptional<z.ZodBoolean>;
1104
+ export declare const listLayoutItemSchema: z.ZodObject<{
1105
+ title: z.ZodString;
1106
+ description: z.ZodOptional<z.ZodString>;
1107
+ icon: z.ZodUnion<[z.ZodObject<{
1108
+ name: z.ZodString;
1109
+ }, "strip", z.ZodTypeAny, {
1110
+ name: string;
1111
+ }, {
1112
+ name: string;
1113
+ }>, z.ZodObject<{
1114
+ text: z.ZodString;
1115
+ }, "strip", z.ZodTypeAny, {
1116
+ text: string;
1117
+ }, {
1118
+ text: string;
1119
+ }>]>;
1120
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
1121
+ }, "strip", z.ZodTypeAny, {
1122
+ icon: ({
1123
+ text: string;
1124
+ } | {
1125
+ name: string;
1126
+ }) & ({
1127
+ text: string;
1128
+ } | {
1129
+ name: string;
1130
+ } | undefined);
1131
+ title: string;
1132
+ description?: string | undefined;
1133
+ status?: "neutral" | "warning" | "positive" | undefined;
1134
+ }, {
1135
+ icon: ({
1136
+ text: string;
1137
+ } | {
1138
+ name: string;
1139
+ }) & ({
1140
+ text: string;
1141
+ } | {
1142
+ name: string;
1143
+ } | undefined);
1144
+ title: string;
1145
+ description?: string | undefined;
1146
+ status?: "neutral" | "warning" | "positive" | undefined;
1147
+ }>;
1148
+ export declare const statusListLayoutItemSchema: z.ZodObject<{
1149
+ title: z.ZodString;
1150
+ description: z.ZodOptional<z.ZodString>;
1151
+ icon: z.ZodUnion<[z.ZodObject<{
1152
+ name: z.ZodString;
1153
+ }, "strip", z.ZodTypeAny, {
1154
+ name: string;
1155
+ }, {
1156
+ name: string;
1157
+ }>, z.ZodObject<{
1158
+ text: z.ZodString;
1159
+ }, "strip", z.ZodTypeAny, {
1160
+ text: string;
1161
+ }, {
1162
+ text: string;
1163
+ }>]>;
1164
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
1165
+ }, "strip", z.ZodTypeAny, {
1166
+ icon: ({
1167
+ text: string;
1168
+ } | {
1169
+ name: string;
1170
+ }) & ({
1171
+ text: string;
1172
+ } | {
1173
+ name: string;
1174
+ } | undefined);
1175
+ title: string;
1176
+ description?: string | undefined;
1177
+ status?: "done" | "not-done" | "pending" | undefined;
1178
+ }, {
1179
+ icon: ({
1180
+ text: string;
1181
+ } | {
1182
+ name: string;
1183
+ }) & ({
1184
+ text: string;
1185
+ } | {
1186
+ name: string;
1187
+ } | undefined);
1188
+ title: string;
1189
+ description?: string | undefined;
1190
+ status?: "done" | "not-done" | "pending" | undefined;
1191
+ }>;
1192
+ export declare const formLayoutSchema: z.ZodObject<{
1193
+ type: z.ZodLiteral<"form">;
1194
+ schema: z.ZodOptional<z.ZodObject<{
1195
+ $ref: z.ZodString;
1196
+ }, "strip", z.ZodTypeAny, {
1197
+ $ref: string;
1198
+ }, {
1199
+ $ref: string;
1200
+ }>>;
1201
+ schemaId: z.ZodString;
1202
+ control: z.ZodOptional<z.ZodString>;
1203
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1204
+ }, "strip", z.ZodTypeAny, {
1205
+ type: "form";
1206
+ schemaId: string;
1207
+ schema?: {
1208
+ $ref: string;
1209
+ } | undefined;
1210
+ control?: string | undefined;
1211
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1212
+ }, {
1213
+ type: "form";
1214
+ schemaId: string;
1215
+ schema?: {
1216
+ $ref: string;
1217
+ } | undefined;
1218
+ control?: string | undefined;
1219
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1220
+ }>;
1221
+ export declare const instructionsLayoutSchema: z.ZodObject<{
1222
+ type: z.ZodLiteral<"instructions">;
1223
+ title: z.ZodOptional<z.ZodString>;
1224
+ items: z.ZodArray<z.ZodObject<{
1225
+ text: z.ZodString;
1226
+ 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">]>;
1227
+ }, "strip", z.ZodTypeAny, {
1228
+ text: string;
1229
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1230
+ }, {
1231
+ text: string;
1232
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1233
+ }>, "many">;
1234
+ control: z.ZodOptional<z.ZodString>;
1235
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1236
+ }, "strip", z.ZodTypeAny, {
1237
+ type: "instructions";
1238
+ items: {
1239
+ text: string;
1240
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1241
+ }[];
1242
+ title?: string | undefined;
1243
+ control?: string | undefined;
1244
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1245
+ }, {
1246
+ type: "instructions";
1247
+ items: {
1248
+ text: string;
1249
+ context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
1250
+ }[];
1251
+ title?: string | undefined;
1252
+ control?: string | undefined;
1253
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1254
+ }>;
1255
+ export declare const infoLayoutSchema: z.ZodObject<{
1256
+ type: z.ZodLiteral<"info">;
1257
+ markdown: z.ZodString;
1258
+ align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
1259
+ control: z.ZodOptional<z.ZodString>;
1260
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1261
+ }, "strip", z.ZodTypeAny, {
1262
+ type: "info";
1263
+ markdown: string;
1264
+ align?: "left" | "right" | "center" | undefined;
1265
+ control?: string | undefined;
1266
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1267
+ }, {
1268
+ type: "info";
1269
+ markdown: string;
1270
+ align?: "left" | "right" | "center" | undefined;
1271
+ control?: string | undefined;
1272
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1273
+ }>;
1274
+ export declare const buttonLayoutSchema: z.ZodObject<{
1275
+ type: z.ZodLiteral<"button">;
1276
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1277
+ title: z.ZodOptional<z.ZodString>;
1278
+ action: z.ZodObject<{
1279
+ title: z.ZodOptional<z.ZodString>;
1280
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1281
+ disabled: z.ZodOptional<z.ZodBoolean>;
1254
1282
  $id: z.ZodOptional<z.ZodString>;
1255
1283
  $ref: z.ZodOptional<z.ZodString>;
1256
1284
  id: z.ZodOptional<z.ZodString>;
@@ -1290,6 +1318,11 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1290
1318
  timeout?: number | undefined;
1291
1319
  skipValidation?: boolean | undefined;
1292
1320
  }>;
1321
+ 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">]>>;
1322
+ disabled: z.ZodOptional<z.ZodBoolean>;
1323
+ pinOrder: z.ZodOptional<z.ZodNumber>;
1324
+ control: z.ZodOptional<z.ZodString>;
1325
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1293
1326
  }, "strip", z.ZodTypeAny, {
1294
1327
  action: {
1295
1328
  title?: string | undefined;
@@ -1306,6 +1339,14 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1306
1339
  timeout?: number | undefined;
1307
1340
  skipValidation?: boolean | undefined;
1308
1341
  };
1342
+ type: "button";
1343
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1344
+ title?: string | undefined;
1345
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1346
+ disabled?: boolean | undefined;
1347
+ pinOrder?: number | undefined;
1348
+ control?: string | undefined;
1349
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1309
1350
  }, {
1310
1351
  action: {
1311
1352
  title?: string | undefined;
@@ -1322,28 +1363,17 @@ export declare const actionResponseBodySchema: z.ZodObject<{
1322
1363
  timeout?: number | undefined;
1323
1364
  skipValidation?: boolean | undefined;
1324
1365
  };
1366
+ type: "button";
1367
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1368
+ title?: string | undefined;
1369
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1370
+ disabled?: boolean | undefined;
1371
+ pinOrder?: number | undefined;
1372
+ control?: string | undefined;
1373
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1325
1374
  }>;
1326
- export declare const errorResponseBodySchema: z.ZodObject<{
1327
- refreshFormUrl: z.ZodOptional<z.ZodString>;
1328
- analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1329
- error: z.ZodOptional<z.ZodString>;
1330
- validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1331
- refreshUrl: z.ZodOptional<z.ZodString>;
1332
- }, "strip", z.ZodTypeAny, {
1333
- refreshFormUrl?: string | undefined;
1334
- analytics?: Record<string, string> | undefined;
1335
- error?: string | undefined;
1336
- validation?: JsonElement | undefined;
1337
- refreshUrl?: string | undefined;
1338
- }, {
1339
- refreshFormUrl?: string | undefined;
1340
- analytics?: Record<string, string> | undefined;
1341
- error?: string | undefined;
1342
- validation?: JsonElement | undefined;
1343
- refreshUrl?: string | undefined;
1344
- }>;
1345
- export declare const linkHandlerSchema: z.ZodObject<{
1346
- regexPattern: z.ZodString;
1375
+ export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
1376
+ title: z.ZodString;
1347
1377
  action: z.ZodObject<{
1348
1378
  title: z.ZodOptional<z.ZodString>;
1349
1379
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1403,7 +1433,7 @@ export declare const linkHandlerSchema: z.ZodObject<{
1403
1433
  timeout?: number | undefined;
1404
1434
  skipValidation?: boolean | undefined;
1405
1435
  };
1406
- regexPattern: string;
1436
+ title: string;
1407
1437
  }, {
1408
1438
  action: {
1409
1439
  title?: string | undefined;
@@ -1420,22 +1450,263 @@ export declare const linkHandlerSchema: z.ZodObject<{
1420
1450
  timeout?: number | undefined;
1421
1451
  skipValidation?: boolean | undefined;
1422
1452
  };
1423
- regexPattern: string;
1453
+ title: string;
1424
1454
  }>;
1425
- export declare const blobSchemaSchema: z.ZodObject<{
1426
- type: z.ZodLiteral<"blob">;
1427
- promoted: z.ZodOptional<z.ZodBoolean>;
1428
- $id: z.ZodOptional<z.ZodString>;
1429
- title: z.ZodOptional<z.ZodString>;
1430
- description: z.ZodOptional<z.ZodString>;
1431
- control: z.ZodOptional<z.ZodString>;
1432
- hidden: z.ZodOptional<z.ZodBoolean>;
1433
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1434
- name: z.ZodString;
1455
+ export declare const reviewLayoutSchema: z.ZodObject<{
1456
+ type: z.ZodLiteral<"review">;
1457
+ orientation: z.ZodOptional<z.ZodString>;
1458
+ action: z.ZodOptional<z.ZodObject<{
1459
+ title: z.ZodOptional<z.ZodString>;
1460
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1461
+ disabled: z.ZodOptional<z.ZodBoolean>;
1462
+ $id: z.ZodOptional<z.ZodString>;
1463
+ $ref: z.ZodOptional<z.ZodString>;
1464
+ id: z.ZodOptional<z.ZodString>;
1465
+ url: z.ZodOptional<z.ZodString>;
1466
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1467
+ exit: z.ZodOptional<z.ZodBoolean>;
1468
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1469
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1470
+ timeout: z.ZodOptional<z.ZodNumber>;
1471
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1435
1472
  }, "strip", z.ZodTypeAny, {
1436
- name: string;
1437
- }, {
1438
- name: string;
1473
+ title?: string | undefined;
1474
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1475
+ disabled?: boolean | undefined;
1476
+ $id?: string | undefined;
1477
+ $ref?: string | undefined;
1478
+ id?: string | undefined;
1479
+ url?: string | undefined;
1480
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1481
+ exit?: boolean | undefined;
1482
+ result?: JsonElement | undefined;
1483
+ data?: JsonElement | undefined;
1484
+ timeout?: number | undefined;
1485
+ skipValidation?: boolean | undefined;
1486
+ }, {
1487
+ title?: string | undefined;
1488
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1489
+ disabled?: boolean | undefined;
1490
+ $id?: string | undefined;
1491
+ $ref?: string | undefined;
1492
+ id?: string | undefined;
1493
+ url?: string | undefined;
1494
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1495
+ exit?: boolean | undefined;
1496
+ result?: JsonElement | undefined;
1497
+ data?: JsonElement | undefined;
1498
+ timeout?: number | undefined;
1499
+ skipValidation?: boolean | undefined;
1500
+ }>>;
1501
+ fields: z.ZodArray<z.ZodObject<{
1502
+ label: z.ZodString;
1503
+ value: z.ZodString;
1504
+ help: z.ZodOptional<z.ZodObject<{
1505
+ markdown: z.ZodString;
1506
+ }, "strip", z.ZodTypeAny, {
1507
+ markdown: string;
1508
+ }, {
1509
+ markdown: string;
1510
+ }>>;
1511
+ }, "strip", z.ZodTypeAny, {
1512
+ value: string;
1513
+ label: string;
1514
+ help?: {
1515
+ markdown: string;
1516
+ } | undefined;
1517
+ }, {
1518
+ value: string;
1519
+ label: string;
1520
+ help?: {
1521
+ markdown: string;
1522
+ } | undefined;
1523
+ }>, "many">;
1524
+ title: z.ZodOptional<z.ZodString>;
1525
+ callToAction: z.ZodOptional<z.ZodObject<{
1526
+ title: z.ZodString;
1527
+ action: z.ZodObject<{
1528
+ title: z.ZodOptional<z.ZodString>;
1529
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1530
+ disabled: z.ZodOptional<z.ZodBoolean>;
1531
+ $id: z.ZodOptional<z.ZodString>;
1532
+ $ref: z.ZodOptional<z.ZodString>;
1533
+ id: z.ZodOptional<z.ZodString>;
1534
+ url: z.ZodOptional<z.ZodString>;
1535
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1536
+ exit: z.ZodOptional<z.ZodBoolean>;
1537
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1538
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1539
+ timeout: z.ZodOptional<z.ZodNumber>;
1540
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1541
+ }, "strip", z.ZodTypeAny, {
1542
+ title?: string | undefined;
1543
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1544
+ disabled?: boolean | undefined;
1545
+ $id?: string | undefined;
1546
+ $ref?: string | undefined;
1547
+ id?: string | undefined;
1548
+ url?: string | undefined;
1549
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1550
+ exit?: boolean | undefined;
1551
+ result?: JsonElement | undefined;
1552
+ data?: JsonElement | undefined;
1553
+ timeout?: number | undefined;
1554
+ skipValidation?: boolean | undefined;
1555
+ }, {
1556
+ title?: string | undefined;
1557
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1558
+ disabled?: boolean | undefined;
1559
+ $id?: string | undefined;
1560
+ $ref?: string | undefined;
1561
+ id?: string | undefined;
1562
+ url?: string | undefined;
1563
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1564
+ exit?: boolean | undefined;
1565
+ result?: JsonElement | undefined;
1566
+ data?: JsonElement | undefined;
1567
+ timeout?: number | undefined;
1568
+ skipValidation?: boolean | undefined;
1569
+ }>;
1570
+ }, "strip", z.ZodTypeAny, {
1571
+ action: {
1572
+ title?: string | undefined;
1573
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1574
+ disabled?: boolean | undefined;
1575
+ $id?: string | undefined;
1576
+ $ref?: string | undefined;
1577
+ id?: string | undefined;
1578
+ url?: string | undefined;
1579
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1580
+ exit?: boolean | undefined;
1581
+ result?: JsonElement | undefined;
1582
+ data?: JsonElement | undefined;
1583
+ timeout?: number | undefined;
1584
+ skipValidation?: boolean | undefined;
1585
+ };
1586
+ title: string;
1587
+ }, {
1588
+ action: {
1589
+ title?: string | undefined;
1590
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1591
+ disabled?: boolean | undefined;
1592
+ $id?: string | undefined;
1593
+ $ref?: string | undefined;
1594
+ id?: string | undefined;
1595
+ url?: string | undefined;
1596
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1597
+ exit?: boolean | undefined;
1598
+ result?: JsonElement | undefined;
1599
+ data?: JsonElement | undefined;
1600
+ timeout?: number | undefined;
1601
+ skipValidation?: boolean | undefined;
1602
+ };
1603
+ title: string;
1604
+ }>>;
1605
+ control: z.ZodOptional<z.ZodString>;
1606
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1607
+ }, "strip", z.ZodTypeAny, {
1608
+ type: "review";
1609
+ fields: {
1610
+ value: string;
1611
+ label: string;
1612
+ help?: {
1613
+ markdown: string;
1614
+ } | undefined;
1615
+ }[];
1616
+ orientation?: string | undefined;
1617
+ action?: {
1618
+ title?: string | undefined;
1619
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1620
+ disabled?: boolean | undefined;
1621
+ $id?: string | undefined;
1622
+ $ref?: string | undefined;
1623
+ id?: string | undefined;
1624
+ url?: string | undefined;
1625
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1626
+ exit?: boolean | undefined;
1627
+ result?: JsonElement | undefined;
1628
+ data?: JsonElement | undefined;
1629
+ timeout?: number | undefined;
1630
+ skipValidation?: boolean | undefined;
1631
+ } | undefined;
1632
+ title?: string | undefined;
1633
+ callToAction?: {
1634
+ action: {
1635
+ title?: string | undefined;
1636
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1637
+ disabled?: boolean | undefined;
1638
+ $id?: string | undefined;
1639
+ $ref?: string | undefined;
1640
+ id?: string | undefined;
1641
+ url?: string | undefined;
1642
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1643
+ exit?: boolean | undefined;
1644
+ result?: JsonElement | undefined;
1645
+ data?: JsonElement | undefined;
1646
+ timeout?: number | undefined;
1647
+ skipValidation?: boolean | undefined;
1648
+ };
1649
+ title: string;
1650
+ } | undefined;
1651
+ control?: string | undefined;
1652
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1653
+ }, {
1654
+ type: "review";
1655
+ fields: {
1656
+ value: string;
1657
+ label: string;
1658
+ help?: {
1659
+ markdown: string;
1660
+ } | undefined;
1661
+ }[];
1662
+ orientation?: string | undefined;
1663
+ action?: {
1664
+ title?: string | undefined;
1665
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1666
+ disabled?: boolean | undefined;
1667
+ $id?: string | undefined;
1668
+ $ref?: string | undefined;
1669
+ id?: string | undefined;
1670
+ url?: string | undefined;
1671
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1672
+ exit?: boolean | undefined;
1673
+ result?: JsonElement | undefined;
1674
+ data?: JsonElement | undefined;
1675
+ timeout?: number | undefined;
1676
+ skipValidation?: boolean | undefined;
1677
+ } | undefined;
1678
+ title?: string | undefined;
1679
+ callToAction?: {
1680
+ action: {
1681
+ title?: string | undefined;
1682
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1683
+ disabled?: boolean | undefined;
1684
+ $id?: string | undefined;
1685
+ $ref?: string | undefined;
1686
+ id?: string | undefined;
1687
+ url?: string | undefined;
1688
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1689
+ exit?: boolean | undefined;
1690
+ result?: JsonElement | undefined;
1691
+ data?: JsonElement | undefined;
1692
+ timeout?: number | undefined;
1693
+ skipValidation?: boolean | undefined;
1694
+ };
1695
+ title: string;
1696
+ } | undefined;
1697
+ control?: string | undefined;
1698
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1699
+ }>;
1700
+ export declare const searchResultActionSchema: z.ZodObject<{
1701
+ type: z.ZodLiteral<"action">;
1702
+ title: z.ZodString;
1703
+ description: z.ZodOptional<z.ZodString>;
1704
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1705
+ name: z.ZodString;
1706
+ }, "strip", z.ZodTypeAny, {
1707
+ name: string;
1708
+ }, {
1709
+ name: string;
1439
1710
  }>, z.ZodObject<{
1440
1711
  text: z.ZodString;
1441
1712
  }, "strip", z.ZodTypeAny, {
@@ -1444,189 +1715,143 @@ export declare const blobSchemaSchema: z.ZodObject<{
1444
1715
  text: string;
1445
1716
  }>]>>;
1446
1717
  image: z.ZodOptional<z.ZodObject<{
1718
+ type: z.ZodLiteral<"image">;
1447
1719
  text: z.ZodOptional<z.ZodString>;
1448
1720
  url: z.ZodString;
1721
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1449
1722
  accessibilityDescription: z.ZodOptional<z.ZodString>;
1723
+ control: z.ZodOptional<z.ZodString>;
1724
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1450
1725
  }, "strip", z.ZodTypeAny, {
1451
1726
  url: string;
1727
+ type: "image";
1452
1728
  text?: string | undefined;
1729
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1453
1730
  accessibilityDescription?: string | undefined;
1731
+ control?: string | undefined;
1732
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1454
1733
  }, {
1455
1734
  url: string;
1735
+ type: "image";
1456
1736
  text?: string | undefined;
1737
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1457
1738
  accessibilityDescription?: string | undefined;
1739
+ control?: string | undefined;
1740
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1458
1741
  }>>;
1459
- keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1460
- summary: z.ZodOptional<z.ZodObject<{
1461
- providesTitle: z.ZodOptional<z.ZodBoolean>;
1462
- providesDescription: z.ZodOptional<z.ZodBoolean>;
1463
- providesIcon: z.ZodOptional<z.ZodBoolean>;
1464
- providesImage: z.ZodOptional<z.ZodBoolean>;
1465
- }, "strip", z.ZodTypeAny, {
1466
- providesTitle?: boolean | undefined;
1467
- providesDescription?: boolean | undefined;
1468
- providesIcon?: boolean | undefined;
1469
- providesImage?: boolean | undefined;
1470
- }, {
1471
- providesTitle?: boolean | undefined;
1472
- providesDescription?: boolean | undefined;
1473
- providesIcon?: boolean | undefined;
1474
- providesImage?: boolean | undefined;
1475
- }>>;
1476
- analyticsId: z.ZodOptional<z.ZodString>;
1477
- validationAsync: z.ZodOptional<z.ZodObject<{
1478
- param: z.ZodString;
1479
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
1480
- url: z.ZodString;
1481
- }, "strip", z.ZodTypeAny, {
1482
- url: string;
1483
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1484
- param: string;
1485
- }, {
1486
- url: string;
1487
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1488
- param: string;
1489
- }>>;
1490
- validationMessages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1491
- alert: z.ZodOptional<z.ZodObject<{
1492
- type: z.ZodLiteral<"alert">;
1493
- markdown: z.ZodString;
1494
- 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">]>>;
1495
- control: z.ZodOptional<z.ZodString>;
1496
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1742
+ value: z.ZodObject<{
1743
+ title: z.ZodOptional<z.ZodString>;
1744
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1745
+ disabled: z.ZodOptional<z.ZodBoolean>;
1746
+ $id: z.ZodOptional<z.ZodString>;
1747
+ $ref: z.ZodOptional<z.ZodString>;
1748
+ id: z.ZodOptional<z.ZodString>;
1749
+ url: z.ZodOptional<z.ZodString>;
1750
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1751
+ exit: z.ZodOptional<z.ZodBoolean>;
1752
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1753
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1754
+ timeout: z.ZodOptional<z.ZodNumber>;
1755
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1497
1756
  }, "strip", z.ZodTypeAny, {
1498
- type: "alert";
1499
- markdown: string;
1500
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1501
- control?: string | undefined;
1502
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1757
+ title?: string | undefined;
1758
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1759
+ disabled?: boolean | undefined;
1760
+ $id?: string | undefined;
1761
+ $ref?: string | undefined;
1762
+ id?: string | undefined;
1763
+ url?: string | undefined;
1764
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1765
+ exit?: boolean | undefined;
1766
+ result?: JsonElement | undefined;
1767
+ data?: JsonElement | undefined;
1768
+ timeout?: number | undefined;
1769
+ skipValidation?: boolean | undefined;
1503
1770
  }, {
1504
- type: "alert";
1505
- markdown: string;
1506
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1507
- control?: string | undefined;
1508
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1509
- }>>;
1510
- cameraConfig: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1511
- accepts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1512
- maxSize: z.ZodOptional<z.ZodNumber>;
1513
- source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>>;
1514
- disabled: z.ZodOptional<z.ZodBoolean>;
1771
+ title?: string | undefined;
1772
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1773
+ disabled?: boolean | undefined;
1774
+ $id?: string | undefined;
1775
+ $ref?: string | undefined;
1776
+ id?: string | undefined;
1777
+ url?: string | undefined;
1778
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1779
+ exit?: boolean | undefined;
1780
+ result?: JsonElement | undefined;
1781
+ data?: JsonElement | undefined;
1782
+ timeout?: number | undefined;
1783
+ skipValidation?: boolean | undefined;
1784
+ }>;
1515
1785
  }, "strip", z.ZodTypeAny, {
1516
- type: "blob";
1517
- promoted?: boolean | undefined;
1518
- $id?: string | undefined;
1519
- title?: string | undefined;
1786
+ type: "action";
1787
+ title: string;
1788
+ value: {
1789
+ title?: string | undefined;
1790
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1791
+ disabled?: boolean | undefined;
1792
+ $id?: string | undefined;
1793
+ $ref?: string | undefined;
1794
+ id?: string | undefined;
1795
+ url?: string | undefined;
1796
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1797
+ exit?: boolean | undefined;
1798
+ result?: JsonElement | undefined;
1799
+ data?: JsonElement | undefined;
1800
+ timeout?: number | undefined;
1801
+ skipValidation?: boolean | undefined;
1802
+ };
1520
1803
  description?: string | undefined;
1521
- control?: string | undefined;
1522
- hidden?: boolean | undefined;
1523
1804
  icon?: {
1524
- name: string;
1525
- } | {
1526
1805
  text: string;
1806
+ } | {
1807
+ name: string;
1527
1808
  } | undefined;
1528
1809
  image?: {
1529
1810
  url: string;
1811
+ type: "image";
1530
1812
  text?: string | undefined;
1813
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1531
1814
  accessibilityDescription?: string | undefined;
1532
- } | undefined;
1533
- keywords?: string[] | undefined;
1534
- summary?: {
1535
- providesTitle?: boolean | undefined;
1536
- providesDescription?: boolean | undefined;
1537
- providesIcon?: boolean | undefined;
1538
- providesImage?: boolean | undefined;
1539
- } | undefined;
1540
- analyticsId?: string | undefined;
1541
- validationAsync?: {
1542
- url: string;
1543
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1544
- param: string;
1545
- } | undefined;
1546
- validationMessages?: Record<string, string> | undefined;
1547
- alert?: {
1548
- type: "alert";
1549
- markdown: string;
1550
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1551
1815
  control?: string | undefined;
1552
1816
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1553
1817
  } | undefined;
1554
- cameraConfig?: JsonElement | undefined;
1555
- accepts?: string[] | undefined;
1556
- maxSize?: number | undefined;
1557
- source?: "camera" | "file" | undefined;
1558
- disabled?: boolean | undefined;
1559
1818
  }, {
1560
- type: "blob";
1561
- promoted?: boolean | undefined;
1562
- $id?: string | undefined;
1563
- title?: string | undefined;
1819
+ type: "action";
1820
+ title: string;
1821
+ value: {
1822
+ title?: string | undefined;
1823
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1824
+ disabled?: boolean | undefined;
1825
+ $id?: string | undefined;
1826
+ $ref?: string | undefined;
1827
+ id?: string | undefined;
1828
+ url?: string | undefined;
1829
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1830
+ exit?: boolean | undefined;
1831
+ result?: JsonElement | undefined;
1832
+ data?: JsonElement | undefined;
1833
+ timeout?: number | undefined;
1834
+ skipValidation?: boolean | undefined;
1835
+ };
1564
1836
  description?: string | undefined;
1565
- control?: string | undefined;
1566
- hidden?: boolean | undefined;
1567
1837
  icon?: {
1568
- name: string;
1569
- } | {
1570
1838
  text: string;
1839
+ } | {
1840
+ name: string;
1571
1841
  } | undefined;
1572
1842
  image?: {
1573
1843
  url: string;
1844
+ type: "image";
1574
1845
  text?: string | undefined;
1846
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1575
1847
  accessibilityDescription?: string | undefined;
1576
- } | undefined;
1577
- keywords?: string[] | undefined;
1578
- summary?: {
1579
- providesTitle?: boolean | undefined;
1580
- providesDescription?: boolean | undefined;
1581
- providesIcon?: boolean | undefined;
1582
- providesImage?: boolean | undefined;
1583
- } | undefined;
1584
- analyticsId?: string | undefined;
1585
- validationAsync?: {
1586
- url: string;
1587
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1588
- param: string;
1589
- } | undefined;
1590
- validationMessages?: Record<string, string> | undefined;
1591
- alert?: {
1592
- type: "alert";
1593
- markdown: string;
1594
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1595
1848
  control?: string | undefined;
1596
1849
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1597
1850
  } | undefined;
1598
- cameraConfig?: JsonElement | undefined;
1599
- accepts?: string[] | undefined;
1600
- maxSize?: number | undefined;
1601
- source?: "camera" | "file" | undefined;
1602
- disabled?: boolean | undefined;
1603
1851
  }>;
1604
- export declare const constSchemaSchema: z.ZodObject<{
1605
- hidden: z.ZodOptional<z.ZodBoolean>;
1606
- alert: z.ZodOptional<z.ZodObject<{
1607
- type: z.ZodLiteral<"alert">;
1608
- markdown: z.ZodString;
1609
- 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">]>>;
1610
- control: z.ZodOptional<z.ZodString>;
1611
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1612
- }, "strip", z.ZodTypeAny, {
1613
- type: "alert";
1614
- markdown: string;
1615
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1616
- control?: string | undefined;
1617
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1618
- }, {
1619
- type: "alert";
1620
- markdown: string;
1621
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1622
- control?: string | undefined;
1623
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1624
- }>>;
1625
- control: z.ZodOptional<z.ZodString>;
1626
- promoted: z.ZodOptional<z.ZodBoolean>;
1627
- $id: z.ZodOptional<z.ZodString>;
1628
- const: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
1629
- title: z.ZodOptional<z.ZodString>;
1852
+ export declare const searchResultSearchSchema: z.ZodObject<{
1853
+ type: z.ZodLiteral<"search">;
1854
+ title: z.ZodString;
1630
1855
  description: z.ZodOptional<z.ZodString>;
1631
1856
  icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1632
1857
  name: z.ZodString;
@@ -1642,107 +1867,96 @@ export declare const constSchemaSchema: z.ZodObject<{
1642
1867
  text: string;
1643
1868
  }>]>>;
1644
1869
  image: z.ZodOptional<z.ZodObject<{
1870
+ type: z.ZodLiteral<"image">;
1645
1871
  text: z.ZodOptional<z.ZodString>;
1646
1872
  url: z.ZodString;
1873
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1647
1874
  accessibilityDescription: z.ZodOptional<z.ZodString>;
1875
+ control: z.ZodOptional<z.ZodString>;
1876
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
1648
1877
  }, "strip", z.ZodTypeAny, {
1649
1878
  url: string;
1879
+ type: "image";
1650
1880
  text?: string | undefined;
1881
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1651
1882
  accessibilityDescription?: string | undefined;
1883
+ control?: string | undefined;
1884
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1652
1885
  }, {
1653
1886
  url: string;
1887
+ type: "image";
1654
1888
  text?: string | undefined;
1889
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1655
1890
  accessibilityDescription?: string | undefined;
1891
+ control?: string | undefined;
1892
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1656
1893
  }>>;
1657
- keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1658
- summary: z.ZodOptional<z.ZodObject<{
1659
- providesTitle: z.ZodOptional<z.ZodBoolean>;
1660
- providesDescription: z.ZodOptional<z.ZodBoolean>;
1661
- providesIcon: z.ZodOptional<z.ZodBoolean>;
1662
- providesImage: z.ZodOptional<z.ZodBoolean>;
1894
+ value: z.ZodObject<{
1895
+ url: z.ZodString;
1896
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
1897
+ param: z.ZodString;
1898
+ query: z.ZodString;
1663
1899
  }, "strip", z.ZodTypeAny, {
1664
- providesTitle?: boolean | undefined;
1665
- providesDescription?: boolean | undefined;
1666
- providesIcon?: boolean | undefined;
1667
- providesImage?: boolean | undefined;
1900
+ url: string;
1901
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1902
+ param: string;
1903
+ query: string;
1668
1904
  }, {
1669
- providesTitle?: boolean | undefined;
1670
- providesDescription?: boolean | undefined;
1671
- providesIcon?: boolean | undefined;
1672
- providesImage?: boolean | undefined;
1673
- }>>;
1674
- analyticsId: z.ZodOptional<z.ZodString>;
1675
- disabled: z.ZodOptional<z.ZodBoolean>;
1905
+ url: string;
1906
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1907
+ param: string;
1908
+ query: string;
1909
+ }>;
1676
1910
  }, "strip", z.ZodTypeAny, {
1677
- const: ((string | number | boolean | import("../next").JsonObject | import("../next").JsonArray) & (string | number | boolean | import("../next").JsonObject | import("../next").JsonArray | undefined)) | null;
1678
- hidden?: boolean | undefined;
1679
- alert?: {
1680
- type: "alert";
1681
- markdown: string;
1682
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1683
- control?: string | undefined;
1684
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1685
- } | undefined;
1686
- control?: string | undefined;
1687
- promoted?: boolean | undefined;
1688
- $id?: string | undefined;
1689
- title?: string | undefined;
1911
+ type: "search";
1912
+ title: string;
1913
+ value: {
1914
+ url: string;
1915
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1916
+ param: string;
1917
+ query: string;
1918
+ };
1690
1919
  description?: string | undefined;
1691
1920
  icon?: {
1692
- name: string;
1693
- } | {
1694
1921
  text: string;
1922
+ } | {
1923
+ name: string;
1695
1924
  } | undefined;
1696
1925
  image?: {
1697
1926
  url: string;
1927
+ type: "image";
1698
1928
  text?: string | undefined;
1929
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1699
1930
  accessibilityDescription?: string | undefined;
1700
- } | undefined;
1701
- keywords?: string[] | undefined;
1702
- summary?: {
1703
- providesTitle?: boolean | undefined;
1704
- providesDescription?: boolean | undefined;
1705
- providesIcon?: boolean | undefined;
1706
- providesImage?: boolean | undefined;
1707
- } | undefined;
1708
- analyticsId?: string | undefined;
1709
- disabled?: boolean | undefined;
1710
- }, {
1711
- const: ((string | number | boolean | import("../next").JsonObject | import("../next").JsonArray) & (string | number | boolean | import("../next").JsonObject | import("../next").JsonArray | undefined)) | null;
1712
- hidden?: boolean | undefined;
1713
- alert?: {
1714
- type: "alert";
1715
- markdown: string;
1716
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
1717
1931
  control?: string | undefined;
1718
1932
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1719
1933
  } | undefined;
1720
- control?: string | undefined;
1721
- promoted?: boolean | undefined;
1722
- $id?: string | undefined;
1723
- title?: string | undefined;
1934
+ }, {
1935
+ type: "search";
1936
+ title: string;
1937
+ value: {
1938
+ url: string;
1939
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
1940
+ param: string;
1941
+ query: string;
1942
+ };
1724
1943
  description?: string | undefined;
1725
1944
  icon?: {
1726
- name: string;
1727
- } | {
1728
1945
  text: string;
1946
+ } | {
1947
+ name: string;
1729
1948
  } | undefined;
1730
1949
  image?: {
1731
1950
  url: string;
1951
+ type: "image";
1732
1952
  text?: string | undefined;
1953
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1733
1954
  accessibilityDescription?: string | undefined;
1955
+ control?: string | undefined;
1956
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1734
1957
  } | undefined;
1735
- keywords?: string[] | undefined;
1736
- summary?: {
1737
- providesTitle?: boolean | undefined;
1738
- providesDescription?: boolean | undefined;
1739
- providesIcon?: boolean | undefined;
1740
- providesImage?: boolean | undefined;
1741
- } | undefined;
1742
- analyticsId?: string | undefined;
1743
- disabled?: boolean | undefined;
1744
1958
  }>;
1745
- export declare const pollingOnErrorSchema: z.ZodObject<{
1959
+ export declare const actionResponseBodySchema: z.ZodObject<{
1746
1960
  action: z.ZodObject<{
1747
1961
  title: z.ZodOptional<z.ZodString>;
1748
1962
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1819,257 +2033,99 @@ export declare const pollingOnErrorSchema: z.ZodObject<{
1819
2033
  skipValidation?: boolean | undefined;
1820
2034
  };
1821
2035
  }>;
1822
- export declare const navigationBackBehaviourSchema: z.ZodObject<{
1823
- title: z.ZodOptional<z.ZodString>;
1824
- action: z.ZodObject<{
1825
- title: z.ZodOptional<z.ZodString>;
1826
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1827
- disabled: z.ZodOptional<z.ZodBoolean>;
1828
- $id: z.ZodOptional<z.ZodString>;
1829
- $ref: z.ZodOptional<z.ZodString>;
1830
- id: z.ZodOptional<z.ZodString>;
1831
- url: z.ZodOptional<z.ZodString>;
1832
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1833
- exit: z.ZodOptional<z.ZodBoolean>;
1834
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1835
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1836
- timeout: z.ZodOptional<z.ZodNumber>;
1837
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2036
+ export declare const summarySummariserSchema: z.ZodObject<{
2037
+ defaultTitle: z.ZodOptional<z.ZodString>;
2038
+ defaultDescription: z.ZodOptional<z.ZodString>;
2039
+ defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2040
+ name: z.ZodString;
1838
2041
  }, "strip", z.ZodTypeAny, {
1839
- title?: string | undefined;
1840
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1841
- disabled?: boolean | undefined;
1842
- $id?: string | undefined;
1843
- $ref?: string | undefined;
1844
- id?: string | undefined;
1845
- url?: string | undefined;
1846
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1847
- exit?: boolean | undefined;
1848
- result?: JsonElement | undefined;
1849
- data?: JsonElement | undefined;
1850
- timeout?: number | undefined;
1851
- skipValidation?: boolean | undefined;
2042
+ name: string;
1852
2043
  }, {
1853
- title?: string | undefined;
1854
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1855
- disabled?: boolean | undefined;
1856
- $id?: string | undefined;
1857
- $ref?: string | undefined;
1858
- id?: string | undefined;
1859
- url?: string | undefined;
1860
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1861
- exit?: boolean | undefined;
1862
- result?: JsonElement | undefined;
1863
- data?: JsonElement | undefined;
1864
- timeout?: number | undefined;
1865
- skipValidation?: boolean | undefined;
1866
- }>;
1867
- }, "strip", z.ZodTypeAny, {
1868
- action: {
1869
- title?: string | undefined;
1870
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1871
- disabled?: boolean | undefined;
1872
- $id?: string | undefined;
1873
- $ref?: string | undefined;
1874
- id?: string | undefined;
1875
- url?: string | undefined;
1876
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1877
- exit?: boolean | undefined;
1878
- result?: JsonElement | undefined;
1879
- data?: JsonElement | undefined;
1880
- timeout?: number | undefined;
1881
- skipValidation?: boolean | undefined;
1882
- };
1883
- title?: string | undefined;
1884
- }, {
1885
- action: {
1886
- title?: string | undefined;
1887
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1888
- disabled?: boolean | undefined;
1889
- $id?: string | undefined;
1890
- $ref?: string | undefined;
1891
- id?: string | undefined;
1892
- url?: string | undefined;
1893
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1894
- exit?: boolean | undefined;
1895
- result?: JsonElement | undefined;
1896
- data?: JsonElement | undefined;
1897
- timeout?: number | undefined;
1898
- skipValidation?: boolean | undefined;
1899
- };
1900
- title?: string | undefined;
1901
- }>;
1902
- export declare const reviewLayoutCallToActionSchema: z.ZodObject<{
1903
- title: z.ZodString;
1904
- action: z.ZodObject<{
1905
- title: z.ZodOptional<z.ZodString>;
1906
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
1907
- disabled: z.ZodOptional<z.ZodBoolean>;
1908
- $id: z.ZodOptional<z.ZodString>;
1909
- $ref: z.ZodOptional<z.ZodString>;
1910
- id: z.ZodOptional<z.ZodString>;
1911
- url: z.ZodOptional<z.ZodString>;
1912
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
1913
- exit: z.ZodOptional<z.ZodBoolean>;
1914
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1915
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1916
- timeout: z.ZodOptional<z.ZodNumber>;
1917
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2044
+ name: string;
2045
+ }>, z.ZodObject<{
2046
+ text: z.ZodString;
1918
2047
  }, "strip", z.ZodTypeAny, {
1919
- title?: string | undefined;
1920
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1921
- disabled?: boolean | undefined;
1922
- $id?: string | undefined;
1923
- $ref?: string | undefined;
1924
- id?: string | undefined;
1925
- url?: string | undefined;
1926
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1927
- exit?: boolean | undefined;
1928
- result?: JsonElement | undefined;
1929
- data?: JsonElement | undefined;
1930
- timeout?: number | undefined;
1931
- skipValidation?: boolean | undefined;
2048
+ text: string;
1932
2049
  }, {
1933
- title?: string | undefined;
1934
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1935
- disabled?: boolean | undefined;
1936
- $id?: string | undefined;
1937
- $ref?: string | undefined;
1938
- id?: string | undefined;
1939
- url?: string | undefined;
1940
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1941
- exit?: boolean | undefined;
1942
- result?: JsonElement | undefined;
1943
- data?: JsonElement | undefined;
1944
- timeout?: number | undefined;
1945
- skipValidation?: boolean | undefined;
1946
- }>;
2050
+ text: string;
2051
+ }>]>>;
2052
+ defaultImage: z.ZodOptional<z.ZodObject<{
2053
+ type: z.ZodLiteral<"image">;
2054
+ text: z.ZodOptional<z.ZodString>;
2055
+ url: z.ZodString;
2056
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2057
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
2058
+ control: z.ZodOptional<z.ZodString>;
2059
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2060
+ }, "strip", z.ZodTypeAny, {
2061
+ url: string;
2062
+ type: "image";
2063
+ text?: string | undefined;
2064
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2065
+ accessibilityDescription?: string | undefined;
2066
+ control?: string | undefined;
2067
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2068
+ }, {
2069
+ url: string;
2070
+ type: "image";
2071
+ text?: string | undefined;
2072
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2073
+ accessibilityDescription?: string | undefined;
2074
+ control?: string | undefined;
2075
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2076
+ }>>;
2077
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
2078
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
2079
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
2080
+ providesImage: z.ZodOptional<z.ZodBoolean>;
1947
2081
  }, "strip", z.ZodTypeAny, {
1948
- action: {
1949
- title?: string | undefined;
1950
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1951
- disabled?: boolean | undefined;
1952
- $id?: string | undefined;
1953
- $ref?: string | undefined;
1954
- id?: string | undefined;
1955
- url?: string | undefined;
1956
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1957
- exit?: boolean | undefined;
1958
- result?: JsonElement | undefined;
1959
- data?: JsonElement | undefined;
1960
- timeout?: number | undefined;
1961
- skipValidation?: boolean | undefined;
1962
- };
1963
- title: string;
1964
- }, {
1965
- action: {
1966
- title?: string | undefined;
1967
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
1968
- disabled?: boolean | undefined;
1969
- $id?: string | undefined;
1970
- $ref?: string | undefined;
1971
- id?: string | undefined;
1972
- url?: string | undefined;
1973
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1974
- exit?: boolean | undefined;
1975
- result?: JsonElement | undefined;
1976
- data?: JsonElement | undefined;
1977
- timeout?: number | undefined;
1978
- skipValidation?: boolean | undefined;
1979
- };
1980
- title: string;
1981
- }>;
1982
- export declare const listLayoutSchema: z.ZodObject<{
1983
- type: z.ZodLiteral<"list">;
1984
- items: z.ZodArray<z.ZodObject<{
1985
- title: z.ZodString;
1986
- description: z.ZodOptional<z.ZodString>;
1987
- icon: z.ZodUnion<[z.ZodObject<{
1988
- name: z.ZodString;
1989
- }, "strip", z.ZodTypeAny, {
1990
- name: string;
1991
- }, {
1992
- name: string;
1993
- }>, z.ZodObject<{
1994
- text: z.ZodString;
1995
- }, "strip", z.ZodTypeAny, {
1996
- text: string;
1997
- }, {
1998
- text: string;
1999
- }>]>;
2000
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
2001
- }, "strip", z.ZodTypeAny, {
2002
- icon: ({
2003
- name: string;
2004
- } | {
2005
- text: string;
2006
- }) & ({
2007
- name: string;
2008
- } | {
2009
- text: string;
2010
- } | undefined);
2011
- title: string;
2012
- description?: string | undefined;
2013
- status?: "neutral" | "warning" | "positive" | undefined;
2014
- }, {
2015
- icon: ({
2016
- name: string;
2017
- } | {
2018
- text: string;
2019
- }) & ({
2020
- name: string;
2021
- } | {
2022
- text: string;
2023
- } | undefined);
2024
- title: string;
2025
- description?: string | undefined;
2026
- status?: "neutral" | "warning" | "positive" | undefined;
2027
- }>, "many">;
2028
- title: z.ZodOptional<z.ZodString>;
2029
- control: z.ZodOptional<z.ZodString>;
2030
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2031
- }, "strip", z.ZodTypeAny, {
2032
- type: "list";
2033
- items: {
2034
- icon: ({
2035
- name: string;
2036
- } | {
2037
- text: string;
2038
- }) & ({
2039
- name: string;
2040
- } | {
2041
- text: string;
2042
- } | undefined);
2043
- title: string;
2044
- description?: string | undefined;
2045
- status?: "neutral" | "warning" | "positive" | undefined;
2046
- }[];
2047
- title?: string | undefined;
2048
- control?: string | undefined;
2049
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2082
+ defaultTitle?: string | undefined;
2083
+ defaultDescription?: string | undefined;
2084
+ defaultIcon?: {
2085
+ text: string;
2086
+ } | {
2087
+ name: string;
2088
+ } | undefined;
2089
+ defaultImage?: {
2090
+ url: string;
2091
+ type: "image";
2092
+ text?: string | undefined;
2093
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2094
+ accessibilityDescription?: string | undefined;
2095
+ control?: string | undefined;
2096
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2097
+ } | undefined;
2098
+ providesTitle?: boolean | undefined;
2099
+ providesDescription?: boolean | undefined;
2100
+ providesIcon?: boolean | undefined;
2101
+ providesImage?: boolean | undefined;
2050
2102
  }, {
2051
- type: "list";
2052
- items: {
2053
- icon: ({
2054
- name: string;
2055
- } | {
2056
- text: string;
2057
- }) & ({
2058
- name: string;
2059
- } | {
2060
- text: string;
2061
- } | undefined);
2062
- title: string;
2063
- description?: string | undefined;
2064
- status?: "neutral" | "warning" | "positive" | undefined;
2065
- }[];
2066
- title?: string | undefined;
2067
- control?: string | undefined;
2068
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2103
+ defaultTitle?: string | undefined;
2104
+ defaultDescription?: string | undefined;
2105
+ defaultIcon?: {
2106
+ text: string;
2107
+ } | {
2108
+ name: string;
2109
+ } | undefined;
2110
+ defaultImage?: {
2111
+ url: string;
2112
+ type: "image";
2113
+ text?: string | undefined;
2114
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2115
+ accessibilityDescription?: string | undefined;
2116
+ control?: string | undefined;
2117
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2118
+ } | undefined;
2119
+ providesTitle?: boolean | undefined;
2120
+ providesDescription?: boolean | undefined;
2121
+ providesIcon?: boolean | undefined;
2122
+ providesImage?: boolean | undefined;
2069
2123
  }>;
2070
- export declare const decisionLayoutSchema: z.ZodObject<{
2071
- type: z.ZodLiteral<"decision">;
2072
- options: z.ZodArray<z.ZodObject<{
2124
+ export declare const pollingSchema: z.ZodObject<{
2125
+ url: z.ZodString;
2126
+ interval: z.ZodNumber;
2127
+ maxAttempts: z.ZodNumber;
2128
+ onError: z.ZodObject<{
2073
2129
  action: z.ZodObject<{
2074
2130
  title: z.ZodOptional<z.ZodString>;
2075
2131
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -2113,47 +2169,6 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2113
2169
  timeout?: number | undefined;
2114
2170
  skipValidation?: boolean | undefined;
2115
2171
  }>;
2116
- title: z.ZodString;
2117
- description: z.ZodOptional<z.ZodString>;
2118
- disabled: z.ZodOptional<z.ZodBoolean>;
2119
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2120
- name: z.ZodString;
2121
- }, "strip", z.ZodTypeAny, {
2122
- name: string;
2123
- }, {
2124
- name: string;
2125
- }>, z.ZodObject<{
2126
- text: z.ZodString;
2127
- }, "strip", z.ZodTypeAny, {
2128
- text: string;
2129
- }, {
2130
- text: string;
2131
- }>]>>;
2132
- image: z.ZodOptional<z.ZodObject<{
2133
- type: z.ZodLiteral<"image">;
2134
- text: z.ZodOptional<z.ZodString>;
2135
- url: z.ZodString;
2136
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2137
- accessibilityDescription: z.ZodOptional<z.ZodString>;
2138
- control: z.ZodOptional<z.ZodString>;
2139
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2140
- }, "strip", z.ZodTypeAny, {
2141
- url: string;
2142
- type: "image";
2143
- text?: string | undefined;
2144
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2145
- accessibilityDescription?: string | undefined;
2146
- control?: string | undefined;
2147
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2148
- }, {
2149
- url: string;
2150
- type: "image";
2151
- text?: string | undefined;
2152
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2153
- accessibilityDescription?: string | undefined;
2154
- control?: string | undefined;
2155
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2156
- }>>;
2157
2172
  }, "strip", z.ZodTypeAny, {
2158
2173
  action: {
2159
2174
  title?: string | undefined;
@@ -2170,23 +2185,6 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2170
2185
  timeout?: number | undefined;
2171
2186
  skipValidation?: boolean | undefined;
2172
2187
  };
2173
- title: string;
2174
- description?: string | undefined;
2175
- disabled?: boolean | undefined;
2176
- icon?: {
2177
- name: string;
2178
- } | {
2179
- text: string;
2180
- } | undefined;
2181
- image?: {
2182
- url: string;
2183
- type: "image";
2184
- text?: string | undefined;
2185
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2186
- accessibilityDescription?: string | undefined;
2187
- control?: string | undefined;
2188
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2189
- } | undefined;
2190
2188
  }, {
2191
2189
  action: {
2192
2190
  title?: string | undefined;
@@ -2203,29 +2201,12 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2203
2201
  timeout?: number | undefined;
2204
2202
  skipValidation?: boolean | undefined;
2205
2203
  };
2206
- title: string;
2207
- description?: string | undefined;
2208
- disabled?: boolean | undefined;
2209
- icon?: {
2210
- name: string;
2211
- } | {
2212
- text: string;
2213
- } | undefined;
2214
- image?: {
2215
- url: string;
2216
- type: "image";
2217
- text?: string | undefined;
2218
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2219
- accessibilityDescription?: string | undefined;
2220
- control?: string | undefined;
2221
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2222
- } | undefined;
2223
- }>, "many">;
2224
- control: z.ZodOptional<z.ZodString>;
2225
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2204
+ }>;
2226
2205
  }, "strip", z.ZodTypeAny, {
2227
- type: "decision";
2228
- options: {
2206
+ url: string;
2207
+ interval: number;
2208
+ maxAttempts: number;
2209
+ onError: {
2229
2210
  action: {
2230
2211
  title?: string | undefined;
2231
2212
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
@@ -2241,29 +2222,12 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2241
2222
  timeout?: number | undefined;
2242
2223
  skipValidation?: boolean | undefined;
2243
2224
  };
2244
- title: string;
2245
- description?: string | undefined;
2246
- disabled?: boolean | undefined;
2247
- icon?: {
2248
- name: string;
2249
- } | {
2250
- text: string;
2251
- } | undefined;
2252
- image?: {
2253
- url: string;
2254
- type: "image";
2255
- text?: string | undefined;
2256
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2257
- accessibilityDescription?: string | undefined;
2258
- control?: string | undefined;
2259
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2260
- } | undefined;
2261
- }[];
2262
- control?: string | undefined;
2263
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2225
+ };
2264
2226
  }, {
2265
- type: "decision";
2266
- options: {
2227
+ url: string;
2228
+ interval: number;
2229
+ maxAttempts: number;
2230
+ onError: {
2267
2231
  action: {
2268
2232
  title?: string | undefined;
2269
2233
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
@@ -2279,187 +2243,11 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2279
2243
  timeout?: number | undefined;
2280
2244
  skipValidation?: boolean | undefined;
2281
2245
  };
2282
- title: string;
2283
- description?: string | undefined;
2284
- disabled?: boolean | undefined;
2285
- icon?: {
2286
- name: string;
2287
- } | {
2288
- text: string;
2289
- } | undefined;
2290
- image?: {
2291
- url: string;
2292
- type: "image";
2293
- text?: string | undefined;
2294
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2295
- accessibilityDescription?: string | undefined;
2296
- control?: string | undefined;
2297
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2298
- } | undefined;
2299
- }[];
2300
- control?: string | undefined;
2301
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2302
- }>;
2303
- export declare const statusListLayoutSchema: z.ZodObject<{
2304
- type: z.ZodLiteral<"status-list">;
2305
- items: z.ZodArray<z.ZodObject<{
2306
- title: z.ZodString;
2307
- description: z.ZodOptional<z.ZodString>;
2308
- icon: z.ZodUnion<[z.ZodObject<{
2309
- name: z.ZodString;
2310
- }, "strip", z.ZodTypeAny, {
2311
- name: string;
2312
- }, {
2313
- name: string;
2314
- }>, z.ZodObject<{
2315
- text: z.ZodString;
2316
- }, "strip", z.ZodTypeAny, {
2317
- text: string;
2318
- }, {
2319
- text: string;
2320
- }>]>;
2321
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
2322
- }, "strip", z.ZodTypeAny, {
2323
- icon: ({
2324
- name: string;
2325
- } | {
2326
- text: string;
2327
- }) & ({
2328
- name: string;
2329
- } | {
2330
- text: string;
2331
- } | undefined);
2332
- title: string;
2333
- description?: string | undefined;
2334
- status?: "done" | "not-done" | "pending" | undefined;
2335
- }, {
2336
- icon: ({
2337
- name: string;
2338
- } | {
2339
- text: string;
2340
- }) & ({
2341
- name: string;
2342
- } | {
2343
- text: string;
2344
- } | undefined);
2345
- title: string;
2346
- description?: string | undefined;
2347
- status?: "done" | "not-done" | "pending" | undefined;
2348
- }>, "many">;
2349
- title: z.ZodOptional<z.ZodString>;
2350
- control: z.ZodOptional<z.ZodString>;
2351
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2352
- }, "strip", z.ZodTypeAny, {
2353
- type: "status-list";
2354
- items: {
2355
- icon: ({
2356
- name: string;
2357
- } | {
2358
- text: string;
2359
- }) & ({
2360
- name: string;
2361
- } | {
2362
- text: string;
2363
- } | undefined);
2364
- title: string;
2365
- description?: string | undefined;
2366
- status?: "done" | "not-done" | "pending" | undefined;
2367
- }[];
2368
- title?: string | undefined;
2369
- control?: string | undefined;
2370
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2371
- }, {
2372
- type: "status-list";
2373
- items: {
2374
- icon: ({
2375
- name: string;
2376
- } | {
2377
- text: string;
2378
- }) & ({
2379
- name: string;
2380
- } | {
2381
- text: string;
2382
- } | undefined);
2383
- title: string;
2384
- description?: string | undefined;
2385
- status?: "done" | "not-done" | "pending" | undefined;
2386
- }[];
2387
- title?: string | undefined;
2388
- control?: string | undefined;
2389
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2246
+ };
2390
2247
  }>;
2391
- export declare const reviewLayoutSchema: z.ZodObject<{
2392
- type: z.ZodLiteral<"review">;
2393
- orientation: z.ZodOptional<z.ZodString>;
2394
- action: z.ZodOptional<z.ZodObject<{
2248
+ export declare const navigationSchema: z.ZodObject<{
2249
+ backButton: z.ZodOptional<z.ZodObject<{
2395
2250
  title: z.ZodOptional<z.ZodString>;
2396
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2397
- disabled: z.ZodOptional<z.ZodBoolean>;
2398
- $id: z.ZodOptional<z.ZodString>;
2399
- $ref: z.ZodOptional<z.ZodString>;
2400
- id: z.ZodOptional<z.ZodString>;
2401
- url: z.ZodOptional<z.ZodString>;
2402
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2403
- exit: z.ZodOptional<z.ZodBoolean>;
2404
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2405
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2406
- timeout: z.ZodOptional<z.ZodNumber>;
2407
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2408
- }, "strip", z.ZodTypeAny, {
2409
- title?: string | undefined;
2410
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2411
- disabled?: boolean | undefined;
2412
- $id?: string | undefined;
2413
- $ref?: string | undefined;
2414
- id?: string | undefined;
2415
- url?: string | undefined;
2416
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2417
- exit?: boolean | undefined;
2418
- result?: JsonElement | undefined;
2419
- data?: JsonElement | undefined;
2420
- timeout?: number | undefined;
2421
- skipValidation?: boolean | undefined;
2422
- }, {
2423
- title?: string | undefined;
2424
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2425
- disabled?: boolean | undefined;
2426
- $id?: string | undefined;
2427
- $ref?: string | undefined;
2428
- id?: string | undefined;
2429
- url?: string | undefined;
2430
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2431
- exit?: boolean | undefined;
2432
- result?: JsonElement | undefined;
2433
- data?: JsonElement | undefined;
2434
- timeout?: number | undefined;
2435
- skipValidation?: boolean | undefined;
2436
- }>>;
2437
- fields: z.ZodArray<z.ZodObject<{
2438
- label: z.ZodString;
2439
- value: z.ZodString;
2440
- help: z.ZodOptional<z.ZodObject<{
2441
- markdown: z.ZodString;
2442
- }, "strip", z.ZodTypeAny, {
2443
- markdown: string;
2444
- }, {
2445
- markdown: string;
2446
- }>>;
2447
- }, "strip", z.ZodTypeAny, {
2448
- value: string;
2449
- label: string;
2450
- help?: {
2451
- markdown: string;
2452
- } | undefined;
2453
- }, {
2454
- value: string;
2455
- label: string;
2456
- help?: {
2457
- markdown: string;
2458
- } | undefined;
2459
- }>, "many">;
2460
- title: z.ZodOptional<z.ZodString>;
2461
- callToAction: z.ZodOptional<z.ZodObject<{
2462
- title: z.ZodString;
2463
2251
  action: z.ZodObject<{
2464
2252
  title: z.ZodOptional<z.ZodString>;
2465
2253
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -2519,7 +2307,7 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2519
2307
  timeout?: number | undefined;
2520
2308
  skipValidation?: boolean | undefined;
2521
2309
  };
2522
- title: string;
2310
+ title?: string | undefined;
2523
2311
  }, {
2524
2312
  action: {
2525
2313
  title?: string | undefined;
@@ -2536,38 +2324,25 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2536
2324
  timeout?: number | undefined;
2537
2325
  skipValidation?: boolean | undefined;
2538
2326
  };
2539
- title: string;
2540
- }>>;
2541
- control: z.ZodOptional<z.ZodString>;
2542
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2543
- }, "strip", z.ZodTypeAny, {
2544
- type: "review";
2545
- fields: {
2546
- value: string;
2547
- label: string;
2548
- help?: {
2549
- markdown: string;
2550
- } | undefined;
2551
- }[];
2552
- orientation?: string | undefined;
2553
- action?: {
2554
2327
  title?: string | undefined;
2555
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2556
- disabled?: boolean | undefined;
2557
- $id?: string | undefined;
2558
- $ref?: string | undefined;
2559
- id?: string | undefined;
2560
- url?: 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
- } | undefined;
2568
- title?: string | undefined;
2569
- callToAction?: {
2570
- action: {
2328
+ }>>;
2329
+ back: z.ZodOptional<z.ZodObject<{
2330
+ title: z.ZodOptional<z.ZodString>;
2331
+ action: z.ZodObject<{
2332
+ title: z.ZodOptional<z.ZodString>;
2333
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2334
+ disabled: z.ZodOptional<z.ZodBoolean>;
2335
+ $id: z.ZodOptional<z.ZodString>;
2336
+ $ref: z.ZodOptional<z.ZodString>;
2337
+ id: z.ZodOptional<z.ZodString>;
2338
+ url: z.ZodOptional<z.ZodString>;
2339
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2340
+ exit: z.ZodOptional<z.ZodBoolean>;
2341
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2342
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2343
+ timeout: z.ZodOptional<z.ZodNumber>;
2344
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
2345
+ }, "strip", z.ZodTypeAny, {
2571
2346
  title?: string | undefined;
2572
2347
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2573
2348
  disabled?: boolean | undefined;
@@ -2581,38 +2356,77 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2581
2356
  data?: JsonElement | undefined;
2582
2357
  timeout?: number | undefined;
2583
2358
  skipValidation?: boolean | undefined;
2584
- };
2585
- title: string;
2586
- } | undefined;
2587
- control?: string | undefined;
2588
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2589
- }, {
2590
- type: "review";
2591
- fields: {
2592
- value: string;
2593
- label: string;
2594
- help?: {
2595
- markdown: string;
2596
- } | undefined;
2597
- }[];
2598
- orientation?: string | undefined;
2599
- action?: {
2359
+ }, {
2360
+ title?: string | undefined;
2361
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2362
+ disabled?: boolean | undefined;
2363
+ $id?: string | undefined;
2364
+ $ref?: string | undefined;
2365
+ id?: string | undefined;
2366
+ url?: string | undefined;
2367
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2368
+ exit?: boolean | undefined;
2369
+ result?: JsonElement | undefined;
2370
+ data?: JsonElement | undefined;
2371
+ timeout?: number | undefined;
2372
+ skipValidation?: boolean | undefined;
2373
+ }>;
2374
+ }, "strip", z.ZodTypeAny, {
2375
+ action: {
2376
+ title?: string | undefined;
2377
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2378
+ disabled?: boolean | undefined;
2379
+ $id?: string | undefined;
2380
+ $ref?: string | undefined;
2381
+ id?: string | undefined;
2382
+ url?: string | undefined;
2383
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2384
+ exit?: boolean | undefined;
2385
+ result?: JsonElement | undefined;
2386
+ data?: JsonElement | undefined;
2387
+ timeout?: number | undefined;
2388
+ skipValidation?: boolean | undefined;
2389
+ };
2390
+ title?: string | undefined;
2391
+ }, {
2392
+ action: {
2393
+ title?: string | undefined;
2394
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2395
+ disabled?: boolean | undefined;
2396
+ $id?: string | undefined;
2397
+ $ref?: string | undefined;
2398
+ id?: string | undefined;
2399
+ url?: string | undefined;
2400
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2401
+ exit?: boolean | undefined;
2402
+ result?: JsonElement | undefined;
2403
+ data?: JsonElement | undefined;
2404
+ timeout?: number | undefined;
2405
+ skipValidation?: boolean | undefined;
2406
+ };
2407
+ title?: string | undefined;
2408
+ }>>;
2409
+ stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
2410
+ }, "strip", z.ZodTypeAny, {
2411
+ backButton?: {
2412
+ action: {
2413
+ title?: string | undefined;
2414
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2415
+ disabled?: boolean | undefined;
2416
+ $id?: string | undefined;
2417
+ $ref?: string | undefined;
2418
+ id?: string | undefined;
2419
+ url?: string | undefined;
2420
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2421
+ exit?: boolean | undefined;
2422
+ result?: JsonElement | undefined;
2423
+ data?: JsonElement | undefined;
2424
+ timeout?: number | undefined;
2425
+ skipValidation?: boolean | undefined;
2426
+ };
2600
2427
  title?: string | undefined;
2601
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2602
- disabled?: boolean | undefined;
2603
- $id?: string | undefined;
2604
- $ref?: string | undefined;
2605
- id?: string | undefined;
2606
- url?: string | undefined;
2607
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2608
- exit?: boolean | undefined;
2609
- result?: JsonElement | undefined;
2610
- data?: JsonElement | undefined;
2611
- timeout?: number | undefined;
2612
- skipValidation?: boolean | undefined;
2613
2428
  } | undefined;
2614
- title?: string | undefined;
2615
- callToAction?: {
2429
+ back?: {
2616
2430
  action: {
2617
2431
  title?: string | undefined;
2618
2432
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
@@ -2628,16 +2442,67 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2628
2442
  timeout?: number | undefined;
2629
2443
  skipValidation?: boolean | undefined;
2630
2444
  };
2631
- title: string;
2445
+ title?: string | undefined;
2632
2446
  } | undefined;
2633
- control?: string | undefined;
2634
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2447
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
2448
+ }, {
2449
+ backButton?: {
2450
+ action: {
2451
+ title?: string | undefined;
2452
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2453
+ disabled?: boolean | undefined;
2454
+ $id?: string | undefined;
2455
+ $ref?: string | undefined;
2456
+ id?: string | undefined;
2457
+ url?: string | undefined;
2458
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2459
+ exit?: boolean | undefined;
2460
+ result?: JsonElement | undefined;
2461
+ data?: JsonElement | undefined;
2462
+ timeout?: number | undefined;
2463
+ skipValidation?: boolean | undefined;
2464
+ };
2465
+ title?: string | undefined;
2466
+ } | undefined;
2467
+ back?: {
2468
+ action: {
2469
+ title?: string | undefined;
2470
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2471
+ disabled?: boolean | undefined;
2472
+ $id?: string | undefined;
2473
+ $ref?: string | undefined;
2474
+ id?: string | undefined;
2475
+ url?: string | undefined;
2476
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2477
+ exit?: boolean | undefined;
2478
+ result?: JsonElement | undefined;
2479
+ data?: JsonElement | undefined;
2480
+ timeout?: number | undefined;
2481
+ skipValidation?: boolean | undefined;
2482
+ };
2483
+ title?: string | undefined;
2484
+ } | undefined;
2485
+ stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
2635
2486
  }>;
2636
- export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2637
- type: z.ZodLiteral<"action">;
2638
- title: z.ZodString;
2639
- description: z.ZodOptional<z.ZodString>;
2640
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2487
+ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
2488
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
2489
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
2490
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
2491
+ providesImage: z.ZodOptional<z.ZodBoolean>;
2492
+ }, "strip", z.ZodTypeAny, {
2493
+ providesTitle?: boolean | undefined;
2494
+ providesDescription?: boolean | undefined;
2495
+ providesIcon?: boolean | undefined;
2496
+ providesImage?: boolean | undefined;
2497
+ }, {
2498
+ providesTitle?: boolean | undefined;
2499
+ providesDescription?: boolean | undefined;
2500
+ providesIcon?: boolean | undefined;
2501
+ providesImage?: boolean | undefined;
2502
+ }>, z.ZodObject<{
2503
+ defaultTitle: z.ZodOptional<z.ZodString>;
2504
+ defaultDescription: z.ZodOptional<z.ZodString>;
2505
+ defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2641
2506
  name: z.ZodString;
2642
2507
  }, "strip", z.ZodTypeAny, {
2643
2508
  name: string;
@@ -2650,7 +2515,7 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2650
2515
  }, {
2651
2516
  text: string;
2652
2517
  }>]>>;
2653
- image: z.ZodOptional<z.ZodObject<{
2518
+ defaultImage: z.ZodOptional<z.ZodObject<{
2654
2519
  type: z.ZodLiteral<"image">;
2655
2520
  text: z.ZodOptional<z.ZodString>;
2656
2521
  url: z.ZodString;
@@ -2675,74 +2540,19 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2675
2540
  control?: string | undefined;
2676
2541
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2677
2542
  }>>;
2678
- value: z.ZodObject<{
2679
- title: z.ZodOptional<z.ZodString>;
2680
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2681
- disabled: z.ZodOptional<z.ZodBoolean>;
2682
- $id: z.ZodOptional<z.ZodString>;
2683
- $ref: z.ZodOptional<z.ZodString>;
2684
- id: z.ZodOptional<z.ZodString>;
2685
- url: z.ZodOptional<z.ZodString>;
2686
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2687
- exit: z.ZodOptional<z.ZodBoolean>;
2688
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2689
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2690
- timeout: z.ZodOptional<z.ZodNumber>;
2691
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2692
- }, "strip", z.ZodTypeAny, {
2693
- title?: string | undefined;
2694
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2695
- disabled?: boolean | undefined;
2696
- $id?: string | undefined;
2697
- $ref?: string | undefined;
2698
- id?: string | undefined;
2699
- url?: string | undefined;
2700
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2701
- exit?: boolean | undefined;
2702
- result?: JsonElement | undefined;
2703
- data?: JsonElement | undefined;
2704
- timeout?: number | undefined;
2705
- skipValidation?: boolean | undefined;
2706
- }, {
2707
- title?: string | undefined;
2708
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2709
- disabled?: boolean | undefined;
2710
- $id?: string | undefined;
2711
- $ref?: string | undefined;
2712
- id?: string | undefined;
2713
- url?: string | undefined;
2714
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2715
- exit?: boolean | undefined;
2716
- result?: JsonElement | undefined;
2717
- data?: JsonElement | undefined;
2718
- timeout?: number | undefined;
2719
- skipValidation?: boolean | undefined;
2720
- }>;
2543
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
2544
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
2545
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
2546
+ providesImage: z.ZodOptional<z.ZodBoolean>;
2721
2547
  }, "strip", z.ZodTypeAny, {
2722
- type: "action";
2723
- title: string;
2724
- value: {
2725
- title?: string | undefined;
2726
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2727
- disabled?: boolean | undefined;
2728
- $id?: string | undefined;
2729
- $ref?: string | undefined;
2730
- id?: string | undefined;
2731
- url?: string | undefined;
2732
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2733
- exit?: boolean | undefined;
2734
- result?: JsonElement | undefined;
2735
- data?: JsonElement | undefined;
2736
- timeout?: number | undefined;
2737
- skipValidation?: boolean | undefined;
2738
- };
2739
- description?: string | undefined;
2740
- icon?: {
2741
- name: string;
2742
- } | {
2548
+ defaultTitle?: string | undefined;
2549
+ defaultDescription?: string | undefined;
2550
+ defaultIcon?: {
2743
2551
  text: string;
2552
+ } | {
2553
+ name: string;
2744
2554
  } | undefined;
2745
- image?: {
2555
+ defaultImage?: {
2746
2556
  url: string;
2747
2557
  type: "image";
2748
2558
  text?: string | undefined;
@@ -2751,137 +2561,19 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2751
2561
  control?: string | undefined;
2752
2562
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2753
2563
  } | undefined;
2564
+ providesTitle?: boolean | undefined;
2565
+ providesDescription?: boolean | undefined;
2566
+ providesIcon?: boolean | undefined;
2567
+ providesImage?: boolean | undefined;
2754
2568
  }, {
2755
- type: "action";
2756
- title: string;
2757
- value: {
2758
- title?: string | undefined;
2759
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
2760
- disabled?: boolean | undefined;
2761
- $id?: string | undefined;
2762
- $ref?: string | undefined;
2763
- id?: string | undefined;
2764
- url?: string | undefined;
2765
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2766
- exit?: boolean | undefined;
2767
- result?: JsonElement | undefined;
2768
- data?: JsonElement | undefined;
2769
- timeout?: number | undefined;
2770
- skipValidation?: boolean | undefined;
2771
- };
2772
- description?: string | undefined;
2773
- icon?: {
2774
- name: string;
2775
- } | {
2776
- text: string;
2777
- } | undefined;
2778
- image?: {
2779
- url: string;
2780
- type: "image";
2781
- text?: string | undefined;
2782
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2783
- accessibilityDescription?: string | undefined;
2784
- control?: string | undefined;
2785
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2786
- } | undefined;
2787
- }>, z.ZodObject<{
2788
- type: z.ZodLiteral<"search">;
2789
- title: z.ZodString;
2790
- description: z.ZodOptional<z.ZodString>;
2791
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2792
- name: z.ZodString;
2793
- }, "strip", z.ZodTypeAny, {
2794
- name: string;
2795
- }, {
2796
- name: string;
2797
- }>, z.ZodObject<{
2798
- text: z.ZodString;
2799
- }, "strip", z.ZodTypeAny, {
2800
- text: string;
2801
- }, {
2569
+ defaultTitle?: string | undefined;
2570
+ defaultDescription?: string | undefined;
2571
+ defaultIcon?: {
2802
2572
  text: string;
2803
- }>]>>;
2804
- image: z.ZodOptional<z.ZodObject<{
2805
- type: z.ZodLiteral<"image">;
2806
- text: z.ZodOptional<z.ZodString>;
2807
- url: z.ZodString;
2808
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2809
- accessibilityDescription: z.ZodOptional<z.ZodString>;
2810
- control: z.ZodOptional<z.ZodString>;
2811
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2812
- }, "strip", z.ZodTypeAny, {
2813
- url: string;
2814
- type: "image";
2815
- text?: string | undefined;
2816
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2817
- accessibilityDescription?: string | undefined;
2818
- control?: string | undefined;
2819
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2820
- }, {
2821
- url: string;
2822
- type: "image";
2823
- text?: string | undefined;
2824
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2825
- accessibilityDescription?: string | undefined;
2826
- control?: string | undefined;
2827
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2828
- }>>;
2829
- value: z.ZodObject<{
2830
- url: z.ZodString;
2831
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
2832
- param: z.ZodString;
2833
- query: z.ZodString;
2834
- }, "strip", z.ZodTypeAny, {
2835
- url: string;
2836
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2837
- param: string;
2838
- query: string;
2839
- }, {
2840
- url: string;
2841
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2842
- param: string;
2843
- query: string;
2844
- }>;
2845
- }, "strip", z.ZodTypeAny, {
2846
- type: "search";
2847
- title: string;
2848
- value: {
2849
- url: string;
2850
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2851
- param: string;
2852
- query: string;
2853
- };
2854
- description?: string | undefined;
2855
- icon?: {
2856
- name: string;
2857
2573
  } | {
2858
- text: string;
2859
- } | undefined;
2860
- image?: {
2861
- url: string;
2862
- type: "image";
2863
- text?: string | undefined;
2864
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2865
- accessibilityDescription?: string | undefined;
2866
- control?: string | undefined;
2867
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2868
- } | undefined;
2869
- }, {
2870
- type: "search";
2871
- title: string;
2872
- value: {
2873
- url: string;
2874
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
2875
- param: string;
2876
- query: string;
2877
- };
2878
- description?: string | undefined;
2879
- icon?: {
2880
2574
  name: string;
2881
- } | {
2882
- text: string;
2883
2575
  } | undefined;
2884
- image?: {
2576
+ defaultImage?: {
2885
2577
  url: string;
2886
2578
  type: "image";
2887
2579
  text?: string | undefined;
@@ -2890,12 +2582,14 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2890
2582
  control?: string | undefined;
2891
2583
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2892
2584
  } | undefined;
2585
+ providesTitle?: boolean | undefined;
2586
+ providesDescription?: boolean | undefined;
2587
+ providesIcon?: boolean | undefined;
2588
+ providesImage?: boolean | undefined;
2893
2589
  }>]>;
2894
- export declare const pollingSchema: z.ZodObject<{
2895
- url: z.ZodString;
2896
- interval: z.ZodNumber;
2897
- maxAttempts: z.ZodNumber;
2898
- onError: z.ZodObject<{
2590
+ export declare const decisionLayoutSchema: z.ZodObject<{
2591
+ type: z.ZodLiteral<"decision">;
2592
+ options: z.ZodArray<z.ZodObject<{
2899
2593
  action: z.ZodObject<{
2900
2594
  title: z.ZodOptional<z.ZodString>;
2901
2595
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -2939,6 +2633,47 @@ export declare const pollingSchema: z.ZodObject<{
2939
2633
  timeout?: number | undefined;
2940
2634
  skipValidation?: boolean | undefined;
2941
2635
  }>;
2636
+ title: z.ZodString;
2637
+ description: z.ZodOptional<z.ZodString>;
2638
+ disabled: z.ZodOptional<z.ZodBoolean>;
2639
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2640
+ name: z.ZodString;
2641
+ }, "strip", z.ZodTypeAny, {
2642
+ name: string;
2643
+ }, {
2644
+ name: string;
2645
+ }>, z.ZodObject<{
2646
+ text: z.ZodString;
2647
+ }, "strip", z.ZodTypeAny, {
2648
+ text: string;
2649
+ }, {
2650
+ text: string;
2651
+ }>]>>;
2652
+ image: z.ZodOptional<z.ZodObject<{
2653
+ type: z.ZodLiteral<"image">;
2654
+ text: z.ZodOptional<z.ZodString>;
2655
+ url: z.ZodString;
2656
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2657
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
2658
+ control: z.ZodOptional<z.ZodString>;
2659
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2660
+ }, "strip", z.ZodTypeAny, {
2661
+ url: string;
2662
+ type: "image";
2663
+ text?: string | undefined;
2664
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2665
+ accessibilityDescription?: string | undefined;
2666
+ control?: string | undefined;
2667
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2668
+ }, {
2669
+ url: string;
2670
+ type: "image";
2671
+ text?: string | undefined;
2672
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2673
+ accessibilityDescription?: string | undefined;
2674
+ control?: string | undefined;
2675
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2676
+ }>>;
2942
2677
  }, "strip", z.ZodTypeAny, {
2943
2678
  action: {
2944
2679
  title?: string | undefined;
@@ -2955,6 +2690,23 @@ export declare const pollingSchema: z.ZodObject<{
2955
2690
  timeout?: number | undefined;
2956
2691
  skipValidation?: boolean | undefined;
2957
2692
  };
2693
+ title: string;
2694
+ description?: string | undefined;
2695
+ disabled?: boolean | undefined;
2696
+ icon?: {
2697
+ text: string;
2698
+ } | {
2699
+ name: string;
2700
+ } | undefined;
2701
+ image?: {
2702
+ url: string;
2703
+ type: "image";
2704
+ text?: string | undefined;
2705
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2706
+ accessibilityDescription?: string | undefined;
2707
+ control?: string | undefined;
2708
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2709
+ } | undefined;
2958
2710
  }, {
2959
2711
  action: {
2960
2712
  title?: string | undefined;
@@ -2971,12 +2723,29 @@ export declare const pollingSchema: z.ZodObject<{
2971
2723
  timeout?: number | undefined;
2972
2724
  skipValidation?: boolean | undefined;
2973
2725
  };
2974
- }>;
2726
+ title: string;
2727
+ description?: string | undefined;
2728
+ disabled?: boolean | undefined;
2729
+ icon?: {
2730
+ text: string;
2731
+ } | {
2732
+ name: string;
2733
+ } | undefined;
2734
+ image?: {
2735
+ url: string;
2736
+ type: "image";
2737
+ text?: string | undefined;
2738
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2739
+ accessibilityDescription?: string | undefined;
2740
+ control?: string | undefined;
2741
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2742
+ } | undefined;
2743
+ }>, "many">;
2744
+ control: z.ZodOptional<z.ZodString>;
2745
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2975
2746
  }, "strip", z.ZodTypeAny, {
2976
- url: string;
2977
- interval: number;
2978
- maxAttempts: number;
2979
- onError: {
2747
+ type: "decision";
2748
+ options: {
2980
2749
  action: {
2981
2750
  title?: string | undefined;
2982
2751
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
@@ -2992,12 +2761,29 @@ export declare const pollingSchema: z.ZodObject<{
2992
2761
  timeout?: number | undefined;
2993
2762
  skipValidation?: boolean | undefined;
2994
2763
  };
2995
- };
2764
+ title: string;
2765
+ description?: string | undefined;
2766
+ disabled?: boolean | undefined;
2767
+ icon?: {
2768
+ text: string;
2769
+ } | {
2770
+ name: string;
2771
+ } | undefined;
2772
+ image?: {
2773
+ url: string;
2774
+ type: "image";
2775
+ text?: string | undefined;
2776
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2777
+ accessibilityDescription?: string | undefined;
2778
+ control?: string | undefined;
2779
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2780
+ } | undefined;
2781
+ }[];
2782
+ control?: string | undefined;
2783
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2996
2784
  }, {
2997
- url: string;
2998
- interval: number;
2999
- maxAttempts: number;
3000
- onError: {
2785
+ type: "decision";
2786
+ options: {
3001
2787
  action: {
3002
2788
  title?: string | undefined;
3003
2789
  type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
@@ -3013,247 +2799,461 @@ export declare const pollingSchema: z.ZodObject<{
3013
2799
  timeout?: number | undefined;
3014
2800
  skipValidation?: boolean | undefined;
3015
2801
  };
3016
- };
3017
- }>;
3018
- export declare const navigationSchema: z.ZodObject<{
3019
- backButton: z.ZodOptional<z.ZodObject<{
3020
- title: z.ZodOptional<z.ZodString>;
3021
- action: z.ZodObject<{
3022
- title: z.ZodOptional<z.ZodString>;
3023
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
3024
- disabled: z.ZodOptional<z.ZodBoolean>;
3025
- $id: z.ZodOptional<z.ZodString>;
3026
- $ref: z.ZodOptional<z.ZodString>;
3027
- id: z.ZodOptional<z.ZodString>;
3028
- url: z.ZodOptional<z.ZodString>;
3029
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
3030
- exit: z.ZodOptional<z.ZodBoolean>;
3031
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3032
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3033
- timeout: z.ZodOptional<z.ZodNumber>;
3034
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2802
+ title: string;
2803
+ description?: string | undefined;
2804
+ disabled?: boolean | undefined;
2805
+ icon?: {
2806
+ text: string;
2807
+ } | {
2808
+ name: string;
2809
+ } | undefined;
2810
+ image?: {
2811
+ url: string;
2812
+ type: "image";
2813
+ text?: string | undefined;
2814
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2815
+ accessibilityDescription?: string | undefined;
2816
+ control?: string | undefined;
2817
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2818
+ } | undefined;
2819
+ }[];
2820
+ control?: string | undefined;
2821
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2822
+ }>;
2823
+ export declare const listLayoutSchema: z.ZodObject<{
2824
+ type: z.ZodLiteral<"list">;
2825
+ items: z.ZodArray<z.ZodObject<{
2826
+ title: z.ZodString;
2827
+ description: z.ZodOptional<z.ZodString>;
2828
+ icon: z.ZodUnion<[z.ZodObject<{
2829
+ name: z.ZodString;
3035
2830
  }, "strip", z.ZodTypeAny, {
3036
- title?: string | undefined;
3037
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3038
- disabled?: boolean | undefined;
3039
- $id?: string | undefined;
3040
- $ref?: string | undefined;
3041
- id?: string | undefined;
3042
- url?: string | undefined;
3043
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3044
- exit?: boolean | undefined;
3045
- result?: JsonElement | undefined;
3046
- data?: JsonElement | undefined;
3047
- timeout?: number | undefined;
3048
- skipValidation?: boolean | undefined;
2831
+ name: string;
3049
2832
  }, {
3050
- title?: string | undefined;
3051
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3052
- disabled?: boolean | undefined;
3053
- $id?: string | undefined;
3054
- $ref?: string | undefined;
3055
- id?: string | undefined;
3056
- url?: string | undefined;
3057
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3058
- exit?: boolean | undefined;
3059
- result?: JsonElement | undefined;
3060
- data?: JsonElement | undefined;
3061
- timeout?: number | undefined;
3062
- skipValidation?: boolean | undefined;
3063
- }>;
2833
+ name: string;
2834
+ }>, z.ZodObject<{
2835
+ text: z.ZodString;
2836
+ }, "strip", z.ZodTypeAny, {
2837
+ text: string;
2838
+ }, {
2839
+ text: string;
2840
+ }>]>;
2841
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
3064
2842
  }, "strip", z.ZodTypeAny, {
3065
- action: {
3066
- title?: string | undefined;
3067
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3068
- disabled?: boolean | undefined;
3069
- $id?: string | undefined;
3070
- $ref?: string | undefined;
3071
- id?: string | undefined;
3072
- url?: string | undefined;
3073
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3074
- exit?: boolean | undefined;
3075
- result?: JsonElement | undefined;
3076
- data?: JsonElement | undefined;
3077
- timeout?: number | undefined;
3078
- skipValidation?: boolean | undefined;
3079
- };
3080
- title?: string | undefined;
2843
+ icon: ({
2844
+ text: string;
2845
+ } | {
2846
+ name: string;
2847
+ }) & ({
2848
+ text: string;
2849
+ } | {
2850
+ name: string;
2851
+ } | undefined);
2852
+ title: string;
2853
+ description?: string | undefined;
2854
+ status?: "neutral" | "warning" | "positive" | undefined;
3081
2855
  }, {
3082
- action: {
3083
- title?: string | undefined;
3084
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3085
- disabled?: boolean | undefined;
3086
- $id?: string | undefined;
3087
- $ref?: string | undefined;
3088
- id?: string | undefined;
3089
- url?: string | undefined;
3090
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3091
- exit?: boolean | undefined;
3092
- result?: JsonElement | undefined;
3093
- data?: JsonElement | undefined;
3094
- timeout?: number | undefined;
3095
- skipValidation?: boolean | undefined;
3096
- };
3097
- title?: string | undefined;
3098
- }>>;
3099
- back: z.ZodOptional<z.ZodObject<{
3100
- title: z.ZodOptional<z.ZodString>;
3101
- action: z.ZodObject<{
3102
- title: z.ZodOptional<z.ZodString>;
3103
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
3104
- disabled: z.ZodOptional<z.ZodBoolean>;
3105
- $id: z.ZodOptional<z.ZodString>;
3106
- $ref: z.ZodOptional<z.ZodString>;
3107
- id: z.ZodOptional<z.ZodString>;
3108
- url: z.ZodOptional<z.ZodString>;
3109
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
3110
- exit: z.ZodOptional<z.ZodBoolean>;
3111
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3112
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3113
- timeout: z.ZodOptional<z.ZodNumber>;
3114
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2856
+ icon: ({
2857
+ text: string;
2858
+ } | {
2859
+ name: string;
2860
+ }) & ({
2861
+ text: string;
2862
+ } | {
2863
+ name: string;
2864
+ } | undefined);
2865
+ title: string;
2866
+ description?: string | undefined;
2867
+ status?: "neutral" | "warning" | "positive" | undefined;
2868
+ }>, "many">;
2869
+ title: z.ZodOptional<z.ZodString>;
2870
+ control: z.ZodOptional<z.ZodString>;
2871
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2872
+ }, "strip", z.ZodTypeAny, {
2873
+ type: "list";
2874
+ items: {
2875
+ icon: ({
2876
+ text: string;
2877
+ } | {
2878
+ name: string;
2879
+ }) & ({
2880
+ text: string;
2881
+ } | {
2882
+ name: string;
2883
+ } | undefined);
2884
+ title: string;
2885
+ description?: string | undefined;
2886
+ status?: "neutral" | "warning" | "positive" | undefined;
2887
+ }[];
2888
+ title?: string | undefined;
2889
+ control?: string | undefined;
2890
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2891
+ }, {
2892
+ type: "list";
2893
+ items: {
2894
+ icon: ({
2895
+ text: string;
2896
+ } | {
2897
+ name: string;
2898
+ }) & ({
2899
+ text: string;
2900
+ } | {
2901
+ name: string;
2902
+ } | undefined);
2903
+ title: string;
2904
+ description?: string | undefined;
2905
+ status?: "neutral" | "warning" | "positive" | undefined;
2906
+ }[];
2907
+ title?: string | undefined;
2908
+ control?: string | undefined;
2909
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2910
+ }>;
2911
+ export declare const statusListLayoutSchema: z.ZodObject<{
2912
+ type: z.ZodLiteral<"status-list">;
2913
+ items: z.ZodArray<z.ZodObject<{
2914
+ title: z.ZodString;
2915
+ description: z.ZodOptional<z.ZodString>;
2916
+ icon: z.ZodUnion<[z.ZodObject<{
2917
+ name: z.ZodString;
3115
2918
  }, "strip", z.ZodTypeAny, {
3116
- title?: string | undefined;
3117
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3118
- disabled?: boolean | undefined;
3119
- $id?: string | undefined;
3120
- $ref?: string | undefined;
3121
- id?: string | undefined;
3122
- url?: string | undefined;
3123
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3124
- exit?: boolean | undefined;
3125
- result?: JsonElement | undefined;
3126
- data?: JsonElement | undefined;
3127
- timeout?: number | undefined;
3128
- skipValidation?: boolean | undefined;
2919
+ name: string;
3129
2920
  }, {
3130
- title?: string | undefined;
3131
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3132
- disabled?: boolean | undefined;
3133
- $id?: string | undefined;
3134
- $ref?: string | undefined;
3135
- id?: string | undefined;
3136
- url?: string | undefined;
3137
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3138
- exit?: boolean | undefined;
3139
- result?: JsonElement | undefined;
3140
- data?: JsonElement | undefined;
3141
- timeout?: number | undefined;
3142
- skipValidation?: boolean | undefined;
3143
- }>;
2921
+ name: string;
2922
+ }>, z.ZodObject<{
2923
+ text: z.ZodString;
2924
+ }, "strip", z.ZodTypeAny, {
2925
+ text: string;
2926
+ }, {
2927
+ text: string;
2928
+ }>]>;
2929
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
2930
+ }, "strip", z.ZodTypeAny, {
2931
+ icon: ({
2932
+ text: string;
2933
+ } | {
2934
+ name: string;
2935
+ }) & ({
2936
+ text: string;
2937
+ } | {
2938
+ name: string;
2939
+ } | undefined);
2940
+ title: string;
2941
+ description?: string | undefined;
2942
+ status?: "done" | "not-done" | "pending" | undefined;
2943
+ }, {
2944
+ icon: ({
2945
+ text: string;
2946
+ } | {
2947
+ name: string;
2948
+ }) & ({
2949
+ text: string;
2950
+ } | {
2951
+ name: string;
2952
+ } | undefined);
2953
+ title: string;
2954
+ description?: string | undefined;
2955
+ status?: "done" | "not-done" | "pending" | undefined;
2956
+ }>, "many">;
2957
+ title: z.ZodOptional<z.ZodString>;
2958
+ control: z.ZodOptional<z.ZodString>;
2959
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2960
+ }, "strip", z.ZodTypeAny, {
2961
+ type: "status-list";
2962
+ items: {
2963
+ icon: ({
2964
+ text: string;
2965
+ } | {
2966
+ name: string;
2967
+ }) & ({
2968
+ text: string;
2969
+ } | {
2970
+ name: string;
2971
+ } | undefined);
2972
+ title: string;
2973
+ description?: string | undefined;
2974
+ status?: "done" | "not-done" | "pending" | undefined;
2975
+ }[];
2976
+ title?: string | undefined;
2977
+ control?: string | undefined;
2978
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2979
+ }, {
2980
+ type: "status-list";
2981
+ items: {
2982
+ icon: ({
2983
+ text: string;
2984
+ } | {
2985
+ name: string;
2986
+ }) & ({
2987
+ text: string;
2988
+ } | {
2989
+ name: string;
2990
+ } | undefined);
2991
+ title: string;
2992
+ description?: string | undefined;
2993
+ status?: "done" | "not-done" | "pending" | undefined;
2994
+ }[];
2995
+ title?: string | undefined;
2996
+ control?: string | undefined;
2997
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2998
+ }>;
2999
+ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
3000
+ type: z.ZodLiteral<"action">;
3001
+ title: z.ZodString;
3002
+ description: z.ZodOptional<z.ZodString>;
3003
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3004
+ name: z.ZodString;
3005
+ }, "strip", z.ZodTypeAny, {
3006
+ name: string;
3007
+ }, {
3008
+ name: string;
3009
+ }>, z.ZodObject<{
3010
+ text: z.ZodString;
3011
+ }, "strip", z.ZodTypeAny, {
3012
+ text: string;
3013
+ }, {
3014
+ text: string;
3015
+ }>]>>;
3016
+ image: z.ZodOptional<z.ZodObject<{
3017
+ type: z.ZodLiteral<"image">;
3018
+ text: z.ZodOptional<z.ZodString>;
3019
+ url: z.ZodString;
3020
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3021
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
3022
+ control: z.ZodOptional<z.ZodString>;
3023
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3024
+ }, "strip", z.ZodTypeAny, {
3025
+ url: string;
3026
+ type: "image";
3027
+ text?: string | undefined;
3028
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3029
+ accessibilityDescription?: string | undefined;
3030
+ control?: string | undefined;
3031
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3032
+ }, {
3033
+ url: string;
3034
+ type: "image";
3035
+ text?: string | undefined;
3036
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3037
+ accessibilityDescription?: string | undefined;
3038
+ control?: string | undefined;
3039
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3040
+ }>>;
3041
+ value: z.ZodObject<{
3042
+ title: z.ZodOptional<z.ZodString>;
3043
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
3044
+ disabled: z.ZodOptional<z.ZodBoolean>;
3045
+ $id: z.ZodOptional<z.ZodString>;
3046
+ $ref: z.ZodOptional<z.ZodString>;
3047
+ id: z.ZodOptional<z.ZodString>;
3048
+ url: z.ZodOptional<z.ZodString>;
3049
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
3050
+ exit: z.ZodOptional<z.ZodBoolean>;
3051
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3052
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3053
+ timeout: z.ZodOptional<z.ZodNumber>;
3054
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
3144
3055
  }, "strip", z.ZodTypeAny, {
3145
- action: {
3146
- title?: string | undefined;
3147
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3148
- disabled?: boolean | undefined;
3149
- $id?: string | undefined;
3150
- $ref?: string | undefined;
3151
- id?: string | undefined;
3152
- url?: string | undefined;
3153
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3154
- exit?: boolean | undefined;
3155
- result?: JsonElement | undefined;
3156
- data?: JsonElement | undefined;
3157
- timeout?: number | undefined;
3158
- skipValidation?: boolean | undefined;
3159
- };
3160
3056
  title?: string | undefined;
3057
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3058
+ disabled?: boolean | undefined;
3059
+ $id?: string | undefined;
3060
+ $ref?: string | undefined;
3061
+ id?: string | undefined;
3062
+ url?: string | undefined;
3063
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3064
+ exit?: boolean | undefined;
3065
+ result?: JsonElement | undefined;
3066
+ data?: JsonElement | undefined;
3067
+ timeout?: number | undefined;
3068
+ skipValidation?: boolean | undefined;
3161
3069
  }, {
3162
- action: {
3163
- title?: string | undefined;
3164
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3165
- disabled?: boolean | undefined;
3166
- $id?: string | undefined;
3167
- $ref?: string | undefined;
3168
- id?: string | undefined;
3169
- url?: string | undefined;
3170
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3171
- exit?: boolean | undefined;
3172
- result?: JsonElement | undefined;
3173
- data?: JsonElement | undefined;
3174
- timeout?: number | undefined;
3175
- skipValidation?: boolean | undefined;
3176
- };
3177
3070
  title?: string | undefined;
3071
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3072
+ disabled?: boolean | undefined;
3073
+ $id?: string | undefined;
3074
+ $ref?: string | undefined;
3075
+ id?: string | undefined;
3076
+ url?: string | undefined;
3077
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3078
+ exit?: boolean | undefined;
3079
+ result?: JsonElement | undefined;
3080
+ data?: JsonElement | undefined;
3081
+ timeout?: number | undefined;
3082
+ skipValidation?: boolean | undefined;
3083
+ }>;
3084
+ }, "strip", z.ZodTypeAny, {
3085
+ type: "action";
3086
+ title: string;
3087
+ value: {
3088
+ title?: string | undefined;
3089
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3090
+ disabled?: boolean | undefined;
3091
+ $id?: string | undefined;
3092
+ $ref?: string | undefined;
3093
+ id?: string | undefined;
3094
+ url?: string | undefined;
3095
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3096
+ exit?: boolean | undefined;
3097
+ result?: JsonElement | undefined;
3098
+ data?: JsonElement | undefined;
3099
+ timeout?: number | undefined;
3100
+ skipValidation?: boolean | undefined;
3101
+ };
3102
+ description?: string | undefined;
3103
+ icon?: {
3104
+ text: string;
3105
+ } | {
3106
+ name: string;
3107
+ } | undefined;
3108
+ image?: {
3109
+ url: string;
3110
+ type: "image";
3111
+ text?: string | undefined;
3112
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3113
+ accessibilityDescription?: string | undefined;
3114
+ control?: string | undefined;
3115
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3116
+ } | undefined;
3117
+ }, {
3118
+ type: "action";
3119
+ title: string;
3120
+ value: {
3121
+ title?: string | undefined;
3122
+ type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3123
+ disabled?: boolean | undefined;
3124
+ $id?: string | undefined;
3125
+ $ref?: string | undefined;
3126
+ id?: string | undefined;
3127
+ url?: string | undefined;
3128
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3129
+ exit?: boolean | undefined;
3130
+ result?: JsonElement | undefined;
3131
+ data?: JsonElement | undefined;
3132
+ timeout?: number | undefined;
3133
+ skipValidation?: boolean | undefined;
3134
+ };
3135
+ description?: string | undefined;
3136
+ icon?: {
3137
+ text: string;
3138
+ } | {
3139
+ name: string;
3140
+ } | undefined;
3141
+ image?: {
3142
+ url: string;
3143
+ type: "image";
3144
+ text?: string | undefined;
3145
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3146
+ accessibilityDescription?: string | undefined;
3147
+ control?: string | undefined;
3148
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3149
+ } | undefined;
3150
+ }>, z.ZodObject<{
3151
+ type: z.ZodLiteral<"search">;
3152
+ title: z.ZodString;
3153
+ description: z.ZodOptional<z.ZodString>;
3154
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3155
+ name: z.ZodString;
3156
+ }, "strip", z.ZodTypeAny, {
3157
+ name: string;
3158
+ }, {
3159
+ name: string;
3160
+ }>, z.ZodObject<{
3161
+ text: z.ZodString;
3162
+ }, "strip", z.ZodTypeAny, {
3163
+ text: string;
3164
+ }, {
3165
+ text: string;
3166
+ }>]>>;
3167
+ image: z.ZodOptional<z.ZodObject<{
3168
+ type: z.ZodLiteral<"image">;
3169
+ text: z.ZodOptional<z.ZodString>;
3170
+ url: z.ZodString;
3171
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3172
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
3173
+ control: z.ZodOptional<z.ZodString>;
3174
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3175
+ }, "strip", z.ZodTypeAny, {
3176
+ url: string;
3177
+ type: "image";
3178
+ text?: string | undefined;
3179
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3180
+ accessibilityDescription?: string | undefined;
3181
+ control?: string | undefined;
3182
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3183
+ }, {
3184
+ url: string;
3185
+ type: "image";
3186
+ text?: string | undefined;
3187
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3188
+ accessibilityDescription?: string | undefined;
3189
+ control?: string | undefined;
3190
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3178
3191
  }>>;
3179
- stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
3192
+ value: z.ZodObject<{
3193
+ url: z.ZodString;
3194
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
3195
+ param: z.ZodString;
3196
+ query: z.ZodString;
3197
+ }, "strip", z.ZodTypeAny, {
3198
+ url: string;
3199
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3200
+ param: string;
3201
+ query: string;
3202
+ }, {
3203
+ url: string;
3204
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3205
+ param: string;
3206
+ query: string;
3207
+ }>;
3180
3208
  }, "strip", z.ZodTypeAny, {
3181
- backButton?: {
3182
- action: {
3183
- title?: string | undefined;
3184
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3185
- disabled?: boolean | undefined;
3186
- $id?: string | undefined;
3187
- $ref?: string | undefined;
3188
- id?: string | undefined;
3189
- url?: string | undefined;
3190
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3191
- exit?: boolean | undefined;
3192
- result?: JsonElement | undefined;
3193
- data?: JsonElement | undefined;
3194
- timeout?: number | undefined;
3195
- skipValidation?: boolean | undefined;
3196
- };
3197
- title?: string | undefined;
3209
+ type: "search";
3210
+ title: string;
3211
+ value: {
3212
+ url: string;
3213
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3214
+ param: string;
3215
+ query: string;
3216
+ };
3217
+ description?: string | undefined;
3218
+ icon?: {
3219
+ text: string;
3220
+ } | {
3221
+ name: string;
3198
3222
  } | undefined;
3199
- back?: {
3200
- action: {
3201
- title?: string | undefined;
3202
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3203
- disabled?: boolean | undefined;
3204
- $id?: string | undefined;
3205
- $ref?: string | undefined;
3206
- id?: string | undefined;
3207
- url?: string | undefined;
3208
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3209
- exit?: boolean | undefined;
3210
- result?: JsonElement | undefined;
3211
- data?: JsonElement | undefined;
3212
- timeout?: number | undefined;
3213
- skipValidation?: boolean | undefined;
3214
- };
3215
- title?: string | undefined;
3223
+ image?: {
3224
+ url: string;
3225
+ type: "image";
3226
+ text?: string | undefined;
3227
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3228
+ accessibilityDescription?: string | undefined;
3229
+ control?: string | undefined;
3230
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3216
3231
  } | undefined;
3217
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
3218
3232
  }, {
3219
- backButton?: {
3220
- action: {
3221
- title?: string | undefined;
3222
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3223
- disabled?: boolean | undefined;
3224
- $id?: string | undefined;
3225
- $ref?: string | undefined;
3226
- id?: string | undefined;
3227
- url?: string | undefined;
3228
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3229
- exit?: boolean | undefined;
3230
- result?: JsonElement | undefined;
3231
- data?: JsonElement | undefined;
3232
- timeout?: number | undefined;
3233
- skipValidation?: boolean | undefined;
3234
- };
3235
- title?: string | undefined;
3233
+ type: "search";
3234
+ title: string;
3235
+ value: {
3236
+ url: string;
3237
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3238
+ param: string;
3239
+ query: string;
3240
+ };
3241
+ description?: string | undefined;
3242
+ icon?: {
3243
+ text: string;
3244
+ } | {
3245
+ name: string;
3236
3246
  } | undefined;
3237
- back?: {
3238
- action: {
3239
- title?: string | undefined;
3240
- type?: "positive" | "negative" | "primary" | "secondary" | "link" | undefined;
3241
- disabled?: boolean | undefined;
3242
- $id?: string | undefined;
3243
- $ref?: string | undefined;
3244
- id?: string | undefined;
3245
- url?: string | undefined;
3246
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3247
- exit?: boolean | undefined;
3248
- result?: JsonElement | undefined;
3249
- data?: JsonElement | undefined;
3250
- timeout?: number | undefined;
3251
- skipValidation?: boolean | undefined;
3252
- };
3253
- title?: string | undefined;
3247
+ image?: {
3248
+ url: string;
3249
+ type: "image";
3250
+ text?: string | undefined;
3251
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3252
+ accessibilityDescription?: string | undefined;
3253
+ control?: string | undefined;
3254
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3254
3255
  } | undefined;
3255
- stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
3256
- }>;
3256
+ }>]>;
3257
3257
  export declare const searchResponseBodySchema: z.ZodObject<{
3258
3258
  results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
3259
3259
  type: z.ZodLiteral<"action">;
@@ -3360,9 +3360,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3360
3360
  };
3361
3361
  description?: string | undefined;
3362
3362
  icon?: {
3363
- name: string;
3364
- } | {
3365
3363
  text: string;
3364
+ } | {
3365
+ name: string;
3366
3366
  } | undefined;
3367
3367
  image?: {
3368
3368
  url: string;
@@ -3393,9 +3393,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3393
3393
  };
3394
3394
  description?: string | undefined;
3395
3395
  icon?: {
3396
- name: string;
3397
- } | {
3398
3396
  text: string;
3397
+ } | {
3398
+ name: string;
3399
3399
  } | undefined;
3400
3400
  image?: {
3401
3401
  url: string;
@@ -3475,9 +3475,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3475
3475
  };
3476
3476
  description?: string | undefined;
3477
3477
  icon?: {
3478
- name: string;
3479
- } | {
3480
3478
  text: string;
3479
+ } | {
3480
+ name: string;
3481
3481
  } | undefined;
3482
3482
  image?: {
3483
3483
  url: string;
@@ -3499,9 +3499,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3499
3499
  };
3500
3500
  description?: string | undefined;
3501
3501
  icon?: {
3502
- name: string;
3503
- } | {
3504
3502
  text: string;
3503
+ } | {
3504
+ name: string;
3505
3505
  } | undefined;
3506
3506
  image?: {
3507
3507
  url: string;
@@ -3515,30 +3515,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3515
3515
  }>]>, "many">;
3516
3516
  }, "strip", z.ZodTypeAny, {
3517
3517
  results: ({
3518
- type: "search";
3519
- title: string;
3520
- value: {
3521
- url: string;
3522
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3523
- param: string;
3524
- query: string;
3525
- };
3526
- description?: string | undefined;
3527
- icon?: {
3528
- name: string;
3529
- } | {
3530
- text: string;
3531
- } | undefined;
3532
- image?: {
3533
- url: string;
3534
- type: "image";
3535
- text?: string | undefined;
3536
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3537
- accessibilityDescription?: string | undefined;
3538
- control?: string | undefined;
3539
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3540
- } | undefined;
3541
- } | {
3542
3518
  type: "action";
3543
3519
  title: string;
3544
3520
  value: {
@@ -3558,9 +3534,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3558
3534
  };
3559
3535
  description?: string | undefined;
3560
3536
  icon?: {
3561
- name: string;
3562
- } | {
3563
3537
  text: string;
3538
+ } | {
3539
+ name: string;
3564
3540
  } | undefined;
3565
3541
  image?: {
3566
3542
  url: string;
@@ -3571,9 +3547,7 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3571
3547
  control?: string | undefined;
3572
3548
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3573
3549
  } | undefined;
3574
- })[];
3575
- }, {
3576
- results: ({
3550
+ } | {
3577
3551
  type: "search";
3578
3552
  title: string;
3579
3553
  value: {
@@ -3584,9 +3558,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3584
3558
  };
3585
3559
  description?: string | undefined;
3586
3560
  icon?: {
3587
- name: string;
3588
- } | {
3589
3561
  text: string;
3562
+ } | {
3563
+ name: string;
3590
3564
  } | undefined;
3591
3565
  image?: {
3592
3566
  url: string;
@@ -3597,7 +3571,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3597
3571
  control?: string | undefined;
3598
3572
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3599
3573
  } | undefined;
3600
- } | {
3574
+ })[];
3575
+ }, {
3576
+ results: ({
3601
3577
  type: "action";
3602
3578
  title: string;
3603
3579
  value: {
@@ -3617,9 +3593,33 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3617
3593
  };
3618
3594
  description?: string | undefined;
3619
3595
  icon?: {
3620
- name: string;
3596
+ text: string;
3621
3597
  } | {
3598
+ name: string;
3599
+ } | undefined;
3600
+ image?: {
3601
+ url: string;
3602
+ type: "image";
3603
+ text?: string | undefined;
3604
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3605
+ accessibilityDescription?: string | undefined;
3606
+ control?: string | undefined;
3607
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3608
+ } | undefined;
3609
+ } | {
3610
+ type: "search";
3611
+ title: string;
3612
+ value: {
3613
+ url: string;
3614
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3615
+ param: string;
3616
+ query: string;
3617
+ };
3618
+ description?: string | undefined;
3619
+ icon?: {
3622
3620
  text: string;
3621
+ } | {
3622
+ name: string;
3623
3623
  } | undefined;
3624
3624
  image?: {
3625
3625
  url: string;
@@ -3632,21 +3632,21 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3632
3632
  } | undefined;
3633
3633
  })[];
3634
3634
  }>;
3635
- export declare const layoutSchema: z.ZodSchema<Layout>;
3636
- export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
3637
- export declare const columnsLayoutSchema: z.ZodSchema<ColumnsLayout>;
3638
- export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
3639
- export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
3640
- export declare const stepSchema: z.ZodSchema<Step>;
3635
+ export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
3641
3636
  export declare const schemaSchema: z.ZodSchema<Schema>;
3637
+ export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
3638
+ export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
3639
+ export declare const objectSchemaSchema: z.ZodSchema<ObjectSchema>;
3640
+ export declare const arraySchemaListSchema: z.ZodSchema<ArraySchemaList>;
3642
3641
  export declare const allOfSchemaSchema: z.ZodSchema<AllOfSchema>;
3643
3642
  export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
3644
3643
  export declare const booleanSchemaSchema: z.ZodSchema<BooleanSchema>;
3645
3644
  export declare const integerSchemaSchema: z.ZodSchema<IntegerSchema>;
3646
3645
  export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
3647
- export declare const objectSchemaSchema: z.ZodSchema<ObjectSchema>;
3648
- export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
3649
3646
  export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
3650
- export declare const arraySchemaListSchema: z.ZodSchema<ArraySchemaList>;
3651
- export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
3652
- export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
3647
+ export declare const stepSchema: z.ZodSchema<Step>;
3648
+ export declare const layoutSchema: z.ZodSchema<Layout>;
3649
+ export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
3650
+ export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
3651
+ export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
3652
+ export declare const columnsLayoutSchema: z.ZodSchema<ColumnsLayout>;