@prismicio/types-internal 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/content/field.js +1 -1
- package/dist/content/field.js.map +1 -1
- package/dist/content/group.d.ts +1 -2
- package/dist/content/group.d.ts.map +1 -1
- package/dist/content/group.js +1 -1
- package/dist/content/group.js.map +1 -1
- package/dist/content/legacy/link.d.ts +4 -4
- package/dist/content/legacy/link.js +4 -4
- package/dist/content/legacy/link.js.map +1 -1
- package/dist/content/legacy/richText.d.ts +23 -12
- package/dist/content/legacy/richText.d.ts.map +1 -1
- package/dist/content/legacy/richText.js +2 -2
- package/dist/content/legacy/richText.js.map +1 -1
- package/dist/content/link.d.ts +4 -4
- package/dist/content/nestable.d.ts +3 -3
- package/dist/content/nestable.d.ts.map +1 -1
- package/dist/content/nestable.js +3 -9
- package/dist/content/nestable.js.map +1 -1
- package/dist/content/richText.d.ts +1 -1
- package/dist/content/richText.d.ts.map +1 -1
- package/dist/content/richText.js +1 -1
- package/dist/content/richText.js.map +1 -1
- package/dist/content/slice.d.ts +507 -5
- package/dist/content/slice.d.ts.map +1 -1
- package/dist/content/slice.js +1 -1
- package/dist/content/slice.js.map +1 -1
- package/dist/content/slices.d.ts +507 -5
- package/dist/content/slices.d.ts.map +1 -1
- package/dist/content/table.d.ts +5 -2
- package/dist/content/table.d.ts.map +1 -1
- package/dist/content/widget.js +1 -1
- package/dist/content/widget.js.map +1 -1
- package/dist/helpers/customTypeModel.d.ts +4 -5
- package/dist/helpers/customTypeModel.d.ts.map +1 -1
- package/dist/helpers/customTypeModel.js.map +1 -1
- package/dist/index.d.ts +6 -7
- package/dist/io-ts.d.ts +5138 -1917
- package/dist/io-ts.d.ts.map +1 -1
- package/dist/io-ts.js +7 -6
- package/dist/io-ts.js.map +1 -1
- package/dist/model/customType.d.ts +9 -3
- package/dist/model/customType.d.ts.map +1 -1
- package/dist/model/customType.js +7 -4
- package/dist/model/customType.js.map +1 -1
- package/dist/model/group.d.ts +2 -2
- package/dist/model/group.js +1 -1
- package/dist/model/group.js.map +1 -1
- package/dist/model/nestable.js +1 -1
- package/dist/model/nestable.js.map +1 -1
- package/dist/model/slice.d.ts +10 -10
- package/dist/model/slice.d.ts.map +1 -1
- package/dist/model/slice.js +5 -5
- package/dist/model/slice.js.map +1 -1
- package/dist/model/widget.d.ts.map +1 -1
- package/dist/model/widget.js +2 -2
- package/dist/model/widget.js.map +1 -1
- package/dist/zod4.d.ts +1814 -249
- package/dist/zod4.d.ts.map +1 -1
- package/dist/zod4.js +7 -6
- package/dist/zod4.js.map +1 -1
- package/package.json +9 -6
- package/src/content/field.ts +1 -1
- package/src/content/group.ts +1 -1
- package/src/content/legacy/link.ts +4 -4
- package/src/content/legacy/richText.ts +14 -21
- package/src/content/nestable.ts +3 -18
- package/src/content/richText.ts +9 -6
- package/src/content/slice.ts +1 -1
- package/src/content/widget.ts +1 -1
- package/src/helpers/customTypeModel.ts +8 -5
- package/src/index.ts +7 -2
- package/src/io-ts.ts +8 -8
- package/src/model/customType.ts +18 -7
- package/src/model/group.ts +1 -1
- package/src/model/nestable.ts +1 -1
- package/src/model/slice.ts +16 -17
- package/src/model/widget.ts +8 -12
- package/src/zod4.ts +8 -8
- package/dist/model/section.d.ts +0 -11
- package/dist/model/section.d.ts.map +0 -1
- package/dist/model/section.js +0 -10
- package/dist/model/section.js.map +0 -1
- package/src/model/section.ts +0 -12
package/dist/zod4.d.ts
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import { FieldContent } from "./content/field.js";
|
|
2
1
|
import { EmptyLinkContentValue, FilledLinkContentValue, LinkContentValue } from "./content/link.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { GroupItemContent, NestableAndGroupContent } from "./content/group.js";
|
|
2
|
+
import { RichTextContentBlock, RichTextContentSpan } from "./content/richText.js";
|
|
3
|
+
import { GroupItemContent } from "./content/group.js";
|
|
6
4
|
import { SliceContent } from "./content/slice.js";
|
|
7
5
|
import { WidgetContent } from "./content/widget.js";
|
|
8
6
|
import { NestableModel } from "./model/nestable.js";
|
|
9
|
-
import { DynamicSliceModel,
|
|
7
|
+
import { DynamicSliceModel, SliceContentModel, StaticSliceModel } from "./model/slice.js";
|
|
10
8
|
import { DynamicWidgetModel, StaticWidgetModel } from "./model/widget.js";
|
|
11
9
|
import * as _$zod_mini0 from "zod/mini";
|
|
12
10
|
import * as _$zod_v4_core0 from "zod/v4/core";
|
|
@@ -150,7 +148,175 @@ declare const SeparatorContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
150
148
|
declare const SharedSliceContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
151
149
|
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SharedSliceContent">;
|
|
152
150
|
variation: _$zod_mini0.ZodMiniString<string>;
|
|
153
|
-
primary: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.
|
|
151
|
+
primary: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
152
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
153
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmptyContent">;
|
|
154
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
155
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"BooleanContent">;
|
|
156
|
+
value: _$zod_mini0.ZodMiniBoolean<boolean>;
|
|
157
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
158
|
+
embed_url: _$zod_mini0.ZodMiniString<string>;
|
|
159
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
160
|
+
version: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
161
|
+
title: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
162
|
+
author_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
163
|
+
author_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
164
|
+
provider_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
165
|
+
provider_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
166
|
+
cache_age: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
167
|
+
thumbnail_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
168
|
+
thumbnail_width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
169
|
+
thumbnail_height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
170
|
+
html: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
171
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmbedContent">;
|
|
172
|
+
all: _$zod_mini0.ZodMiniUnknown;
|
|
173
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
174
|
+
position: _$zod_mini0.ZodMiniObject<{
|
|
175
|
+
lat: _$zod_mini0.ZodMiniNumber<number>;
|
|
176
|
+
lng: _$zod_mini0.ZodMiniNumber<number>;
|
|
177
|
+
}, _$zod_v4_core0.$strip>;
|
|
178
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GeoPointContent">;
|
|
179
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
180
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
181
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
182
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
183
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
184
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
185
|
+
}, _$zod_v4_core0.$strip>;
|
|
186
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
187
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
188
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
189
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
190
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
191
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
192
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
193
|
+
}, _$zod_v4_core0.$strip>;
|
|
194
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
195
|
+
}, _$zod_v4_core0.$strip>;
|
|
196
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
197
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
198
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
199
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
200
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
201
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
202
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
203
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
204
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
205
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
206
|
+
}, _$zod_v4_core0.$strip>;
|
|
207
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
208
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
209
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
210
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
211
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
212
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
213
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
214
|
+
}, _$zod_v4_core0.$strip>;
|
|
215
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
216
|
+
}, _$zod_v4_core0.$strip>;
|
|
217
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
218
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
219
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
220
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
221
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
222
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"ImageContent">;
|
|
223
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
224
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"IntegrationFieldsContent">;
|
|
225
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
226
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
227
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
228
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
229
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
230
|
+
text?: unknown;
|
|
231
|
+
variant?: unknown;
|
|
232
|
+
value: Record<string, unknown>;
|
|
233
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
234
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
235
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
236
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
237
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
238
|
+
variant?: string | undefined;
|
|
239
|
+
text?: string | undefined;
|
|
240
|
+
} & LinkContentValue, {
|
|
241
|
+
value: LinkContentValue;
|
|
242
|
+
text?: string | undefined;
|
|
243
|
+
variant?: string | undefined;
|
|
244
|
+
}>>;
|
|
245
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
246
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"RepeatableContent">;
|
|
247
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
248
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
249
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
250
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
251
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
252
|
+
text?: unknown;
|
|
253
|
+
variant?: unknown;
|
|
254
|
+
value: Record<string, unknown>;
|
|
255
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
256
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
257
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
258
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
259
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
260
|
+
variant?: string | undefined;
|
|
261
|
+
text?: string | undefined;
|
|
262
|
+
} & LinkContentValue, {
|
|
263
|
+
value: LinkContentValue;
|
|
264
|
+
text?: string | undefined;
|
|
265
|
+
variant?: string | undefined;
|
|
266
|
+
}>>;
|
|
267
|
+
}, _$zod_v4_core0.$strip>>;
|
|
268
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
269
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
270
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
271
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
272
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SeparatorContent">;
|
|
273
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
274
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"TableContent">;
|
|
275
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
276
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
277
|
+
type: _$zod_mini0.ZodMiniLiteral<"tableRow">;
|
|
278
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
279
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
280
|
+
type: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniLiteral<"tableHeader">, _$zod_mini0.ZodMiniLiteral<"tableCell">]>;
|
|
281
|
+
content: _$zod_mini0.ZodMiniObject<{
|
|
282
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
283
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
284
|
+
}, _$zod_v4_core0.$strip>;
|
|
285
|
+
columnWidth: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNumber<number>>;
|
|
286
|
+
}, _$zod_v4_core0.$strip>>;
|
|
287
|
+
}, _$zod_v4_core0.$strict>>;
|
|
288
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
289
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
290
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
291
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
292
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
293
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
294
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
295
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
296
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
297
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
298
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
299
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
300
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
301
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
302
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
303
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
304
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
305
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
306
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
307
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
308
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
309
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
310
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
311
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
312
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
313
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
314
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
315
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
316
|
+
}, _$zod_v4_core0.$strip>], "type">], "__TYPE__">, _$zod_mini0.ZodMiniObject<{
|
|
317
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GroupContentType">;
|
|
318
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
319
|
+
}, _$zod_v4_core0.$strip>], "__TYPE__">>;
|
|
154
320
|
items: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
155
321
|
}, _$zod_v4_core0.$strip>;
|
|
156
322
|
declare const TextContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
@@ -163,7 +329,35 @@ declare const TimestampContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
163
329
|
value: _$zod_mini0.ZodMiniString<string>;
|
|
164
330
|
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
165
331
|
}, _$zod_v4_core0.$strip>;
|
|
166
|
-
declare const FieldContentSchema: _$zod_mini0.
|
|
332
|
+
declare const FieldContentSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
333
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
334
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
335
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
336
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
337
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
338
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
339
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
340
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
341
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
342
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
343
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
344
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
345
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
346
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
347
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
348
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
349
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
350
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
351
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
352
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
353
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
354
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
355
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
356
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
357
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
358
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
359
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
360
|
+
}, _$zod_v4_core0.$strip>], "type">;
|
|
167
361
|
declare const UIDContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
168
362
|
__TYPE__: _$zod_mini0.ZodMiniLiteral<"UIDContent">;
|
|
169
363
|
value: _$zod_mini0.ZodMiniString<string>;
|
|
@@ -256,7 +450,10 @@ declare const ImageContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
256
450
|
}, _$zod_v4_core0.$strip>>>;
|
|
257
451
|
__TYPE__: _$zod_mini0.ZodMiniLiteral<"ImageContent">;
|
|
258
452
|
}, _$zod_v4_core0.$strip>;
|
|
259
|
-
declare const RichTextContentSchema: _$zod_mini0.
|
|
453
|
+
declare const RichTextContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
454
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
455
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
456
|
+
}, _$zod_v4_core0.$strip>;
|
|
260
457
|
declare const RichTextContentBlockSchema: _$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>;
|
|
261
458
|
declare const RichTextContentSpanSchema: _$zod_mini0.ZodMiniType<RichTextContentSpan, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentSpan, unknown>>;
|
|
262
459
|
declare const TableContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
@@ -267,7 +464,10 @@ declare const TableContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
267
464
|
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
268
465
|
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
269
466
|
type: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniLiteral<"tableHeader">, _$zod_mini0.ZodMiniLiteral<"tableCell">]>;
|
|
270
|
-
content: _$zod_mini0.
|
|
467
|
+
content: _$zod_mini0.ZodMiniObject<{
|
|
468
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
469
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
470
|
+
}, _$zod_v4_core0.$strip>;
|
|
271
471
|
columnWidth: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNumber<number>>;
|
|
272
472
|
}, _$zod_v4_core0.$strip>>;
|
|
273
473
|
}, _$zod_v4_core0.$strict>>;
|
|
@@ -296,74 +496,1073 @@ declare const RepeatableContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
296
496
|
}>>;
|
|
297
497
|
}, _$zod_v4_core0.$strip>>;
|
|
298
498
|
}, _$zod_v4_core0.$strip>;
|
|
299
|
-
declare const NestableContentSchema: _$zod_mini0.
|
|
300
|
-
|
|
301
|
-
__TYPE__: _$zod_mini0.ZodMiniLiteral<"
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
repeat: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
499
|
+
declare const NestableContentSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
500
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
501
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmptyContent">;
|
|
502
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
503
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"BooleanContent">;
|
|
504
|
+
value: _$zod_mini0.ZodMiniBoolean<boolean>;
|
|
505
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
506
|
+
embed_url: _$zod_mini0.ZodMiniString<string>;
|
|
507
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
508
|
+
version: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
509
|
+
title: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
510
|
+
author_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
511
|
+
author_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
512
|
+
provider_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
513
|
+
provider_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
514
|
+
cache_age: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
515
|
+
thumbnail_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
516
|
+
thumbnail_width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
517
|
+
thumbnail_height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
518
|
+
html: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
519
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmbedContent">;
|
|
520
|
+
all: _$zod_mini0.ZodMiniUnknown;
|
|
521
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
522
|
+
position: _$zod_mini0.ZodMiniObject<{
|
|
523
|
+
lat: _$zod_mini0.ZodMiniNumber<number>;
|
|
524
|
+
lng: _$zod_mini0.ZodMiniNumber<number>;
|
|
326
525
|
}, _$zod_v4_core0.$strip>;
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
variation: _$zod_mini0.ZodMiniString<string>;
|
|
335
|
-
primary: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<NestableAndGroupContent, unknown, _$zod_v4_core0.$ZodTypeInternals<NestableAndGroupContent, unknown>>>;
|
|
336
|
-
items: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
526
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GeoPointContent">;
|
|
527
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
528
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
529
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
530
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
531
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
532
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
337
533
|
}, _$zod_v4_core0.$strip>;
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
534
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
535
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
536
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
537
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
538
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
539
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
540
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
541
|
+
}, _$zod_v4_core0.$strip>;
|
|
542
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
543
|
+
}, _$zod_v4_core0.$strip>;
|
|
544
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
545
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
546
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
547
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
548
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
549
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
550
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
551
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
552
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
553
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
554
|
+
}, _$zod_v4_core0.$strip>;
|
|
555
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
556
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
557
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
558
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
559
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
560
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
561
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
562
|
+
}, _$zod_v4_core0.$strip>;
|
|
563
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
564
|
+
}, _$zod_v4_core0.$strip>;
|
|
565
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
566
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
567
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
568
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
569
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
570
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"ImageContent">;
|
|
571
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
572
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"IntegrationFieldsContent">;
|
|
573
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
574
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
575
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
576
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
577
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
578
|
+
text?: unknown;
|
|
579
|
+
variant?: unknown;
|
|
580
|
+
value: Record<string, unknown>;
|
|
581
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
582
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
583
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
584
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
585
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
586
|
+
variant?: string | undefined;
|
|
587
|
+
text?: string | undefined;
|
|
588
|
+
} & LinkContentValue, {
|
|
589
|
+
value: LinkContentValue;
|
|
590
|
+
text?: string | undefined;
|
|
591
|
+
variant?: string | undefined;
|
|
592
|
+
}>>;
|
|
593
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
594
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"RepeatableContent">;
|
|
595
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
347
596
|
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
597
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
598
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
599
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
600
|
+
text?: unknown;
|
|
601
|
+
variant?: unknown;
|
|
602
|
+
value: Record<string, unknown>;
|
|
603
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
604
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
605
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
606
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
607
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
608
|
+
variant?: string | undefined;
|
|
609
|
+
text?: string | undefined;
|
|
610
|
+
} & LinkContentValue, {
|
|
611
|
+
value: LinkContentValue;
|
|
612
|
+
text?: string | undefined;
|
|
613
|
+
variant?: string | undefined;
|
|
614
|
+
}>>;
|
|
615
|
+
}, _$zod_v4_core0.$strip>>;
|
|
616
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
617
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
618
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
619
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
620
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SeparatorContent">;
|
|
621
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
622
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"TableContent">;
|
|
623
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
624
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
625
|
+
type: _$zod_mini0.ZodMiniLiteral<"tableRow">;
|
|
626
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
627
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
628
|
+
type: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniLiteral<"tableHeader">, _$zod_mini0.ZodMiniLiteral<"tableCell">]>;
|
|
629
|
+
content: _$zod_mini0.ZodMiniObject<{
|
|
630
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
631
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
632
|
+
}, _$zod_v4_core0.$strip>;
|
|
633
|
+
columnWidth: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNumber<number>>;
|
|
634
|
+
}, _$zod_v4_core0.$strip>>;
|
|
635
|
+
}, _$zod_v4_core0.$strict>>;
|
|
636
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
637
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
638
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
639
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
640
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
641
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
642
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
643
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
644
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
645
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
646
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
647
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
648
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
649
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
650
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
651
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
652
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
653
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
654
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
655
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
656
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
657
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
658
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
659
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
660
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
661
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
662
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
663
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
664
|
+
}, _$zod_v4_core0.$strip>], "type">], "__TYPE__">;
|
|
665
|
+
declare const GroupContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
666
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GroupContentType">;
|
|
667
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
668
|
+
}, _$zod_v4_core0.$strip>;
|
|
669
|
+
declare const GroupItemContentSchema: _$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>;
|
|
670
|
+
declare const CompositeSliceContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
671
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"CompositeSliceContent">;
|
|
672
|
+
nonRepeat: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
673
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
674
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmptyContent">;
|
|
675
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
676
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"BooleanContent">;
|
|
677
|
+
value: _$zod_mini0.ZodMiniBoolean<boolean>;
|
|
678
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
679
|
+
embed_url: _$zod_mini0.ZodMiniString<string>;
|
|
680
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
681
|
+
version: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
682
|
+
title: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
683
|
+
author_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
684
|
+
author_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
685
|
+
provider_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
686
|
+
provider_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
687
|
+
cache_age: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
688
|
+
thumbnail_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
689
|
+
thumbnail_width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
690
|
+
thumbnail_height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
691
|
+
html: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
692
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmbedContent">;
|
|
693
|
+
all: _$zod_mini0.ZodMiniUnknown;
|
|
694
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
695
|
+
position: _$zod_mini0.ZodMiniObject<{
|
|
696
|
+
lat: _$zod_mini0.ZodMiniNumber<number>;
|
|
697
|
+
lng: _$zod_mini0.ZodMiniNumber<number>;
|
|
698
|
+
}, _$zod_v4_core0.$strip>;
|
|
699
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GeoPointContent">;
|
|
700
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
701
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
702
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
703
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
704
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
705
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
706
|
+
}, _$zod_v4_core0.$strip>;
|
|
707
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
708
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
709
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
710
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
711
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
712
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
713
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
714
|
+
}, _$zod_v4_core0.$strip>;
|
|
715
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
716
|
+
}, _$zod_v4_core0.$strip>;
|
|
717
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
718
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
719
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
720
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
721
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
722
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
723
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
724
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
725
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
726
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
727
|
+
}, _$zod_v4_core0.$strip>;
|
|
728
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
729
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
730
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
731
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
732
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
733
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
734
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
735
|
+
}, _$zod_v4_core0.$strip>;
|
|
736
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
737
|
+
}, _$zod_v4_core0.$strip>;
|
|
738
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
739
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
740
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
741
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
742
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
743
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"ImageContent">;
|
|
744
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
745
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"IntegrationFieldsContent">;
|
|
746
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
747
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
748
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
749
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
750
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
751
|
+
text?: unknown;
|
|
752
|
+
variant?: unknown;
|
|
753
|
+
value: Record<string, unknown>;
|
|
754
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
755
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
756
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
757
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
758
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
759
|
+
variant?: string | undefined;
|
|
760
|
+
text?: string | undefined;
|
|
761
|
+
} & LinkContentValue, {
|
|
762
|
+
value: LinkContentValue;
|
|
763
|
+
text?: string | undefined;
|
|
764
|
+
variant?: string | undefined;
|
|
765
|
+
}>>;
|
|
766
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
767
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"RepeatableContent">;
|
|
768
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
769
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
770
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
771
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
772
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
773
|
+
text?: unknown;
|
|
774
|
+
variant?: unknown;
|
|
775
|
+
value: Record<string, unknown>;
|
|
776
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
777
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
778
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
779
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
780
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
781
|
+
variant?: string | undefined;
|
|
782
|
+
text?: string | undefined;
|
|
783
|
+
} & LinkContentValue, {
|
|
784
|
+
value: LinkContentValue;
|
|
785
|
+
text?: string | undefined;
|
|
786
|
+
variant?: string | undefined;
|
|
787
|
+
}>>;
|
|
788
|
+
}, _$zod_v4_core0.$strip>>;
|
|
789
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
790
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
791
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
792
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
793
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SeparatorContent">;
|
|
794
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
795
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"TableContent">;
|
|
796
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
797
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
798
|
+
type: _$zod_mini0.ZodMiniLiteral<"tableRow">;
|
|
799
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
800
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
801
|
+
type: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniLiteral<"tableHeader">, _$zod_mini0.ZodMiniLiteral<"tableCell">]>;
|
|
802
|
+
content: _$zod_mini0.ZodMiniObject<{
|
|
803
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
804
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
805
|
+
}, _$zod_v4_core0.$strip>;
|
|
806
|
+
columnWidth: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNumber<number>>;
|
|
807
|
+
}, _$zod_v4_core0.$strip>>;
|
|
808
|
+
}, _$zod_v4_core0.$strict>>;
|
|
809
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
810
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
811
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
812
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
813
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
814
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
815
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
816
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
817
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
818
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
819
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
820
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
821
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
822
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
823
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
824
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
825
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
826
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
827
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
828
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
829
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
830
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
831
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
832
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
833
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
834
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
835
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
836
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
837
|
+
}, _$zod_v4_core0.$strip>], "type">], "__TYPE__">>;
|
|
838
|
+
repeat: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
839
|
+
}, _$zod_v4_core0.$strip>;
|
|
840
|
+
declare const LegacySliceContentSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
841
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
842
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmptyContent">;
|
|
843
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
844
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"BooleanContent">;
|
|
845
|
+
value: _$zod_mini0.ZodMiniBoolean<boolean>;
|
|
846
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
847
|
+
embed_url: _$zod_mini0.ZodMiniString<string>;
|
|
848
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
849
|
+
version: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
850
|
+
title: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
851
|
+
author_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
852
|
+
author_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
853
|
+
provider_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
854
|
+
provider_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
855
|
+
cache_age: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
856
|
+
thumbnail_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
857
|
+
thumbnail_width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
858
|
+
thumbnail_height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
859
|
+
html: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
860
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmbedContent">;
|
|
861
|
+
all: _$zod_mini0.ZodMiniUnknown;
|
|
862
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
863
|
+
position: _$zod_mini0.ZodMiniObject<{
|
|
864
|
+
lat: _$zod_mini0.ZodMiniNumber<number>;
|
|
865
|
+
lng: _$zod_mini0.ZodMiniNumber<number>;
|
|
866
|
+
}, _$zod_v4_core0.$strip>;
|
|
867
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GeoPointContent">;
|
|
868
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
869
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
870
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
871
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
872
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
873
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
874
|
+
}, _$zod_v4_core0.$strip>;
|
|
875
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
876
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
877
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
878
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
879
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
880
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
881
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
882
|
+
}, _$zod_v4_core0.$strip>;
|
|
883
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
884
|
+
}, _$zod_v4_core0.$strip>;
|
|
885
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
886
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
887
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
888
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
889
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
890
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
891
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
892
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
893
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
894
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
895
|
+
}, _$zod_v4_core0.$strip>;
|
|
896
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
897
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
898
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
899
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
900
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
901
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
902
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
903
|
+
}, _$zod_v4_core0.$strip>;
|
|
904
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
905
|
+
}, _$zod_v4_core0.$strip>;
|
|
906
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
907
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
908
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
909
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
910
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
911
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"ImageContent">;
|
|
912
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
913
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"IntegrationFieldsContent">;
|
|
914
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
915
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
916
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
917
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
918
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
919
|
+
text?: unknown;
|
|
920
|
+
variant?: unknown;
|
|
921
|
+
value: Record<string, unknown>;
|
|
922
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
923
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
924
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
925
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
926
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
927
|
+
variant?: string | undefined;
|
|
928
|
+
text?: string | undefined;
|
|
929
|
+
} & LinkContentValue, {
|
|
930
|
+
value: LinkContentValue;
|
|
931
|
+
text?: string | undefined;
|
|
932
|
+
variant?: string | undefined;
|
|
933
|
+
}>>;
|
|
934
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
935
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"RepeatableContent">;
|
|
936
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
937
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
938
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
939
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
940
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
941
|
+
text?: unknown;
|
|
942
|
+
variant?: unknown;
|
|
943
|
+
value: Record<string, unknown>;
|
|
944
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
945
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
946
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
947
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
948
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
949
|
+
variant?: string | undefined;
|
|
950
|
+
text?: string | undefined;
|
|
951
|
+
} & LinkContentValue, {
|
|
952
|
+
value: LinkContentValue;
|
|
953
|
+
text?: string | undefined;
|
|
954
|
+
variant?: string | undefined;
|
|
955
|
+
}>>;
|
|
956
|
+
}, _$zod_v4_core0.$strip>>;
|
|
957
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
958
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
959
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
960
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
961
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SeparatorContent">;
|
|
962
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
963
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"TableContent">;
|
|
964
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
965
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
966
|
+
type: _$zod_mini0.ZodMiniLiteral<"tableRow">;
|
|
967
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
968
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
969
|
+
type: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniLiteral<"tableHeader">, _$zod_mini0.ZodMiniLiteral<"tableCell">]>;
|
|
970
|
+
content: _$zod_mini0.ZodMiniObject<{
|
|
971
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
972
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
973
|
+
}, _$zod_v4_core0.$strip>;
|
|
974
|
+
columnWidth: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNumber<number>>;
|
|
975
|
+
}, _$zod_v4_core0.$strip>>;
|
|
976
|
+
}, _$zod_v4_core0.$strict>>;
|
|
977
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
978
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
979
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
980
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
981
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
982
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
983
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
984
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
985
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
986
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
987
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
988
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
989
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
990
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
991
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
992
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
993
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
994
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
995
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
996
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
997
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
998
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
999
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1000
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1001
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1002
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
1003
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1004
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1005
|
+
}, _$zod_v4_core0.$strip>], "type">], "__TYPE__">, _$zod_mini0.ZodMiniObject<{
|
|
1006
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GroupContentType">;
|
|
1007
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
1008
|
+
}, _$zod_v4_core0.$strip>], "__TYPE__">;
|
|
1009
|
+
declare const SliceContentSchema: _$zod_mini0.ZodMiniType<SliceContent, unknown, _$zod_v4_core0.$ZodTypeInternals<SliceContent, unknown>>;
|
|
1010
|
+
declare const LegacySliceItemContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
1011
|
+
key: _$zod_mini0.ZodMiniString<string>;
|
|
1012
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
1013
|
+
maybeLabel: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1014
|
+
widget: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1015
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
1016
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmptyContent">;
|
|
1017
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1018
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"BooleanContent">;
|
|
1019
|
+
value: _$zod_mini0.ZodMiniBoolean<boolean>;
|
|
1020
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1021
|
+
embed_url: _$zod_mini0.ZodMiniString<string>;
|
|
1022
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
1023
|
+
version: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
1024
|
+
title: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1025
|
+
author_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1026
|
+
author_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1027
|
+
provider_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1028
|
+
provider_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1029
|
+
cache_age: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
1030
|
+
thumbnail_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1031
|
+
thumbnail_width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
1032
|
+
thumbnail_height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
1033
|
+
html: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1034
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmbedContent">;
|
|
1035
|
+
all: _$zod_mini0.ZodMiniUnknown;
|
|
1036
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1037
|
+
position: _$zod_mini0.ZodMiniObject<{
|
|
1038
|
+
lat: _$zod_mini0.ZodMiniNumber<number>;
|
|
1039
|
+
lng: _$zod_mini0.ZodMiniNumber<number>;
|
|
1040
|
+
}, _$zod_v4_core0.$strip>;
|
|
1041
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GeoPointContent">;
|
|
1042
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1043
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
1044
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
1045
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
1046
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1047
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1048
|
+
}, _$zod_v4_core0.$strip>;
|
|
1049
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1050
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1051
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
1052
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
1053
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
1054
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
1055
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
1056
|
+
}, _$zod_v4_core0.$strip>;
|
|
1057
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
1058
|
+
}, _$zod_v4_core0.$strip>;
|
|
1059
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1060
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1061
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1062
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1063
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
1064
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
1065
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
1066
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
1067
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1068
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1069
|
+
}, _$zod_v4_core0.$strip>;
|
|
1070
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1071
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1072
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
1073
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
1074
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
1075
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
1076
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
1077
|
+
}, _$zod_v4_core0.$strip>;
|
|
1078
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
1079
|
+
}, _$zod_v4_core0.$strip>;
|
|
1080
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1081
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1082
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1083
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1084
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
1085
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"ImageContent">;
|
|
1086
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1087
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"IntegrationFieldsContent">;
|
|
1088
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1089
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1090
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
1091
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1092
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
1093
|
+
text?: unknown;
|
|
1094
|
+
variant?: unknown;
|
|
1095
|
+
value: Record<string, unknown>;
|
|
1096
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
1097
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1098
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1099
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
1100
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
1101
|
+
variant?: string | undefined;
|
|
1102
|
+
text?: string | undefined;
|
|
1103
|
+
} & LinkContentValue, {
|
|
1104
|
+
value: LinkContentValue;
|
|
1105
|
+
text?: string | undefined;
|
|
1106
|
+
variant?: string | undefined;
|
|
1107
|
+
}>>;
|
|
1108
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1109
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"RepeatableContent">;
|
|
1110
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
1111
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1112
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
1113
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1114
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
1115
|
+
text?: unknown;
|
|
1116
|
+
variant?: unknown;
|
|
1117
|
+
value: Record<string, unknown>;
|
|
1118
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
1119
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1120
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1121
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
1122
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
1123
|
+
variant?: string | undefined;
|
|
1124
|
+
text?: string | undefined;
|
|
1125
|
+
} & LinkContentValue, {
|
|
1126
|
+
value: LinkContentValue;
|
|
1127
|
+
text?: string | undefined;
|
|
1128
|
+
variant?: string | undefined;
|
|
1129
|
+
}>>;
|
|
1130
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1131
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1132
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
1133
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
1134
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1135
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SeparatorContent">;
|
|
1136
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1137
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"TableContent">;
|
|
1138
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1139
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1140
|
+
type: _$zod_mini0.ZodMiniLiteral<"tableRow">;
|
|
1141
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1142
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1143
|
+
type: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniLiteral<"tableHeader">, _$zod_mini0.ZodMiniLiteral<"tableCell">]>;
|
|
1144
|
+
content: _$zod_mini0.ZodMiniObject<{
|
|
1145
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
1146
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
1147
|
+
}, _$zod_v4_core0.$strip>;
|
|
1148
|
+
columnWidth: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNumber<number>>;
|
|
1149
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1150
|
+
}, _$zod_v4_core0.$strict>>;
|
|
1151
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1152
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
1153
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1154
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1155
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1156
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
1157
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1158
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1159
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1160
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
1161
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1162
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1163
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1164
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
1165
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1166
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1167
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1168
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
1169
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1170
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1171
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1172
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
1173
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1174
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1175
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1176
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
1177
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1178
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1179
|
+
}, _$zod_v4_core0.$strip>], "type">], "__TYPE__">, _$zod_mini0.ZodMiniObject<{
|
|
1180
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GroupContentType">;
|
|
1181
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
1182
|
+
}, _$zod_v4_core0.$strip>], "__TYPE__">;
|
|
1183
|
+
}, _$zod_v4_core0.$strip>;
|
|
1184
|
+
declare const CompositeSliceItemContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
1185
|
+
key: _$zod_mini0.ZodMiniString<string>;
|
|
1186
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
1187
|
+
maybeLabel: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1188
|
+
widget: _$zod_mini0.ZodMiniObject<{
|
|
1189
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"CompositeSliceContent">;
|
|
1190
|
+
nonRepeat: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1191
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
1192
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmptyContent">;
|
|
1193
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1194
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"BooleanContent">;
|
|
1195
|
+
value: _$zod_mini0.ZodMiniBoolean<boolean>;
|
|
1196
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1197
|
+
embed_url: _$zod_mini0.ZodMiniString<string>;
|
|
1198
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
1199
|
+
version: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
1200
|
+
title: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1201
|
+
author_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1202
|
+
author_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1203
|
+
provider_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1204
|
+
provider_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1205
|
+
cache_age: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
1206
|
+
thumbnail_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1207
|
+
thumbnail_width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
1208
|
+
thumbnail_height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
1209
|
+
html: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1210
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmbedContent">;
|
|
1211
|
+
all: _$zod_mini0.ZodMiniUnknown;
|
|
1212
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1213
|
+
position: _$zod_mini0.ZodMiniObject<{
|
|
1214
|
+
lat: _$zod_mini0.ZodMiniNumber<number>;
|
|
1215
|
+
lng: _$zod_mini0.ZodMiniNumber<number>;
|
|
1216
|
+
}, _$zod_v4_core0.$strip>;
|
|
1217
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GeoPointContent">;
|
|
1218
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1219
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
1220
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
1221
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
1222
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1223
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1224
|
+
}, _$zod_v4_core0.$strip>;
|
|
1225
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1226
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1227
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
1228
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
1229
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
1230
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
1231
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
1232
|
+
}, _$zod_v4_core0.$strip>;
|
|
1233
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
1234
|
+
}, _$zod_v4_core0.$strip>;
|
|
1235
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1236
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1237
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1238
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1239
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
1240
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
1241
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
1242
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
1243
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1244
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1245
|
+
}, _$zod_v4_core0.$strip>;
|
|
1246
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1247
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1248
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
1249
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
1250
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
1251
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
1252
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
1253
|
+
}, _$zod_v4_core0.$strip>;
|
|
1254
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
1255
|
+
}, _$zod_v4_core0.$strip>;
|
|
1256
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1257
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1258
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1259
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1260
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
1261
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"ImageContent">;
|
|
1262
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1263
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"IntegrationFieldsContent">;
|
|
1264
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1265
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1266
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
1267
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1268
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
1269
|
+
text?: unknown;
|
|
1270
|
+
variant?: unknown;
|
|
1271
|
+
value: Record<string, unknown>;
|
|
1272
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
1273
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1274
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1275
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
1276
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
1277
|
+
variant?: string | undefined;
|
|
1278
|
+
text?: string | undefined;
|
|
1279
|
+
} & LinkContentValue, {
|
|
1280
|
+
value: LinkContentValue;
|
|
1281
|
+
text?: string | undefined;
|
|
1282
|
+
variant?: string | undefined;
|
|
1283
|
+
}>>;
|
|
1284
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1285
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"RepeatableContent">;
|
|
1286
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
1287
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1288
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
1289
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1290
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
1291
|
+
text?: unknown;
|
|
1292
|
+
variant?: unknown;
|
|
1293
|
+
value: Record<string, unknown>;
|
|
1294
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
1295
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1296
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1297
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
1298
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
1299
|
+
variant?: string | undefined;
|
|
1300
|
+
text?: string | undefined;
|
|
1301
|
+
} & LinkContentValue, {
|
|
1302
|
+
value: LinkContentValue;
|
|
1303
|
+
text?: string | undefined;
|
|
1304
|
+
variant?: string | undefined;
|
|
1305
|
+
}>>;
|
|
1306
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1307
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1308
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
1309
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
1310
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1311
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SeparatorContent">;
|
|
1312
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1313
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"TableContent">;
|
|
1314
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1315
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1316
|
+
type: _$zod_mini0.ZodMiniLiteral<"tableRow">;
|
|
1317
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1318
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1319
|
+
type: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniLiteral<"tableHeader">, _$zod_mini0.ZodMiniLiteral<"tableCell">]>;
|
|
1320
|
+
content: _$zod_mini0.ZodMiniObject<{
|
|
1321
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
1322
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
1323
|
+
}, _$zod_v4_core0.$strip>;
|
|
1324
|
+
columnWidth: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNumber<number>>;
|
|
1325
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1326
|
+
}, _$zod_v4_core0.$strict>>;
|
|
1327
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1328
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
1329
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1330
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1331
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1332
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
1333
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1334
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1335
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1336
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
1337
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1338
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1339
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1340
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
1341
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1342
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1343
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1344
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
1345
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1346
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1347
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1348
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
1349
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1350
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1351
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1352
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
1353
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1354
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1355
|
+
}, _$zod_v4_core0.$strip>], "type">], "__TYPE__">>;
|
|
1356
|
+
repeat: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
1357
|
+
}, _$zod_v4_core0.$strip>;
|
|
1358
|
+
}, _$zod_v4_core0.$strip>;
|
|
1359
|
+
declare const SharedSliceItemContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
1360
|
+
key: _$zod_mini0.ZodMiniString<string>;
|
|
1361
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
1362
|
+
maybeLabel: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1363
|
+
widget: _$zod_mini0.ZodMiniObject<{
|
|
1364
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SharedSliceContent">;
|
|
1365
|
+
variation: _$zod_mini0.ZodMiniString<string>;
|
|
1366
|
+
primary: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1367
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
1368
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmptyContent">;
|
|
1369
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1370
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"BooleanContent">;
|
|
1371
|
+
value: _$zod_mini0.ZodMiniBoolean<boolean>;
|
|
1372
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1373
|
+
embed_url: _$zod_mini0.ZodMiniString<string>;
|
|
1374
|
+
type: _$zod_mini0.ZodMiniString<string>;
|
|
1375
|
+
version: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
1376
|
+
title: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1377
|
+
author_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1378
|
+
author_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1379
|
+
provider_name: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1380
|
+
provider_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1381
|
+
cache_age: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNumber<number>]>>>;
|
|
1382
|
+
thumbnail_url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1383
|
+
thumbnail_width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
1384
|
+
thumbnail_height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniNumber<number>>>;
|
|
1385
|
+
html: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1386
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"EmbedContent">;
|
|
1387
|
+
all: _$zod_mini0.ZodMiniUnknown;
|
|
1388
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1389
|
+
position: _$zod_mini0.ZodMiniObject<{
|
|
1390
|
+
lat: _$zod_mini0.ZodMiniNumber<number>;
|
|
1391
|
+
lng: _$zod_mini0.ZodMiniNumber<number>;
|
|
1392
|
+
}, _$zod_v4_core0.$strip>;
|
|
1393
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GeoPointContent">;
|
|
1394
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1395
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
1396
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
1397
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
1398
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1399
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1400
|
+
}, _$zod_v4_core0.$strip>;
|
|
1401
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1402
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1403
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
1404
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
1405
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
1406
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
1407
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
1408
|
+
}, _$zod_v4_core0.$strip>;
|
|
1409
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
1410
|
+
}, _$zod_v4_core0.$strip>;
|
|
1411
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1412
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1413
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1414
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1415
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
1416
|
+
origin: _$zod_mini0.ZodMiniObject<{
|
|
1417
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
1418
|
+
url: _$zod_mini0.ZodMiniString<string>;
|
|
1419
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1420
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1421
|
+
}, _$zod_v4_core0.$strip>;
|
|
1422
|
+
width: _$zod_mini0.ZodMiniNumber<number>;
|
|
1423
|
+
height: _$zod_mini0.ZodMiniNumber<number>;
|
|
1424
|
+
edit: _$zod_mini0.ZodMiniObject<{
|
|
1425
|
+
zoom: _$zod_mini0.ZodMiniNumber<number>;
|
|
1426
|
+
crop: _$zod_mini0.ZodMiniObject<{
|
|
1427
|
+
x: _$zod_mini0.ZodMiniNumber<number>;
|
|
1428
|
+
y: _$zod_mini0.ZodMiniNumber<number>;
|
|
1429
|
+
}, _$zod_v4_core0.$strip>;
|
|
1430
|
+
background: _$zod_mini0.ZodMiniString<string>;
|
|
1431
|
+
}, _$zod_v4_core0.$strip>;
|
|
1432
|
+
url: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1433
|
+
credits: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1434
|
+
alt: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>, _$zod_mini0.ZodMiniTransform<string | null, string | null | undefined>>>;
|
|
1435
|
+
provider: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1436
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
1437
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"ImageContent">;
|
|
1438
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1439
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"IntegrationFieldsContent">;
|
|
1440
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1441
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1442
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
1443
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1444
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
1445
|
+
text?: unknown;
|
|
1446
|
+
variant?: unknown;
|
|
1447
|
+
value: Record<string, unknown>;
|
|
1448
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
1449
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1450
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1451
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
1452
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
1453
|
+
variant?: string | undefined;
|
|
1454
|
+
text?: string | undefined;
|
|
1455
|
+
} & LinkContentValue, {
|
|
1456
|
+
value: LinkContentValue;
|
|
1457
|
+
text?: string | undefined;
|
|
1458
|
+
variant?: string | undefined;
|
|
1459
|
+
}>>;
|
|
1460
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1461
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"RepeatableContent">;
|
|
1462
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
1463
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1464
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"LinkContent">;
|
|
1465
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1466
|
+
value: _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniUnknown>, _$zod_mini0.ZodMiniTransform<{
|
|
1467
|
+
text?: unknown;
|
|
1468
|
+
variant?: unknown;
|
|
1469
|
+
value: Record<string, unknown>;
|
|
1470
|
+
}, Record<string, unknown>>>, _$zod_mini0.ZodMiniObject<{
|
|
1471
|
+
text: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1472
|
+
variant: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1473
|
+
value: _$zod_mini0.ZodMiniType<LinkContentValue, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<LinkContentValue, Record<string, unknown>>>;
|
|
1474
|
+
}, _$zod_v4_core0.$strip>>, _$zod_mini0.ZodMiniTransform<{
|
|
1475
|
+
variant?: string | undefined;
|
|
1476
|
+
text?: string | undefined;
|
|
1477
|
+
} & LinkContentValue, {
|
|
1478
|
+
value: LinkContentValue;
|
|
1479
|
+
text?: string | undefined;
|
|
1480
|
+
variant?: string | undefined;
|
|
1481
|
+
}>>;
|
|
1482
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1483
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1484
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
1485
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
1486
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1487
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SeparatorContent">;
|
|
1488
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1489
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"TableContent">;
|
|
1490
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1491
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1492
|
+
type: _$zod_mini0.ZodMiniLiteral<"tableRow">;
|
|
1493
|
+
content: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1494
|
+
key: _$zod_mini0.ZodMiniTransform<string, unknown>;
|
|
1495
|
+
type: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniLiteral<"tableHeader">, _$zod_mini0.ZodMiniLiteral<"tableCell">]>;
|
|
1496
|
+
content: _$zod_mini0.ZodMiniObject<{
|
|
1497
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"StructuredTextContent">;
|
|
1498
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<RichTextContentBlock, unknown, _$zod_v4_core0.$ZodTypeInternals<RichTextContentBlock, unknown>>>;
|
|
1499
|
+
}, _$zod_v4_core0.$strip>;
|
|
1500
|
+
columnWidth: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNumber<number>>;
|
|
1501
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1502
|
+
}, _$zod_v4_core0.$strict>>;
|
|
1503
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1504
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
1505
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1506
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1507
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1508
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
1509
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1510
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1511
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1512
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
1513
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1514
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1515
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1516
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
1517
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1518
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1519
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1520
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
1521
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1522
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1523
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1524
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
1525
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1526
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1527
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
1528
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
1529
|
+
value: _$zod_mini0.ZodMiniString<string>;
|
|
1530
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"FieldContent">;
|
|
1531
|
+
}, _$zod_v4_core0.$strip>], "type">], "__TYPE__">, _$zod_mini0.ZodMiniObject<{
|
|
1532
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"GroupContentType">;
|
|
1533
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
1534
|
+
}, _$zod_v4_core0.$strip>], "__TYPE__">>;
|
|
1535
|
+
items: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<GroupItemContent, unknown, _$zod_v4_core0.$ZodTypeInternals<GroupItemContent, unknown>>>;
|
|
1536
|
+
}, _$zod_v4_core0.$strip>;
|
|
1537
|
+
}, _$zod_v4_core0.$strip>;
|
|
1538
|
+
declare const SliceItemContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
1539
|
+
key: _$zod_mini0.ZodMiniString<string>;
|
|
1540
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
1541
|
+
maybeLabel: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1542
|
+
widget: _$zod_mini0.ZodMiniType<SliceContent, unknown, _$zod_v4_core0.$ZodTypeInternals<SliceContent, unknown>>;
|
|
1543
|
+
}, _$zod_v4_core0.$strip>;
|
|
1544
|
+
declare const SlicesContentSchema: _$zod_mini0.ZodMiniObject<{
|
|
1545
|
+
__TYPE__: _$zod_mini0.ZodMiniLiteral<"SliceContentType">;
|
|
1546
|
+
value: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
1547
|
+
key: _$zod_mini0.ZodMiniString<string>;
|
|
1548
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
1549
|
+
maybeLabel: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1550
|
+
widget: _$zod_mini0.ZodMiniType<SliceContent, unknown, _$zod_v4_core0.$ZodTypeInternals<SliceContent, unknown>>;
|
|
1551
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1552
|
+
}, _$zod_v4_core0.$strip>;
|
|
1553
|
+
declare const WidgetContentSchema: _$zod_mini0.ZodMiniType<WidgetContent, unknown, _$zod_v4_core0.$ZodTypeInternals<WidgetContent, unknown>>;
|
|
1554
|
+
declare const DocumentContentSchema: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<WidgetContent, unknown, _$zod_v4_core0.$ZodTypeInternals<WidgetContent, unknown>>>;
|
|
1555
|
+
declare const BooleanModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
1556
|
+
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
1557
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
1558
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1559
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
1560
|
+
placeholder_true: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1561
|
+
placeholder_false: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1562
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1563
|
+
}, _$zod_v4_core0.$strip>;
|
|
1564
|
+
declare const ColorModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
1565
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
367
1566
|
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
368
1567
|
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
369
1568
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -462,7 +1661,7 @@ declare const LinkModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
462
1661
|
variants: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>>;
|
|
463
1662
|
}, _$zod_v4_core0.$strip>>;
|
|
464
1663
|
}, _$zod_v4_core0.$strip>;
|
|
465
|
-
declare const NestableModelSchema: _$zod_mini0.
|
|
1664
|
+
declare const NestableModelSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
466
1665
|
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
467
1666
|
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
468
1667
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -634,7 +1833,7 @@ declare const NestableModelSchema: _$zod_mini0.ZodMiniUnion<readonly [_$zod_mini
|
|
|
634
1833
|
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
635
1834
|
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
636
1835
|
}, _$zod_v4_core0.$strip>>;
|
|
637
|
-
}, _$zod_v4_core0.$strip>]>;
|
|
1836
|
+
}, _$zod_v4_core0.$strip>], "type">;
|
|
638
1837
|
declare const NumberModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
639
1838
|
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
640
1839
|
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -1087,7 +2286,7 @@ declare const SharedSliceModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
1087
2286
|
}> | undefined;
|
|
1088
2287
|
} | undefined;
|
|
1089
2288
|
}, unknown>>>>;
|
|
1090
|
-
items: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.
|
|
2289
|
+
items: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1091
2290
|
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
1092
2291
|
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
1093
2292
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -1259,7 +2458,7 @@ declare const SharedSliceModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
1259
2458
|
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1260
2459
|
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1261
2460
|
}, _$zod_v4_core0.$strip>>;
|
|
1262
|
-
}, _$zod_v4_core0.$strip>]>>>;
|
|
2461
|
+
}, _$zod_v4_core0.$strip>], "type">>>;
|
|
1263
2462
|
}, _$zod_v4_core0.$strip>>;
|
|
1264
2463
|
description: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1265
2464
|
legacyPaths: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -1680,7 +2879,7 @@ declare const NestedGroupModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
1680
2879
|
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
1681
2880
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1682
2881
|
repeat: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
1683
|
-
fields: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.
|
|
2882
|
+
fields: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1684
2883
|
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
1685
2884
|
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
1686
2885
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -1852,7 +3051,7 @@ declare const NestedGroupModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
1852
3051
|
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1853
3052
|
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
1854
3053
|
}, _$zod_v4_core0.$strip>>;
|
|
1855
|
-
}, _$zod_v4_core0.$strip>]>>>;
|
|
3054
|
+
}, _$zod_v4_core0.$strip>], "type">>>;
|
|
1856
3055
|
}, _$zod_v4_core0.$strip>>;
|
|
1857
3056
|
}, _$zod_v4_core0.$strip>;
|
|
1858
3057
|
declare const SharedSliceModelVariationSchema: _$zod_mini0.ZodMiniObject<{
|
|
@@ -2248,7 +3447,7 @@ declare const SharedSliceModelVariationSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2248
3447
|
}> | undefined;
|
|
2249
3448
|
} | undefined;
|
|
2250
3449
|
}, unknown>>>>;
|
|
2251
|
-
items: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.
|
|
3450
|
+
items: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
2252
3451
|
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
2253
3452
|
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2254
3453
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -2420,7 +3619,7 @@ declare const SharedSliceModelVariationSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2420
3619
|
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2421
3620
|
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2422
3621
|
}, _$zod_v4_core0.$strip>>;
|
|
2423
|
-
}, _$zod_v4_core0.$strip>]>>>;
|
|
3622
|
+
}, _$zod_v4_core0.$strip>], "type">>>;
|
|
2424
3623
|
}, _$zod_v4_core0.$strip>;
|
|
2425
3624
|
declare const SharedSliceRefModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
2426
3625
|
type: _$zod_mini0.ZodMiniLiteral<"SharedSlice">;
|
|
@@ -2431,7 +3630,180 @@ declare const CompositeSliceModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2431
3630
|
description: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2432
3631
|
icon: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2433
3632
|
display: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2434
|
-
"non-repeat": _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.
|
|
3633
|
+
"non-repeat": _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
3634
|
+
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
3635
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3636
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3637
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3638
|
+
placeholder_true: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3639
|
+
placeholder_false: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3640
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3641
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3642
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
3643
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3644
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3645
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3646
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3647
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3648
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3649
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
3650
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3651
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3652
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3653
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3654
|
+
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3655
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3656
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3657
|
+
type: _$zod_mini0.ZodMiniLiteral<"Embed">;
|
|
3658
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3659
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3660
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3661
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3662
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3663
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3664
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3665
|
+
type: _$zod_mini0.ZodMiniLiteral<"GeoPoint">;
|
|
3666
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3667
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3668
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3669
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3670
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3671
|
+
type: _$zod_mini0.ZodMiniLiteral<"Image">;
|
|
3672
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3673
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3674
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3675
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3676
|
+
constraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3677
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
3678
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
3679
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3680
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
3681
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
3682
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
3683
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
3684
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
3685
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3686
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3687
|
+
type: _$zod_mini0.ZodMiniLiteral<"IntegrationFields">;
|
|
3688
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3689
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3690
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3691
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3692
|
+
catalog: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3693
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3694
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3695
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
3696
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3697
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3698
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3699
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3700
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3701
|
+
select: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnknown, _$zod_mini0.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
|
|
3702
|
+
customtypes: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
3703
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
3704
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
3705
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
3706
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
3707
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
3708
|
+
customtypes: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
3709
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
3710
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
3711
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
3712
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>;
|
|
3713
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
3714
|
+
}, _$zod_v4_core0.$strip>]>>;
|
|
3715
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
3716
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3717
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
3718
|
+
customtypes: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
3719
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
3720
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
3721
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
3722
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>;
|
|
3723
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
3724
|
+
}, _$zod_v4_core0.$strip>]>>;
|
|
3725
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
3726
|
+
}, _$zod_v4_core0.$strip>]>>>;
|
|
3727
|
+
masks: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
3728
|
+
tags: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
3729
|
+
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3730
|
+
allowText: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3731
|
+
repeat: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3732
|
+
variants: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>>;
|
|
3733
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3734
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3735
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
3736
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3737
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3738
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3739
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3740
|
+
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
3741
|
+
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
3742
|
+
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
3743
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3744
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3745
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
3746
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3747
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3748
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3749
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3750
|
+
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
3751
|
+
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
3752
|
+
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
3753
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3754
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3755
|
+
type: _$zod_mini0.ZodMiniLiteral<"StructuredText">;
|
|
3756
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3757
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3758
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3759
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3760
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3761
|
+
single: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
3762
|
+
multi: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
3763
|
+
imageConstraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3764
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
3765
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
3766
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3767
|
+
labels: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<string[], unknown, _$zod_v4_core0.$ZodTypeInternals<string[], unknown>>>;
|
|
3768
|
+
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3769
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3770
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3771
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
3772
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3773
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3774
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3775
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3776
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3777
|
+
options: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<string, unknown, _$zod_v4_core0.$ZodTypeInternals<string, unknown>>>>;
|
|
3778
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3779
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3780
|
+
type: _$zod_mini0.ZodMiniLiteral<"Separator">;
|
|
3781
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3782
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3783
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3784
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3785
|
+
type: _$zod_mini0.ZodMiniLiteral<"Table">;
|
|
3786
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3787
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3788
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3789
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3790
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
3791
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3792
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3793
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3794
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3795
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3796
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3797
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3798
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
3799
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3800
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3801
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3802
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3803
|
+
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3804
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3805
|
+
}, _$zod_v4_core0.$strip>], "type">>>;
|
|
3806
|
+
repeat: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
2435
3807
|
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
2436
3808
|
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2437
3809
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -2603,81 +3975,275 @@ declare const CompositeSliceModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2603
3975
|
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2604
3976
|
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2605
3977
|
}, _$zod_v4_core0.$strip>>;
|
|
2606
|
-
}, _$zod_v4_core0.$strip>]>>>;
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
3978
|
+
}, _$zod_v4_core0.$strip>], "type">>>;
|
|
3979
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3980
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3981
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3982
|
+
}, _$zod_v4_core0.$strip>;
|
|
3983
|
+
declare const LegacySliceModelSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
3984
|
+
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
3985
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3986
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3987
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3988
|
+
placeholder_true: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3989
|
+
placeholder_false: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3990
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3991
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3992
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
3993
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3994
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3995
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3996
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3997
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3998
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3999
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
4000
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4001
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4002
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4003
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4004
|
+
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4005
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4006
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4007
|
+
type: _$zod_mini0.ZodMiniLiteral<"Embed">;
|
|
4008
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4009
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4010
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4011
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4012
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4013
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4014
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4015
|
+
type: _$zod_mini0.ZodMiniLiteral<"GeoPoint">;
|
|
4016
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4017
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4018
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4019
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4020
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4021
|
+
type: _$zod_mini0.ZodMiniLiteral<"Image">;
|
|
4022
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4023
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4024
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4025
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4026
|
+
constraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4027
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4028
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2637
4029
|
}, _$zod_v4_core0.$strip>>;
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
4030
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
4031
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
4032
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4033
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4034
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
4035
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4036
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4037
|
+
type: _$zod_mini0.ZodMiniLiteral<"IntegrationFields">;
|
|
4038
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4039
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4040
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4041
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4042
|
+
catalog: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4043
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4044
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4045
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
4046
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4047
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4048
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4049
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4050
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4051
|
+
select: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnknown, _$zod_mini0.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
|
|
4052
|
+
customtypes: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
4053
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4054
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
4055
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4056
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
4057
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4058
|
+
customtypes: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
4059
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4060
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
4061
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4062
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>;
|
|
4063
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
4064
|
+
}, _$zod_v4_core0.$strip>]>>;
|
|
4065
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
4066
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4067
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4068
|
+
customtypes: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
4069
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4070
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
4071
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4072
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>;
|
|
4073
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
4074
|
+
}, _$zod_v4_core0.$strip>]>>;
|
|
4075
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
4076
|
+
}, _$zod_v4_core0.$strip>]>>>;
|
|
4077
|
+
masks: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
4078
|
+
tags: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
4079
|
+
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4080
|
+
allowText: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4081
|
+
repeat: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4082
|
+
variants: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>>;
|
|
4083
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4084
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4085
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
4086
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4087
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4088
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4089
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4090
|
+
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4091
|
+
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4092
|
+
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4093
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4094
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4095
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
4096
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4097
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4098
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4099
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4100
|
+
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4101
|
+
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4102
|
+
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4103
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4104
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4105
|
+
type: _$zod_mini0.ZodMiniLiteral<"StructuredText">;
|
|
4106
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4107
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4108
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4109
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4110
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4111
|
+
single: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
4112
|
+
multi: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
4113
|
+
imageConstraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4114
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4115
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2643
4116
|
}, _$zod_v4_core0.$strip>>;
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
4117
|
+
labels: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<string[], unknown, _$zod_v4_core0.$ZodTypeInternals<string[], unknown>>>;
|
|
4118
|
+
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4119
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4120
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4121
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
4122
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4123
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4124
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4125
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4126
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4127
|
+
options: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<string, unknown, _$zod_v4_core0.$ZodTypeInternals<string, unknown>>>>;
|
|
4128
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4129
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4130
|
+
type: _$zod_mini0.ZodMiniLiteral<"Separator">;
|
|
4131
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4132
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4133
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4134
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4135
|
+
type: _$zod_mini0.ZodMiniLiteral<"Table">;
|
|
4136
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4137
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4138
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4139
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4140
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
4141
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4142
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4143
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4144
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4145
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4146
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4147
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4148
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
4149
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4150
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4151
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4152
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4153
|
+
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4154
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4155
|
+
}, _$zod_v4_core0.$strip>], "type">, _$zod_mini0.ZodMiniObject<{
|
|
4156
|
+
type: _$zod_mini0.ZodMiniLiteral<"Group">;
|
|
4157
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4158
|
+
icon: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4159
|
+
description: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4160
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4161
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4162
|
+
repeat: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4163
|
+
fields: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
4164
|
+
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
4165
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4166
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4167
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4168
|
+
placeholder_true: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4169
|
+
placeholder_false: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4170
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4171
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4172
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
4173
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4174
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4175
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4176
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4177
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4178
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4179
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
4180
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4181
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4182
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4183
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4184
|
+
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4185
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4186
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4187
|
+
type: _$zod_mini0.ZodMiniLiteral<"Embed">;
|
|
4188
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4189
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4190
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4191
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4192
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2653
4193
|
}, _$zod_v4_core0.$strip>>;
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
4194
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4195
|
+
type: _$zod_mini0.ZodMiniLiteral<"GeoPoint">;
|
|
4196
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4197
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4198
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4199
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4200
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4201
|
+
type: _$zod_mini0.ZodMiniLiteral<"Image">;
|
|
4202
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4203
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4204
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4205
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4206
|
+
constraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4207
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4208
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4209
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4210
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
4211
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
4212
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4213
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4214
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
4215
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4216
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4217
|
+
type: _$zod_mini0.ZodMiniLiteral<"IntegrationFields">;
|
|
4218
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4219
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4220
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4221
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4222
|
+
catalog: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4223
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4224
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4225
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
4226
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4227
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4228
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4229
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4230
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4231
|
+
select: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnknown, _$zod_mini0.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
|
|
4232
|
+
customtypes: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
2679
4233
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
2680
4234
|
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
4235
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4236
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
4237
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4238
|
+
customtypes: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
4239
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4240
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
4241
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4242
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>;
|
|
4243
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
4244
|
+
}, _$zod_v4_core0.$strip>]>>;
|
|
4245
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
4246
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2681
4247
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
2682
4248
|
customtypes: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
2683
4249
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
@@ -2687,101 +4253,88 @@ declare const CompositeSliceModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2687
4253
|
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
2688
4254
|
}, _$zod_v4_core0.$strip>]>>;
|
|
2689
4255
|
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
2690
|
-
}, _$zod_v4_core0.$strip
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
2698
|
-
}, _$zod_v4_core0.$strip>]>>;
|
|
2699
|
-
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
2700
|
-
}, _$zod_v4_core0.$strip>]>>>;
|
|
2701
|
-
masks: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
2702
|
-
tags: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
2703
|
-
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2704
|
-
allowText: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2705
|
-
repeat: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2706
|
-
variants: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>>;
|
|
2707
|
-
}, _$zod_v4_core0.$strip>>;
|
|
2708
|
-
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2709
|
-
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
2710
|
-
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2711
|
-
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2712
|
-
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2713
|
-
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2714
|
-
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2715
|
-
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2716
|
-
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2717
|
-
}, _$zod_v4_core0.$strip>>;
|
|
2718
|
-
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2719
|
-
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
2720
|
-
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2721
|
-
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2722
|
-
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2723
|
-
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2724
|
-
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2725
|
-
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2726
|
-
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2727
|
-
}, _$zod_v4_core0.$strip>>;
|
|
2728
|
-
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2729
|
-
type: _$zod_mini0.ZodMiniLiteral<"StructuredText">;
|
|
2730
|
-
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2731
|
-
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2732
|
-
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2733
|
-
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2734
|
-
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2735
|
-
single: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
2736
|
-
multi: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
2737
|
-
imageConstraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2738
|
-
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2739
|
-
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4256
|
+
}, _$zod_v4_core0.$strip>]>>>;
|
|
4257
|
+
masks: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
4258
|
+
tags: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
4259
|
+
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4260
|
+
allowText: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4261
|
+
repeat: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4262
|
+
variants: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>>;
|
|
2740
4263
|
}, _$zod_v4_core0.$strip>>;
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
4264
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4265
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
4266
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4267
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4268
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4269
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4270
|
+
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4271
|
+
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4272
|
+
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4273
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4274
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4275
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
4276
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4277
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4278
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4279
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4280
|
+
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4281
|
+
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4282
|
+
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
4283
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4284
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4285
|
+
type: _$zod_mini0.ZodMiniLiteral<"StructuredText">;
|
|
4286
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4287
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4288
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4289
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4290
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4291
|
+
single: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
4292
|
+
multi: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
4293
|
+
imageConstraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4294
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4295
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
4296
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4297
|
+
labels: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<string[], unknown, _$zod_v4_core0.$ZodTypeInternals<string[], unknown>>>;
|
|
4298
|
+
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4299
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4300
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4301
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
4302
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4303
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4304
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4305
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4306
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4307
|
+
options: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<string, unknown, _$zod_v4_core0.$ZodTypeInternals<string, unknown>>>>;
|
|
4308
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4309
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4310
|
+
type: _$zod_mini0.ZodMiniLiteral<"Separator">;
|
|
4311
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4312
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4313
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4314
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4315
|
+
type: _$zod_mini0.ZodMiniLiteral<"Table">;
|
|
4316
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4317
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4318
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4319
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4320
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
4321
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4322
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4323
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4324
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4325
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4326
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4327
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4328
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
4329
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4330
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
4331
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4332
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4333
|
+
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
4334
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4335
|
+
}, _$zod_v4_core0.$strip>], "type">>>;
|
|
2782
4336
|
}, _$zod_v4_core0.$strip>>;
|
|
2783
|
-
}, _$zod_v4_core0.$strip>;
|
|
2784
|
-
declare const LegacySliceModelSchema: _$zod_mini0.ZodMiniType<LegacySliceModel, unknown, _$zod_v4_core0.$ZodTypeInternals<LegacySliceModel, unknown>>;
|
|
4337
|
+
}, _$zod_v4_core0.$strip>], "type">;
|
|
2785
4338
|
declare const DynamicSliceModelSchema: _$zod_mini0.ZodMiniType<DynamicSliceModel, unknown, _$zod_v4_core0.$ZodTypeInternals<DynamicSliceModel, unknown>>;
|
|
2786
4339
|
declare const StaticSliceModelSchema: _$zod_mini0.ZodMiniType<StaticSliceModel, unknown, _$zod_v4_core0.$ZodTypeInternals<StaticSliceModel, unknown>>;
|
|
2787
4340
|
declare const SliceContentModelSchema: _$zod_mini0.ZodMiniType<SliceContentModel, unknown, _$zod_v4_core0.$ZodTypeInternals<SliceContentModel, unknown>>;
|
|
@@ -2811,8 +4364,8 @@ declare const StaticSlicesModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2811
4364
|
}, _$zod_v4_core0.$strip>;
|
|
2812
4365
|
declare const StaticWidgetModelSchema: _$zod_mini0.ZodMiniType<StaticWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<StaticWidgetModel, unknown>>;
|
|
2813
4366
|
declare const DynamicWidgetModelSchema: _$zod_mini0.ZodMiniType<DynamicWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<DynamicWidgetModel, unknown>>;
|
|
2814
|
-
declare const
|
|
2815
|
-
declare const
|
|
4367
|
+
declare const StaticCustomTypeModelTabSchema: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<StaticWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<StaticWidgetModel, unknown>>>;
|
|
4368
|
+
declare const DynamicCustomTypeModelTabSchema: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<DynamicWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<DynamicWidgetModel, unknown>>>;
|
|
2816
4369
|
declare const StaticCustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
2817
4370
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
2818
4371
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -2824,6 +4377,18 @@ declare const StaticCustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2824
4377
|
page: "page";
|
|
2825
4378
|
}>>;
|
|
2826
4379
|
}, _$zod_v4_core0.$strip>;
|
|
4380
|
+
declare const DynamicCustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
4381
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4382
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4383
|
+
repeatable: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4384
|
+
json: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<DynamicWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<DynamicWidgetModel, unknown>>>>;
|
|
4385
|
+
status: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4386
|
+
format: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniEnum<{
|
|
4387
|
+
custom: "custom";
|
|
4388
|
+
page: "page";
|
|
4389
|
+
}>>;
|
|
4390
|
+
}, _$zod_v4_core0.$strip>;
|
|
4391
|
+
/** @deprecated Use DynamicCustomTypeModelSchema instead */
|
|
2827
4392
|
declare const CustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
2828
4393
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
2829
4394
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
@@ -2836,5 +4401,5 @@ declare const CustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2836
4401
|
}>>;
|
|
2837
4402
|
}, _$zod_v4_core0.$strip>;
|
|
2838
4403
|
//#endregion
|
|
2839
|
-
export { AssetSchema, BooleanContentSchema, BooleanModelSchema, ColorContentSchema, ColorModelSchema, CompositeSliceContentSchema, CompositeSliceItemContentSchema, CompositeSliceModelSchema, CustomTypeModelSchema, DateContentSchema, DateModelSchema, DocumentContentSchema,
|
|
4404
|
+
export { AssetSchema, BooleanContentSchema, BooleanModelSchema, ColorContentSchema, ColorModelSchema, CompositeSliceContentSchema, CompositeSliceItemContentSchema, CompositeSliceModelSchema, CustomTypeModelSchema, DateContentSchema, DateModelSchema, DocumentContentSchema, DynamicCustomTypeModelSchema, DynamicCustomTypeModelTabSchema, DynamicSliceModelSchema, DynamicSlicesModelSchema, DynamicWidgetModelSchema, EmbedContentSchema, EmbedModelSchema, EmbedSchema, EmptyContentSchema, EmptyLinkContentSchema, FieldContentSchema, FilledLinkContentSchema, GeoPointContentSchema, GeoPointModelSchema, GroupContentSchema, GroupItemContentSchema, GroupModelSchema, HexaColorCodeSchema, ImageContentSchema, ImageContentViewSchema, ImageModelSchema, IntegrationFieldContentSchema, IntegrationFieldModelSchema, LegacySliceContentSchema, LegacySliceItemContentSchema, LegacySliceModelSchema, LinkContentSchema, LinkModelSchema, NestableContentSchema, NestableModelSchema, NestedGroupModelSchema, NonEmptyStringSchema, NumberContentSchema, NumberModelSchema, RangeContentSchema, RangeModelSchema, RepeatableContentSchema, RichTextContentBlockSchema, RichTextContentSchema, RichTextContentSpanSchema, RichTextModelSchema, SelectContentSchema, SelectModelSchema, SeparatorContentSchema, SeparatorModelSchema, SharedSliceContentSchema, SharedSliceItemContentSchema, SharedSliceModelSchema, SharedSliceModelVariationSchema, SharedSliceRefModelSchema, SliceContentModelSchema, SliceContentSchema, SliceItemContentSchema, SlicesContentSchema, StaticCustomTypeModelSchema, StaticCustomTypeModelTabSchema, StaticSliceModelSchema, StaticSlicesModelSchema, StaticWidgetModelSchema, TableContentSchema, TableModelSchema, TextContentSchema, TextModelSchema, TimestampContentSchema, TimestampModelSchema, UIDContentSchema, UIDModelSchema, WidgetContentSchema, WidgetKeySchema };
|
|
2840
4405
|
//# sourceMappingURL=zod4.d.ts.map
|