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