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