@wise/dynamic-flow-types 3.11.0 → 3.12.0-experimental-048a281
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 +703 -703
- package/build/main.mjs +703 -703
- package/build/next/index.d.ts +4 -4
- package/build/renderers/RendererProps.d.ts +13 -4
- package/build/renderers/ReviewRendererProps.d.ts +11 -0
- package/build/renderers/StepRendererProps.d.ts +21 -1
- package/build/renderers/index.d.ts +1 -1
- package/build/zod/schemas.d.ts +1572 -1572
- package/package.json +2 -1
package/build/zod/schemas.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import type { JsonElement,
|
|
2
|
+
import type { JsonElement, AllOfSchema, Schema, AlertLayout, StringSchema, PersistAsync, Behavior, IntegerSchema, ArraySchemaTuple, OneOfSchema, ConstSchema, ArraySchema, BlobSchema, BooleanSchema, NumberSchema, ObjectSchema, ArraySchemaList, ModalResponseBody, Layout, ToolbarItem, ToolbarButton, Toolbar, ModalBehavior, Polling, PollingOnError, LinkHandler, Step, StatusListLayout, StatusListLayoutItem, TabsLayoutTab, ListLayoutItem, AdditionalInfo, ColumnsLayout, DecisionLayout, DecisionLayoutOption, AlertLayoutCallToAction, ReviewLayoutCallToAction, SectionLayoutCallToAction, ReviewLayout, ReviewLayoutField, BoxLayout, ButtonLayout, ListLayout, ModalLayout, SectionLayout, TabsLayout, ModalLayoutContent, ItemCallToAction, ListLayoutCallToAction } from '../next';
|
|
3
3
|
export declare const imageSchema: z.ZodObject<{
|
|
4
4
|
text: z.ZodOptional<z.ZodString>;
|
|
5
5
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -16,163 +16,142 @@ export declare const imageSchema: z.ZodObject<{
|
|
|
16
16
|
uri?: string | undefined;
|
|
17
17
|
accessibilityDescription?: string | undefined;
|
|
18
18
|
}>;
|
|
19
|
-
export declare const
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
export declare const summaryProviderSchema: z.ZodObject<{
|
|
20
|
+
providesTitle: z.ZodOptional<z.ZodBoolean>;
|
|
21
|
+
providesDescription: z.ZodOptional<z.ZodBoolean>;
|
|
22
|
+
providesIcon: z.ZodOptional<z.ZodBoolean>;
|
|
23
|
+
providesImage: z.ZodOptional<z.ZodBoolean>;
|
|
24
|
+
providesMedia: z.ZodOptional<z.ZodBoolean>;
|
|
22
25
|
}, "strip", z.ZodTypeAny, {
|
|
23
|
-
|
|
26
|
+
providesTitle?: boolean | undefined;
|
|
27
|
+
providesDescription?: boolean | undefined;
|
|
28
|
+
providesIcon?: boolean | undefined;
|
|
29
|
+
providesImage?: boolean | undefined;
|
|
30
|
+
providesMedia?: boolean | undefined;
|
|
24
31
|
}, {
|
|
25
|
-
|
|
32
|
+
providesTitle?: boolean | undefined;
|
|
33
|
+
providesDescription?: boolean | undefined;
|
|
34
|
+
providesIcon?: boolean | undefined;
|
|
35
|
+
providesImage?: boolean | undefined;
|
|
36
|
+
providesMedia?: boolean | undefined;
|
|
26
37
|
}>;
|
|
27
|
-
export declare const
|
|
28
|
-
|
|
29
|
-
|
|
38
|
+
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">]>;
|
|
39
|
+
export declare const autocapitalizationTypeSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"characters">, z.ZodLiteral<"sentences">, z.ZodLiteral<"words">]>;
|
|
40
|
+
export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
|
|
41
|
+
export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
|
|
42
|
+
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">]>;
|
|
43
|
+
export declare const helpSchema: z.ZodObject<{
|
|
44
|
+
markdown: z.ZodString;
|
|
30
45
|
}, "strip", z.ZodTypeAny, {
|
|
31
|
-
|
|
32
|
-
subvalue?: string | undefined;
|
|
46
|
+
markdown: string;
|
|
33
47
|
}, {
|
|
34
|
-
|
|
35
|
-
subvalue?: string | undefined;
|
|
48
|
+
markdown: string;
|
|
36
49
|
}>;
|
|
37
|
-
export declare const
|
|
38
|
-
export declare const
|
|
39
|
-
|
|
40
|
-
|
|
50
|
+
export declare const httpMethodSchema: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
|
|
51
|
+
export declare const errorResponseBodySchema: z.ZodObject<{
|
|
52
|
+
refreshFormUrl: z.ZodOptional<z.ZodString>;
|
|
53
|
+
analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
54
|
+
error: z.ZodOptional<z.ZodString>;
|
|
55
|
+
validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
56
|
+
refreshUrl: z.ZodOptional<z.ZodString>;
|
|
41
57
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
|
|
43
|
-
|
|
58
|
+
refreshUrl?: string | undefined;
|
|
59
|
+
refreshFormUrl?: string | undefined;
|
|
60
|
+
analytics?: Record<string, string> | undefined;
|
|
61
|
+
validation?: JsonElement | undefined;
|
|
62
|
+
error?: string | undefined;
|
|
44
63
|
}, {
|
|
45
|
-
|
|
46
|
-
|
|
64
|
+
refreshUrl?: string | undefined;
|
|
65
|
+
refreshFormUrl?: string | undefined;
|
|
66
|
+
analytics?: Record<string, string> | undefined;
|
|
67
|
+
validation?: JsonElement | undefined;
|
|
68
|
+
error?: string | undefined;
|
|
47
69
|
}>;
|
|
48
|
-
export declare const
|
|
49
|
-
|
|
70
|
+
export declare const linkSchema: z.ZodObject<{
|
|
71
|
+
url: z.ZodString;
|
|
50
72
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
|
|
73
|
+
url: string;
|
|
52
74
|
}, {
|
|
53
|
-
|
|
75
|
+
url: string;
|
|
54
76
|
}>;
|
|
55
|
-
export declare const
|
|
56
|
-
|
|
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;
|
|
77
|
+
export declare const refreshBehaviorSchema: z.ZodObject<{
|
|
78
|
+
type: z.ZodLiteral<"refresh">;
|
|
66
79
|
}, "strip", z.ZodTypeAny, {
|
|
67
|
-
|
|
80
|
+
type: "refresh";
|
|
68
81
|
}, {
|
|
69
|
-
|
|
70
|
-
}
|
|
71
|
-
export declare const
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
82
|
+
type: "refresh";
|
|
83
|
+
}>;
|
|
84
|
+
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">]>;
|
|
85
|
+
export declare const dismissBehaviorSchema: z.ZodObject<{
|
|
86
|
+
type: z.ZodLiteral<"dismiss">;
|
|
75
87
|
}, "strip", z.ZodTypeAny, {
|
|
76
|
-
type: "
|
|
77
|
-
uri: string;
|
|
78
|
-
accessibilityDescription?: string | undefined;
|
|
88
|
+
type: "dismiss";
|
|
79
89
|
}, {
|
|
80
|
-
type: "
|
|
81
|
-
uri: string;
|
|
82
|
-
accessibilityDescription?: string | undefined;
|
|
90
|
+
type: "dismiss";
|
|
83
91
|
}>;
|
|
84
|
-
export declare const
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
92
|
+
export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
|
|
93
|
+
export declare const stepErrorSchema: z.ZodObject<{
|
|
94
|
+
error: z.ZodOptional<z.ZodString>;
|
|
95
|
+
validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
88
96
|
}, "strip", z.ZodTypeAny, {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
badgeUri?: string | undefined;
|
|
97
|
+
validation?: JsonElement | undefined;
|
|
98
|
+
error?: string | undefined;
|
|
92
99
|
}, {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
badgeUri?: string | undefined;
|
|
100
|
+
validation?: JsonElement | undefined;
|
|
101
|
+
error?: string | undefined;
|
|
96
102
|
}>;
|
|
97
|
-
export declare const
|
|
98
|
-
type: z.ZodLiteral<"
|
|
99
|
-
|
|
100
|
-
badgeUri: z.ZodOptional<z.ZodString>;
|
|
103
|
+
export declare const copyBehaviorSchema: z.ZodObject<{
|
|
104
|
+
type: z.ZodLiteral<"copy">;
|
|
105
|
+
content: z.ZodString;
|
|
101
106
|
}, "strip", z.ZodTypeAny, {
|
|
102
|
-
type: "
|
|
103
|
-
|
|
104
|
-
badgeUri?: string | undefined;
|
|
107
|
+
type: "copy";
|
|
108
|
+
content: string;
|
|
105
109
|
}, {
|
|
106
|
-
type: "
|
|
107
|
-
|
|
108
|
-
badgeUri?: string | undefined;
|
|
110
|
+
type: "copy";
|
|
111
|
+
content: string;
|
|
109
112
|
}>;
|
|
110
|
-
export declare const
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
114
|
-
control: z.ZodOptional<z.ZodString>;
|
|
115
|
-
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
116
|
-
analyticsId: z.ZodOptional<z.ZodString>;
|
|
113
|
+
export declare const linkBehaviorSchema: z.ZodObject<{
|
|
114
|
+
type: z.ZodLiteral<"link">;
|
|
115
|
+
url: z.ZodString;
|
|
117
116
|
}, "strip", z.ZodTypeAny, {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
control?: string | undefined;
|
|
121
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
122
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
117
|
+
url: string;
|
|
118
|
+
type: "link";
|
|
123
119
|
}, {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
control?: string | undefined;
|
|
127
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
128
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
120
|
+
url: string;
|
|
121
|
+
type: "link";
|
|
129
122
|
}>;
|
|
130
|
-
export declare const
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
|
|
134
|
-
control: z.ZodOptional<z.ZodString>;
|
|
135
|
-
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
136
|
-
analyticsId: z.ZodOptional<z.ZodString>;
|
|
123
|
+
export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
|
|
124
|
+
export declare const externalSchema: z.ZodObject<{
|
|
125
|
+
url: z.ZodString;
|
|
137
126
|
}, "strip", z.ZodTypeAny, {
|
|
138
|
-
|
|
139
|
-
text: string;
|
|
140
|
-
analyticsId?: string | undefined;
|
|
141
|
-
control?: string | undefined;
|
|
142
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
143
|
-
align?: "left" | "right" | "center" | undefined;
|
|
127
|
+
url: string;
|
|
144
128
|
}, {
|
|
145
|
-
|
|
146
|
-
text: string;
|
|
147
|
-
analyticsId?: string | undefined;
|
|
148
|
-
control?: string | undefined;
|
|
149
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
150
|
-
align?: "left" | "right" | "center" | undefined;
|
|
129
|
+
url: string;
|
|
151
130
|
}>;
|
|
152
|
-
export declare const
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
131
|
+
export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
|
|
132
|
+
export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
|
|
133
|
+
export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
|
|
134
|
+
export declare const supportingValuesSchema: z.ZodObject<{
|
|
135
|
+
value: z.ZodOptional<z.ZodString>;
|
|
136
|
+
subvalue: z.ZodOptional<z.ZodString>;
|
|
157
137
|
}, "strip", z.ZodTypeAny, {
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
control?: string | undefined;
|
|
161
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
138
|
+
value?: string | undefined;
|
|
139
|
+
subvalue?: string | undefined;
|
|
162
140
|
}, {
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
control?: string | undefined;
|
|
166
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
141
|
+
value?: string | undefined;
|
|
142
|
+
subvalue?: string | undefined;
|
|
167
143
|
}>;
|
|
168
|
-
export declare const
|
|
169
|
-
|
|
170
|
-
|
|
144
|
+
export declare const inlineAlertSchema: z.ZodObject<{
|
|
145
|
+
content: z.ZodString;
|
|
146
|
+
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">]>>;
|
|
171
147
|
}, "strip", z.ZodTypeAny, {
|
|
172
|
-
|
|
148
|
+
content: string;
|
|
149
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
173
150
|
}, {
|
|
174
|
-
|
|
151
|
+
content: string;
|
|
152
|
+
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
175
153
|
}>;
|
|
154
|
+
export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
|
|
176
155
|
export declare const imageLayoutSchema: z.ZodObject<{
|
|
177
156
|
type: z.ZodLiteral<"image">;
|
|
178
157
|
text: z.ZodOptional<z.ZodString>;
|
|
@@ -232,139 +211,87 @@ export declare const imageLayoutSchema: z.ZodObject<{
|
|
|
232
211
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
233
212
|
align?: "left" | "right" | "center" | undefined;
|
|
234
213
|
}>;
|
|
235
|
-
export declare const
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
214
|
+
export declare const infoLayoutSchema: z.ZodObject<{
|
|
215
|
+
type: z.ZodLiteral<"info">;
|
|
216
|
+
markdown: z.ZodString;
|
|
217
|
+
align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
|
|
218
|
+
control: z.ZodOptional<z.ZodString>;
|
|
219
|
+
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
240
220
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
241
221
|
}, "strip", z.ZodTypeAny, {
|
|
242
|
-
|
|
243
|
-
|
|
222
|
+
type: "info";
|
|
223
|
+
markdown: string;
|
|
244
224
|
analyticsId?: string | undefined;
|
|
245
|
-
|
|
225
|
+
control?: string | undefined;
|
|
226
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
227
|
+
align?: "left" | "right" | "center" | undefined;
|
|
246
228
|
}, {
|
|
247
|
-
|
|
248
|
-
|
|
229
|
+
type: "info";
|
|
230
|
+
markdown: string;
|
|
249
231
|
analyticsId?: string | undefined;
|
|
250
|
-
|
|
232
|
+
control?: string | undefined;
|
|
233
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
234
|
+
align?: "left" | "right" | "center" | undefined;
|
|
251
235
|
}>;
|
|
252
|
-
export declare const
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
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
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
288
|
-
emptyMessage?: string | undefined;
|
|
289
|
-
}>;
|
|
290
|
-
export declare const infoLayoutSchema: z.ZodObject<{
|
|
291
|
-
type: z.ZodLiteral<"info">;
|
|
292
|
-
markdown: z.ZodString;
|
|
236
|
+
export declare const headingLayoutSchema: z.ZodObject<{
|
|
237
|
+
type: z.ZodLiteral<"heading">;
|
|
238
|
+
text: z.ZodString;
|
|
239
|
+
size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
293
240
|
align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
|
|
294
241
|
control: z.ZodOptional<z.ZodString>;
|
|
295
242
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
296
243
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
297
244
|
}, "strip", z.ZodTypeAny, {
|
|
298
|
-
type: "
|
|
299
|
-
|
|
245
|
+
type: "heading";
|
|
246
|
+
text: string;
|
|
300
247
|
analyticsId?: string | undefined;
|
|
301
248
|
control?: string | undefined;
|
|
249
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
302
250
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
303
251
|
align?: "left" | "right" | "center" | undefined;
|
|
304
252
|
}, {
|
|
305
|
-
type: "
|
|
306
|
-
|
|
253
|
+
type: "heading";
|
|
254
|
+
text: string;
|
|
307
255
|
analyticsId?: string | undefined;
|
|
308
256
|
control?: string | undefined;
|
|
257
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
309
258
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
310
259
|
align?: "left" | "right" | "center" | undefined;
|
|
311
260
|
}>;
|
|
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;
|
|
261
|
+
export declare const dividerLayoutSchema: z.ZodObject<{
|
|
262
|
+
type: z.ZodLiteral<"divider">;
|
|
322
263
|
control: z.ZodOptional<z.ZodString>;
|
|
323
264
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
324
265
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
325
266
|
}, "strip", z.ZodTypeAny, {
|
|
326
|
-
type: "
|
|
327
|
-
schemaId: string;
|
|
267
|
+
type: "divider";
|
|
328
268
|
analyticsId?: string | undefined;
|
|
329
269
|
control?: string | undefined;
|
|
330
270
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
331
|
-
schema?: {
|
|
332
|
-
$ref: string;
|
|
333
|
-
} | undefined;
|
|
334
271
|
}, {
|
|
335
|
-
type: "
|
|
336
|
-
schemaId: string;
|
|
272
|
+
type: "divider";
|
|
337
273
|
analyticsId?: string | undefined;
|
|
338
274
|
control?: string | undefined;
|
|
339
275
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
340
|
-
schema?: {
|
|
341
|
-
$ref: string;
|
|
342
|
-
} | undefined;
|
|
343
276
|
}>;
|
|
344
|
-
export declare const
|
|
345
|
-
type: z.ZodLiteral<"
|
|
346
|
-
text: z.ZodString;
|
|
277
|
+
export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
|
|
278
|
+
type: z.ZodLiteral<"loading-indicator">;
|
|
347
279
|
size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
348
|
-
align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
|
|
349
280
|
control: z.ZodOptional<z.ZodString>;
|
|
350
281
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
351
282
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
352
283
|
}, "strip", z.ZodTypeAny, {
|
|
353
|
-
type: "
|
|
354
|
-
text: string;
|
|
284
|
+
type: "loading-indicator";
|
|
355
285
|
analyticsId?: string | undefined;
|
|
356
286
|
control?: string | undefined;
|
|
357
287
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
358
288
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
359
|
-
align?: "left" | "right" | "center" | undefined;
|
|
360
289
|
}, {
|
|
361
|
-
type: "
|
|
362
|
-
text: string;
|
|
290
|
+
type: "loading-indicator";
|
|
363
291
|
analyticsId?: string | undefined;
|
|
364
292
|
control?: string | undefined;
|
|
365
293
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
366
294
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
367
|
-
align?: "left" | "right" | "center" | undefined;
|
|
368
295
|
}>;
|
|
369
296
|
export declare const markdownLayoutSchema: z.ZodObject<{
|
|
370
297
|
type: z.ZodLiteral<"markdown">;
|
|
@@ -388,126 +315,69 @@ export declare const markdownLayoutSchema: z.ZodObject<{
|
|
|
388
315
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
389
316
|
align?: "left" | "right" | "center" | undefined;
|
|
390
317
|
}>;
|
|
391
|
-
export declare const
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
}, "strip", z.ZodTypeAny, {
|
|
395
|
-
markdown: string;
|
|
396
|
-
}, {
|
|
397
|
-
markdown: string;
|
|
398
|
-
}>;
|
|
399
|
-
export declare const searchSearchRequestSchema: z.ZodObject<{
|
|
400
|
-
url: z.ZodString;
|
|
318
|
+
export declare const searchLayoutSchema: z.ZodObject<{
|
|
319
|
+
type: z.ZodLiteral<"search">;
|
|
320
|
+
title: z.ZodString;
|
|
401
321
|
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
|
-
url: string;
|
|
406
|
-
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
407
|
-
param: string;
|
|
408
|
-
query: string;
|
|
409
|
-
}, {
|
|
410
|
-
url: string;
|
|
411
|
-
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
412
|
-
param: string;
|
|
413
|
-
query: string;
|
|
414
|
-
}>;
|
|
415
|
-
export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
|
|
416
|
-
export declare const externalSchema: z.ZodObject<{
|
|
417
322
|
url: z.ZodString;
|
|
418
|
-
}, "strip", z.ZodTypeAny, {
|
|
419
|
-
url: string;
|
|
420
|
-
}, {
|
|
421
|
-
url: string;
|
|
422
|
-
}>;
|
|
423
|
-
export declare const stepErrorSchema: z.ZodObject<{
|
|
424
|
-
error: z.ZodOptional<z.ZodString>;
|
|
425
|
-
validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
426
|
-
}, "strip", z.ZodTypeAny, {
|
|
427
|
-
validation?: JsonElement | undefined;
|
|
428
|
-
error?: string | undefined;
|
|
429
|
-
}, {
|
|
430
|
-
validation?: JsonElement | undefined;
|
|
431
|
-
error?: string | undefined;
|
|
432
|
-
}>;
|
|
433
|
-
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">]>;
|
|
434
|
-
export declare const validateAsyncSchema: z.ZodObject<{
|
|
435
323
|
param: z.ZodString;
|
|
436
|
-
|
|
437
|
-
|
|
324
|
+
emptyMessage: z.ZodOptional<z.ZodString>;
|
|
325
|
+
control: z.ZodOptional<z.ZodString>;
|
|
326
|
+
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
327
|
+
analyticsId: z.ZodOptional<z.ZodString>;
|
|
438
328
|
}, "strip", z.ZodTypeAny, {
|
|
439
329
|
url: string;
|
|
330
|
+
type: "search";
|
|
331
|
+
title: string;
|
|
440
332
|
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
441
333
|
param: string;
|
|
334
|
+
analyticsId?: string | undefined;
|
|
335
|
+
control?: string | undefined;
|
|
336
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
337
|
+
emptyMessage?: string | undefined;
|
|
442
338
|
}, {
|
|
443
339
|
url: string;
|
|
340
|
+
type: "search";
|
|
341
|
+
title: string;
|
|
444
342
|
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
445
343
|
param: string;
|
|
344
|
+
analyticsId?: string | undefined;
|
|
345
|
+
control?: string | undefined;
|
|
346
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
347
|
+
emptyMessage?: string | undefined;
|
|
446
348
|
}>;
|
|
447
|
-
export declare const
|
|
448
|
-
|
|
449
|
-
providesDescription: z.ZodOptional<z.ZodBoolean>;
|
|
450
|
-
providesIcon: z.ZodOptional<z.ZodBoolean>;
|
|
451
|
-
providesImage: z.ZodOptional<z.ZodBoolean>;
|
|
452
|
-
providesMedia: z.ZodOptional<z.ZodBoolean>;
|
|
453
|
-
}, "strip", z.ZodTypeAny, {
|
|
454
|
-
providesTitle?: boolean | undefined;
|
|
455
|
-
providesDescription?: boolean | undefined;
|
|
456
|
-
providesIcon?: boolean | undefined;
|
|
457
|
-
providesImage?: boolean | undefined;
|
|
458
|
-
providesMedia?: boolean | undefined;
|
|
459
|
-
}, {
|
|
460
|
-
providesTitle?: boolean | undefined;
|
|
461
|
-
providesDescription?: boolean | undefined;
|
|
462
|
-
providesIcon?: boolean | undefined;
|
|
463
|
-
providesImage?: boolean | undefined;
|
|
464
|
-
providesMedia?: boolean | undefined;
|
|
465
|
-
}>;
|
|
466
|
-
export declare const uploadSourceSchema: z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>;
|
|
467
|
-
export declare const dismissBehaviorSchema: z.ZodObject<{
|
|
468
|
-
type: z.ZodLiteral<"dismiss">;
|
|
469
|
-
}, "strip", z.ZodTypeAny, {
|
|
470
|
-
type: "dismiss";
|
|
471
|
-
}, {
|
|
472
|
-
type: "dismiss";
|
|
473
|
-
}>;
|
|
474
|
-
export declare const copyBehaviorSchema: z.ZodObject<{
|
|
475
|
-
type: z.ZodLiteral<"copy">;
|
|
476
|
-
content: z.ZodString;
|
|
477
|
-
}, "strip", z.ZodTypeAny, {
|
|
478
|
-
type: "copy";
|
|
479
|
-
content: string;
|
|
480
|
-
}, {
|
|
481
|
-
type: "copy";
|
|
482
|
-
content: string;
|
|
483
|
-
}>;
|
|
484
|
-
export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
|
|
485
|
-
export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
|
|
486
|
-
export declare const linkBehaviorSchema: z.ZodObject<{
|
|
487
|
-
type: z.ZodLiteral<"link">;
|
|
488
|
-
url: z.ZodString;
|
|
349
|
+
export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
|
|
350
|
+
$ref: z.ZodString;
|
|
489
351
|
}, "strip", z.ZodTypeAny, {
|
|
490
|
-
|
|
491
|
-
type: "link";
|
|
352
|
+
$ref: string;
|
|
492
353
|
}, {
|
|
493
|
-
|
|
494
|
-
type: "link";
|
|
354
|
+
$ref: string;
|
|
495
355
|
}>;
|
|
496
|
-
export declare const
|
|
497
|
-
|
|
356
|
+
export declare const modalLayoutTriggerSchema: z.ZodObject<{
|
|
357
|
+
title: z.ZodString;
|
|
498
358
|
}, "strip", z.ZodTypeAny, {
|
|
499
|
-
|
|
359
|
+
title: string;
|
|
500
360
|
}, {
|
|
501
|
-
|
|
361
|
+
title: string;
|
|
502
362
|
}>;
|
|
503
|
-
export declare const
|
|
504
|
-
|
|
363
|
+
export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
|
|
364
|
+
export declare const instructionsLayoutItemSchema: z.ZodObject<{
|
|
365
|
+
text: z.ZodString;
|
|
366
|
+
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">]>;
|
|
367
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
368
|
+
analyticsId: z.ZodOptional<z.ZodString>;
|
|
505
369
|
}, "strip", z.ZodTypeAny, {
|
|
506
|
-
|
|
370
|
+
text: string;
|
|
371
|
+
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
372
|
+
analyticsId?: string | undefined;
|
|
373
|
+
tag?: string | undefined;
|
|
507
374
|
}, {
|
|
508
|
-
|
|
375
|
+
text: string;
|
|
376
|
+
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
377
|
+
analyticsId?: string | undefined;
|
|
378
|
+
tag?: string | undefined;
|
|
509
379
|
}>;
|
|
510
|
-
export declare const
|
|
380
|
+
export declare const avatarTextContentSchema: z.ZodObject<{
|
|
511
381
|
type: z.ZodLiteral<"text">;
|
|
512
382
|
text: z.ZodString;
|
|
513
383
|
badgeUri: z.ZodOptional<z.ZodString>;
|
|
@@ -519,7 +389,8 @@ export declare const avatarContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
519
389
|
type: "text";
|
|
520
390
|
text: string;
|
|
521
391
|
badgeUri?: string | undefined;
|
|
522
|
-
}
|
|
392
|
+
}>;
|
|
393
|
+
export declare const avatarUriContentSchema: z.ZodObject<{
|
|
523
394
|
type: z.ZodLiteral<"uri">;
|
|
524
395
|
uri: z.ZodString;
|
|
525
396
|
badgeUri: z.ZodOptional<z.ZodString>;
|
|
@@ -531,31 +402,84 @@ export declare const avatarContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
531
402
|
type: "uri";
|
|
532
403
|
uri: string;
|
|
533
404
|
badgeUri?: string | undefined;
|
|
534
|
-
}
|
|
535
|
-
export declare const
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
$id: z.ZodOptional<z.ZodString>;
|
|
540
|
-
$ref: z.ZodOptional<z.ZodString>;
|
|
541
|
-
id: z.ZodOptional<z.ZodString>;
|
|
542
|
-
url: z.ZodOptional<z.ZodString>;
|
|
543
|
-
method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
|
|
544
|
-
exit: z.ZodOptional<z.ZodBoolean>;
|
|
545
|
-
result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
546
|
-
data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
547
|
-
timeout: z.ZodOptional<z.ZodNumber>;
|
|
548
|
-
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
405
|
+
}>;
|
|
406
|
+
export declare const mediaImageSchema: z.ZodObject<{
|
|
407
|
+
type: z.ZodLiteral<"image">;
|
|
408
|
+
uri: z.ZodString;
|
|
409
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
549
410
|
}, "strip", z.ZodTypeAny, {
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
411
|
+
type: "image";
|
|
412
|
+
uri: string;
|
|
413
|
+
accessibilityDescription?: string | undefined;
|
|
414
|
+
}, {
|
|
415
|
+
type: "image";
|
|
416
|
+
uri: string;
|
|
417
|
+
accessibilityDescription?: string | undefined;
|
|
418
|
+
}>;
|
|
419
|
+
export declare const iconNamedSchema: z.ZodObject<{
|
|
420
|
+
name: z.ZodString;
|
|
421
|
+
}, "strip", z.ZodTypeAny, {
|
|
422
|
+
name: string;
|
|
423
|
+
}, {
|
|
424
|
+
name: string;
|
|
425
|
+
}>;
|
|
426
|
+
export declare const iconTextSchema: z.ZodObject<{
|
|
427
|
+
text: z.ZodString;
|
|
428
|
+
}, "strip", z.ZodTypeAny, {
|
|
429
|
+
text: string;
|
|
430
|
+
}, {
|
|
431
|
+
text: string;
|
|
432
|
+
}>;
|
|
433
|
+
export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
|
|
434
|
+
name: z.ZodString;
|
|
435
|
+
}, "strip", z.ZodTypeAny, {
|
|
436
|
+
name: string;
|
|
437
|
+
}, {
|
|
438
|
+
name: string;
|
|
439
|
+
}>, z.ZodObject<{
|
|
440
|
+
text: z.ZodString;
|
|
441
|
+
}, "strip", z.ZodTypeAny, {
|
|
442
|
+
text: string;
|
|
443
|
+
}, {
|
|
444
|
+
text: string;
|
|
445
|
+
}>]>;
|
|
446
|
+
export declare const validateAsyncSchema: z.ZodObject<{
|
|
447
|
+
param: z.ZodString;
|
|
448
|
+
method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
|
|
449
|
+
url: z.ZodString;
|
|
450
|
+
}, "strip", z.ZodTypeAny, {
|
|
451
|
+
url: string;
|
|
452
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
453
|
+
param: string;
|
|
454
|
+
}, {
|
|
455
|
+
url: string;
|
|
456
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
457
|
+
param: string;
|
|
458
|
+
}>;
|
|
459
|
+
export declare const actionSchema: z.ZodObject<{
|
|
460
|
+
title: z.ZodOptional<z.ZodString>;
|
|
461
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
462
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
463
|
+
$id: z.ZodOptional<z.ZodString>;
|
|
464
|
+
$ref: z.ZodOptional<z.ZodString>;
|
|
465
|
+
id: z.ZodOptional<z.ZodString>;
|
|
466
|
+
url: z.ZodOptional<z.ZodString>;
|
|
467
|
+
method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
|
|
468
|
+
exit: z.ZodOptional<z.ZodBoolean>;
|
|
469
|
+
result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
470
|
+
data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
471
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
472
|
+
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
473
|
+
}, "strip", z.ZodTypeAny, {
|
|
474
|
+
url?: string | undefined;
|
|
475
|
+
$id?: string | undefined;
|
|
476
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
477
|
+
disabled?: boolean | undefined;
|
|
478
|
+
title?: string | undefined;
|
|
555
479
|
timeout?: number | undefined;
|
|
556
480
|
id?: string | undefined;
|
|
557
|
-
$ref?: string | undefined;
|
|
558
481
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
482
|
+
$ref?: string | undefined;
|
|
559
483
|
exit?: boolean | undefined;
|
|
560
484
|
result?: JsonElement | undefined;
|
|
561
485
|
data?: JsonElement | undefined;
|
|
@@ -568,62 +492,31 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
568
492
|
title?: string | undefined;
|
|
569
493
|
timeout?: number | undefined;
|
|
570
494
|
id?: string | undefined;
|
|
571
|
-
$ref?: string | undefined;
|
|
572
495
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
496
|
+
$ref?: string | undefined;
|
|
573
497
|
exit?: boolean | undefined;
|
|
574
498
|
result?: JsonElement | undefined;
|
|
575
499
|
data?: JsonElement | undefined;
|
|
576
500
|
skipValidation?: boolean | undefined;
|
|
577
501
|
}>;
|
|
578
|
-
export declare const
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
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">]>;
|
|
584
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
585
|
-
analyticsId: z.ZodOptional<z.ZodString>;
|
|
586
|
-
}, "strip", z.ZodTypeAny, {
|
|
587
|
-
text: string;
|
|
588
|
-
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
589
|
-
analyticsId?: string | undefined;
|
|
590
|
-
tag?: string | undefined;
|
|
591
|
-
}, {
|
|
592
|
-
text: string;
|
|
593
|
-
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
594
|
-
analyticsId?: string | undefined;
|
|
595
|
-
tag?: string | undefined;
|
|
596
|
-
}>, "many">;
|
|
597
|
-
control: z.ZodOptional<z.ZodString>;
|
|
598
|
-
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
599
|
-
analyticsId: z.ZodOptional<z.ZodString>;
|
|
502
|
+
export declare const searchSearchRequestSchema: z.ZodObject<{
|
|
503
|
+
url: z.ZodString;
|
|
504
|
+
method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
|
|
505
|
+
param: z.ZodString;
|
|
506
|
+
query: z.ZodString;
|
|
600
507
|
}, "strip", z.ZodTypeAny, {
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
analyticsId?: string | undefined;
|
|
606
|
-
tag?: string | undefined;
|
|
607
|
-
}[];
|
|
608
|
-
analyticsId?: string | undefined;
|
|
609
|
-
title?: string | undefined;
|
|
610
|
-
control?: string | undefined;
|
|
611
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
508
|
+
url: string;
|
|
509
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
510
|
+
param: string;
|
|
511
|
+
query: string;
|
|
612
512
|
}, {
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
analyticsId?: string | undefined;
|
|
618
|
-
tag?: string | undefined;
|
|
619
|
-
}[];
|
|
620
|
-
analyticsId?: string | undefined;
|
|
621
|
-
title?: string | undefined;
|
|
622
|
-
control?: string | undefined;
|
|
623
|
-
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
513
|
+
url: string;
|
|
514
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
515
|
+
param: string;
|
|
516
|
+
query: string;
|
|
624
517
|
}>;
|
|
625
|
-
export declare const
|
|
626
|
-
action: z.ZodObject<{
|
|
518
|
+
export declare const containerBehaviorSchema: z.ZodObject<{
|
|
519
|
+
action: z.ZodOptional<z.ZodObject<{
|
|
627
520
|
title: z.ZodOptional<z.ZodString>;
|
|
628
521
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
629
522
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -645,8 +538,8 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
645
538
|
title?: string | undefined;
|
|
646
539
|
timeout?: number | undefined;
|
|
647
540
|
id?: string | undefined;
|
|
648
|
-
$ref?: string | undefined;
|
|
649
541
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
542
|
+
$ref?: string | undefined;
|
|
650
543
|
exit?: boolean | undefined;
|
|
651
544
|
result?: JsonElement | undefined;
|
|
652
545
|
data?: JsonElement | undefined;
|
|
@@ -659,15 +552,22 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
659
552
|
title?: string | undefined;
|
|
660
553
|
timeout?: number | undefined;
|
|
661
554
|
id?: string | undefined;
|
|
662
|
-
$ref?: string | undefined;
|
|
663
555
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
556
|
+
$ref?: string | undefined;
|
|
664
557
|
exit?: boolean | undefined;
|
|
665
558
|
result?: JsonElement | undefined;
|
|
666
559
|
data?: JsonElement | undefined;
|
|
667
560
|
skipValidation?: boolean | undefined;
|
|
668
|
-
}
|
|
561
|
+
}>>;
|
|
562
|
+
link: z.ZodOptional<z.ZodObject<{
|
|
563
|
+
url: z.ZodString;
|
|
564
|
+
}, "strip", z.ZodTypeAny, {
|
|
565
|
+
url: string;
|
|
566
|
+
}, {
|
|
567
|
+
url: string;
|
|
568
|
+
}>>;
|
|
669
569
|
}, "strip", z.ZodTypeAny, {
|
|
670
|
-
action
|
|
570
|
+
action?: {
|
|
671
571
|
url?: string | undefined;
|
|
672
572
|
$id?: string | undefined;
|
|
673
573
|
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
@@ -675,15 +575,18 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
675
575
|
title?: string | undefined;
|
|
676
576
|
timeout?: number | undefined;
|
|
677
577
|
id?: string | undefined;
|
|
678
|
-
$ref?: string | undefined;
|
|
679
578
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
579
|
+
$ref?: string | undefined;
|
|
680
580
|
exit?: boolean | undefined;
|
|
681
581
|
result?: JsonElement | undefined;
|
|
682
582
|
data?: JsonElement | undefined;
|
|
683
583
|
skipValidation?: boolean | undefined;
|
|
684
|
-
};
|
|
584
|
+
} | undefined;
|
|
585
|
+
link?: {
|
|
586
|
+
url: string;
|
|
587
|
+
} | undefined;
|
|
685
588
|
}, {
|
|
686
|
-
action
|
|
589
|
+
action?: {
|
|
687
590
|
url?: string | undefined;
|
|
688
591
|
$id?: string | undefined;
|
|
689
592
|
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
@@ -691,35 +594,19 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
691
594
|
title?: string | undefined;
|
|
692
595
|
timeout?: number | undefined;
|
|
693
596
|
id?: string | undefined;
|
|
694
|
-
$ref?: string | undefined;
|
|
695
597
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
598
|
+
$ref?: string | undefined;
|
|
696
599
|
exit?: boolean | undefined;
|
|
697
600
|
result?: JsonElement | undefined;
|
|
698
601
|
data?: JsonElement | undefined;
|
|
699
602
|
skipValidation?: boolean | undefined;
|
|
700
|
-
};
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
705
|
-
error: z.ZodOptional<z.ZodString>;
|
|
706
|
-
validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
707
|
-
refreshUrl: z.ZodOptional<z.ZodString>;
|
|
708
|
-
}, "strip", z.ZodTypeAny, {
|
|
709
|
-
refreshUrl?: string | undefined;
|
|
710
|
-
refreshFormUrl?: string | undefined;
|
|
711
|
-
analytics?: Record<string, string> | undefined;
|
|
712
|
-
validation?: JsonElement | undefined;
|
|
713
|
-
error?: string | undefined;
|
|
714
|
-
}, {
|
|
715
|
-
refreshUrl?: string | undefined;
|
|
716
|
-
refreshFormUrl?: string | undefined;
|
|
717
|
-
analytics?: Record<string, string> | undefined;
|
|
718
|
-
validation?: JsonElement | undefined;
|
|
719
|
-
error?: string | undefined;
|
|
603
|
+
} | undefined;
|
|
604
|
+
link?: {
|
|
605
|
+
url: string;
|
|
606
|
+
} | undefined;
|
|
720
607
|
}>;
|
|
721
|
-
export declare const
|
|
722
|
-
|
|
608
|
+
export declare const actionBehaviorSchema: z.ZodObject<{
|
|
609
|
+
type: z.ZodLiteral<"action">;
|
|
723
610
|
action: z.ZodObject<{
|
|
724
611
|
title: z.ZodOptional<z.ZodString>;
|
|
725
612
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
@@ -742,8 +629,8 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
742
629
|
title?: string | undefined;
|
|
743
630
|
timeout?: number | undefined;
|
|
744
631
|
id?: string | undefined;
|
|
745
|
-
$ref?: string | undefined;
|
|
746
632
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
633
|
+
$ref?: string | undefined;
|
|
747
634
|
exit?: boolean | undefined;
|
|
748
635
|
result?: JsonElement | undefined;
|
|
749
636
|
data?: JsonElement | undefined;
|
|
@@ -756,8 +643,8 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
756
643
|
title?: string | undefined;
|
|
757
644
|
timeout?: number | undefined;
|
|
758
645
|
id?: string | undefined;
|
|
759
|
-
$ref?: string | undefined;
|
|
760
646
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
647
|
+
$ref?: string | undefined;
|
|
761
648
|
exit?: boolean | undefined;
|
|
762
649
|
result?: JsonElement | undefined;
|
|
763
650
|
data?: JsonElement | undefined;
|
|
@@ -772,14 +659,14 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
772
659
|
title?: string | undefined;
|
|
773
660
|
timeout?: number | undefined;
|
|
774
661
|
id?: string | undefined;
|
|
775
|
-
$ref?: string | undefined;
|
|
776
662
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
663
|
+
$ref?: string | undefined;
|
|
777
664
|
exit?: boolean | undefined;
|
|
778
665
|
result?: JsonElement | undefined;
|
|
779
666
|
data?: JsonElement | undefined;
|
|
780
667
|
skipValidation?: boolean | undefined;
|
|
781
668
|
};
|
|
782
|
-
|
|
669
|
+
type: "action";
|
|
783
670
|
}, {
|
|
784
671
|
action: {
|
|
785
672
|
url?: string | undefined;
|
|
@@ -789,17 +676,17 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
789
676
|
title?: string | undefined;
|
|
790
677
|
timeout?: number | undefined;
|
|
791
678
|
id?: string | undefined;
|
|
792
|
-
$ref?: string | undefined;
|
|
793
679
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
680
|
+
$ref?: string | undefined;
|
|
794
681
|
exit?: boolean | undefined;
|
|
795
682
|
result?: JsonElement | undefined;
|
|
796
683
|
data?: JsonElement | undefined;
|
|
797
684
|
skipValidation?: boolean | undefined;
|
|
798
685
|
};
|
|
799
|
-
|
|
686
|
+
type: "action";
|
|
800
687
|
}>;
|
|
801
|
-
export declare const
|
|
802
|
-
|
|
688
|
+
export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
689
|
+
title: z.ZodOptional<z.ZodString>;
|
|
803
690
|
action: z.ZodObject<{
|
|
804
691
|
title: z.ZodOptional<z.ZodString>;
|
|
805
692
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
@@ -822,8 +709,8 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
822
709
|
title?: string | undefined;
|
|
823
710
|
timeout?: number | undefined;
|
|
824
711
|
id?: string | undefined;
|
|
825
|
-
$ref?: string | undefined;
|
|
826
712
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
713
|
+
$ref?: string | undefined;
|
|
827
714
|
exit?: boolean | undefined;
|
|
828
715
|
result?: JsonElement | undefined;
|
|
829
716
|
data?: JsonElement | undefined;
|
|
@@ -836,8 +723,8 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
836
723
|
title?: string | undefined;
|
|
837
724
|
timeout?: number | undefined;
|
|
838
725
|
id?: string | undefined;
|
|
839
|
-
$ref?: string | undefined;
|
|
840
726
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
727
|
+
$ref?: string | undefined;
|
|
841
728
|
exit?: boolean | undefined;
|
|
842
729
|
result?: JsonElement | undefined;
|
|
843
730
|
data?: JsonElement | undefined;
|
|
@@ -852,14 +739,14 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
852
739
|
title?: string | undefined;
|
|
853
740
|
timeout?: number | undefined;
|
|
854
741
|
id?: string | undefined;
|
|
855
|
-
$ref?: string | undefined;
|
|
856
742
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
743
|
+
$ref?: string | undefined;
|
|
857
744
|
exit?: boolean | undefined;
|
|
858
745
|
result?: JsonElement | undefined;
|
|
859
746
|
data?: JsonElement | undefined;
|
|
860
747
|
skipValidation?: boolean | undefined;
|
|
861
748
|
};
|
|
862
|
-
|
|
749
|
+
title?: string | undefined;
|
|
863
750
|
}, {
|
|
864
751
|
action: {
|
|
865
752
|
url?: string | undefined;
|
|
@@ -869,105 +756,141 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
869
756
|
title?: string | undefined;
|
|
870
757
|
timeout?: number | undefined;
|
|
871
758
|
id?: string | undefined;
|
|
872
|
-
$ref?: string | undefined;
|
|
873
759
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
760
|
+
$ref?: string | undefined;
|
|
874
761
|
exit?: boolean | undefined;
|
|
875
762
|
result?: JsonElement | undefined;
|
|
876
763
|
data?: JsonElement | undefined;
|
|
877
764
|
skipValidation?: boolean | undefined;
|
|
878
765
|
};
|
|
879
|
-
|
|
766
|
+
title?: string | undefined;
|
|
880
767
|
}>;
|
|
881
|
-
export declare const
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
768
|
+
export declare const paragraphLayoutSchema: z.ZodObject<{
|
|
769
|
+
type: z.ZodLiteral<"paragraph">;
|
|
770
|
+
text: z.ZodString;
|
|
771
|
+
align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
|
|
772
|
+
control: z.ZodOptional<z.ZodString>;
|
|
773
|
+
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
774
|
+
analyticsId: z.ZodOptional<z.ZodString>;
|
|
775
|
+
}, "strip", z.ZodTypeAny, {
|
|
776
|
+
type: "paragraph";
|
|
777
|
+
text: string;
|
|
778
|
+
analyticsId?: string | undefined;
|
|
779
|
+
control?: string | undefined;
|
|
780
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
781
|
+
align?: "left" | "right" | "center" | undefined;
|
|
782
|
+
}, {
|
|
783
|
+
type: "paragraph";
|
|
784
|
+
text: string;
|
|
785
|
+
analyticsId?: string | undefined;
|
|
786
|
+
control?: string | undefined;
|
|
787
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
788
|
+
align?: "left" | "right" | "center" | undefined;
|
|
789
|
+
}>;
|
|
790
|
+
export declare const formLayoutSchema: z.ZodObject<{
|
|
791
|
+
type: z.ZodLiteral<"form">;
|
|
792
|
+
schema: z.ZodOptional<z.ZodObject<{
|
|
793
|
+
$ref: z.ZodString;
|
|
896
794
|
}, "strip", z.ZodTypeAny, {
|
|
897
|
-
|
|
898
|
-
$id?: string | undefined;
|
|
899
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
900
|
-
disabled?: boolean | undefined;
|
|
901
|
-
title?: string | undefined;
|
|
902
|
-
timeout?: number | undefined;
|
|
903
|
-
id?: string | undefined;
|
|
904
|
-
$ref?: string | undefined;
|
|
905
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
906
|
-
exit?: boolean | undefined;
|
|
907
|
-
result?: JsonElement | undefined;
|
|
908
|
-
data?: JsonElement | undefined;
|
|
909
|
-
skipValidation?: boolean | undefined;
|
|
910
|
-
}, {
|
|
911
|
-
url?: string | undefined;
|
|
912
|
-
$id?: string | undefined;
|
|
913
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
914
|
-
disabled?: boolean | undefined;
|
|
915
|
-
title?: string | undefined;
|
|
916
|
-
timeout?: number | undefined;
|
|
917
|
-
id?: string | undefined;
|
|
918
|
-
$ref?: string | undefined;
|
|
919
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
920
|
-
exit?: boolean | undefined;
|
|
921
|
-
result?: JsonElement | undefined;
|
|
922
|
-
data?: JsonElement | undefined;
|
|
923
|
-
skipValidation?: boolean | undefined;
|
|
924
|
-
}>>;
|
|
925
|
-
link: z.ZodOptional<z.ZodObject<{
|
|
926
|
-
url: z.ZodString;
|
|
927
|
-
}, "strip", z.ZodTypeAny, {
|
|
928
|
-
url: string;
|
|
795
|
+
$ref: string;
|
|
929
796
|
}, {
|
|
930
|
-
|
|
797
|
+
$ref: string;
|
|
931
798
|
}>>;
|
|
799
|
+
schemaId: z.ZodString;
|
|
800
|
+
control: z.ZodOptional<z.ZodString>;
|
|
801
|
+
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
802
|
+
analyticsId: z.ZodOptional<z.ZodString>;
|
|
932
803
|
}, "strip", z.ZodTypeAny, {
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
id?: string | undefined;
|
|
941
|
-
$ref?: string | undefined;
|
|
942
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
943
|
-
exit?: boolean | undefined;
|
|
944
|
-
result?: JsonElement | undefined;
|
|
945
|
-
data?: JsonElement | undefined;
|
|
946
|
-
skipValidation?: boolean | undefined;
|
|
947
|
-
} | undefined;
|
|
948
|
-
link?: {
|
|
949
|
-
url: string;
|
|
804
|
+
type: "form";
|
|
805
|
+
schemaId: string;
|
|
806
|
+
analyticsId?: string | undefined;
|
|
807
|
+
control?: string | undefined;
|
|
808
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
809
|
+
schema?: {
|
|
810
|
+
$ref: string;
|
|
950
811
|
} | undefined;
|
|
951
812
|
}, {
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
id?: string | undefined;
|
|
960
|
-
$ref?: string | undefined;
|
|
961
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
962
|
-
exit?: boolean | undefined;
|
|
963
|
-
result?: JsonElement | undefined;
|
|
964
|
-
data?: JsonElement | undefined;
|
|
965
|
-
skipValidation?: boolean | undefined;
|
|
966
|
-
} | undefined;
|
|
967
|
-
link?: {
|
|
968
|
-
url: string;
|
|
813
|
+
type: "form";
|
|
814
|
+
schemaId: string;
|
|
815
|
+
analyticsId?: string | undefined;
|
|
816
|
+
control?: string | undefined;
|
|
817
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
818
|
+
schema?: {
|
|
819
|
+
$ref: string;
|
|
969
820
|
} | undefined;
|
|
970
821
|
}>;
|
|
822
|
+
export declare const instructionsLayoutSchema: z.ZodObject<{
|
|
823
|
+
type: z.ZodLiteral<"instructions">;
|
|
824
|
+
title: z.ZodOptional<z.ZodString>;
|
|
825
|
+
items: z.ZodArray<z.ZodObject<{
|
|
826
|
+
text: z.ZodString;
|
|
827
|
+
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">]>;
|
|
828
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
829
|
+
analyticsId: z.ZodOptional<z.ZodString>;
|
|
830
|
+
}, "strip", z.ZodTypeAny, {
|
|
831
|
+
text: string;
|
|
832
|
+
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
833
|
+
analyticsId?: string | undefined;
|
|
834
|
+
tag?: string | undefined;
|
|
835
|
+
}, {
|
|
836
|
+
text: string;
|
|
837
|
+
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
838
|
+
analyticsId?: string | undefined;
|
|
839
|
+
tag?: string | undefined;
|
|
840
|
+
}>, "many">;
|
|
841
|
+
control: z.ZodOptional<z.ZodString>;
|
|
842
|
+
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
843
|
+
analyticsId: z.ZodOptional<z.ZodString>;
|
|
844
|
+
}, "strip", z.ZodTypeAny, {
|
|
845
|
+
type: "instructions";
|
|
846
|
+
items: {
|
|
847
|
+
text: string;
|
|
848
|
+
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
849
|
+
analyticsId?: string | undefined;
|
|
850
|
+
tag?: string | undefined;
|
|
851
|
+
}[];
|
|
852
|
+
analyticsId?: string | undefined;
|
|
853
|
+
title?: string | undefined;
|
|
854
|
+
control?: string | undefined;
|
|
855
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
856
|
+
}, {
|
|
857
|
+
type: "instructions";
|
|
858
|
+
items: {
|
|
859
|
+
text: string;
|
|
860
|
+
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
861
|
+
analyticsId?: string | undefined;
|
|
862
|
+
tag?: string | undefined;
|
|
863
|
+
}[];
|
|
864
|
+
analyticsId?: string | undefined;
|
|
865
|
+
title?: string | undefined;
|
|
866
|
+
control?: string | undefined;
|
|
867
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
868
|
+
}>;
|
|
869
|
+
export declare const avatarContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
870
|
+
type: z.ZodLiteral<"text">;
|
|
871
|
+
text: z.ZodString;
|
|
872
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
873
|
+
}, "strip", z.ZodTypeAny, {
|
|
874
|
+
type: "text";
|
|
875
|
+
text: string;
|
|
876
|
+
badgeUri?: string | undefined;
|
|
877
|
+
}, {
|
|
878
|
+
type: "text";
|
|
879
|
+
text: string;
|
|
880
|
+
badgeUri?: string | undefined;
|
|
881
|
+
}>, z.ZodObject<{
|
|
882
|
+
type: z.ZodLiteral<"uri">;
|
|
883
|
+
uri: z.ZodString;
|
|
884
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
885
|
+
}, "strip", z.ZodTypeAny, {
|
|
886
|
+
type: "uri";
|
|
887
|
+
uri: string;
|
|
888
|
+
badgeUri?: string | undefined;
|
|
889
|
+
}, {
|
|
890
|
+
type: "uri";
|
|
891
|
+
uri: string;
|
|
892
|
+
badgeUri?: string | undefined;
|
|
893
|
+
}>]>;
|
|
971
894
|
export declare const mediaAvatarSchema: z.ZodObject<{
|
|
972
895
|
type: z.ZodLiteral<"avatar">;
|
|
973
896
|
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -999,25 +922,25 @@ export declare const mediaAvatarSchema: z.ZodObject<{
|
|
|
999
922
|
}, "strip", z.ZodTypeAny, {
|
|
1000
923
|
type: "avatar";
|
|
1001
924
|
content: ({
|
|
1002
|
-
type: "uri";
|
|
1003
|
-
uri: string;
|
|
1004
|
-
badgeUri?: string | undefined;
|
|
1005
|
-
} | {
|
|
1006
925
|
type: "text";
|
|
1007
926
|
text: string;
|
|
1008
927
|
badgeUri?: string | undefined;
|
|
928
|
+
} | {
|
|
929
|
+
type: "uri";
|
|
930
|
+
uri: string;
|
|
931
|
+
badgeUri?: string | undefined;
|
|
1009
932
|
})[];
|
|
1010
933
|
accessibilityDescription?: string | undefined;
|
|
1011
934
|
}, {
|
|
1012
935
|
type: "avatar";
|
|
1013
936
|
content: ({
|
|
1014
|
-
type: "uri";
|
|
1015
|
-
uri: string;
|
|
1016
|
-
badgeUri?: string | undefined;
|
|
1017
|
-
} | {
|
|
1018
937
|
type: "text";
|
|
1019
938
|
text: string;
|
|
1020
939
|
badgeUri?: string | undefined;
|
|
940
|
+
} | {
|
|
941
|
+
type: "uri";
|
|
942
|
+
uri: string;
|
|
943
|
+
badgeUri?: string | undefined;
|
|
1021
944
|
})[];
|
|
1022
945
|
accessibilityDescription?: string | undefined;
|
|
1023
946
|
}>;
|
|
@@ -1052,25 +975,25 @@ export declare const mediaSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1052
975
|
}, "strip", z.ZodTypeAny, {
|
|
1053
976
|
type: "avatar";
|
|
1054
977
|
content: ({
|
|
1055
|
-
type: "uri";
|
|
1056
|
-
uri: string;
|
|
1057
|
-
badgeUri?: string | undefined;
|
|
1058
|
-
} | {
|
|
1059
978
|
type: "text";
|
|
1060
979
|
text: string;
|
|
1061
980
|
badgeUri?: string | undefined;
|
|
981
|
+
} | {
|
|
982
|
+
type: "uri";
|
|
983
|
+
uri: string;
|
|
984
|
+
badgeUri?: string | undefined;
|
|
1062
985
|
})[];
|
|
1063
986
|
accessibilityDescription?: string | undefined;
|
|
1064
987
|
}, {
|
|
1065
988
|
type: "avatar";
|
|
1066
989
|
content: ({
|
|
1067
|
-
type: "uri";
|
|
1068
|
-
uri: string;
|
|
1069
|
-
badgeUri?: string | undefined;
|
|
1070
|
-
} | {
|
|
1071
990
|
type: "text";
|
|
1072
991
|
text: string;
|
|
1073
992
|
badgeUri?: string | undefined;
|
|
993
|
+
} | {
|
|
994
|
+
type: "uri";
|
|
995
|
+
uri: string;
|
|
996
|
+
badgeUri?: string | undefined;
|
|
1074
997
|
})[];
|
|
1075
998
|
accessibilityDescription?: string | undefined;
|
|
1076
999
|
}>, z.ZodObject<{
|
|
@@ -1086,11 +1009,10 @@ export declare const mediaSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1086
1009
|
uri: string;
|
|
1087
1010
|
accessibilityDescription?: string | undefined;
|
|
1088
1011
|
}>]>;
|
|
1089
|
-
export declare const
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1012
|
+
export declare const summarySummariserSchema: z.ZodObject<{
|
|
1013
|
+
defaultTitle: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
defaultDescription: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1094
1016
|
name: z.ZodString;
|
|
1095
1017
|
}, "strip", z.ZodTypeAny, {
|
|
1096
1018
|
name: string;
|
|
@@ -1103,7 +1025,7 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
1103
1025
|
}, {
|
|
1104
1026
|
text: string;
|
|
1105
1027
|
}>]>>;
|
|
1106
|
-
|
|
1028
|
+
defaultImage: z.ZodOptional<z.ZodObject<{
|
|
1107
1029
|
text: z.ZodOptional<z.ZodString>;
|
|
1108
1030
|
url: z.ZodOptional<z.ZodString>;
|
|
1109
1031
|
uri: z.ZodOptional<z.ZodString>;
|
|
@@ -1119,23 +1041,11 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
1119
1041
|
uri?: string | undefined;
|
|
1120
1042
|
accessibilityDescription?: string | undefined;
|
|
1121
1043
|
}>>;
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
}, "strip", z.ZodTypeAny, {
|
|
1128
|
-
url: string;
|
|
1129
|
-
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
1130
|
-
param: string;
|
|
1131
|
-
query: string;
|
|
1132
|
-
}, {
|
|
1133
|
-
url: string;
|
|
1134
|
-
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
1135
|
-
param: string;
|
|
1136
|
-
query: string;
|
|
1137
|
-
}>;
|
|
1138
|
-
media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1044
|
+
providesTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1045
|
+
providesDescription: z.ZodOptional<z.ZodBoolean>;
|
|
1046
|
+
providesIcon: z.ZodOptional<z.ZodBoolean>;
|
|
1047
|
+
providesImage: z.ZodOptional<z.ZodBoolean>;
|
|
1048
|
+
defaultMedia: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1139
1049
|
type: z.ZodLiteral<"avatar">;
|
|
1140
1050
|
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1141
1051
|
type: z.ZodLiteral<"text">;
|
|
@@ -1166,25 +1076,25 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
1166
1076
|
}, "strip", z.ZodTypeAny, {
|
|
1167
1077
|
type: "avatar";
|
|
1168
1078
|
content: ({
|
|
1169
|
-
type: "uri";
|
|
1170
|
-
uri: string;
|
|
1171
|
-
badgeUri?: string | undefined;
|
|
1172
|
-
} | {
|
|
1173
1079
|
type: "text";
|
|
1174
1080
|
text: string;
|
|
1175
1081
|
badgeUri?: string | undefined;
|
|
1082
|
+
} | {
|
|
1083
|
+
type: "uri";
|
|
1084
|
+
uri: string;
|
|
1085
|
+
badgeUri?: string | undefined;
|
|
1176
1086
|
})[];
|
|
1177
1087
|
accessibilityDescription?: string | undefined;
|
|
1178
1088
|
}, {
|
|
1179
1089
|
type: "avatar";
|
|
1180
1090
|
content: ({
|
|
1181
|
-
type: "uri";
|
|
1182
|
-
uri: string;
|
|
1183
|
-
badgeUri?: string | undefined;
|
|
1184
|
-
} | {
|
|
1185
1091
|
type: "text";
|
|
1186
1092
|
text: string;
|
|
1187
1093
|
badgeUri?: string | undefined;
|
|
1094
|
+
} | {
|
|
1095
|
+
type: "uri";
|
|
1096
|
+
uri: string;
|
|
1097
|
+
badgeUri?: string | undefined;
|
|
1188
1098
|
})[];
|
|
1189
1099
|
accessibilityDescription?: string | undefined;
|
|
1190
1100
|
}>, z.ZodObject<{
|
|
@@ -1200,117 +1110,82 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
1200
1110
|
uri: string;
|
|
1201
1111
|
accessibilityDescription?: string | undefined;
|
|
1202
1112
|
}>]>>;
|
|
1113
|
+
providesMedia: z.ZodOptional<z.ZodBoolean>;
|
|
1203
1114
|
}, "strip", z.ZodTypeAny, {
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
image?: {
|
|
1213
|
-
url?: string | undefined;
|
|
1214
|
-
text?: string | undefined;
|
|
1215
|
-
uri?: string | undefined;
|
|
1216
|
-
accessibilityDescription?: string | undefined;
|
|
1217
|
-
} | undefined;
|
|
1218
|
-
description?: string | undefined;
|
|
1219
|
-
icon?: {
|
|
1115
|
+
providesTitle?: boolean | undefined;
|
|
1116
|
+
providesDescription?: boolean | undefined;
|
|
1117
|
+
providesIcon?: boolean | undefined;
|
|
1118
|
+
providesImage?: boolean | undefined;
|
|
1119
|
+
providesMedia?: boolean | undefined;
|
|
1120
|
+
defaultTitle?: string | undefined;
|
|
1121
|
+
defaultDescription?: string | undefined;
|
|
1122
|
+
defaultIcon?: {
|
|
1220
1123
|
name: string;
|
|
1221
1124
|
} | {
|
|
1222
1125
|
text: string;
|
|
1223
1126
|
} | undefined;
|
|
1224
|
-
|
|
1127
|
+
defaultImage?: {
|
|
1128
|
+
url?: string | undefined;
|
|
1129
|
+
text?: string | undefined;
|
|
1130
|
+
uri?: string | undefined;
|
|
1131
|
+
accessibilityDescription?: string | undefined;
|
|
1132
|
+
} | undefined;
|
|
1133
|
+
defaultMedia?: {
|
|
1225
1134
|
type: "image";
|
|
1226
1135
|
uri: string;
|
|
1227
1136
|
accessibilityDescription?: string | undefined;
|
|
1228
1137
|
} | {
|
|
1229
1138
|
type: "avatar";
|
|
1230
1139
|
content: ({
|
|
1231
|
-
type: "uri";
|
|
1232
|
-
uri: string;
|
|
1233
|
-
badgeUri?: string | undefined;
|
|
1234
|
-
} | {
|
|
1235
1140
|
type: "text";
|
|
1236
1141
|
text: string;
|
|
1237
1142
|
badgeUri?: string | undefined;
|
|
1143
|
+
} | {
|
|
1144
|
+
type: "uri";
|
|
1145
|
+
uri: string;
|
|
1146
|
+
badgeUri?: string | undefined;
|
|
1238
1147
|
})[];
|
|
1239
1148
|
accessibilityDescription?: string | undefined;
|
|
1240
1149
|
} | undefined;
|
|
1241
1150
|
}, {
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1151
|
+
providesTitle?: boolean | undefined;
|
|
1152
|
+
providesDescription?: boolean | undefined;
|
|
1153
|
+
providesIcon?: boolean | undefined;
|
|
1154
|
+
providesImage?: boolean | undefined;
|
|
1155
|
+
providesMedia?: boolean | undefined;
|
|
1156
|
+
defaultTitle?: string | undefined;
|
|
1157
|
+
defaultDescription?: string | undefined;
|
|
1158
|
+
defaultIcon?: {
|
|
1159
|
+
name: string;
|
|
1160
|
+
} | {
|
|
1161
|
+
text: string;
|
|
1162
|
+
} | undefined;
|
|
1163
|
+
defaultImage?: {
|
|
1251
1164
|
url?: string | undefined;
|
|
1252
1165
|
text?: string | undefined;
|
|
1253
1166
|
uri?: string | undefined;
|
|
1254
1167
|
accessibilityDescription?: string | undefined;
|
|
1255
1168
|
} | undefined;
|
|
1256
|
-
|
|
1257
|
-
icon?: {
|
|
1258
|
-
name: string;
|
|
1259
|
-
} | {
|
|
1260
|
-
text: string;
|
|
1261
|
-
} | undefined;
|
|
1262
|
-
media?: {
|
|
1169
|
+
defaultMedia?: {
|
|
1263
1170
|
type: "image";
|
|
1264
1171
|
uri: string;
|
|
1265
1172
|
accessibilityDescription?: string | undefined;
|
|
1266
1173
|
} | {
|
|
1267
1174
|
type: "avatar";
|
|
1268
1175
|
content: ({
|
|
1269
|
-
type: "uri";
|
|
1270
|
-
uri: string;
|
|
1271
|
-
badgeUri?: string | undefined;
|
|
1272
|
-
} | {
|
|
1273
1176
|
type: "text";
|
|
1274
1177
|
text: string;
|
|
1275
1178
|
badgeUri?: string | undefined;
|
|
1179
|
+
} | {
|
|
1180
|
+
type: "uri";
|
|
1181
|
+
uri: string;
|
|
1182
|
+
badgeUri?: string | undefined;
|
|
1276
1183
|
})[];
|
|
1277
1184
|
accessibilityDescription?: string | undefined;
|
|
1278
1185
|
} | undefined;
|
|
1279
1186
|
}>;
|
|
1280
|
-
export declare const
|
|
1281
|
-
|
|
1282
|
-
title: z.ZodString;
|
|
1283
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1284
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1285
|
-
name: z.ZodString;
|
|
1286
|
-
}, "strip", z.ZodTypeAny, {
|
|
1287
|
-
name: string;
|
|
1288
|
-
}, {
|
|
1289
|
-
name: string;
|
|
1290
|
-
}>, z.ZodObject<{
|
|
1291
|
-
text: z.ZodString;
|
|
1292
|
-
}, "strip", z.ZodTypeAny, {
|
|
1293
|
-
text: string;
|
|
1294
|
-
}, {
|
|
1295
|
-
text: string;
|
|
1296
|
-
}>]>>;
|
|
1297
|
-
image: z.ZodOptional<z.ZodObject<{
|
|
1298
|
-
text: z.ZodOptional<z.ZodString>;
|
|
1299
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1300
|
-
uri: z.ZodOptional<z.ZodString>;
|
|
1301
|
-
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
1302
|
-
}, "strip", z.ZodTypeAny, {
|
|
1303
|
-
url?: string | undefined;
|
|
1304
|
-
text?: string | undefined;
|
|
1305
|
-
uri?: string | undefined;
|
|
1306
|
-
accessibilityDescription?: string | undefined;
|
|
1307
|
-
}, {
|
|
1308
|
-
url?: string | undefined;
|
|
1309
|
-
text?: string | undefined;
|
|
1310
|
-
uri?: string | undefined;
|
|
1311
|
-
accessibilityDescription?: string | undefined;
|
|
1312
|
-
}>>;
|
|
1313
|
-
value: z.ZodObject<{
|
|
1187
|
+
export declare const actionResponseBodySchema: z.ZodObject<{
|
|
1188
|
+
action: z.ZodObject<{
|
|
1314
1189
|
title: z.ZodOptional<z.ZodString>;
|
|
1315
1190
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
1316
1191
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1332,8 +1207,8 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1332
1207
|
title?: string | undefined;
|
|
1333
1208
|
timeout?: number | undefined;
|
|
1334
1209
|
id?: string | undefined;
|
|
1335
|
-
$ref?: string | undefined;
|
|
1336
1210
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1211
|
+
$ref?: string | undefined;
|
|
1337
1212
|
exit?: boolean | undefined;
|
|
1338
1213
|
result?: JsonElement | undefined;
|
|
1339
1214
|
data?: JsonElement | undefined;
|
|
@@ -1346,12 +1221,94 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1346
1221
|
title?: string | undefined;
|
|
1347
1222
|
timeout?: number | undefined;
|
|
1348
1223
|
id?: string | undefined;
|
|
1224
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1225
|
+
$ref?: string | undefined;
|
|
1226
|
+
exit?: boolean | undefined;
|
|
1227
|
+
result?: JsonElement | undefined;
|
|
1228
|
+
data?: JsonElement | undefined;
|
|
1229
|
+
skipValidation?: boolean | undefined;
|
|
1230
|
+
}>;
|
|
1231
|
+
}, "strip", z.ZodTypeAny, {
|
|
1232
|
+
action: {
|
|
1233
|
+
url?: string | undefined;
|
|
1234
|
+
$id?: string | undefined;
|
|
1235
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1236
|
+
disabled?: boolean | undefined;
|
|
1237
|
+
title?: string | undefined;
|
|
1238
|
+
timeout?: number | undefined;
|
|
1239
|
+
id?: string | undefined;
|
|
1240
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1349
1241
|
$ref?: string | undefined;
|
|
1242
|
+
exit?: boolean | undefined;
|
|
1243
|
+
result?: JsonElement | undefined;
|
|
1244
|
+
data?: JsonElement | undefined;
|
|
1245
|
+
skipValidation?: boolean | undefined;
|
|
1246
|
+
};
|
|
1247
|
+
}, {
|
|
1248
|
+
action: {
|
|
1249
|
+
url?: string | undefined;
|
|
1250
|
+
$id?: string | undefined;
|
|
1251
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1252
|
+
disabled?: boolean | undefined;
|
|
1253
|
+
title?: string | undefined;
|
|
1254
|
+
timeout?: number | undefined;
|
|
1255
|
+
id?: string | undefined;
|
|
1350
1256
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1257
|
+
$ref?: string | undefined;
|
|
1351
1258
|
exit?: boolean | undefined;
|
|
1352
1259
|
result?: JsonElement | undefined;
|
|
1353
1260
|
data?: JsonElement | undefined;
|
|
1354
1261
|
skipValidation?: boolean | undefined;
|
|
1262
|
+
};
|
|
1263
|
+
}>;
|
|
1264
|
+
export declare const searchResultSearchSchema: z.ZodObject<{
|
|
1265
|
+
type: z.ZodLiteral<"search">;
|
|
1266
|
+
title: z.ZodString;
|
|
1267
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1269
|
+
name: z.ZodString;
|
|
1270
|
+
}, "strip", z.ZodTypeAny, {
|
|
1271
|
+
name: string;
|
|
1272
|
+
}, {
|
|
1273
|
+
name: string;
|
|
1274
|
+
}>, z.ZodObject<{
|
|
1275
|
+
text: z.ZodString;
|
|
1276
|
+
}, "strip", z.ZodTypeAny, {
|
|
1277
|
+
text: string;
|
|
1278
|
+
}, {
|
|
1279
|
+
text: string;
|
|
1280
|
+
}>]>>;
|
|
1281
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
1282
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1283
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1284
|
+
uri: z.ZodOptional<z.ZodString>;
|
|
1285
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
1286
|
+
}, "strip", z.ZodTypeAny, {
|
|
1287
|
+
url?: string | undefined;
|
|
1288
|
+
text?: string | undefined;
|
|
1289
|
+
uri?: string | undefined;
|
|
1290
|
+
accessibilityDescription?: string | undefined;
|
|
1291
|
+
}, {
|
|
1292
|
+
url?: string | undefined;
|
|
1293
|
+
text?: string | undefined;
|
|
1294
|
+
uri?: string | undefined;
|
|
1295
|
+
accessibilityDescription?: string | undefined;
|
|
1296
|
+
}>>;
|
|
1297
|
+
value: z.ZodObject<{
|
|
1298
|
+
url: z.ZodString;
|
|
1299
|
+
method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
|
|
1300
|
+
param: z.ZodString;
|
|
1301
|
+
query: z.ZodString;
|
|
1302
|
+
}, "strip", z.ZodTypeAny, {
|
|
1303
|
+
url: string;
|
|
1304
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
1305
|
+
param: string;
|
|
1306
|
+
query: string;
|
|
1307
|
+
}, {
|
|
1308
|
+
url: string;
|
|
1309
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
1310
|
+
param: string;
|
|
1311
|
+
query: string;
|
|
1355
1312
|
}>;
|
|
1356
1313
|
media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1357
1314
|
type: z.ZodLiteral<"avatar">;
|
|
@@ -1384,25 +1341,25 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1384
1341
|
}, "strip", z.ZodTypeAny, {
|
|
1385
1342
|
type: "avatar";
|
|
1386
1343
|
content: ({
|
|
1387
|
-
type: "uri";
|
|
1388
|
-
uri: string;
|
|
1389
|
-
badgeUri?: string | undefined;
|
|
1390
|
-
} | {
|
|
1391
1344
|
type: "text";
|
|
1392
1345
|
text: string;
|
|
1393
1346
|
badgeUri?: string | undefined;
|
|
1347
|
+
} | {
|
|
1348
|
+
type: "uri";
|
|
1349
|
+
uri: string;
|
|
1350
|
+
badgeUri?: string | undefined;
|
|
1394
1351
|
})[];
|
|
1395
1352
|
accessibilityDescription?: string | undefined;
|
|
1396
1353
|
}, {
|
|
1397
1354
|
type: "avatar";
|
|
1398
1355
|
content: ({
|
|
1399
|
-
type: "uri";
|
|
1400
|
-
uri: string;
|
|
1401
|
-
badgeUri?: string | undefined;
|
|
1402
|
-
} | {
|
|
1403
1356
|
type: "text";
|
|
1404
1357
|
text: string;
|
|
1405
1358
|
badgeUri?: string | undefined;
|
|
1359
|
+
} | {
|
|
1360
|
+
type: "uri";
|
|
1361
|
+
uri: string;
|
|
1362
|
+
badgeUri?: string | undefined;
|
|
1406
1363
|
})[];
|
|
1407
1364
|
accessibilityDescription?: string | undefined;
|
|
1408
1365
|
}>, z.ZodObject<{
|
|
@@ -1419,22 +1376,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1419
1376
|
accessibilityDescription?: string | undefined;
|
|
1420
1377
|
}>]>>;
|
|
1421
1378
|
}, "strip", z.ZodTypeAny, {
|
|
1422
|
-
type: "
|
|
1379
|
+
type: "search";
|
|
1423
1380
|
title: string;
|
|
1424
1381
|
value: {
|
|
1425
|
-
url
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
title?: string | undefined;
|
|
1430
|
-
timeout?: number | undefined;
|
|
1431
|
-
id?: string | undefined;
|
|
1432
|
-
$ref?: string | undefined;
|
|
1433
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1434
|
-
exit?: boolean | undefined;
|
|
1435
|
-
result?: JsonElement | undefined;
|
|
1436
|
-
data?: JsonElement | undefined;
|
|
1437
|
-
skipValidation?: boolean | undefined;
|
|
1382
|
+
url: string;
|
|
1383
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
1384
|
+
param: string;
|
|
1385
|
+
query: string;
|
|
1438
1386
|
};
|
|
1439
1387
|
image?: {
|
|
1440
1388
|
url?: string | undefined;
|
|
@@ -1455,33 +1403,24 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1455
1403
|
} | {
|
|
1456
1404
|
type: "avatar";
|
|
1457
1405
|
content: ({
|
|
1458
|
-
type: "uri";
|
|
1459
|
-
uri: string;
|
|
1460
|
-
badgeUri?: string | undefined;
|
|
1461
|
-
} | {
|
|
1462
1406
|
type: "text";
|
|
1463
1407
|
text: string;
|
|
1464
1408
|
badgeUri?: string | undefined;
|
|
1409
|
+
} | {
|
|
1410
|
+
type: "uri";
|
|
1411
|
+
uri: string;
|
|
1412
|
+
badgeUri?: string | undefined;
|
|
1465
1413
|
})[];
|
|
1466
1414
|
accessibilityDescription?: string | undefined;
|
|
1467
1415
|
} | undefined;
|
|
1468
1416
|
}, {
|
|
1469
|
-
type: "
|
|
1417
|
+
type: "search";
|
|
1470
1418
|
title: string;
|
|
1471
1419
|
value: {
|
|
1472
|
-
url
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
title?: string | undefined;
|
|
1477
|
-
timeout?: number | undefined;
|
|
1478
|
-
id?: string | undefined;
|
|
1479
|
-
$ref?: string | undefined;
|
|
1480
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1481
|
-
exit?: boolean | undefined;
|
|
1482
|
-
result?: JsonElement | undefined;
|
|
1483
|
-
data?: JsonElement | undefined;
|
|
1484
|
-
skipValidation?: boolean | undefined;
|
|
1420
|
+
url: string;
|
|
1421
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
1422
|
+
param: string;
|
|
1423
|
+
query: string;
|
|
1485
1424
|
};
|
|
1486
1425
|
image?: {
|
|
1487
1426
|
url?: string | undefined;
|
|
@@ -1502,260 +1441,22 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
1502
1441
|
} | {
|
|
1503
1442
|
type: "avatar";
|
|
1504
1443
|
content: ({
|
|
1505
|
-
type: "uri";
|
|
1506
|
-
uri: string;
|
|
1507
|
-
badgeUri?: string | undefined;
|
|
1508
|
-
} | {
|
|
1509
1444
|
type: "text";
|
|
1510
1445
|
text: string;
|
|
1511
1446
|
badgeUri?: string | undefined;
|
|
1447
|
+
} | {
|
|
1448
|
+
type: "uri";
|
|
1449
|
+
uri: string;
|
|
1450
|
+
badgeUri?: string | undefined;
|
|
1512
1451
|
})[];
|
|
1513
1452
|
accessibilityDescription?: string | undefined;
|
|
1514
1453
|
} | undefined;
|
|
1515
1454
|
}>;
|
|
1516
|
-
export declare const
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
1522
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1523
|
-
$id: z.ZodOptional<z.ZodString>;
|
|
1524
|
-
$ref: z.ZodOptional<z.ZodString>;
|
|
1525
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1526
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1527
|
-
method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
|
|
1528
|
-
exit: z.ZodOptional<z.ZodBoolean>;
|
|
1529
|
-
result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1530
|
-
data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1531
|
-
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1532
|
-
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1533
|
-
}, "strip", z.ZodTypeAny, {
|
|
1534
|
-
url?: string | undefined;
|
|
1535
|
-
$id?: string | undefined;
|
|
1536
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1537
|
-
disabled?: boolean | undefined;
|
|
1538
|
-
title?: string | undefined;
|
|
1539
|
-
timeout?: number | undefined;
|
|
1540
|
-
id?: string | undefined;
|
|
1541
|
-
$ref?: string | undefined;
|
|
1542
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1543
|
-
exit?: boolean | undefined;
|
|
1544
|
-
result?: JsonElement | undefined;
|
|
1545
|
-
data?: JsonElement | undefined;
|
|
1546
|
-
skipValidation?: boolean | undefined;
|
|
1547
|
-
}, {
|
|
1548
|
-
url?: string | undefined;
|
|
1549
|
-
$id?: string | undefined;
|
|
1550
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1551
|
-
disabled?: boolean | undefined;
|
|
1552
|
-
title?: string | undefined;
|
|
1553
|
-
timeout?: number | undefined;
|
|
1554
|
-
id?: string | undefined;
|
|
1555
|
-
$ref?: string | undefined;
|
|
1556
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1557
|
-
exit?: boolean | undefined;
|
|
1558
|
-
result?: JsonElement | undefined;
|
|
1559
|
-
data?: JsonElement | undefined;
|
|
1560
|
-
skipValidation?: boolean | undefined;
|
|
1561
|
-
}>;
|
|
1562
|
-
}, "strip", z.ZodTypeAny, {
|
|
1563
|
-
action: {
|
|
1564
|
-
url?: string | undefined;
|
|
1565
|
-
$id?: string | undefined;
|
|
1566
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1567
|
-
disabled?: boolean | undefined;
|
|
1568
|
-
title?: string | undefined;
|
|
1569
|
-
timeout?: number | undefined;
|
|
1570
|
-
id?: string | undefined;
|
|
1571
|
-
$ref?: string | undefined;
|
|
1572
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1573
|
-
exit?: boolean | undefined;
|
|
1574
|
-
result?: JsonElement | undefined;
|
|
1575
|
-
data?: JsonElement | undefined;
|
|
1576
|
-
skipValidation?: boolean | undefined;
|
|
1577
|
-
};
|
|
1578
|
-
title?: string | undefined;
|
|
1579
|
-
}, {
|
|
1580
|
-
action: {
|
|
1581
|
-
url?: string | undefined;
|
|
1582
|
-
$id?: string | undefined;
|
|
1583
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1584
|
-
disabled?: boolean | undefined;
|
|
1585
|
-
title?: string | undefined;
|
|
1586
|
-
timeout?: number | undefined;
|
|
1587
|
-
id?: string | undefined;
|
|
1588
|
-
$ref?: string | undefined;
|
|
1589
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1590
|
-
exit?: boolean | undefined;
|
|
1591
|
-
result?: JsonElement | undefined;
|
|
1592
|
-
data?: JsonElement | undefined;
|
|
1593
|
-
skipValidation?: boolean | undefined;
|
|
1594
|
-
};
|
|
1595
|
-
title?: string | undefined;
|
|
1596
|
-
}>>;
|
|
1597
|
-
back: z.ZodOptional<z.ZodObject<{
|
|
1598
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1599
|
-
action: z.ZodObject<{
|
|
1600
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1601
|
-
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
1602
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1603
|
-
$id: z.ZodOptional<z.ZodString>;
|
|
1604
|
-
$ref: z.ZodOptional<z.ZodString>;
|
|
1605
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1606
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1607
|
-
method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
|
|
1608
|
-
exit: z.ZodOptional<z.ZodBoolean>;
|
|
1609
|
-
result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1610
|
-
data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1611
|
-
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1612
|
-
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1613
|
-
}, "strip", z.ZodTypeAny, {
|
|
1614
|
-
url?: string | undefined;
|
|
1615
|
-
$id?: string | undefined;
|
|
1616
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1617
|
-
disabled?: boolean | undefined;
|
|
1618
|
-
title?: string | undefined;
|
|
1619
|
-
timeout?: number | undefined;
|
|
1620
|
-
id?: string | undefined;
|
|
1621
|
-
$ref?: string | undefined;
|
|
1622
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1623
|
-
exit?: boolean | undefined;
|
|
1624
|
-
result?: JsonElement | undefined;
|
|
1625
|
-
data?: JsonElement | undefined;
|
|
1626
|
-
skipValidation?: boolean | undefined;
|
|
1627
|
-
}, {
|
|
1628
|
-
url?: string | undefined;
|
|
1629
|
-
$id?: string | undefined;
|
|
1630
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1631
|
-
disabled?: boolean | undefined;
|
|
1632
|
-
title?: string | undefined;
|
|
1633
|
-
timeout?: number | undefined;
|
|
1634
|
-
id?: string | undefined;
|
|
1635
|
-
$ref?: string | undefined;
|
|
1636
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1637
|
-
exit?: boolean | undefined;
|
|
1638
|
-
result?: JsonElement | undefined;
|
|
1639
|
-
data?: JsonElement | undefined;
|
|
1640
|
-
skipValidation?: boolean | undefined;
|
|
1641
|
-
}>;
|
|
1642
|
-
}, "strip", z.ZodTypeAny, {
|
|
1643
|
-
action: {
|
|
1644
|
-
url?: string | undefined;
|
|
1645
|
-
$id?: string | undefined;
|
|
1646
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1647
|
-
disabled?: boolean | undefined;
|
|
1648
|
-
title?: string | undefined;
|
|
1649
|
-
timeout?: number | undefined;
|
|
1650
|
-
id?: string | undefined;
|
|
1651
|
-
$ref?: string | undefined;
|
|
1652
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1653
|
-
exit?: boolean | undefined;
|
|
1654
|
-
result?: JsonElement | undefined;
|
|
1655
|
-
data?: JsonElement | undefined;
|
|
1656
|
-
skipValidation?: boolean | undefined;
|
|
1657
|
-
};
|
|
1658
|
-
title?: string | undefined;
|
|
1659
|
-
}, {
|
|
1660
|
-
action: {
|
|
1661
|
-
url?: string | undefined;
|
|
1662
|
-
$id?: string | undefined;
|
|
1663
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1664
|
-
disabled?: boolean | undefined;
|
|
1665
|
-
title?: string | undefined;
|
|
1666
|
-
timeout?: number | undefined;
|
|
1667
|
-
id?: string | undefined;
|
|
1668
|
-
$ref?: string | undefined;
|
|
1669
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1670
|
-
exit?: boolean | undefined;
|
|
1671
|
-
result?: JsonElement | undefined;
|
|
1672
|
-
data?: JsonElement | undefined;
|
|
1673
|
-
skipValidation?: boolean | undefined;
|
|
1674
|
-
};
|
|
1675
|
-
title?: string | undefined;
|
|
1676
|
-
}>>;
|
|
1677
|
-
stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
|
|
1678
|
-
}, "strip", z.ZodTypeAny, {
|
|
1679
|
-
back?: {
|
|
1680
|
-
action: {
|
|
1681
|
-
url?: string | undefined;
|
|
1682
|
-
$id?: string | undefined;
|
|
1683
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1684
|
-
disabled?: boolean | undefined;
|
|
1685
|
-
title?: string | undefined;
|
|
1686
|
-
timeout?: number | undefined;
|
|
1687
|
-
id?: string | undefined;
|
|
1688
|
-
$ref?: string | undefined;
|
|
1689
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1690
|
-
exit?: boolean | undefined;
|
|
1691
|
-
result?: JsonElement | undefined;
|
|
1692
|
-
data?: JsonElement | undefined;
|
|
1693
|
-
skipValidation?: boolean | undefined;
|
|
1694
|
-
};
|
|
1695
|
-
title?: string | undefined;
|
|
1696
|
-
} | undefined;
|
|
1697
|
-
backButton?: {
|
|
1698
|
-
action: {
|
|
1699
|
-
url?: string | undefined;
|
|
1700
|
-
$id?: string | undefined;
|
|
1701
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1702
|
-
disabled?: boolean | undefined;
|
|
1703
|
-
title?: string | undefined;
|
|
1704
|
-
timeout?: number | undefined;
|
|
1705
|
-
id?: string | undefined;
|
|
1706
|
-
$ref?: string | undefined;
|
|
1707
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1708
|
-
exit?: boolean | undefined;
|
|
1709
|
-
result?: JsonElement | undefined;
|
|
1710
|
-
data?: JsonElement | undefined;
|
|
1711
|
-
skipValidation?: boolean | undefined;
|
|
1712
|
-
};
|
|
1713
|
-
title?: string | undefined;
|
|
1714
|
-
} | undefined;
|
|
1715
|
-
stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
|
|
1716
|
-
}, {
|
|
1717
|
-
back?: {
|
|
1718
|
-
action: {
|
|
1719
|
-
url?: string | undefined;
|
|
1720
|
-
$id?: string | undefined;
|
|
1721
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1722
|
-
disabled?: boolean | undefined;
|
|
1723
|
-
title?: string | undefined;
|
|
1724
|
-
timeout?: number | undefined;
|
|
1725
|
-
id?: string | undefined;
|
|
1726
|
-
$ref?: string | undefined;
|
|
1727
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1728
|
-
exit?: boolean | undefined;
|
|
1729
|
-
result?: JsonElement | undefined;
|
|
1730
|
-
data?: JsonElement | undefined;
|
|
1731
|
-
skipValidation?: boolean | undefined;
|
|
1732
|
-
};
|
|
1733
|
-
title?: string | undefined;
|
|
1734
|
-
} | undefined;
|
|
1735
|
-
backButton?: {
|
|
1736
|
-
action: {
|
|
1737
|
-
url?: string | undefined;
|
|
1738
|
-
$id?: string | undefined;
|
|
1739
|
-
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1740
|
-
disabled?: boolean | undefined;
|
|
1741
|
-
title?: string | undefined;
|
|
1742
|
-
timeout?: number | undefined;
|
|
1743
|
-
id?: string | undefined;
|
|
1744
|
-
$ref?: string | undefined;
|
|
1745
|
-
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1746
|
-
exit?: boolean | undefined;
|
|
1747
|
-
result?: JsonElement | undefined;
|
|
1748
|
-
data?: JsonElement | undefined;
|
|
1749
|
-
skipValidation?: boolean | undefined;
|
|
1750
|
-
};
|
|
1751
|
-
title?: string | undefined;
|
|
1752
|
-
} | undefined;
|
|
1753
|
-
stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
|
|
1754
|
-
}>;
|
|
1755
|
-
export declare const summarySummariserSchema: z.ZodObject<{
|
|
1756
|
-
defaultTitle: z.ZodOptional<z.ZodString>;
|
|
1757
|
-
defaultDescription: z.ZodOptional<z.ZodString>;
|
|
1758
|
-
defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1455
|
+
export declare const searchResultActionSchema: z.ZodObject<{
|
|
1456
|
+
type: z.ZodLiteral<"action">;
|
|
1457
|
+
title: z.ZodString;
|
|
1458
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1459
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1759
1460
|
name: z.ZodString;
|
|
1760
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1761
1462
|
name: string;
|
|
@@ -1768,7 +1469,7 @@ export declare const summarySummariserSchema: z.ZodObject<{
|
|
|
1768
1469
|
}, {
|
|
1769
1470
|
text: string;
|
|
1770
1471
|
}>]>>;
|
|
1771
|
-
|
|
1472
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
1772
1473
|
text: z.ZodOptional<z.ZodString>;
|
|
1773
1474
|
url: z.ZodOptional<z.ZodString>;
|
|
1774
1475
|
uri: z.ZodOptional<z.ZodString>;
|
|
@@ -1784,15 +1485,54 @@ export declare const summarySummariserSchema: z.ZodObject<{
|
|
|
1784
1485
|
uri?: string | undefined;
|
|
1785
1486
|
accessibilityDescription?: string | undefined;
|
|
1786
1487
|
}>>;
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1488
|
+
value: z.ZodObject<{
|
|
1489
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1490
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
1491
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1492
|
+
$id: z.ZodOptional<z.ZodString>;
|
|
1493
|
+
$ref: z.ZodOptional<z.ZodString>;
|
|
1494
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1495
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
|
|
1497
|
+
exit: z.ZodOptional<z.ZodBoolean>;
|
|
1498
|
+
result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1499
|
+
data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1500
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1501
|
+
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1502
|
+
}, "strip", z.ZodTypeAny, {
|
|
1503
|
+
url?: string | undefined;
|
|
1504
|
+
$id?: string | undefined;
|
|
1505
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1506
|
+
disabled?: boolean | undefined;
|
|
1507
|
+
title?: string | undefined;
|
|
1508
|
+
timeout?: number | undefined;
|
|
1509
|
+
id?: string | undefined;
|
|
1510
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1511
|
+
$ref?: string | undefined;
|
|
1512
|
+
exit?: boolean | undefined;
|
|
1513
|
+
result?: JsonElement | undefined;
|
|
1514
|
+
data?: JsonElement | undefined;
|
|
1515
|
+
skipValidation?: boolean | undefined;
|
|
1516
|
+
}, {
|
|
1517
|
+
url?: string | undefined;
|
|
1518
|
+
$id?: string | undefined;
|
|
1519
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1520
|
+
disabled?: boolean | undefined;
|
|
1521
|
+
title?: string | undefined;
|
|
1522
|
+
timeout?: number | undefined;
|
|
1523
|
+
id?: string | undefined;
|
|
1524
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1525
|
+
$ref?: string | undefined;
|
|
1526
|
+
exit?: boolean | undefined;
|
|
1527
|
+
result?: JsonElement | undefined;
|
|
1528
|
+
data?: JsonElement | undefined;
|
|
1529
|
+
skipValidation?: boolean | undefined;
|
|
1530
|
+
}>;
|
|
1531
|
+
media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1532
|
+
type: z.ZodLiteral<"avatar">;
|
|
1533
|
+
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1534
|
+
type: z.ZodLiteral<"text">;
|
|
1535
|
+
text: z.ZodString;
|
|
1796
1536
|
badgeUri: z.ZodOptional<z.ZodString>;
|
|
1797
1537
|
}, "strip", z.ZodTypeAny, {
|
|
1798
1538
|
type: "text";
|
|
@@ -1819,25 +1559,25 @@ export declare const summarySummariserSchema: z.ZodObject<{
|
|
|
1819
1559
|
}, "strip", z.ZodTypeAny, {
|
|
1820
1560
|
type: "avatar";
|
|
1821
1561
|
content: ({
|
|
1822
|
-
type: "uri";
|
|
1823
|
-
uri: string;
|
|
1824
|
-
badgeUri?: string | undefined;
|
|
1825
|
-
} | {
|
|
1826
1562
|
type: "text";
|
|
1827
1563
|
text: string;
|
|
1828
1564
|
badgeUri?: string | undefined;
|
|
1565
|
+
} | {
|
|
1566
|
+
type: "uri";
|
|
1567
|
+
uri: string;
|
|
1568
|
+
badgeUri?: string | undefined;
|
|
1829
1569
|
})[];
|
|
1830
1570
|
accessibilityDescription?: string | undefined;
|
|
1831
1571
|
}, {
|
|
1832
1572
|
type: "avatar";
|
|
1833
1573
|
content: ({
|
|
1834
|
-
type: "uri";
|
|
1835
|
-
uri: string;
|
|
1836
|
-
badgeUri?: string | undefined;
|
|
1837
|
-
} | {
|
|
1838
1574
|
type: "text";
|
|
1839
1575
|
text: string;
|
|
1840
1576
|
badgeUri?: string | undefined;
|
|
1577
|
+
} | {
|
|
1578
|
+
type: "uri";
|
|
1579
|
+
uri: string;
|
|
1580
|
+
badgeUri?: string | undefined;
|
|
1841
1581
|
})[];
|
|
1842
1582
|
accessibilityDescription?: string | undefined;
|
|
1843
1583
|
}>, z.ZodObject<{
|
|
@@ -1853,76 +1593,97 @@ export declare const summarySummariserSchema: z.ZodObject<{
|
|
|
1853
1593
|
uri: string;
|
|
1854
1594
|
accessibilityDescription?: string | undefined;
|
|
1855
1595
|
}>]>>;
|
|
1856
|
-
providesMedia: z.ZodOptional<z.ZodBoolean>;
|
|
1857
1596
|
}, "strip", z.ZodTypeAny, {
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1597
|
+
type: "action";
|
|
1598
|
+
title: string;
|
|
1599
|
+
value: {
|
|
1600
|
+
url?: string | undefined;
|
|
1601
|
+
$id?: string | undefined;
|
|
1602
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1603
|
+
disabled?: boolean | undefined;
|
|
1604
|
+
title?: string | undefined;
|
|
1605
|
+
timeout?: number | undefined;
|
|
1606
|
+
id?: string | undefined;
|
|
1607
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1608
|
+
$ref?: string | undefined;
|
|
1609
|
+
exit?: boolean | undefined;
|
|
1610
|
+
result?: JsonElement | undefined;
|
|
1611
|
+
data?: JsonElement | undefined;
|
|
1612
|
+
skipValidation?: boolean | undefined;
|
|
1613
|
+
};
|
|
1614
|
+
image?: {
|
|
1871
1615
|
url?: string | undefined;
|
|
1872
1616
|
text?: string | undefined;
|
|
1873
1617
|
uri?: string | undefined;
|
|
1874
1618
|
accessibilityDescription?: string | undefined;
|
|
1875
1619
|
} | undefined;
|
|
1876
|
-
|
|
1620
|
+
description?: string | undefined;
|
|
1621
|
+
icon?: {
|
|
1622
|
+
name: string;
|
|
1623
|
+
} | {
|
|
1624
|
+
text: string;
|
|
1625
|
+
} | undefined;
|
|
1626
|
+
media?: {
|
|
1877
1627
|
type: "image";
|
|
1878
1628
|
uri: string;
|
|
1879
1629
|
accessibilityDescription?: string | undefined;
|
|
1880
1630
|
} | {
|
|
1881
1631
|
type: "avatar";
|
|
1882
1632
|
content: ({
|
|
1883
|
-
type: "uri";
|
|
1884
|
-
uri: string;
|
|
1885
|
-
badgeUri?: string | undefined;
|
|
1886
|
-
} | {
|
|
1887
1633
|
type: "text";
|
|
1888
1634
|
text: string;
|
|
1889
1635
|
badgeUri?: string | undefined;
|
|
1636
|
+
} | {
|
|
1637
|
+
type: "uri";
|
|
1638
|
+
uri: string;
|
|
1639
|
+
badgeUri?: string | undefined;
|
|
1890
1640
|
})[];
|
|
1891
1641
|
accessibilityDescription?: string | undefined;
|
|
1892
1642
|
} | undefined;
|
|
1893
1643
|
}, {
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1644
|
+
type: "action";
|
|
1645
|
+
title: string;
|
|
1646
|
+
value: {
|
|
1647
|
+
url?: string | undefined;
|
|
1648
|
+
$id?: string | undefined;
|
|
1649
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1650
|
+
disabled?: boolean | undefined;
|
|
1651
|
+
title?: string | undefined;
|
|
1652
|
+
timeout?: number | undefined;
|
|
1653
|
+
id?: string | undefined;
|
|
1654
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1655
|
+
$ref?: string | undefined;
|
|
1656
|
+
exit?: boolean | undefined;
|
|
1657
|
+
result?: JsonElement | undefined;
|
|
1658
|
+
data?: JsonElement | undefined;
|
|
1659
|
+
skipValidation?: boolean | undefined;
|
|
1660
|
+
};
|
|
1661
|
+
image?: {
|
|
1907
1662
|
url?: string | undefined;
|
|
1908
1663
|
text?: string | undefined;
|
|
1909
1664
|
uri?: string | undefined;
|
|
1910
1665
|
accessibilityDescription?: string | undefined;
|
|
1911
1666
|
} | undefined;
|
|
1912
|
-
|
|
1667
|
+
description?: string | undefined;
|
|
1668
|
+
icon?: {
|
|
1669
|
+
name: string;
|
|
1670
|
+
} | {
|
|
1671
|
+
text: string;
|
|
1672
|
+
} | undefined;
|
|
1673
|
+
media?: {
|
|
1913
1674
|
type: "image";
|
|
1914
1675
|
uri: string;
|
|
1915
1676
|
accessibilityDescription?: string | undefined;
|
|
1916
1677
|
} | {
|
|
1917
1678
|
type: "avatar";
|
|
1918
1679
|
content: ({
|
|
1919
|
-
type: "uri";
|
|
1920
|
-
uri: string;
|
|
1921
|
-
badgeUri?: string | undefined;
|
|
1922
|
-
} | {
|
|
1923
1680
|
type: "text";
|
|
1924
1681
|
text: string;
|
|
1925
1682
|
badgeUri?: string | undefined;
|
|
1683
|
+
} | {
|
|
1684
|
+
type: "uri";
|
|
1685
|
+
uri: string;
|
|
1686
|
+
badgeUri?: string | undefined;
|
|
1926
1687
|
})[];
|
|
1927
1688
|
accessibilityDescription?: string | undefined;
|
|
1928
1689
|
} | undefined;
|
|
@@ -1991,25 +1752,25 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
1991
1752
|
}, "strip", z.ZodTypeAny, {
|
|
1992
1753
|
type: "avatar";
|
|
1993
1754
|
content: ({
|
|
1994
|
-
type: "uri";
|
|
1995
|
-
uri: string;
|
|
1996
|
-
badgeUri?: string | undefined;
|
|
1997
|
-
} | {
|
|
1998
1755
|
type: "text";
|
|
1999
1756
|
text: string;
|
|
2000
1757
|
badgeUri?: string | undefined;
|
|
1758
|
+
} | {
|
|
1759
|
+
type: "uri";
|
|
1760
|
+
uri: string;
|
|
1761
|
+
badgeUri?: string | undefined;
|
|
2001
1762
|
})[];
|
|
2002
1763
|
accessibilityDescription?: string | undefined;
|
|
2003
1764
|
}, {
|
|
2004
1765
|
type: "avatar";
|
|
2005
1766
|
content: ({
|
|
2006
|
-
type: "uri";
|
|
2007
|
-
uri: string;
|
|
2008
|
-
badgeUri?: string | undefined;
|
|
2009
|
-
} | {
|
|
2010
1767
|
type: "text";
|
|
2011
1768
|
text: string;
|
|
2012
1769
|
badgeUri?: string | undefined;
|
|
1770
|
+
} | {
|
|
1771
|
+
type: "uri";
|
|
1772
|
+
uri: string;
|
|
1773
|
+
badgeUri?: string | undefined;
|
|
2013
1774
|
})[];
|
|
2014
1775
|
accessibilityDescription?: string | undefined;
|
|
2015
1776
|
}>, z.ZodObject<{
|
|
@@ -2049,13 +1810,13 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
2049
1810
|
} | {
|
|
2050
1811
|
type: "avatar";
|
|
2051
1812
|
content: ({
|
|
2052
|
-
type: "uri";
|
|
2053
|
-
uri: string;
|
|
2054
|
-
badgeUri?: string | undefined;
|
|
2055
|
-
} | {
|
|
2056
1813
|
type: "text";
|
|
2057
1814
|
text: string;
|
|
2058
1815
|
badgeUri?: string | undefined;
|
|
1816
|
+
} | {
|
|
1817
|
+
type: "uri";
|
|
1818
|
+
uri: string;
|
|
1819
|
+
badgeUri?: string | undefined;
|
|
2059
1820
|
})[];
|
|
2060
1821
|
accessibilityDescription?: string | undefined;
|
|
2061
1822
|
} | undefined;
|
|
@@ -2082,82 +1843,321 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
2082
1843
|
} | {
|
|
2083
1844
|
type: "avatar";
|
|
2084
1845
|
content: ({
|
|
2085
|
-
type: "uri";
|
|
2086
|
-
uri: string;
|
|
2087
|
-
badgeUri?: string | undefined;
|
|
2088
|
-
} | {
|
|
2089
1846
|
type: "text";
|
|
2090
1847
|
text: string;
|
|
2091
1848
|
badgeUri?: string | undefined;
|
|
1849
|
+
} | {
|
|
1850
|
+
type: "uri";
|
|
1851
|
+
uri: string;
|
|
1852
|
+
badgeUri?: string | undefined;
|
|
2092
1853
|
})[];
|
|
2093
1854
|
accessibilityDescription?: string | undefined;
|
|
2094
1855
|
} | undefined;
|
|
2095
1856
|
}>;
|
|
2096
|
-
export declare const
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
1857
|
+
export declare const navigationSchema: z.ZodObject<{
|
|
1858
|
+
backButton: z.ZodOptional<z.ZodObject<{
|
|
1859
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1860
|
+
action: z.ZodObject<{
|
|
1861
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1862
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
1863
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1864
|
+
$id: z.ZodOptional<z.ZodString>;
|
|
1865
|
+
$ref: z.ZodOptional<z.ZodString>;
|
|
1866
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1867
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1868
|
+
method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
|
|
1869
|
+
exit: z.ZodOptional<z.ZodBoolean>;
|
|
1870
|
+
result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1871
|
+
data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1872
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1873
|
+
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1874
|
+
}, "strip", z.ZodTypeAny, {
|
|
1875
|
+
url?: string | undefined;
|
|
1876
|
+
$id?: string | undefined;
|
|
1877
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1878
|
+
disabled?: boolean | undefined;
|
|
1879
|
+
title?: string | undefined;
|
|
1880
|
+
timeout?: number | undefined;
|
|
1881
|
+
id?: string | undefined;
|
|
1882
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1883
|
+
$ref?: string | undefined;
|
|
1884
|
+
exit?: boolean | undefined;
|
|
1885
|
+
result?: JsonElement | undefined;
|
|
1886
|
+
data?: JsonElement | undefined;
|
|
1887
|
+
skipValidation?: boolean | undefined;
|
|
1888
|
+
}, {
|
|
1889
|
+
url?: string | undefined;
|
|
1890
|
+
$id?: string | undefined;
|
|
1891
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1892
|
+
disabled?: boolean | undefined;
|
|
1893
|
+
title?: string | undefined;
|
|
1894
|
+
timeout?: number | undefined;
|
|
1895
|
+
id?: string | undefined;
|
|
1896
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1897
|
+
$ref?: string | undefined;
|
|
1898
|
+
exit?: boolean | undefined;
|
|
1899
|
+
result?: JsonElement | undefined;
|
|
1900
|
+
data?: JsonElement | undefined;
|
|
1901
|
+
skipValidation?: boolean | undefined;
|
|
1902
|
+
}>;
|
|
1903
|
+
}, "strip", z.ZodTypeAny, {
|
|
1904
|
+
action: {
|
|
1905
|
+
url?: string | undefined;
|
|
1906
|
+
$id?: string | undefined;
|
|
1907
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1908
|
+
disabled?: boolean | undefined;
|
|
1909
|
+
title?: string | undefined;
|
|
1910
|
+
timeout?: number | undefined;
|
|
1911
|
+
id?: string | undefined;
|
|
1912
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1913
|
+
$ref?: string | undefined;
|
|
1914
|
+
exit?: boolean | undefined;
|
|
1915
|
+
result?: JsonElement | undefined;
|
|
1916
|
+
data?: JsonElement | undefined;
|
|
1917
|
+
skipValidation?: boolean | undefined;
|
|
1918
|
+
};
|
|
1919
|
+
title?: string | undefined;
|
|
1920
|
+
}, {
|
|
1921
|
+
action: {
|
|
1922
|
+
url?: string | undefined;
|
|
1923
|
+
$id?: string | undefined;
|
|
1924
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1925
|
+
disabled?: boolean | undefined;
|
|
1926
|
+
title?: string | undefined;
|
|
1927
|
+
timeout?: number | undefined;
|
|
1928
|
+
id?: string | undefined;
|
|
1929
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1930
|
+
$ref?: string | undefined;
|
|
1931
|
+
exit?: boolean | undefined;
|
|
1932
|
+
result?: JsonElement | undefined;
|
|
1933
|
+
data?: JsonElement | undefined;
|
|
1934
|
+
skipValidation?: boolean | undefined;
|
|
1935
|
+
};
|
|
1936
|
+
title?: string | undefined;
|
|
1937
|
+
}>>;
|
|
1938
|
+
back: z.ZodOptional<z.ZodObject<{
|
|
1939
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1940
|
+
action: z.ZodObject<{
|
|
1941
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1942
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
|
|
1943
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1944
|
+
$id: z.ZodOptional<z.ZodString>;
|
|
1945
|
+
$ref: z.ZodOptional<z.ZodString>;
|
|
1946
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1947
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
|
|
1949
|
+
exit: z.ZodOptional<z.ZodBoolean>;
|
|
1950
|
+
result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1951
|
+
data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1952
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1953
|
+
skipValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1954
|
+
}, "strip", z.ZodTypeAny, {
|
|
1955
|
+
url?: string | undefined;
|
|
1956
|
+
$id?: string | undefined;
|
|
1957
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1958
|
+
disabled?: boolean | undefined;
|
|
1959
|
+
title?: string | undefined;
|
|
1960
|
+
timeout?: number | undefined;
|
|
1961
|
+
id?: string | undefined;
|
|
1962
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1963
|
+
$ref?: string | undefined;
|
|
1964
|
+
exit?: boolean | undefined;
|
|
1965
|
+
result?: JsonElement | undefined;
|
|
1966
|
+
data?: JsonElement | undefined;
|
|
1967
|
+
skipValidation?: boolean | undefined;
|
|
1968
|
+
}, {
|
|
1969
|
+
url?: string | undefined;
|
|
1970
|
+
$id?: string | undefined;
|
|
1971
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1972
|
+
disabled?: boolean | undefined;
|
|
1973
|
+
title?: string | undefined;
|
|
1974
|
+
timeout?: number | undefined;
|
|
1975
|
+
id?: string | undefined;
|
|
1976
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1977
|
+
$ref?: string | undefined;
|
|
1978
|
+
exit?: boolean | undefined;
|
|
1979
|
+
result?: JsonElement | undefined;
|
|
1980
|
+
data?: JsonElement | undefined;
|
|
1981
|
+
skipValidation?: boolean | undefined;
|
|
1982
|
+
}>;
|
|
1983
|
+
}, "strip", z.ZodTypeAny, {
|
|
1984
|
+
action: {
|
|
1985
|
+
url?: string | undefined;
|
|
1986
|
+
$id?: string | undefined;
|
|
1987
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
1988
|
+
disabled?: boolean | undefined;
|
|
1989
|
+
title?: string | undefined;
|
|
1990
|
+
timeout?: number | undefined;
|
|
1991
|
+
id?: string | undefined;
|
|
1992
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1993
|
+
$ref?: string | undefined;
|
|
1994
|
+
exit?: boolean | undefined;
|
|
1995
|
+
result?: JsonElement | undefined;
|
|
1996
|
+
data?: JsonElement | undefined;
|
|
1997
|
+
skipValidation?: boolean | undefined;
|
|
1998
|
+
};
|
|
1999
|
+
title?: string | undefined;
|
|
2000
|
+
}, {
|
|
2001
|
+
action: {
|
|
2002
|
+
url?: string | undefined;
|
|
2003
|
+
$id?: string | undefined;
|
|
2004
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
2005
|
+
disabled?: boolean | undefined;
|
|
2006
|
+
title?: string | undefined;
|
|
2007
|
+
timeout?: number | undefined;
|
|
2008
|
+
id?: string | undefined;
|
|
2009
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2010
|
+
$ref?: string | undefined;
|
|
2011
|
+
exit?: boolean | undefined;
|
|
2012
|
+
result?: JsonElement | undefined;
|
|
2013
|
+
data?: JsonElement | undefined;
|
|
2014
|
+
skipValidation?: boolean | undefined;
|
|
2015
|
+
};
|
|
2016
|
+
title?: string | undefined;
|
|
2017
|
+
}>>;
|
|
2018
|
+
stackBehavior: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>>;
|
|
2019
|
+
}, "strip", z.ZodTypeAny, {
|
|
2020
|
+
back?: {
|
|
2021
|
+
action: {
|
|
2022
|
+
url?: string | undefined;
|
|
2023
|
+
$id?: string | undefined;
|
|
2024
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
2025
|
+
disabled?: boolean | undefined;
|
|
2026
|
+
title?: string | undefined;
|
|
2027
|
+
timeout?: number | undefined;
|
|
2028
|
+
id?: string | undefined;
|
|
2029
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2030
|
+
$ref?: string | undefined;
|
|
2031
|
+
exit?: boolean | undefined;
|
|
2032
|
+
result?: JsonElement | undefined;
|
|
2033
|
+
data?: JsonElement | undefined;
|
|
2034
|
+
skipValidation?: boolean | undefined;
|
|
2035
|
+
};
|
|
2036
|
+
title?: string | undefined;
|
|
2037
|
+
} | undefined;
|
|
2038
|
+
backButton?: {
|
|
2039
|
+
action: {
|
|
2040
|
+
url?: string | undefined;
|
|
2041
|
+
$id?: string | undefined;
|
|
2042
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
2043
|
+
disabled?: boolean | undefined;
|
|
2044
|
+
title?: string | undefined;
|
|
2045
|
+
timeout?: number | undefined;
|
|
2046
|
+
id?: string | undefined;
|
|
2047
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2048
|
+
$ref?: string | undefined;
|
|
2049
|
+
exit?: boolean | undefined;
|
|
2050
|
+
result?: JsonElement | undefined;
|
|
2051
|
+
data?: JsonElement | undefined;
|
|
2052
|
+
skipValidation?: boolean | undefined;
|
|
2053
|
+
};
|
|
2054
|
+
title?: string | undefined;
|
|
2055
|
+
} | undefined;
|
|
2056
|
+
stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
|
|
2057
|
+
}, {
|
|
2058
|
+
back?: {
|
|
2059
|
+
action: {
|
|
2060
|
+
url?: string | undefined;
|
|
2061
|
+
$id?: string | undefined;
|
|
2062
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
2063
|
+
disabled?: boolean | undefined;
|
|
2064
|
+
title?: string | undefined;
|
|
2065
|
+
timeout?: number | undefined;
|
|
2066
|
+
id?: string | undefined;
|
|
2067
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2068
|
+
$ref?: string | undefined;
|
|
2069
|
+
exit?: boolean | undefined;
|
|
2070
|
+
result?: JsonElement | undefined;
|
|
2071
|
+
data?: JsonElement | undefined;
|
|
2072
|
+
skipValidation?: boolean | undefined;
|
|
2073
|
+
};
|
|
2074
|
+
title?: string | undefined;
|
|
2075
|
+
} | undefined;
|
|
2076
|
+
backButton?: {
|
|
2077
|
+
action: {
|
|
2078
|
+
url?: string | undefined;
|
|
2079
|
+
$id?: string | undefined;
|
|
2080
|
+
type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
|
|
2081
|
+
disabled?: boolean | undefined;
|
|
2082
|
+
title?: string | undefined;
|
|
2083
|
+
timeout?: number | undefined;
|
|
2084
|
+
id?: string | undefined;
|
|
2085
|
+
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2086
|
+
$ref?: string | undefined;
|
|
2087
|
+
exit?: boolean | undefined;
|
|
2088
|
+
result?: JsonElement | undefined;
|
|
2089
|
+
data?: JsonElement | undefined;
|
|
2090
|
+
skipValidation?: boolean | undefined;
|
|
2091
|
+
};
|
|
2092
|
+
title?: string | undefined;
|
|
2093
|
+
} | undefined;
|
|
2094
|
+
stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
|
|
2095
|
+
}>;
|
|
2096
|
+
export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
|
|
2097
|
+
providesTitle: z.ZodOptional<z.ZodBoolean>;
|
|
2098
|
+
providesDescription: z.ZodOptional<z.ZodBoolean>;
|
|
2099
|
+
providesIcon: z.ZodOptional<z.ZodBoolean>;
|
|
2100
|
+
providesImage: z.ZodOptional<z.ZodBoolean>;
|
|
2101
|
+
providesMedia: z.ZodOptional<z.ZodBoolean>;
|
|
2102
|
+
}, "strip", z.ZodTypeAny, {
|
|
2103
|
+
providesTitle?: boolean | undefined;
|
|
2104
|
+
providesDescription?: boolean | undefined;
|
|
2105
|
+
providesIcon?: boolean | undefined;
|
|
2106
|
+
providesImage?: boolean | undefined;
|
|
2107
|
+
providesMedia?: boolean | undefined;
|
|
2108
|
+
}, {
|
|
2109
|
+
providesTitle?: boolean | undefined;
|
|
2110
|
+
providesDescription?: boolean | undefined;
|
|
2111
|
+
providesIcon?: boolean | undefined;
|
|
2112
|
+
providesImage?: boolean | undefined;
|
|
2113
|
+
providesMedia?: boolean | undefined;
|
|
2114
|
+
}>, z.ZodObject<{
|
|
2115
|
+
defaultTitle: z.ZodOptional<z.ZodString>;
|
|
2116
|
+
defaultDescription: z.ZodOptional<z.ZodString>;
|
|
2117
|
+
defaultIcon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2118
|
+
name: z.ZodString;
|
|
2119
|
+
}, "strip", z.ZodTypeAny, {
|
|
2120
|
+
name: string;
|
|
2121
|
+
}, {
|
|
2122
|
+
name: string;
|
|
2123
|
+
}>, z.ZodObject<{
|
|
2124
|
+
text: z.ZodString;
|
|
2125
|
+
}, "strip", z.ZodTypeAny, {
|
|
2126
|
+
text: string;
|
|
2127
|
+
}, {
|
|
2128
|
+
text: string;
|
|
2129
|
+
}>]>>;
|
|
2130
|
+
defaultImage: z.ZodOptional<z.ZodObject<{
|
|
2131
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2132
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2133
|
+
uri: z.ZodOptional<z.ZodString>;
|
|
2134
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2135
|
+
}, "strip", z.ZodTypeAny, {
|
|
2136
|
+
url?: string | undefined;
|
|
2137
|
+
text?: string | undefined;
|
|
2138
|
+
uri?: string | undefined;
|
|
2139
|
+
accessibilityDescription?: string | undefined;
|
|
2140
|
+
}, {
|
|
2141
|
+
url?: string | undefined;
|
|
2142
|
+
text?: string | undefined;
|
|
2143
|
+
uri?: string | undefined;
|
|
2144
|
+
accessibilityDescription?: string | undefined;
|
|
2145
|
+
}>>;
|
|
2146
|
+
providesTitle: z.ZodOptional<z.ZodBoolean>;
|
|
2147
|
+
providesDescription: z.ZodOptional<z.ZodBoolean>;
|
|
2148
|
+
providesIcon: z.ZodOptional<z.ZodBoolean>;
|
|
2149
|
+
providesImage: z.ZodOptional<z.ZodBoolean>;
|
|
2150
|
+
defaultMedia: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2151
|
+
type: z.ZodLiteral<"avatar">;
|
|
2152
|
+
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2153
|
+
type: z.ZodLiteral<"text">;
|
|
2154
|
+
text: z.ZodString;
|
|
2155
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
2156
|
+
}, "strip", z.ZodTypeAny, {
|
|
2157
|
+
type: "text";
|
|
2158
|
+
text: string;
|
|
2159
|
+
badgeUri?: string | undefined;
|
|
2160
|
+
}, {
|
|
2161
2161
|
type: "text";
|
|
2162
2162
|
text: string;
|
|
2163
2163
|
badgeUri?: string | undefined;
|
|
@@ -2169,123 +2169,361 @@ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2169
2169
|
type: "uri";
|
|
2170
2170
|
uri: string;
|
|
2171
2171
|
badgeUri?: string | undefined;
|
|
2172
|
-
}, {
|
|
2172
|
+
}, {
|
|
2173
|
+
type: "uri";
|
|
2174
|
+
uri: string;
|
|
2175
|
+
badgeUri?: string | undefined;
|
|
2176
|
+
}>]>, "many">;
|
|
2177
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2178
|
+
}, "strip", z.ZodTypeAny, {
|
|
2179
|
+
type: "avatar";
|
|
2180
|
+
content: ({
|
|
2181
|
+
type: "text";
|
|
2182
|
+
text: string;
|
|
2183
|
+
badgeUri?: string | undefined;
|
|
2184
|
+
} | {
|
|
2185
|
+
type: "uri";
|
|
2186
|
+
uri: string;
|
|
2187
|
+
badgeUri?: string | undefined;
|
|
2188
|
+
})[];
|
|
2189
|
+
accessibilityDescription?: string | undefined;
|
|
2190
|
+
}, {
|
|
2191
|
+
type: "avatar";
|
|
2192
|
+
content: ({
|
|
2193
|
+
type: "text";
|
|
2194
|
+
text: string;
|
|
2195
|
+
badgeUri?: string | undefined;
|
|
2196
|
+
} | {
|
|
2173
2197
|
type: "uri";
|
|
2174
2198
|
uri: string;
|
|
2175
2199
|
badgeUri?: string | undefined;
|
|
2176
|
-
}
|
|
2200
|
+
})[];
|
|
2201
|
+
accessibilityDescription?: string | undefined;
|
|
2202
|
+
}>, z.ZodObject<{
|
|
2203
|
+
type: z.ZodLiteral<"image">;
|
|
2204
|
+
uri: z.ZodString;
|
|
2177
2205
|
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2178
2206
|
}, "strip", z.ZodTypeAny, {
|
|
2207
|
+
type: "image";
|
|
2208
|
+
uri: string;
|
|
2209
|
+
accessibilityDescription?: string | undefined;
|
|
2210
|
+
}, {
|
|
2211
|
+
type: "image";
|
|
2212
|
+
uri: string;
|
|
2213
|
+
accessibilityDescription?: string | undefined;
|
|
2214
|
+
}>]>>;
|
|
2215
|
+
providesMedia: z.ZodOptional<z.ZodBoolean>;
|
|
2216
|
+
}, "strip", z.ZodTypeAny, {
|
|
2217
|
+
providesTitle?: boolean | undefined;
|
|
2218
|
+
providesDescription?: boolean | undefined;
|
|
2219
|
+
providesIcon?: boolean | undefined;
|
|
2220
|
+
providesImage?: boolean | undefined;
|
|
2221
|
+
providesMedia?: boolean | undefined;
|
|
2222
|
+
defaultTitle?: string | undefined;
|
|
2223
|
+
defaultDescription?: string | undefined;
|
|
2224
|
+
defaultIcon?: {
|
|
2225
|
+
name: string;
|
|
2226
|
+
} | {
|
|
2227
|
+
text: string;
|
|
2228
|
+
} | undefined;
|
|
2229
|
+
defaultImage?: {
|
|
2230
|
+
url?: string | undefined;
|
|
2231
|
+
text?: string | undefined;
|
|
2232
|
+
uri?: string | undefined;
|
|
2233
|
+
accessibilityDescription?: string | undefined;
|
|
2234
|
+
} | undefined;
|
|
2235
|
+
defaultMedia?: {
|
|
2236
|
+
type: "image";
|
|
2237
|
+
uri: string;
|
|
2238
|
+
accessibilityDescription?: string | undefined;
|
|
2239
|
+
} | {
|
|
2240
|
+
type: "avatar";
|
|
2241
|
+
content: ({
|
|
2242
|
+
type: "text";
|
|
2243
|
+
text: string;
|
|
2244
|
+
badgeUri?: string | undefined;
|
|
2245
|
+
} | {
|
|
2246
|
+
type: "uri";
|
|
2247
|
+
uri: string;
|
|
2248
|
+
badgeUri?: string | undefined;
|
|
2249
|
+
})[];
|
|
2250
|
+
accessibilityDescription?: string | undefined;
|
|
2251
|
+
} | undefined;
|
|
2252
|
+
}, {
|
|
2253
|
+
providesTitle?: boolean | undefined;
|
|
2254
|
+
providesDescription?: boolean | undefined;
|
|
2255
|
+
providesIcon?: boolean | undefined;
|
|
2256
|
+
providesImage?: boolean | undefined;
|
|
2257
|
+
providesMedia?: boolean | undefined;
|
|
2258
|
+
defaultTitle?: string | undefined;
|
|
2259
|
+
defaultDescription?: string | undefined;
|
|
2260
|
+
defaultIcon?: {
|
|
2261
|
+
name: string;
|
|
2262
|
+
} | {
|
|
2263
|
+
text: string;
|
|
2264
|
+
} | undefined;
|
|
2265
|
+
defaultImage?: {
|
|
2266
|
+
url?: string | undefined;
|
|
2267
|
+
text?: string | undefined;
|
|
2268
|
+
uri?: string | undefined;
|
|
2269
|
+
accessibilityDescription?: string | undefined;
|
|
2270
|
+
} | undefined;
|
|
2271
|
+
defaultMedia?: {
|
|
2272
|
+
type: "image";
|
|
2273
|
+
uri: string;
|
|
2274
|
+
accessibilityDescription?: string | undefined;
|
|
2275
|
+
} | {
|
|
2179
2276
|
type: "avatar";
|
|
2180
2277
|
content: ({
|
|
2278
|
+
type: "text";
|
|
2279
|
+
text: string;
|
|
2280
|
+
badgeUri?: string | undefined;
|
|
2281
|
+
} | {
|
|
2181
2282
|
type: "uri";
|
|
2182
2283
|
uri: string;
|
|
2183
2284
|
badgeUri?: string | undefined;
|
|
2285
|
+
})[];
|
|
2286
|
+
accessibilityDescription?: string | undefined;
|
|
2287
|
+
} | undefined;
|
|
2288
|
+
}>]>;
|
|
2289
|
+
export declare const suggestionsSchema: z.ZodObject<{
|
|
2290
|
+
values: z.ZodArray<z.ZodObject<{
|
|
2291
|
+
label: z.ZodString;
|
|
2292
|
+
value: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
|
|
2293
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2294
|
+
name: z.ZodString;
|
|
2295
|
+
}, "strip", z.ZodTypeAny, {
|
|
2296
|
+
name: string;
|
|
2297
|
+
}, {
|
|
2298
|
+
name: string;
|
|
2299
|
+
}>, z.ZodObject<{
|
|
2300
|
+
text: z.ZodString;
|
|
2301
|
+
}, "strip", z.ZodTypeAny, {
|
|
2302
|
+
text: string;
|
|
2303
|
+
}, {
|
|
2304
|
+
text: string;
|
|
2305
|
+
}>]>>;
|
|
2306
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
2307
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2308
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2309
|
+
uri: z.ZodOptional<z.ZodString>;
|
|
2310
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2311
|
+
}, "strip", z.ZodTypeAny, {
|
|
2312
|
+
url?: string | undefined;
|
|
2313
|
+
text?: string | undefined;
|
|
2314
|
+
uri?: string | undefined;
|
|
2315
|
+
accessibilityDescription?: string | undefined;
|
|
2316
|
+
}, {
|
|
2317
|
+
url?: string | undefined;
|
|
2318
|
+
text?: string | undefined;
|
|
2319
|
+
uri?: string | undefined;
|
|
2320
|
+
accessibilityDescription?: string | undefined;
|
|
2321
|
+
}>>;
|
|
2322
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
2323
|
+
media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2324
|
+
type: z.ZodLiteral<"avatar">;
|
|
2325
|
+
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2326
|
+
type: z.ZodLiteral<"text">;
|
|
2327
|
+
text: z.ZodString;
|
|
2328
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
2329
|
+
}, "strip", z.ZodTypeAny, {
|
|
2330
|
+
type: "text";
|
|
2331
|
+
text: string;
|
|
2332
|
+
badgeUri?: string | undefined;
|
|
2333
|
+
}, {
|
|
2334
|
+
type: "text";
|
|
2335
|
+
text: string;
|
|
2336
|
+
badgeUri?: string | undefined;
|
|
2337
|
+
}>, z.ZodObject<{
|
|
2338
|
+
type: z.ZodLiteral<"uri">;
|
|
2339
|
+
uri: z.ZodString;
|
|
2340
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
2341
|
+
}, "strip", z.ZodTypeAny, {
|
|
2342
|
+
type: "uri";
|
|
2343
|
+
uri: string;
|
|
2344
|
+
badgeUri?: string | undefined;
|
|
2345
|
+
}, {
|
|
2346
|
+
type: "uri";
|
|
2347
|
+
uri: string;
|
|
2348
|
+
badgeUri?: string | undefined;
|
|
2349
|
+
}>]>, "many">;
|
|
2350
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2351
|
+
}, "strip", z.ZodTypeAny, {
|
|
2352
|
+
type: "avatar";
|
|
2353
|
+
content: ({
|
|
2354
|
+
type: "text";
|
|
2355
|
+
text: string;
|
|
2356
|
+
badgeUri?: string | undefined;
|
|
2357
|
+
} | {
|
|
2358
|
+
type: "uri";
|
|
2359
|
+
uri: string;
|
|
2360
|
+
badgeUri?: string | undefined;
|
|
2361
|
+
})[];
|
|
2362
|
+
accessibilityDescription?: string | undefined;
|
|
2363
|
+
}, {
|
|
2364
|
+
type: "avatar";
|
|
2365
|
+
content: ({
|
|
2366
|
+
type: "text";
|
|
2367
|
+
text: string;
|
|
2368
|
+
badgeUri?: string | undefined;
|
|
2369
|
+
} | {
|
|
2370
|
+
type: "uri";
|
|
2371
|
+
uri: string;
|
|
2372
|
+
badgeUri?: string | undefined;
|
|
2373
|
+
})[];
|
|
2374
|
+
accessibilityDescription?: string | undefined;
|
|
2375
|
+
}>, z.ZodObject<{
|
|
2376
|
+
type: z.ZodLiteral<"image">;
|
|
2377
|
+
uri: z.ZodString;
|
|
2378
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2379
|
+
}, "strip", z.ZodTypeAny, {
|
|
2380
|
+
type: "image";
|
|
2381
|
+
uri: string;
|
|
2382
|
+
accessibilityDescription?: string | undefined;
|
|
2383
|
+
}, {
|
|
2384
|
+
type: "image";
|
|
2385
|
+
uri: string;
|
|
2386
|
+
accessibilityDescription?: string | undefined;
|
|
2387
|
+
}>]>>;
|
|
2388
|
+
analyticsId: z.ZodOptional<z.ZodString>;
|
|
2389
|
+
}, "strip", z.ZodTypeAny, {
|
|
2390
|
+
value: JsonElement;
|
|
2391
|
+
label: string;
|
|
2392
|
+
image?: {
|
|
2393
|
+
url?: string | undefined;
|
|
2394
|
+
text?: string | undefined;
|
|
2395
|
+
uri?: string | undefined;
|
|
2396
|
+
accessibilityDescription?: string | undefined;
|
|
2397
|
+
} | undefined;
|
|
2398
|
+
analyticsId?: string | undefined;
|
|
2399
|
+
icon?: {
|
|
2400
|
+
name: string;
|
|
2401
|
+
} | {
|
|
2402
|
+
text: string;
|
|
2403
|
+
} | undefined;
|
|
2404
|
+
tag?: string | undefined;
|
|
2405
|
+
media?: {
|
|
2406
|
+
type: "image";
|
|
2407
|
+
uri: string;
|
|
2408
|
+
accessibilityDescription?: string | undefined;
|
|
2409
|
+
} | {
|
|
2410
|
+
type: "avatar";
|
|
2411
|
+
content: ({
|
|
2412
|
+
type: "text";
|
|
2413
|
+
text: string;
|
|
2414
|
+
badgeUri?: string | undefined;
|
|
2415
|
+
} | {
|
|
2416
|
+
type: "uri";
|
|
2417
|
+
uri: string;
|
|
2418
|
+
badgeUri?: string | undefined;
|
|
2419
|
+
})[];
|
|
2420
|
+
accessibilityDescription?: string | undefined;
|
|
2421
|
+
} | undefined;
|
|
2422
|
+
}, {
|
|
2423
|
+
value: JsonElement;
|
|
2424
|
+
label: string;
|
|
2425
|
+
image?: {
|
|
2426
|
+
url?: string | undefined;
|
|
2427
|
+
text?: string | undefined;
|
|
2428
|
+
uri?: string | undefined;
|
|
2429
|
+
accessibilityDescription?: string | undefined;
|
|
2430
|
+
} | undefined;
|
|
2431
|
+
analyticsId?: string | undefined;
|
|
2432
|
+
icon?: {
|
|
2433
|
+
name: string;
|
|
2434
|
+
} | {
|
|
2435
|
+
text: string;
|
|
2436
|
+
} | undefined;
|
|
2437
|
+
tag?: string | undefined;
|
|
2438
|
+
media?: {
|
|
2439
|
+
type: "image";
|
|
2440
|
+
uri: string;
|
|
2441
|
+
accessibilityDescription?: string | undefined;
|
|
2442
|
+
} | {
|
|
2443
|
+
type: "avatar";
|
|
2444
|
+
content: ({
|
|
2445
|
+
type: "text";
|
|
2446
|
+
text: string;
|
|
2447
|
+
badgeUri?: string | undefined;
|
|
2448
|
+
} | {
|
|
2449
|
+
type: "uri";
|
|
2450
|
+
uri: string;
|
|
2451
|
+
badgeUri?: string | undefined;
|
|
2452
|
+
})[];
|
|
2453
|
+
accessibilityDescription?: string | undefined;
|
|
2454
|
+
} | undefined;
|
|
2455
|
+
}>, "many">;
|
|
2456
|
+
}, "strip", z.ZodTypeAny, {
|
|
2457
|
+
values: {
|
|
2458
|
+
value: JsonElement;
|
|
2459
|
+
label: string;
|
|
2460
|
+
image?: {
|
|
2461
|
+
url?: string | undefined;
|
|
2462
|
+
text?: string | undefined;
|
|
2463
|
+
uri?: string | undefined;
|
|
2464
|
+
accessibilityDescription?: string | undefined;
|
|
2465
|
+
} | undefined;
|
|
2466
|
+
analyticsId?: string | undefined;
|
|
2467
|
+
icon?: {
|
|
2468
|
+
name: string;
|
|
2184
2469
|
} | {
|
|
2185
|
-
type: "text";
|
|
2186
2470
|
text: string;
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
type: "avatar";
|
|
2192
|
-
content: ({
|
|
2193
|
-
type: "uri";
|
|
2471
|
+
} | undefined;
|
|
2472
|
+
tag?: string | undefined;
|
|
2473
|
+
media?: {
|
|
2474
|
+
type: "image";
|
|
2194
2475
|
uri: string;
|
|
2195
|
-
|
|
2476
|
+
accessibilityDescription?: string | undefined;
|
|
2196
2477
|
} | {
|
|
2197
|
-
type: "
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
defaultDescription?: string | undefined;
|
|
2224
|
-
defaultIcon?: {
|
|
2225
|
-
name: string;
|
|
2226
|
-
} | {
|
|
2227
|
-
text: string;
|
|
2228
|
-
} | undefined;
|
|
2229
|
-
defaultImage?: {
|
|
2230
|
-
url?: string | undefined;
|
|
2231
|
-
text?: string | undefined;
|
|
2232
|
-
uri?: string | undefined;
|
|
2233
|
-
accessibilityDescription?: string | undefined;
|
|
2234
|
-
} | undefined;
|
|
2235
|
-
defaultMedia?: {
|
|
2236
|
-
type: "image";
|
|
2237
|
-
uri: string;
|
|
2238
|
-
accessibilityDescription?: string | undefined;
|
|
2239
|
-
} | {
|
|
2240
|
-
type: "avatar";
|
|
2241
|
-
content: ({
|
|
2242
|
-
type: "uri";
|
|
2243
|
-
uri: string;
|
|
2244
|
-
badgeUri?: string | undefined;
|
|
2478
|
+
type: "avatar";
|
|
2479
|
+
content: ({
|
|
2480
|
+
type: "text";
|
|
2481
|
+
text: string;
|
|
2482
|
+
badgeUri?: string | undefined;
|
|
2483
|
+
} | {
|
|
2484
|
+
type: "uri";
|
|
2485
|
+
uri: string;
|
|
2486
|
+
badgeUri?: string | undefined;
|
|
2487
|
+
})[];
|
|
2488
|
+
accessibilityDescription?: string | undefined;
|
|
2489
|
+
} | undefined;
|
|
2490
|
+
}[];
|
|
2491
|
+
}, {
|
|
2492
|
+
values: {
|
|
2493
|
+
value: JsonElement;
|
|
2494
|
+
label: string;
|
|
2495
|
+
image?: {
|
|
2496
|
+
url?: string | undefined;
|
|
2497
|
+
text?: string | undefined;
|
|
2498
|
+
uri?: string | undefined;
|
|
2499
|
+
accessibilityDescription?: string | undefined;
|
|
2500
|
+
} | undefined;
|
|
2501
|
+
analyticsId?: string | undefined;
|
|
2502
|
+
icon?: {
|
|
2503
|
+
name: string;
|
|
2245
2504
|
} | {
|
|
2246
|
-
type: "text";
|
|
2247
2505
|
text: string;
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
}, {
|
|
2253
|
-
providesTitle?: boolean | undefined;
|
|
2254
|
-
providesDescription?: boolean | undefined;
|
|
2255
|
-
providesIcon?: boolean | undefined;
|
|
2256
|
-
providesImage?: boolean | undefined;
|
|
2257
|
-
providesMedia?: boolean | undefined;
|
|
2258
|
-
defaultTitle?: string | undefined;
|
|
2259
|
-
defaultDescription?: string | undefined;
|
|
2260
|
-
defaultIcon?: {
|
|
2261
|
-
name: string;
|
|
2262
|
-
} | {
|
|
2263
|
-
text: string;
|
|
2264
|
-
} | undefined;
|
|
2265
|
-
defaultImage?: {
|
|
2266
|
-
url?: string | undefined;
|
|
2267
|
-
text?: string | undefined;
|
|
2268
|
-
uri?: string | undefined;
|
|
2269
|
-
accessibilityDescription?: string | undefined;
|
|
2270
|
-
} | undefined;
|
|
2271
|
-
defaultMedia?: {
|
|
2272
|
-
type: "image";
|
|
2273
|
-
uri: string;
|
|
2274
|
-
accessibilityDescription?: string | undefined;
|
|
2275
|
-
} | {
|
|
2276
|
-
type: "avatar";
|
|
2277
|
-
content: ({
|
|
2278
|
-
type: "uri";
|
|
2506
|
+
} | undefined;
|
|
2507
|
+
tag?: string | undefined;
|
|
2508
|
+
media?: {
|
|
2509
|
+
type: "image";
|
|
2279
2510
|
uri: string;
|
|
2280
|
-
|
|
2511
|
+
accessibilityDescription?: string | undefined;
|
|
2281
2512
|
} | {
|
|
2282
|
-
type: "
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2513
|
+
type: "avatar";
|
|
2514
|
+
content: ({
|
|
2515
|
+
type: "text";
|
|
2516
|
+
text: string;
|
|
2517
|
+
badgeUri?: string | undefined;
|
|
2518
|
+
} | {
|
|
2519
|
+
type: "uri";
|
|
2520
|
+
uri: string;
|
|
2521
|
+
badgeUri?: string | undefined;
|
|
2522
|
+
})[];
|
|
2523
|
+
accessibilityDescription?: string | undefined;
|
|
2524
|
+
} | undefined;
|
|
2525
|
+
}[];
|
|
2526
|
+
}>;
|
|
2289
2527
|
export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
2290
2528
|
type: z.ZodLiteral<"action">;
|
|
2291
2529
|
title: z.ZodString;
|
|
@@ -2341,8 +2579,8 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2341
2579
|
title?: string | undefined;
|
|
2342
2580
|
timeout?: number | undefined;
|
|
2343
2581
|
id?: string | undefined;
|
|
2344
|
-
$ref?: string | undefined;
|
|
2345
2582
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2583
|
+
$ref?: string | undefined;
|
|
2346
2584
|
exit?: boolean | undefined;
|
|
2347
2585
|
result?: JsonElement | undefined;
|
|
2348
2586
|
data?: JsonElement | undefined;
|
|
@@ -2355,8 +2593,8 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2355
2593
|
title?: string | undefined;
|
|
2356
2594
|
timeout?: number | undefined;
|
|
2357
2595
|
id?: string | undefined;
|
|
2358
|
-
$ref?: string | undefined;
|
|
2359
2596
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2597
|
+
$ref?: string | undefined;
|
|
2360
2598
|
exit?: boolean | undefined;
|
|
2361
2599
|
result?: JsonElement | undefined;
|
|
2362
2600
|
data?: JsonElement | undefined;
|
|
@@ -2393,25 +2631,25 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2393
2631
|
}, "strip", z.ZodTypeAny, {
|
|
2394
2632
|
type: "avatar";
|
|
2395
2633
|
content: ({
|
|
2396
|
-
type: "uri";
|
|
2397
|
-
uri: string;
|
|
2398
|
-
badgeUri?: string | undefined;
|
|
2399
|
-
} | {
|
|
2400
2634
|
type: "text";
|
|
2401
2635
|
text: string;
|
|
2402
2636
|
badgeUri?: string | undefined;
|
|
2637
|
+
} | {
|
|
2638
|
+
type: "uri";
|
|
2639
|
+
uri: string;
|
|
2640
|
+
badgeUri?: string | undefined;
|
|
2403
2641
|
})[];
|
|
2404
2642
|
accessibilityDescription?: string | undefined;
|
|
2405
2643
|
}, {
|
|
2406
2644
|
type: "avatar";
|
|
2407
2645
|
content: ({
|
|
2408
|
-
type: "uri";
|
|
2409
|
-
uri: string;
|
|
2410
|
-
badgeUri?: string | undefined;
|
|
2411
|
-
} | {
|
|
2412
2646
|
type: "text";
|
|
2413
2647
|
text: string;
|
|
2414
2648
|
badgeUri?: string | undefined;
|
|
2649
|
+
} | {
|
|
2650
|
+
type: "uri";
|
|
2651
|
+
uri: string;
|
|
2652
|
+
badgeUri?: string | undefined;
|
|
2415
2653
|
})[];
|
|
2416
2654
|
accessibilityDescription?: string | undefined;
|
|
2417
2655
|
}>, z.ZodObject<{
|
|
@@ -2438,8 +2676,8 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2438
2676
|
title?: string | undefined;
|
|
2439
2677
|
timeout?: number | undefined;
|
|
2440
2678
|
id?: string | undefined;
|
|
2441
|
-
$ref?: string | undefined;
|
|
2442
2679
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2680
|
+
$ref?: string | undefined;
|
|
2443
2681
|
exit?: boolean | undefined;
|
|
2444
2682
|
result?: JsonElement | undefined;
|
|
2445
2683
|
data?: JsonElement | undefined;
|
|
@@ -2464,13 +2702,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2464
2702
|
} | {
|
|
2465
2703
|
type: "avatar";
|
|
2466
2704
|
content: ({
|
|
2467
|
-
type: "uri";
|
|
2468
|
-
uri: string;
|
|
2469
|
-
badgeUri?: string | undefined;
|
|
2470
|
-
} | {
|
|
2471
2705
|
type: "text";
|
|
2472
2706
|
text: string;
|
|
2473
2707
|
badgeUri?: string | undefined;
|
|
2708
|
+
} | {
|
|
2709
|
+
type: "uri";
|
|
2710
|
+
uri: string;
|
|
2711
|
+
badgeUri?: string | undefined;
|
|
2474
2712
|
})[];
|
|
2475
2713
|
accessibilityDescription?: string | undefined;
|
|
2476
2714
|
} | undefined;
|
|
@@ -2485,8 +2723,8 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2485
2723
|
title?: string | undefined;
|
|
2486
2724
|
timeout?: number | undefined;
|
|
2487
2725
|
id?: string | undefined;
|
|
2488
|
-
$ref?: string | undefined;
|
|
2489
2726
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2727
|
+
$ref?: string | undefined;
|
|
2490
2728
|
exit?: boolean | undefined;
|
|
2491
2729
|
result?: JsonElement | undefined;
|
|
2492
2730
|
data?: JsonElement | undefined;
|
|
@@ -2511,13 +2749,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2511
2749
|
} | {
|
|
2512
2750
|
type: "avatar";
|
|
2513
2751
|
content: ({
|
|
2514
|
-
type: "uri";
|
|
2515
|
-
uri: string;
|
|
2516
|
-
badgeUri?: string | undefined;
|
|
2517
|
-
} | {
|
|
2518
2752
|
type: "text";
|
|
2519
2753
|
text: string;
|
|
2520
2754
|
badgeUri?: string | undefined;
|
|
2755
|
+
} | {
|
|
2756
|
+
type: "uri";
|
|
2757
|
+
uri: string;
|
|
2758
|
+
badgeUri?: string | undefined;
|
|
2521
2759
|
})[];
|
|
2522
2760
|
accessibilityDescription?: string | undefined;
|
|
2523
2761
|
} | undefined;
|
|
@@ -2601,79 +2839,41 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2601
2839
|
}, "strip", z.ZodTypeAny, {
|
|
2602
2840
|
type: "avatar";
|
|
2603
2841
|
content: ({
|
|
2604
|
-
type: "uri";
|
|
2605
|
-
uri: string;
|
|
2606
|
-
badgeUri?: string | undefined;
|
|
2607
|
-
} | {
|
|
2608
2842
|
type: "text";
|
|
2609
2843
|
text: string;
|
|
2610
2844
|
badgeUri?: string | undefined;
|
|
2611
|
-
}
|
|
2612
|
-
accessibilityDescription?: string | undefined;
|
|
2613
|
-
}, {
|
|
2614
|
-
type: "avatar";
|
|
2615
|
-
content: ({
|
|
2845
|
+
} | {
|
|
2616
2846
|
type: "uri";
|
|
2617
2847
|
uri: string;
|
|
2618
2848
|
badgeUri?: string | undefined;
|
|
2619
|
-
} | {
|
|
2620
|
-
type: "text";
|
|
2621
|
-
text: string;
|
|
2622
|
-
badgeUri?: string | undefined;
|
|
2623
2849
|
})[];
|
|
2624
2850
|
accessibilityDescription?: string | undefined;
|
|
2625
|
-
}>, z.ZodObject<{
|
|
2626
|
-
type: z.ZodLiteral<"image">;
|
|
2627
|
-
uri: z.ZodString;
|
|
2628
|
-
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2629
|
-
}, "strip", z.ZodTypeAny, {
|
|
2630
|
-
type: "image";
|
|
2631
|
-
uri: string;
|
|
2632
|
-
accessibilityDescription?: string | undefined;
|
|
2633
2851
|
}, {
|
|
2634
|
-
type: "
|
|
2635
|
-
|
|
2636
|
-
accessibilityDescription?: string | undefined;
|
|
2637
|
-
}>]>>;
|
|
2638
|
-
}, "strip", z.ZodTypeAny, {
|
|
2639
|
-
type: "search";
|
|
2640
|
-
title: string;
|
|
2641
|
-
value: {
|
|
2642
|
-
url: string;
|
|
2643
|
-
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
2644
|
-
param: string;
|
|
2645
|
-
query: string;
|
|
2646
|
-
};
|
|
2647
|
-
image?: {
|
|
2648
|
-
url?: string | undefined;
|
|
2649
|
-
text?: string | undefined;
|
|
2650
|
-
uri?: string | undefined;
|
|
2651
|
-
accessibilityDescription?: string | undefined;
|
|
2652
|
-
} | undefined;
|
|
2653
|
-
description?: string | undefined;
|
|
2654
|
-
icon?: {
|
|
2655
|
-
name: string;
|
|
2656
|
-
} | {
|
|
2657
|
-
text: string;
|
|
2658
|
-
} | undefined;
|
|
2659
|
-
media?: {
|
|
2660
|
-
type: "image";
|
|
2661
|
-
uri: string;
|
|
2662
|
-
accessibilityDescription?: string | undefined;
|
|
2663
|
-
} | {
|
|
2664
|
-
type: "avatar";
|
|
2665
|
-
content: ({
|
|
2666
|
-
type: "uri";
|
|
2667
|
-
uri: string;
|
|
2668
|
-
badgeUri?: string | undefined;
|
|
2669
|
-
} | {
|
|
2852
|
+
type: "avatar";
|
|
2853
|
+
content: ({
|
|
2670
2854
|
type: "text";
|
|
2671
2855
|
text: string;
|
|
2672
2856
|
badgeUri?: string | undefined;
|
|
2857
|
+
} | {
|
|
2858
|
+
type: "uri";
|
|
2859
|
+
uri: string;
|
|
2860
|
+
badgeUri?: string | undefined;
|
|
2673
2861
|
})[];
|
|
2674
2862
|
accessibilityDescription?: string | undefined;
|
|
2675
|
-
}
|
|
2676
|
-
|
|
2863
|
+
}>, z.ZodObject<{
|
|
2864
|
+
type: z.ZodLiteral<"image">;
|
|
2865
|
+
uri: z.ZodString;
|
|
2866
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2867
|
+
}, "strip", z.ZodTypeAny, {
|
|
2868
|
+
type: "image";
|
|
2869
|
+
uri: string;
|
|
2870
|
+
accessibilityDescription?: string | undefined;
|
|
2871
|
+
}, {
|
|
2872
|
+
type: "image";
|
|
2873
|
+
uri: string;
|
|
2874
|
+
accessibilityDescription?: string | undefined;
|
|
2875
|
+
}>]>>;
|
|
2876
|
+
}, "strip", z.ZodTypeAny, {
|
|
2677
2877
|
type: "search";
|
|
2678
2878
|
title: string;
|
|
2679
2879
|
value: {
|
|
@@ -2694,262 +2894,62 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2694
2894
|
} | {
|
|
2695
2895
|
text: string;
|
|
2696
2896
|
} | undefined;
|
|
2697
|
-
media?: {
|
|
2698
|
-
type: "image";
|
|
2699
|
-
uri: string;
|
|
2700
|
-
accessibilityDescription?: string | undefined;
|
|
2701
|
-
} | {
|
|
2702
|
-
type: "avatar";
|
|
2703
|
-
content: ({
|
|
2704
|
-
type: "
|
|
2705
|
-
uri: string;
|
|
2706
|
-
badgeUri?: string | undefined;
|
|
2707
|
-
} | {
|
|
2708
|
-
type: "text";
|
|
2709
|
-
text: string;
|
|
2710
|
-
badgeUri?: string | undefined;
|
|
2711
|
-
})[];
|
|
2712
|
-
accessibilityDescription?: string | undefined;
|
|
2713
|
-
} | undefined;
|
|
2714
|
-
}>]>;
|
|
2715
|
-
export declare const suggestionsSchema: z.ZodObject<{
|
|
2716
|
-
values: z.ZodArray<z.ZodObject<{
|
|
2717
|
-
label: z.ZodString;
|
|
2718
|
-
value: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
|
|
2719
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2720
|
-
name: z.ZodString;
|
|
2721
|
-
}, "strip", z.ZodTypeAny, {
|
|
2722
|
-
name: string;
|
|
2723
|
-
}, {
|
|
2724
|
-
name: string;
|
|
2725
|
-
}>, z.ZodObject<{
|
|
2726
|
-
text: z.ZodString;
|
|
2727
|
-
}, "strip", z.ZodTypeAny, {
|
|
2728
|
-
text: string;
|
|
2729
|
-
}, {
|
|
2730
|
-
text: string;
|
|
2731
|
-
}>]>>;
|
|
2732
|
-
image: z.ZodOptional<z.ZodObject<{
|
|
2733
|
-
text: z.ZodOptional<z.ZodString>;
|
|
2734
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2735
|
-
uri: z.ZodOptional<z.ZodString>;
|
|
2736
|
-
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2737
|
-
}, "strip", z.ZodTypeAny, {
|
|
2738
|
-
url?: string | undefined;
|
|
2739
|
-
text?: string | undefined;
|
|
2740
|
-
uri?: string | undefined;
|
|
2741
|
-
accessibilityDescription?: string | undefined;
|
|
2742
|
-
}, {
|
|
2743
|
-
url?: string | undefined;
|
|
2744
|
-
text?: string | undefined;
|
|
2745
|
-
uri?: string | undefined;
|
|
2746
|
-
accessibilityDescription?: string | undefined;
|
|
2747
|
-
}>>;
|
|
2748
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
2749
|
-
media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2750
|
-
type: z.ZodLiteral<"avatar">;
|
|
2751
|
-
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2752
|
-
type: z.ZodLiteral<"text">;
|
|
2753
|
-
text: z.ZodString;
|
|
2754
|
-
badgeUri: z.ZodOptional<z.ZodString>;
|
|
2755
|
-
}, "strip", z.ZodTypeAny, {
|
|
2756
|
-
type: "text";
|
|
2757
|
-
text: string;
|
|
2758
|
-
badgeUri?: string | undefined;
|
|
2759
|
-
}, {
|
|
2760
|
-
type: "text";
|
|
2761
|
-
text: string;
|
|
2762
|
-
badgeUri?: string | undefined;
|
|
2763
|
-
}>, z.ZodObject<{
|
|
2764
|
-
type: z.ZodLiteral<"uri">;
|
|
2765
|
-
uri: z.ZodString;
|
|
2766
|
-
badgeUri: z.ZodOptional<z.ZodString>;
|
|
2767
|
-
}, "strip", z.ZodTypeAny, {
|
|
2768
|
-
type: "uri";
|
|
2769
|
-
uri: string;
|
|
2770
|
-
badgeUri?: string | undefined;
|
|
2771
|
-
}, {
|
|
2772
|
-
type: "uri";
|
|
2773
|
-
uri: string;
|
|
2774
|
-
badgeUri?: string | undefined;
|
|
2775
|
-
}>]>, "many">;
|
|
2776
|
-
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2777
|
-
}, "strip", z.ZodTypeAny, {
|
|
2778
|
-
type: "avatar";
|
|
2779
|
-
content: ({
|
|
2780
|
-
type: "uri";
|
|
2781
|
-
uri: string;
|
|
2782
|
-
badgeUri?: string | undefined;
|
|
2783
|
-
} | {
|
|
2784
|
-
type: "text";
|
|
2785
|
-
text: string;
|
|
2786
|
-
badgeUri?: string | undefined;
|
|
2787
|
-
})[];
|
|
2788
|
-
accessibilityDescription?: string | undefined;
|
|
2789
|
-
}, {
|
|
2790
|
-
type: "avatar";
|
|
2791
|
-
content: ({
|
|
2792
|
-
type: "uri";
|
|
2793
|
-
uri: string;
|
|
2794
|
-
badgeUri?: string | undefined;
|
|
2795
|
-
} | {
|
|
2796
|
-
type: "text";
|
|
2797
|
-
text: string;
|
|
2798
|
-
badgeUri?: string | undefined;
|
|
2799
|
-
})[];
|
|
2800
|
-
accessibilityDescription?: string | undefined;
|
|
2801
|
-
}>, z.ZodObject<{
|
|
2802
|
-
type: z.ZodLiteral<"image">;
|
|
2803
|
-
uri: z.ZodString;
|
|
2804
|
-
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
2805
|
-
}, "strip", z.ZodTypeAny, {
|
|
2806
|
-
type: "image";
|
|
2807
|
-
uri: string;
|
|
2808
|
-
accessibilityDescription?: string | undefined;
|
|
2809
|
-
}, {
|
|
2810
|
-
type: "image";
|
|
2811
|
-
uri: string;
|
|
2812
|
-
accessibilityDescription?: string | undefined;
|
|
2813
|
-
}>]>>;
|
|
2814
|
-
analyticsId: z.ZodOptional<z.ZodString>;
|
|
2815
|
-
}, "strip", z.ZodTypeAny, {
|
|
2816
|
-
value: JsonElement;
|
|
2817
|
-
label: string;
|
|
2818
|
-
image?: {
|
|
2819
|
-
url?: string | undefined;
|
|
2820
|
-
text?: string | undefined;
|
|
2821
|
-
uri?: string | undefined;
|
|
2822
|
-
accessibilityDescription?: string | undefined;
|
|
2823
|
-
} | undefined;
|
|
2824
|
-
analyticsId?: string | undefined;
|
|
2825
|
-
icon?: {
|
|
2826
|
-
name: string;
|
|
2827
|
-
} | {
|
|
2828
|
-
text: string;
|
|
2829
|
-
} | undefined;
|
|
2830
|
-
tag?: string | undefined;
|
|
2831
|
-
media?: {
|
|
2832
|
-
type: "image";
|
|
2833
|
-
uri: string;
|
|
2834
|
-
accessibilityDescription?: string | undefined;
|
|
2835
|
-
} | {
|
|
2836
|
-
type: "avatar";
|
|
2837
|
-
content: ({
|
|
2838
|
-
type: "uri";
|
|
2839
|
-
uri: string;
|
|
2840
|
-
badgeUri?: string | undefined;
|
|
2841
|
-
} | {
|
|
2842
|
-
type: "text";
|
|
2843
|
-
text: string;
|
|
2844
|
-
badgeUri?: string | undefined;
|
|
2845
|
-
})[];
|
|
2846
|
-
accessibilityDescription?: string | undefined;
|
|
2847
|
-
} | undefined;
|
|
2848
|
-
}, {
|
|
2849
|
-
value: JsonElement;
|
|
2850
|
-
label: string;
|
|
2851
|
-
image?: {
|
|
2852
|
-
url?: string | undefined;
|
|
2853
|
-
text?: string | undefined;
|
|
2854
|
-
uri?: string | undefined;
|
|
2855
|
-
accessibilityDescription?: string | undefined;
|
|
2856
|
-
} | undefined;
|
|
2857
|
-
analyticsId?: string | undefined;
|
|
2858
|
-
icon?: {
|
|
2859
|
-
name: string;
|
|
2860
|
-
} | {
|
|
2861
|
-
text: string;
|
|
2862
|
-
} | undefined;
|
|
2863
|
-
tag?: string | undefined;
|
|
2864
|
-
media?: {
|
|
2865
|
-
type: "image";
|
|
2866
|
-
uri: string;
|
|
2867
|
-
accessibilityDescription?: string | undefined;
|
|
2868
|
-
} | {
|
|
2869
|
-
type: "avatar";
|
|
2870
|
-
content: ({
|
|
2871
|
-
type: "uri";
|
|
2872
|
-
uri: string;
|
|
2873
|
-
badgeUri?: string | undefined;
|
|
2874
|
-
} | {
|
|
2875
|
-
type: "text";
|
|
2876
|
-
text: string;
|
|
2877
|
-
badgeUri?: string | undefined;
|
|
2878
|
-
})[];
|
|
2879
|
-
accessibilityDescription?: string | undefined;
|
|
2880
|
-
} | undefined;
|
|
2881
|
-
}>, "many">;
|
|
2882
|
-
}, "strip", z.ZodTypeAny, {
|
|
2883
|
-
values: {
|
|
2884
|
-
value: JsonElement;
|
|
2885
|
-
label: string;
|
|
2886
|
-
image?: {
|
|
2887
|
-
url?: string | undefined;
|
|
2888
|
-
text?: string | undefined;
|
|
2889
|
-
uri?: string | undefined;
|
|
2890
|
-
accessibilityDescription?: string | undefined;
|
|
2891
|
-
} | undefined;
|
|
2892
|
-
analyticsId?: string | undefined;
|
|
2893
|
-
icon?: {
|
|
2894
|
-
name: string;
|
|
2895
|
-
} | {
|
|
2896
|
-
text: string;
|
|
2897
|
-
} | undefined;
|
|
2898
|
-
tag?: string | undefined;
|
|
2899
|
-
media?: {
|
|
2900
|
-
type: "image";
|
|
2901
|
-
uri: string;
|
|
2902
|
-
accessibilityDescription?: string | undefined;
|
|
2903
|
-
} | {
|
|
2904
|
-
type: "avatar";
|
|
2905
|
-
content: ({
|
|
2906
|
-
type: "uri";
|
|
2907
|
-
uri: string;
|
|
2908
|
-
badgeUri?: string | undefined;
|
|
2909
|
-
} | {
|
|
2910
|
-
type: "text";
|
|
2911
|
-
text: string;
|
|
2912
|
-
badgeUri?: string | undefined;
|
|
2913
|
-
})[];
|
|
2914
|
-
accessibilityDescription?: string | undefined;
|
|
2915
|
-
} | undefined;
|
|
2916
|
-
}[];
|
|
2917
|
-
}, {
|
|
2918
|
-
values: {
|
|
2919
|
-
value: JsonElement;
|
|
2920
|
-
label: string;
|
|
2921
|
-
image?: {
|
|
2922
|
-
url?: string | undefined;
|
|
2923
|
-
text?: string | undefined;
|
|
2924
|
-
uri?: string | undefined;
|
|
2925
|
-
accessibilityDescription?: string | undefined;
|
|
2926
|
-
} | undefined;
|
|
2927
|
-
analyticsId?: string | undefined;
|
|
2928
|
-
icon?: {
|
|
2929
|
-
name: string;
|
|
2930
|
-
} | {
|
|
2897
|
+
media?: {
|
|
2898
|
+
type: "image";
|
|
2899
|
+
uri: string;
|
|
2900
|
+
accessibilityDescription?: string | undefined;
|
|
2901
|
+
} | {
|
|
2902
|
+
type: "avatar";
|
|
2903
|
+
content: ({
|
|
2904
|
+
type: "text";
|
|
2931
2905
|
text: string;
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
type: "image";
|
|
2906
|
+
badgeUri?: string | undefined;
|
|
2907
|
+
} | {
|
|
2908
|
+
type: "uri";
|
|
2936
2909
|
uri: string;
|
|
2937
|
-
|
|
2910
|
+
badgeUri?: string | undefined;
|
|
2911
|
+
})[];
|
|
2912
|
+
accessibilityDescription?: string | undefined;
|
|
2913
|
+
} | undefined;
|
|
2914
|
+
}, {
|
|
2915
|
+
type: "search";
|
|
2916
|
+
title: string;
|
|
2917
|
+
value: {
|
|
2918
|
+
url: string;
|
|
2919
|
+
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
|
|
2920
|
+
param: string;
|
|
2921
|
+
query: string;
|
|
2922
|
+
};
|
|
2923
|
+
image?: {
|
|
2924
|
+
url?: string | undefined;
|
|
2925
|
+
text?: string | undefined;
|
|
2926
|
+
uri?: string | undefined;
|
|
2927
|
+
accessibilityDescription?: string | undefined;
|
|
2928
|
+
} | undefined;
|
|
2929
|
+
description?: string | undefined;
|
|
2930
|
+
icon?: {
|
|
2931
|
+
name: string;
|
|
2932
|
+
} | {
|
|
2933
|
+
text: string;
|
|
2934
|
+
} | undefined;
|
|
2935
|
+
media?: {
|
|
2936
|
+
type: "image";
|
|
2937
|
+
uri: string;
|
|
2938
|
+
accessibilityDescription?: string | undefined;
|
|
2939
|
+
} | {
|
|
2940
|
+
type: "avatar";
|
|
2941
|
+
content: ({
|
|
2942
|
+
type: "text";
|
|
2943
|
+
text: string;
|
|
2944
|
+
badgeUri?: string | undefined;
|
|
2938
2945
|
} | {
|
|
2939
|
-
type: "
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
text: string;
|
|
2947
|
-
badgeUri?: string | undefined;
|
|
2948
|
-
})[];
|
|
2949
|
-
accessibilityDescription?: string | undefined;
|
|
2950
|
-
} | undefined;
|
|
2951
|
-
}[];
|
|
2952
|
-
}>;
|
|
2946
|
+
type: "uri";
|
|
2947
|
+
uri: string;
|
|
2948
|
+
badgeUri?: string | undefined;
|
|
2949
|
+
})[];
|
|
2950
|
+
accessibilityDescription?: string | undefined;
|
|
2951
|
+
} | undefined;
|
|
2952
|
+
}>]>;
|
|
2953
2953
|
export declare const searchResponseBodySchema: z.ZodObject<{
|
|
2954
2954
|
results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2955
2955
|
type: z.ZodLiteral<"action">;
|
|
@@ -3006,8 +3006,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3006
3006
|
title?: string | undefined;
|
|
3007
3007
|
timeout?: number | undefined;
|
|
3008
3008
|
id?: string | undefined;
|
|
3009
|
-
$ref?: string | undefined;
|
|
3010
3009
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3010
|
+
$ref?: string | undefined;
|
|
3011
3011
|
exit?: boolean | undefined;
|
|
3012
3012
|
result?: JsonElement | undefined;
|
|
3013
3013
|
data?: JsonElement | undefined;
|
|
@@ -3020,8 +3020,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3020
3020
|
title?: string | undefined;
|
|
3021
3021
|
timeout?: number | undefined;
|
|
3022
3022
|
id?: string | undefined;
|
|
3023
|
-
$ref?: string | undefined;
|
|
3024
3023
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3024
|
+
$ref?: string | undefined;
|
|
3025
3025
|
exit?: boolean | undefined;
|
|
3026
3026
|
result?: JsonElement | undefined;
|
|
3027
3027
|
data?: JsonElement | undefined;
|
|
@@ -3058,25 +3058,25 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3058
3058
|
}, "strip", z.ZodTypeAny, {
|
|
3059
3059
|
type: "avatar";
|
|
3060
3060
|
content: ({
|
|
3061
|
-
type: "uri";
|
|
3062
|
-
uri: string;
|
|
3063
|
-
badgeUri?: string | undefined;
|
|
3064
|
-
} | {
|
|
3065
3061
|
type: "text";
|
|
3066
3062
|
text: string;
|
|
3067
3063
|
badgeUri?: string | undefined;
|
|
3064
|
+
} | {
|
|
3065
|
+
type: "uri";
|
|
3066
|
+
uri: string;
|
|
3067
|
+
badgeUri?: string | undefined;
|
|
3068
3068
|
})[];
|
|
3069
3069
|
accessibilityDescription?: string | undefined;
|
|
3070
3070
|
}, {
|
|
3071
3071
|
type: "avatar";
|
|
3072
3072
|
content: ({
|
|
3073
|
-
type: "uri";
|
|
3074
|
-
uri: string;
|
|
3075
|
-
badgeUri?: string | undefined;
|
|
3076
|
-
} | {
|
|
3077
3073
|
type: "text";
|
|
3078
3074
|
text: string;
|
|
3079
3075
|
badgeUri?: string | undefined;
|
|
3076
|
+
} | {
|
|
3077
|
+
type: "uri";
|
|
3078
|
+
uri: string;
|
|
3079
|
+
badgeUri?: string | undefined;
|
|
3080
3080
|
})[];
|
|
3081
3081
|
accessibilityDescription?: string | undefined;
|
|
3082
3082
|
}>, z.ZodObject<{
|
|
@@ -3103,8 +3103,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3103
3103
|
title?: string | undefined;
|
|
3104
3104
|
timeout?: number | undefined;
|
|
3105
3105
|
id?: string | undefined;
|
|
3106
|
-
$ref?: string | undefined;
|
|
3107
3106
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3107
|
+
$ref?: string | undefined;
|
|
3108
3108
|
exit?: boolean | undefined;
|
|
3109
3109
|
result?: JsonElement | undefined;
|
|
3110
3110
|
data?: JsonElement | undefined;
|
|
@@ -3129,13 +3129,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3129
3129
|
} | {
|
|
3130
3130
|
type: "avatar";
|
|
3131
3131
|
content: ({
|
|
3132
|
-
type: "uri";
|
|
3133
|
-
uri: string;
|
|
3134
|
-
badgeUri?: string | undefined;
|
|
3135
|
-
} | {
|
|
3136
3132
|
type: "text";
|
|
3137
3133
|
text: string;
|
|
3138
3134
|
badgeUri?: string | undefined;
|
|
3135
|
+
} | {
|
|
3136
|
+
type: "uri";
|
|
3137
|
+
uri: string;
|
|
3138
|
+
badgeUri?: string | undefined;
|
|
3139
3139
|
})[];
|
|
3140
3140
|
accessibilityDescription?: string | undefined;
|
|
3141
3141
|
} | undefined;
|
|
@@ -3150,8 +3150,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3150
3150
|
title?: string | undefined;
|
|
3151
3151
|
timeout?: number | undefined;
|
|
3152
3152
|
id?: string | undefined;
|
|
3153
|
-
$ref?: string | undefined;
|
|
3154
3153
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3154
|
+
$ref?: string | undefined;
|
|
3155
3155
|
exit?: boolean | undefined;
|
|
3156
3156
|
result?: JsonElement | undefined;
|
|
3157
3157
|
data?: JsonElement | undefined;
|
|
@@ -3176,13 +3176,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3176
3176
|
} | {
|
|
3177
3177
|
type: "avatar";
|
|
3178
3178
|
content: ({
|
|
3179
|
-
type: "uri";
|
|
3180
|
-
uri: string;
|
|
3181
|
-
badgeUri?: string | undefined;
|
|
3182
|
-
} | {
|
|
3183
3179
|
type: "text";
|
|
3184
3180
|
text: string;
|
|
3185
3181
|
badgeUri?: string | undefined;
|
|
3182
|
+
} | {
|
|
3183
|
+
type: "uri";
|
|
3184
|
+
uri: string;
|
|
3185
|
+
badgeUri?: string | undefined;
|
|
3186
3186
|
})[];
|
|
3187
3187
|
accessibilityDescription?: string | undefined;
|
|
3188
3188
|
} | undefined;
|
|
@@ -3266,25 +3266,25 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3266
3266
|
}, "strip", z.ZodTypeAny, {
|
|
3267
3267
|
type: "avatar";
|
|
3268
3268
|
content: ({
|
|
3269
|
-
type: "uri";
|
|
3270
|
-
uri: string;
|
|
3271
|
-
badgeUri?: string | undefined;
|
|
3272
|
-
} | {
|
|
3273
3269
|
type: "text";
|
|
3274
3270
|
text: string;
|
|
3275
3271
|
badgeUri?: string | undefined;
|
|
3272
|
+
} | {
|
|
3273
|
+
type: "uri";
|
|
3274
|
+
uri: string;
|
|
3275
|
+
badgeUri?: string | undefined;
|
|
3276
3276
|
})[];
|
|
3277
3277
|
accessibilityDescription?: string | undefined;
|
|
3278
3278
|
}, {
|
|
3279
3279
|
type: "avatar";
|
|
3280
3280
|
content: ({
|
|
3281
|
-
type: "uri";
|
|
3282
|
-
uri: string;
|
|
3283
|
-
badgeUri?: string | undefined;
|
|
3284
|
-
} | {
|
|
3285
3281
|
type: "text";
|
|
3286
3282
|
text: string;
|
|
3287
3283
|
badgeUri?: string | undefined;
|
|
3284
|
+
} | {
|
|
3285
|
+
type: "uri";
|
|
3286
|
+
uri: string;
|
|
3287
|
+
badgeUri?: string | undefined;
|
|
3288
3288
|
})[];
|
|
3289
3289
|
accessibilityDescription?: string | undefined;
|
|
3290
3290
|
}>, z.ZodObject<{
|
|
@@ -3328,13 +3328,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3328
3328
|
} | {
|
|
3329
3329
|
type: "avatar";
|
|
3330
3330
|
content: ({
|
|
3331
|
-
type: "uri";
|
|
3332
|
-
uri: string;
|
|
3333
|
-
badgeUri?: string | undefined;
|
|
3334
|
-
} | {
|
|
3335
3331
|
type: "text";
|
|
3336
3332
|
text: string;
|
|
3337
3333
|
badgeUri?: string | undefined;
|
|
3334
|
+
} | {
|
|
3335
|
+
type: "uri";
|
|
3336
|
+
uri: string;
|
|
3337
|
+
badgeUri?: string | undefined;
|
|
3338
3338
|
})[];
|
|
3339
3339
|
accessibilityDescription?: string | undefined;
|
|
3340
3340
|
} | undefined;
|
|
@@ -3366,13 +3366,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3366
3366
|
} | {
|
|
3367
3367
|
type: "avatar";
|
|
3368
3368
|
content: ({
|
|
3369
|
-
type: "uri";
|
|
3370
|
-
uri: string;
|
|
3371
|
-
badgeUri?: string | undefined;
|
|
3372
|
-
} | {
|
|
3373
3369
|
type: "text";
|
|
3374
3370
|
text: string;
|
|
3375
3371
|
badgeUri?: string | undefined;
|
|
3372
|
+
} | {
|
|
3373
|
+
type: "uri";
|
|
3374
|
+
uri: string;
|
|
3375
|
+
badgeUri?: string | undefined;
|
|
3376
3376
|
})[];
|
|
3377
3377
|
accessibilityDescription?: string | undefined;
|
|
3378
3378
|
} | undefined;
|
|
@@ -3406,13 +3406,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3406
3406
|
} | {
|
|
3407
3407
|
type: "avatar";
|
|
3408
3408
|
content: ({
|
|
3409
|
-
type: "uri";
|
|
3410
|
-
uri: string;
|
|
3411
|
-
badgeUri?: string | undefined;
|
|
3412
|
-
} | {
|
|
3413
3409
|
type: "text";
|
|
3414
3410
|
text: string;
|
|
3415
3411
|
badgeUri?: string | undefined;
|
|
3412
|
+
} | {
|
|
3413
|
+
type: "uri";
|
|
3414
|
+
uri: string;
|
|
3415
|
+
badgeUri?: string | undefined;
|
|
3416
3416
|
})[];
|
|
3417
3417
|
accessibilityDescription?: string | undefined;
|
|
3418
3418
|
} | undefined;
|
|
@@ -3427,8 +3427,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3427
3427
|
title?: string | undefined;
|
|
3428
3428
|
timeout?: number | undefined;
|
|
3429
3429
|
id?: string | undefined;
|
|
3430
|
-
$ref?: string | undefined;
|
|
3431
3430
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3431
|
+
$ref?: string | undefined;
|
|
3432
3432
|
exit?: boolean | undefined;
|
|
3433
3433
|
result?: JsonElement | undefined;
|
|
3434
3434
|
data?: JsonElement | undefined;
|
|
@@ -3453,13 +3453,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3453
3453
|
} | {
|
|
3454
3454
|
type: "avatar";
|
|
3455
3455
|
content: ({
|
|
3456
|
-
type: "uri";
|
|
3457
|
-
uri: string;
|
|
3458
|
-
badgeUri?: string | undefined;
|
|
3459
|
-
} | {
|
|
3460
3456
|
type: "text";
|
|
3461
3457
|
text: string;
|
|
3462
3458
|
badgeUri?: string | undefined;
|
|
3459
|
+
} | {
|
|
3460
|
+
type: "uri";
|
|
3461
|
+
uri: string;
|
|
3462
|
+
badgeUri?: string | undefined;
|
|
3463
3463
|
})[];
|
|
3464
3464
|
accessibilityDescription?: string | undefined;
|
|
3465
3465
|
} | undefined;
|
|
@@ -3493,13 +3493,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3493
3493
|
} | {
|
|
3494
3494
|
type: "avatar";
|
|
3495
3495
|
content: ({
|
|
3496
|
-
type: "uri";
|
|
3497
|
-
uri: string;
|
|
3498
|
-
badgeUri?: string | undefined;
|
|
3499
|
-
} | {
|
|
3500
3496
|
type: "text";
|
|
3501
3497
|
text: string;
|
|
3502
3498
|
badgeUri?: string | undefined;
|
|
3499
|
+
} | {
|
|
3500
|
+
type: "uri";
|
|
3501
|
+
uri: string;
|
|
3502
|
+
badgeUri?: string | undefined;
|
|
3503
3503
|
})[];
|
|
3504
3504
|
accessibilityDescription?: string | undefined;
|
|
3505
3505
|
} | undefined;
|
|
@@ -3514,8 +3514,8 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3514
3514
|
title?: string | undefined;
|
|
3515
3515
|
timeout?: number | undefined;
|
|
3516
3516
|
id?: string | undefined;
|
|
3517
|
-
$ref?: string | undefined;
|
|
3518
3517
|
method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3518
|
+
$ref?: string | undefined;
|
|
3519
3519
|
exit?: boolean | undefined;
|
|
3520
3520
|
result?: JsonElement | undefined;
|
|
3521
3521
|
data?: JsonElement | undefined;
|
|
@@ -3540,63 +3540,63 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3540
3540
|
} | {
|
|
3541
3541
|
type: "avatar";
|
|
3542
3542
|
content: ({
|
|
3543
|
-
type: "uri";
|
|
3544
|
-
uri: string;
|
|
3545
|
-
badgeUri?: string | undefined;
|
|
3546
|
-
} | {
|
|
3547
3543
|
type: "text";
|
|
3548
3544
|
text: string;
|
|
3549
3545
|
badgeUri?: string | undefined;
|
|
3546
|
+
} | {
|
|
3547
|
+
type: "uri";
|
|
3548
|
+
uri: string;
|
|
3549
|
+
badgeUri?: string | undefined;
|
|
3550
3550
|
})[];
|
|
3551
3551
|
accessibilityDescription?: string | undefined;
|
|
3552
3552
|
} | undefined;
|
|
3553
3553
|
})[];
|
|
3554
3554
|
}>;
|
|
3555
|
-
export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
|
|
3556
|
-
export declare const behaviorSchema: z.ZodSchema<Behavior>;
|
|
3557
|
-
export declare const reviewLayoutCallToActionSchema: z.ZodSchema<ReviewLayoutCallToAction>;
|
|
3558
|
-
export declare const tabsLayoutSchema: z.ZodSchema<TabsLayout>;
|
|
3559
|
-
export declare const tabsLayoutTabSchema: z.ZodSchema<TabsLayoutTab>;
|
|
3560
|
-
export declare const alertLayoutSchema: z.ZodSchema<AlertLayout>;
|
|
3561
|
-
export declare const alertLayoutCallToActionSchema: z.ZodSchema<AlertLayoutCallToAction>;
|
|
3562
|
-
export declare const listLayoutSchema: z.ZodSchema<ListLayout>;
|
|
3563
|
-
export declare const listLayoutCallToActionSchema: z.ZodSchema<ListLayoutCallToAction>;
|
|
3564
|
-
export declare const listLayoutItemSchema: z.ZodSchema<ListLayoutItem>;
|
|
3565
|
-
export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
|
|
3566
|
-
export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption>;
|
|
3567
|
-
export declare const sectionLayoutCallToActionSchema: z.ZodSchema<SectionLayoutCallToAction>;
|
|
3568
|
-
export declare const statusListLayoutSchema: z.ZodSchema<StatusListLayout>;
|
|
3569
|
-
export declare const statusListLayoutItemSchema: z.ZodSchema<StatusListLayoutItem>;
|
|
3570
|
-
export declare const sectionLayoutSchema: z.ZodSchema<SectionLayout>;
|
|
3571
|
-
export declare const layoutSchema: z.ZodSchema<Layout>;
|
|
3572
|
-
export declare const itemCallToActionSchema: z.ZodSchema<ItemCallToAction>;
|
|
3573
|
-
export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
|
|
3574
|
-
export declare const buttonLayoutSchema: z.ZodSchema<ButtonLayout>;
|
|
3575
|
-
export declare const columnsLayoutSchema: z.ZodSchema<ColumnsLayout>;
|
|
3576
|
-
export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
|
|
3577
|
-
export declare const reviewLayoutSchema: z.ZodSchema<ReviewLayout>;
|
|
3578
|
-
export declare const reviewLayoutFieldSchema: z.ZodSchema<ReviewLayoutField>;
|
|
3579
|
-
export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
|
|
3580
|
-
export declare const modalResponseBodySchema: z.ZodSchema<ModalResponseBody>;
|
|
3581
|
-
export declare const stepSchema: z.ZodSchema<Step>;
|
|
3582
|
-
export declare const schemaSchema: z.ZodSchema<Schema>;
|
|
3583
|
-
export declare const pollingSchema: z.ZodSchema<Polling>;
|
|
3584
|
-
export declare const linkHandlerSchema: z.ZodSchema<LinkHandler>;
|
|
3585
|
-
export declare const toolbarSchema: z.ZodSchema<Toolbar>;
|
|
3586
3555
|
export declare const allOfSchemaSchema: z.ZodSchema<AllOfSchema>;
|
|
3556
|
+
export declare const schemaSchema: z.ZodSchema<Schema>;
|
|
3557
|
+
export declare const alertLayoutSchema: z.ZodSchema<AlertLayout>;
|
|
3558
|
+
export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
|
|
3559
|
+
export declare const persistAsyncSchema: z.ZodSchema<PersistAsync>;
|
|
3560
|
+
export declare const behaviorSchema: z.ZodSchema<Behavior>;
|
|
3561
|
+
export declare const integerSchemaSchema: z.ZodSchema<IntegerSchema>;
|
|
3562
|
+
export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
|
|
3563
|
+
export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
|
|
3564
|
+
export declare const constSchemaSchema: z.ZodSchema<ConstSchema>;
|
|
3587
3565
|
export declare const arraySchemaSchema: z.ZodSchema<ArraySchema>;
|
|
3588
3566
|
export declare const blobSchemaSchema: z.ZodSchema<BlobSchema>;
|
|
3589
3567
|
export declare const booleanSchemaSchema: z.ZodSchema<BooleanSchema>;
|
|
3590
|
-
export declare const constSchemaSchema: z.ZodSchema<ConstSchema>;
|
|
3591
|
-
export declare const integerSchemaSchema: z.ZodSchema<IntegerSchema>;
|
|
3592
3568
|
export declare const numberSchemaSchema: z.ZodSchema<NumberSchema>;
|
|
3593
3569
|
export declare const objectSchemaSchema: z.ZodSchema<ObjectSchema>;
|
|
3594
|
-
export declare const oneOfSchemaSchema: z.ZodSchema<OneOfSchema>;
|
|
3595
|
-
export declare const stringSchemaSchema: z.ZodSchema<StringSchema>;
|
|
3596
3570
|
export declare const arraySchemaListSchema: z.ZodSchema<ArraySchemaList>;
|
|
3597
|
-
export declare const
|
|
3598
|
-
export declare const
|
|
3599
|
-
export declare const pollingOnErrorSchema: z.ZodSchema<PollingOnError>;
|
|
3571
|
+
export declare const modalResponseBodySchema: z.ZodSchema<ModalResponseBody>;
|
|
3572
|
+
export declare const layoutSchema: z.ZodSchema<Layout>;
|
|
3600
3573
|
export declare const toolbarItemSchema: z.ZodSchema<ToolbarItem>;
|
|
3601
3574
|
export declare const toolbarButtonSchema: z.ZodSchema<ToolbarButton>;
|
|
3575
|
+
export declare const toolbarSchema: z.ZodSchema<Toolbar>;
|
|
3602
3576
|
export declare const modalBehaviorSchema: z.ZodSchema<ModalBehavior>;
|
|
3577
|
+
export declare const pollingSchema: z.ZodSchema<Polling>;
|
|
3578
|
+
export declare const pollingOnErrorSchema: z.ZodSchema<PollingOnError>;
|
|
3579
|
+
export declare const linkHandlerSchema: z.ZodSchema<LinkHandler>;
|
|
3580
|
+
export declare const stepSchema: z.ZodSchema<Step>;
|
|
3581
|
+
export declare const statusListLayoutSchema: z.ZodSchema<StatusListLayout>;
|
|
3582
|
+
export declare const statusListLayoutItemSchema: z.ZodSchema<StatusListLayoutItem>;
|
|
3583
|
+
export declare const tabsLayoutTabSchema: z.ZodSchema<TabsLayoutTab>;
|
|
3584
|
+
export declare const listLayoutItemSchema: z.ZodSchema<ListLayoutItem>;
|
|
3585
|
+
export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
|
|
3586
|
+
export declare const columnsLayoutSchema: z.ZodSchema<ColumnsLayout>;
|
|
3587
|
+
export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
|
|
3588
|
+
export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption>;
|
|
3589
|
+
export declare const alertLayoutCallToActionSchema: z.ZodSchema<AlertLayoutCallToAction>;
|
|
3590
|
+
export declare const reviewLayoutCallToActionSchema: z.ZodSchema<ReviewLayoutCallToAction>;
|
|
3591
|
+
export declare const sectionLayoutCallToActionSchema: z.ZodSchema<SectionLayoutCallToAction>;
|
|
3592
|
+
export declare const reviewLayoutSchema: z.ZodSchema<ReviewLayout>;
|
|
3593
|
+
export declare const reviewLayoutFieldSchema: z.ZodSchema<ReviewLayoutField>;
|
|
3594
|
+
export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;
|
|
3595
|
+
export declare const buttonLayoutSchema: z.ZodSchema<ButtonLayout>;
|
|
3596
|
+
export declare const listLayoutSchema: z.ZodSchema<ListLayout>;
|
|
3597
|
+
export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
|
|
3598
|
+
export declare const sectionLayoutSchema: z.ZodSchema<SectionLayout>;
|
|
3599
|
+
export declare const tabsLayoutSchema: z.ZodSchema<TabsLayout>;
|
|
3600
|
+
export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
|
|
3601
|
+
export declare const itemCallToActionSchema: z.ZodSchema<ItemCallToAction>;
|
|
3602
|
+
export declare const listLayoutCallToActionSchema: z.ZodSchema<ListLayoutCallToAction>;
|