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