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