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