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