@prismicio/editor-fields 0.4.58 → 0.4.59-alpha.xru-link-variant-link-style.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/DocumentEditor.d.ts +2 -0
- package/dist/EditorConfig.d.ts +16 -1
- package/dist/SectionEditor.d.ts +5 -1
- package/dist/core/MediaLibrary/hooks/mediaLibraryData.d.ts +53 -53
- package/dist/core/MediaLibrary/hooks/tagData.d.ts +3 -3
- package/dist/core/MediaLibrary/hooks/useSelectedMedia.d.ts +5 -5
- package/dist/core/OnboardingGuide/components/OnboardingTutorial.d.ts +2 -0
- package/dist/core/SeoMetadata/components/MetadataBadge.d.ts +8 -0
- package/dist/core/SeoMetadata/components/MetadataPreview.d.ts +7 -0
- package/dist/core/SeoMetadata/index.d.ts +2 -0
- package/dist/core/document.d.ts +2 -6
- package/dist/core/service/aiSeoMetadata.d.ts +30 -0
- package/dist/core/service/customType.d.ts +15 -8
- package/dist/core/service/document.d.ts +230 -98
- package/dist/core/service/documentSearch.d.ts +34 -34
- package/dist/core/service/index.d.ts +1 -0
- package/dist/core/service/onboarding.d.ts +3 -0
- package/dist/core/service/repository.d.ts +6 -6
- package/dist/core/service/role.d.ts +18 -10
- package/dist/core/service/user.d.ts +1 -1
- package/dist/fields/KeyTextField.d.ts +3 -1
- package/dist/fields/LinkField/Documents/documentsData.d.ts +10 -10
- package/dist/fields/LinkField/LinkField.d.ts +4 -3
- package/dist/fields/LinkField/LinkFieldActions.d.ts +3 -0
- package/dist/fields/LinkField/RepeatableLinkField/useRepeatableLinkField.d.ts +8 -1
- package/dist/fields/LinkField/WebLinks/WebLinkModal.d.ts +5 -2
- package/dist/fields/LinkField/useLinkField.d.ts +7 -2
- package/dist/fields/MetadataTextField.d.ts +18 -0
- package/dist/fields/RichTextField/coreExtensions/ListItem.d.ts +4 -4
- package/dist/fields/RichTextField/extensions/extensions.d.ts +1 -1
- package/dist/index.cjs.js +92 -39
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +28759 -21920
- package/dist/slices/utils.d.ts +14 -2
- package/dist/zones/StaticZoneEditor.d.ts +6 -0
- package/package.json +6 -5
- package/dist/core/service/teamSpace.d.ts +0 -48
|
@@ -6,20 +6,20 @@ export declare const languageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6
6
|
name: z.ZodString;
|
|
7
7
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
id: string;
|
|
10
9
|
name: string;
|
|
10
|
+
id: string;
|
|
11
11
|
is_master?: boolean | undefined;
|
|
12
12
|
}, {
|
|
13
|
-
id: string;
|
|
14
13
|
name: string;
|
|
14
|
+
id: string;
|
|
15
15
|
is_master?: boolean | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
isMaster?: boolean | undefined;
|
|
18
18
|
id: string;
|
|
19
19
|
label: string;
|
|
20
20
|
}, {
|
|
21
|
-
id: string;
|
|
22
21
|
name: string;
|
|
22
|
+
id: string;
|
|
23
23
|
is_master?: boolean | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -76,29 +76,29 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
76
76
|
}>;
|
|
77
77
|
}>, "strip", z.ZodTypeAny, {
|
|
78
78
|
tags: string[];
|
|
79
|
+
version_id: string;
|
|
80
|
+
last_modified_date: Date;
|
|
81
|
+
custom_type_label: string;
|
|
79
82
|
author: {
|
|
80
83
|
first_name?: string | undefined;
|
|
81
84
|
last_name?: string | undefined;
|
|
82
85
|
email?: string | undefined;
|
|
83
86
|
uploadedAvatar?: string | undefined;
|
|
84
87
|
};
|
|
85
|
-
version_id: string;
|
|
86
|
-
last_modified_date: Date;
|
|
87
|
-
custom_type_label: string;
|
|
88
88
|
preview_image?: string | undefined;
|
|
89
89
|
uid?: string | undefined;
|
|
90
90
|
preview_summary?: string | undefined;
|
|
91
91
|
}, {
|
|
92
92
|
tags: string[];
|
|
93
|
+
version_id: string;
|
|
94
|
+
last_modified_date: Date;
|
|
95
|
+
custom_type_label: string;
|
|
93
96
|
author: {
|
|
94
97
|
first_name?: string | undefined;
|
|
95
98
|
last_name?: string | undefined;
|
|
96
99
|
email?: string | undefined;
|
|
97
100
|
uploadedAvatar?: string | undefined;
|
|
98
101
|
};
|
|
99
|
-
version_id: string;
|
|
100
|
-
last_modified_date: Date;
|
|
101
|
-
custom_type_label: string;
|
|
102
102
|
preview_image?: string | undefined;
|
|
103
103
|
uid?: string | undefined;
|
|
104
104
|
preview_summary?: string | undefined;
|
|
@@ -144,19 +144,19 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
144
144
|
tags: string[];
|
|
145
145
|
version_id: string;
|
|
146
146
|
last_modified_date: Date;
|
|
147
|
-
summary?: string | undefined;
|
|
148
147
|
preview_image?: string | undefined;
|
|
149
148
|
uid?: string | undefined;
|
|
150
149
|
custom_type_id?: string | undefined;
|
|
150
|
+
summary?: string | undefined;
|
|
151
151
|
author_ids?: string[] | undefined;
|
|
152
152
|
}, {
|
|
153
153
|
tags: string[];
|
|
154
154
|
version_id: string;
|
|
155
155
|
last_modified_date: Date;
|
|
156
|
-
summary?: string | undefined;
|
|
157
156
|
preview_image?: string | undefined;
|
|
158
157
|
uid?: string | undefined;
|
|
159
158
|
custom_type_id?: string | undefined;
|
|
159
|
+
summary?: string | undefined;
|
|
160
160
|
author_ids?: string[] | undefined;
|
|
161
161
|
}>>;
|
|
162
162
|
export declare function isDocumentVersion(value: unknown): value is z.infer<typeof documentVersionSchema>;
|
|
@@ -171,20 +171,20 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
171
171
|
name: z.ZodString;
|
|
172
172
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
|
174
|
-
id: string;
|
|
175
174
|
name: string;
|
|
175
|
+
id: string;
|
|
176
176
|
is_master?: boolean | undefined;
|
|
177
177
|
}, {
|
|
178
|
-
id: string;
|
|
179
178
|
name: string;
|
|
179
|
+
id: string;
|
|
180
180
|
is_master?: boolean | undefined;
|
|
181
181
|
}>, {
|
|
182
182
|
isMaster?: boolean | undefined;
|
|
183
183
|
id: string;
|
|
184
184
|
label: string;
|
|
185
185
|
}, {
|
|
186
|
-
id: string;
|
|
187
186
|
name: string;
|
|
187
|
+
id: string;
|
|
188
188
|
is_master?: boolean | undefined;
|
|
189
189
|
}>;
|
|
190
190
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -241,29 +241,29 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
241
241
|
}>;
|
|
242
242
|
}>, "strip", z.ZodTypeAny, {
|
|
243
243
|
tags: string[];
|
|
244
|
+
version_id: string;
|
|
245
|
+
last_modified_date: Date;
|
|
246
|
+
custom_type_label: string;
|
|
244
247
|
author: {
|
|
245
248
|
first_name?: string | undefined;
|
|
246
249
|
last_name?: string | undefined;
|
|
247
250
|
email?: string | undefined;
|
|
248
251
|
uploadedAvatar?: string | undefined;
|
|
249
252
|
};
|
|
250
|
-
version_id: string;
|
|
251
|
-
last_modified_date: Date;
|
|
252
|
-
custom_type_label: string;
|
|
253
253
|
preview_image?: string | undefined;
|
|
254
254
|
uid?: string | undefined;
|
|
255
255
|
preview_summary?: string | undefined;
|
|
256
256
|
}, {
|
|
257
257
|
tags: string[];
|
|
258
|
+
version_id: string;
|
|
259
|
+
last_modified_date: Date;
|
|
260
|
+
custom_type_label: string;
|
|
258
261
|
author: {
|
|
259
262
|
first_name?: string | undefined;
|
|
260
263
|
last_name?: string | undefined;
|
|
261
264
|
email?: string | undefined;
|
|
262
265
|
uploadedAvatar?: string | undefined;
|
|
263
266
|
};
|
|
264
|
-
version_id: string;
|
|
265
|
-
last_modified_date: Date;
|
|
266
|
-
custom_type_label: string;
|
|
267
267
|
preview_image?: string | undefined;
|
|
268
268
|
uid?: string | undefined;
|
|
269
269
|
preview_summary?: string | undefined;
|
|
@@ -271,13 +271,13 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
271
271
|
}, "strip", z.ZodTypeAny, {
|
|
272
272
|
id: string;
|
|
273
273
|
title: string;
|
|
274
|
+
custom_type_id: string;
|
|
275
|
+
group_lang_id: string;
|
|
274
276
|
language: {
|
|
275
277
|
isMaster?: boolean | undefined;
|
|
276
278
|
id: string;
|
|
277
279
|
label: string;
|
|
278
280
|
};
|
|
279
|
-
custom_type_id: string;
|
|
280
|
-
group_lang_id: string;
|
|
281
281
|
versions: (({
|
|
282
282
|
status: "unclassified";
|
|
283
283
|
} | {
|
|
@@ -289,28 +289,28 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
289
289
|
status: "archived";
|
|
290
290
|
}) & {
|
|
291
291
|
tags: string[];
|
|
292
|
+
version_id: string;
|
|
293
|
+
last_modified_date: Date;
|
|
294
|
+
custom_type_label: string;
|
|
292
295
|
author: {
|
|
293
296
|
first_name?: string | undefined;
|
|
294
297
|
last_name?: string | undefined;
|
|
295
298
|
email?: string | undefined;
|
|
296
299
|
uploadedAvatar?: string | undefined;
|
|
297
300
|
};
|
|
298
|
-
version_id: string;
|
|
299
|
-
last_modified_date: Date;
|
|
300
|
-
custom_type_label: string;
|
|
301
301
|
preview_image?: string | undefined;
|
|
302
302
|
uid?: string | undefined;
|
|
303
303
|
preview_summary?: string | undefined;
|
|
304
304
|
})[];
|
|
305
305
|
}, {
|
|
306
306
|
id: string;
|
|
307
|
+
custom_type_id: string;
|
|
308
|
+
group_lang_id: string;
|
|
307
309
|
language: {
|
|
308
|
-
id: string;
|
|
309
310
|
name: string;
|
|
311
|
+
id: string;
|
|
310
312
|
is_master?: boolean | undefined;
|
|
311
313
|
};
|
|
312
|
-
custom_type_id: string;
|
|
313
|
-
group_lang_id: string;
|
|
314
314
|
versions: (({
|
|
315
315
|
status: "unclassified";
|
|
316
316
|
} | {
|
|
@@ -322,15 +322,15 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
322
322
|
status: "archived";
|
|
323
323
|
}) & {
|
|
324
324
|
tags: string[];
|
|
325
|
+
version_id: string;
|
|
326
|
+
last_modified_date: Date;
|
|
327
|
+
custom_type_label: string;
|
|
325
328
|
author: {
|
|
326
329
|
first_name?: string | undefined;
|
|
327
330
|
last_name?: string | undefined;
|
|
328
331
|
email?: string | undefined;
|
|
329
332
|
uploadedAvatar?: string | undefined;
|
|
330
333
|
};
|
|
331
|
-
version_id: string;
|
|
332
|
-
last_modified_date: Date;
|
|
333
|
-
custom_type_label: string;
|
|
334
334
|
preview_image?: string | undefined;
|
|
335
335
|
uid?: string | undefined;
|
|
336
336
|
preview_summary?: string | undefined;
|
|
@@ -350,20 +350,20 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
350
350
|
name: z.ZodString;
|
|
351
351
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
353
|
-
id: string;
|
|
354
353
|
name: string;
|
|
354
|
+
id: string;
|
|
355
355
|
is_master?: boolean | undefined;
|
|
356
356
|
}, {
|
|
357
|
-
id: string;
|
|
358
357
|
name: string;
|
|
358
|
+
id: string;
|
|
359
359
|
is_master?: boolean | undefined;
|
|
360
360
|
}>, {
|
|
361
361
|
isMaster?: boolean | undefined;
|
|
362
362
|
id: string;
|
|
363
363
|
label: string;
|
|
364
364
|
}, {
|
|
365
|
-
id: string;
|
|
366
365
|
name: string;
|
|
366
|
+
id: string;
|
|
367
367
|
is_master?: boolean | undefined;
|
|
368
368
|
}>;
|
|
369
369
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -420,29 +420,29 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
420
420
|
}>;
|
|
421
421
|
}>, "strip", z.ZodTypeAny, {
|
|
422
422
|
tags: string[];
|
|
423
|
+
version_id: string;
|
|
424
|
+
last_modified_date: Date;
|
|
425
|
+
custom_type_label: string;
|
|
423
426
|
author: {
|
|
424
427
|
first_name?: string | undefined;
|
|
425
428
|
last_name?: string | undefined;
|
|
426
429
|
email?: string | undefined;
|
|
427
430
|
uploadedAvatar?: string | undefined;
|
|
428
431
|
};
|
|
429
|
-
version_id: string;
|
|
430
|
-
last_modified_date: Date;
|
|
431
|
-
custom_type_label: string;
|
|
432
432
|
preview_image?: string | undefined;
|
|
433
433
|
uid?: string | undefined;
|
|
434
434
|
preview_summary?: string | undefined;
|
|
435
435
|
}, {
|
|
436
436
|
tags: string[];
|
|
437
|
+
version_id: string;
|
|
438
|
+
last_modified_date: Date;
|
|
439
|
+
custom_type_label: string;
|
|
437
440
|
author: {
|
|
438
441
|
first_name?: string | undefined;
|
|
439
442
|
last_name?: string | undefined;
|
|
440
443
|
email?: string | undefined;
|
|
441
444
|
uploadedAvatar?: string | undefined;
|
|
442
445
|
};
|
|
443
|
-
version_id: string;
|
|
444
|
-
last_modified_date: Date;
|
|
445
|
-
custom_type_label: string;
|
|
446
446
|
preview_image?: string | undefined;
|
|
447
447
|
uid?: string | undefined;
|
|
448
448
|
preview_summary?: string | undefined;
|
|
@@ -450,13 +450,13 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
450
450
|
}, "strip", z.ZodTypeAny, {
|
|
451
451
|
id: string;
|
|
452
452
|
title: string;
|
|
453
|
+
custom_type_id: string;
|
|
454
|
+
group_lang_id: string;
|
|
453
455
|
language: {
|
|
454
456
|
isMaster?: boolean | undefined;
|
|
455
457
|
id: string;
|
|
456
458
|
label: string;
|
|
457
459
|
};
|
|
458
|
-
custom_type_id: string;
|
|
459
|
-
group_lang_id: string;
|
|
460
460
|
versions: (({
|
|
461
461
|
status: "unclassified";
|
|
462
462
|
} | {
|
|
@@ -468,28 +468,28 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
468
468
|
status: "archived";
|
|
469
469
|
}) & {
|
|
470
470
|
tags: string[];
|
|
471
|
+
version_id: string;
|
|
472
|
+
last_modified_date: Date;
|
|
473
|
+
custom_type_label: string;
|
|
471
474
|
author: {
|
|
472
475
|
first_name?: string | undefined;
|
|
473
476
|
last_name?: string | undefined;
|
|
474
477
|
email?: string | undefined;
|
|
475
478
|
uploadedAvatar?: string | undefined;
|
|
476
479
|
};
|
|
477
|
-
version_id: string;
|
|
478
|
-
last_modified_date: Date;
|
|
479
|
-
custom_type_label: string;
|
|
480
480
|
preview_image?: string | undefined;
|
|
481
481
|
uid?: string | undefined;
|
|
482
482
|
preview_summary?: string | undefined;
|
|
483
483
|
})[];
|
|
484
484
|
}, {
|
|
485
485
|
id: string;
|
|
486
|
+
custom_type_id: string;
|
|
487
|
+
group_lang_id: string;
|
|
486
488
|
language: {
|
|
487
|
-
id: string;
|
|
488
489
|
name: string;
|
|
490
|
+
id: string;
|
|
489
491
|
is_master?: boolean | undefined;
|
|
490
492
|
};
|
|
491
|
-
custom_type_id: string;
|
|
492
|
-
group_lang_id: string;
|
|
493
493
|
versions: (({
|
|
494
494
|
status: "unclassified";
|
|
495
495
|
} | {
|
|
@@ -501,15 +501,15 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
501
501
|
status: "archived";
|
|
502
502
|
}) & {
|
|
503
503
|
tags: string[];
|
|
504
|
+
version_id: string;
|
|
505
|
+
last_modified_date: Date;
|
|
506
|
+
custom_type_label: string;
|
|
504
507
|
author: {
|
|
505
508
|
first_name?: string | undefined;
|
|
506
509
|
last_name?: string | undefined;
|
|
507
510
|
email?: string | undefined;
|
|
508
511
|
uploadedAvatar?: string | undefined;
|
|
509
512
|
};
|
|
510
|
-
version_id: string;
|
|
511
|
-
last_modified_date: Date;
|
|
512
|
-
custom_type_label: string;
|
|
513
513
|
preview_image?: string | undefined;
|
|
514
514
|
uid?: string | undefined;
|
|
515
515
|
preview_summary?: string | undefined;
|
|
@@ -521,13 +521,13 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
521
521
|
results: {
|
|
522
522
|
id: string;
|
|
523
523
|
title: string;
|
|
524
|
+
custom_type_id: string;
|
|
525
|
+
group_lang_id: string;
|
|
524
526
|
language: {
|
|
525
527
|
isMaster?: boolean | undefined;
|
|
526
528
|
id: string;
|
|
527
529
|
label: string;
|
|
528
530
|
};
|
|
529
|
-
custom_type_id: string;
|
|
530
|
-
group_lang_id: string;
|
|
531
531
|
versions: (({
|
|
532
532
|
status: "unclassified";
|
|
533
533
|
} | {
|
|
@@ -539,15 +539,15 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
539
539
|
status: "archived";
|
|
540
540
|
}) & {
|
|
541
541
|
tags: string[];
|
|
542
|
+
version_id: string;
|
|
543
|
+
last_modified_date: Date;
|
|
544
|
+
custom_type_label: string;
|
|
542
545
|
author: {
|
|
543
546
|
first_name?: string | undefined;
|
|
544
547
|
last_name?: string | undefined;
|
|
545
548
|
email?: string | undefined;
|
|
546
549
|
uploadedAvatar?: string | undefined;
|
|
547
550
|
};
|
|
548
|
-
version_id: string;
|
|
549
|
-
last_modified_date: Date;
|
|
550
|
-
custom_type_label: string;
|
|
551
551
|
preview_image?: string | undefined;
|
|
552
552
|
uid?: string | undefined;
|
|
553
553
|
preview_summary?: string | undefined;
|
|
@@ -558,13 +558,13 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
558
558
|
total: number;
|
|
559
559
|
results: {
|
|
560
560
|
id: string;
|
|
561
|
+
custom_type_id: string;
|
|
562
|
+
group_lang_id: string;
|
|
561
563
|
language: {
|
|
562
|
-
id: string;
|
|
563
564
|
name: string;
|
|
565
|
+
id: string;
|
|
564
566
|
is_master?: boolean | undefined;
|
|
565
567
|
};
|
|
566
|
-
custom_type_id: string;
|
|
567
|
-
group_lang_id: string;
|
|
568
568
|
versions: (({
|
|
569
569
|
status: "unclassified";
|
|
570
570
|
} | {
|
|
@@ -576,15 +576,15 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
576
576
|
status: "archived";
|
|
577
577
|
}) & {
|
|
578
578
|
tags: string[];
|
|
579
|
+
version_id: string;
|
|
580
|
+
last_modified_date: Date;
|
|
581
|
+
custom_type_label: string;
|
|
579
582
|
author: {
|
|
580
583
|
first_name?: string | undefined;
|
|
581
584
|
last_name?: string | undefined;
|
|
582
585
|
email?: string | undefined;
|
|
583
586
|
uploadedAvatar?: string | undefined;
|
|
584
587
|
};
|
|
585
|
-
version_id: string;
|
|
586
|
-
last_modified_date: Date;
|
|
587
|
-
custom_type_label: string;
|
|
588
588
|
preview_image?: string | undefined;
|
|
589
589
|
uid?: string | undefined;
|
|
590
590
|
preview_summary?: string | undefined;
|
|
@@ -639,19 +639,19 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
639
639
|
tags: string[];
|
|
640
640
|
version_id: string;
|
|
641
641
|
last_modified_date: Date;
|
|
642
|
-
summary?: string | undefined;
|
|
643
642
|
preview_image?: string | undefined;
|
|
644
643
|
uid?: string | undefined;
|
|
645
644
|
custom_type_id?: string | undefined;
|
|
645
|
+
summary?: string | undefined;
|
|
646
646
|
author_ids?: string[] | undefined;
|
|
647
647
|
}, {
|
|
648
648
|
tags: string[];
|
|
649
649
|
version_id: string;
|
|
650
650
|
last_modified_date: Date;
|
|
651
|
-
summary?: string | undefined;
|
|
652
651
|
preview_image?: string | undefined;
|
|
653
652
|
uid?: string | undefined;
|
|
654
653
|
custom_type_id?: string | undefined;
|
|
654
|
+
summary?: string | undefined;
|
|
655
655
|
author_ids?: string[] | undefined;
|
|
656
656
|
}>>, "many">;
|
|
657
657
|
locale_id: z.ZodOptional<z.ZodString>;
|
|
@@ -673,10 +673,10 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
673
673
|
tags: string[];
|
|
674
674
|
version_id: string;
|
|
675
675
|
last_modified_date: Date;
|
|
676
|
-
summary?: string | undefined;
|
|
677
676
|
preview_image?: string | undefined;
|
|
678
677
|
uid?: string | undefined;
|
|
679
678
|
custom_type_id?: string | undefined;
|
|
679
|
+
summary?: string | undefined;
|
|
680
680
|
author_ids?: string[] | undefined;
|
|
681
681
|
})[];
|
|
682
682
|
locale_id?: string | undefined;
|
|
@@ -697,10 +697,10 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
697
697
|
tags: string[];
|
|
698
698
|
version_id: string;
|
|
699
699
|
last_modified_date: Date;
|
|
700
|
-
summary?: string | undefined;
|
|
701
700
|
preview_image?: string | undefined;
|
|
702
701
|
uid?: string | undefined;
|
|
703
702
|
custom_type_id?: string | undefined;
|
|
703
|
+
summary?: string | undefined;
|
|
704
704
|
author_ids?: string[] | undefined;
|
|
705
705
|
})[];
|
|
706
706
|
title?: string | null | undefined;
|
|
@@ -724,10 +724,10 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
724
724
|
tags: string[];
|
|
725
725
|
version_id: string;
|
|
726
726
|
last_modified_date: Date;
|
|
727
|
-
summary?: string | undefined;
|
|
728
727
|
preview_image?: string | undefined;
|
|
729
728
|
uid?: string | undefined;
|
|
730
729
|
custom_type_id?: string | undefined;
|
|
730
|
+
summary?: string | undefined;
|
|
731
731
|
author_ids?: string[] | undefined;
|
|
732
732
|
})[];
|
|
733
733
|
}, {
|
|
@@ -747,10 +747,10 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
747
747
|
tags: string[];
|
|
748
748
|
version_id: string;
|
|
749
749
|
last_modified_date: Date;
|
|
750
|
-
summary?: string | undefined;
|
|
751
750
|
preview_image?: string | undefined;
|
|
752
751
|
uid?: string | undefined;
|
|
753
752
|
custom_type_id?: string | undefined;
|
|
753
|
+
summary?: string | undefined;
|
|
754
754
|
author_ids?: string[] | undefined;
|
|
755
755
|
})[];
|
|
756
756
|
title?: string | null | undefined;
|
|
@@ -803,19 +803,19 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
803
803
|
tags: string[];
|
|
804
804
|
version_id: string;
|
|
805
805
|
last_modified_date: Date;
|
|
806
|
-
summary?: string | undefined;
|
|
807
806
|
preview_image?: string | undefined;
|
|
808
807
|
uid?: string | undefined;
|
|
809
808
|
custom_type_id?: string | undefined;
|
|
809
|
+
summary?: string | undefined;
|
|
810
810
|
author_ids?: string[] | undefined;
|
|
811
811
|
}, {
|
|
812
812
|
tags: string[];
|
|
813
813
|
version_id: string;
|
|
814
814
|
last_modified_date: Date;
|
|
815
|
-
summary?: string | undefined;
|
|
816
815
|
preview_image?: string | undefined;
|
|
817
816
|
uid?: string | undefined;
|
|
818
817
|
custom_type_id?: string | undefined;
|
|
818
|
+
summary?: string | undefined;
|
|
819
819
|
author_ids?: string[] | undefined;
|
|
820
820
|
}>>, "many">;
|
|
821
821
|
locale_id: z.ZodOptional<z.ZodString>;
|
|
@@ -837,10 +837,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
837
837
|
tags: string[];
|
|
838
838
|
version_id: string;
|
|
839
839
|
last_modified_date: Date;
|
|
840
|
-
summary?: string | undefined;
|
|
841
840
|
preview_image?: string | undefined;
|
|
842
841
|
uid?: string | undefined;
|
|
843
842
|
custom_type_id?: string | undefined;
|
|
843
|
+
summary?: string | undefined;
|
|
844
844
|
author_ids?: string[] | undefined;
|
|
845
845
|
})[];
|
|
846
846
|
locale_id?: string | undefined;
|
|
@@ -861,10 +861,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
861
861
|
tags: string[];
|
|
862
862
|
version_id: string;
|
|
863
863
|
last_modified_date: Date;
|
|
864
|
-
summary?: string | undefined;
|
|
865
864
|
preview_image?: string | undefined;
|
|
866
865
|
uid?: string | undefined;
|
|
867
866
|
custom_type_id?: string | undefined;
|
|
867
|
+
summary?: string | undefined;
|
|
868
868
|
author_ids?: string[] | undefined;
|
|
869
869
|
})[];
|
|
870
870
|
title?: string | null | undefined;
|
|
@@ -888,10 +888,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
888
888
|
tags: string[];
|
|
889
889
|
version_id: string;
|
|
890
890
|
last_modified_date: Date;
|
|
891
|
-
summary?: string | undefined;
|
|
892
891
|
preview_image?: string | undefined;
|
|
893
892
|
uid?: string | undefined;
|
|
894
893
|
custom_type_id?: string | undefined;
|
|
894
|
+
summary?: string | undefined;
|
|
895
895
|
author_ids?: string[] | undefined;
|
|
896
896
|
})[];
|
|
897
897
|
}, {
|
|
@@ -911,10 +911,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
911
911
|
tags: string[];
|
|
912
912
|
version_id: string;
|
|
913
913
|
last_modified_date: Date;
|
|
914
|
-
summary?: string | undefined;
|
|
915
914
|
preview_image?: string | undefined;
|
|
916
915
|
uid?: string | undefined;
|
|
917
916
|
custom_type_id?: string | undefined;
|
|
917
|
+
summary?: string | undefined;
|
|
918
918
|
author_ids?: string[] | undefined;
|
|
919
919
|
})[];
|
|
920
920
|
title?: string | null | undefined;
|
|
@@ -940,10 +940,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
940
940
|
tags: string[];
|
|
941
941
|
version_id: string;
|
|
942
942
|
last_modified_date: Date;
|
|
943
|
-
summary?: string | undefined;
|
|
944
943
|
preview_image?: string | undefined;
|
|
945
944
|
uid?: string | undefined;
|
|
946
945
|
custom_type_id?: string | undefined;
|
|
946
|
+
summary?: string | undefined;
|
|
947
947
|
author_ids?: string[] | undefined;
|
|
948
948
|
})[];
|
|
949
949
|
}[];
|
|
@@ -965,10 +965,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
965
965
|
tags: string[];
|
|
966
966
|
version_id: string;
|
|
967
967
|
last_modified_date: Date;
|
|
968
|
-
summary?: string | undefined;
|
|
969
968
|
preview_image?: string | undefined;
|
|
970
969
|
uid?: string | undefined;
|
|
971
970
|
custom_type_id?: string | undefined;
|
|
971
|
+
summary?: string | undefined;
|
|
972
972
|
author_ids?: string[] | undefined;
|
|
973
973
|
})[];
|
|
974
974
|
title?: string | null | undefined;
|
|
@@ -1151,6 +1151,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1151
1151
|
kind: "image";
|
|
1152
1152
|
}) & {
|
|
1153
1153
|
text?: string | undefined;
|
|
1154
|
+
variant?: string | undefined;
|
|
1154
1155
|
})) | ({
|
|
1155
1156
|
__TYPE__: "FileLink";
|
|
1156
1157
|
} & ((({
|
|
@@ -1165,6 +1166,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1165
1166
|
kind: "file";
|
|
1166
1167
|
}) & {
|
|
1167
1168
|
text?: string | undefined;
|
|
1169
|
+
variant?: string | undefined;
|
|
1168
1170
|
})) | ({
|
|
1169
1171
|
__TYPE__: "DocumentLink";
|
|
1170
1172
|
} & (({
|
|
@@ -1173,6 +1175,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1173
1175
|
kind: "document";
|
|
1174
1176
|
}) & {
|
|
1175
1177
|
text?: string | undefined;
|
|
1178
|
+
variant?: string | undefined;
|
|
1176
1179
|
})) | ({
|
|
1177
1180
|
__TYPE__: "ExternalLink";
|
|
1178
1181
|
} & ((({
|
|
@@ -1187,18 +1190,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1187
1190
|
kind: "web";
|
|
1188
1191
|
}) & {
|
|
1189
1192
|
text?: string | undefined;
|
|
1193
|
+
variant?: string | undefined;
|
|
1190
1194
|
})) | ({
|
|
1191
1195
|
__TYPE__: "MediaLink";
|
|
1192
1196
|
} & {
|
|
1193
1197
|
kind: "media";
|
|
1194
1198
|
} & {
|
|
1195
1199
|
text?: string | undefined;
|
|
1200
|
+
variant?: string | undefined;
|
|
1196
1201
|
}) | ({
|
|
1197
1202
|
__TYPE__: "AnyLink";
|
|
1198
1203
|
} & {
|
|
1199
1204
|
kind: "any";
|
|
1200
1205
|
} & {
|
|
1201
1206
|
text?: string | undefined;
|
|
1207
|
+
variant?: string | undefined;
|
|
1202
1208
|
});
|
|
1203
1209
|
}) | {
|
|
1204
1210
|
__TYPE__: "StructuredTextContent";
|
|
@@ -1293,7 +1299,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1293
1299
|
label?: string | null | undefined;
|
|
1294
1300
|
direction?: string | null | undefined;
|
|
1295
1301
|
}) | ({
|
|
1296
|
-
type: "image" | "
|
|
1302
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1297
1303
|
content: {
|
|
1298
1304
|
text: string;
|
|
1299
1305
|
} & {
|
|
@@ -1346,7 +1352,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1346
1352
|
} | {
|
|
1347
1353
|
start: number;
|
|
1348
1354
|
end: number;
|
|
1349
|
-
type: "
|
|
1355
|
+
type: "strong" | "em" | "list-item";
|
|
1350
1356
|
})[] | undefined;
|
|
1351
1357
|
};
|
|
1352
1358
|
} & {
|
|
@@ -1378,6 +1384,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1378
1384
|
kind: "image";
|
|
1379
1385
|
}) & {
|
|
1380
1386
|
text?: string | undefined;
|
|
1387
|
+
variant?: string | undefined;
|
|
1381
1388
|
})) | ({
|
|
1382
1389
|
__TYPE__: "FileLink";
|
|
1383
1390
|
} & ((({
|
|
@@ -1392,6 +1399,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1392
1399
|
kind: "file";
|
|
1393
1400
|
}) & {
|
|
1394
1401
|
text?: string | undefined;
|
|
1402
|
+
variant?: string | undefined;
|
|
1395
1403
|
})) | ({
|
|
1396
1404
|
__TYPE__: "DocumentLink";
|
|
1397
1405
|
} & (({
|
|
@@ -1400,6 +1408,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1400
1408
|
kind: "document";
|
|
1401
1409
|
}) & {
|
|
1402
1410
|
text?: string | undefined;
|
|
1411
|
+
variant?: string | undefined;
|
|
1403
1412
|
})) | ({
|
|
1404
1413
|
__TYPE__: "ExternalLink";
|
|
1405
1414
|
} & ((({
|
|
@@ -1414,18 +1423,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1414
1423
|
kind: "web";
|
|
1415
1424
|
}) & {
|
|
1416
1425
|
text?: string | undefined;
|
|
1426
|
+
variant?: string | undefined;
|
|
1417
1427
|
})) | ({
|
|
1418
1428
|
__TYPE__: "MediaLink";
|
|
1419
1429
|
} & {
|
|
1420
1430
|
kind: "media";
|
|
1421
1431
|
} & {
|
|
1422
1432
|
text?: string | undefined;
|
|
1433
|
+
variant?: string | undefined;
|
|
1423
1434
|
}) | ({
|
|
1424
1435
|
__TYPE__: "AnyLink";
|
|
1425
1436
|
} & {
|
|
1426
1437
|
kind: "any";
|
|
1427
1438
|
} & {
|
|
1428
1439
|
text?: string | undefined;
|
|
1440
|
+
variant?: string | undefined;
|
|
1429
1441
|
});
|
|
1430
1442
|
})[];
|
|
1431
1443
|
} | {
|
|
@@ -1572,6 +1584,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1572
1584
|
kind: "image";
|
|
1573
1585
|
}) & {
|
|
1574
1586
|
text?: string | undefined;
|
|
1587
|
+
variant?: string | undefined;
|
|
1575
1588
|
})) | ({
|
|
1576
1589
|
__TYPE__: "FileLink";
|
|
1577
1590
|
} & ((({
|
|
@@ -1586,6 +1599,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1586
1599
|
kind: "file";
|
|
1587
1600
|
}) & {
|
|
1588
1601
|
text?: string | undefined;
|
|
1602
|
+
variant?: string | undefined;
|
|
1589
1603
|
})) | ({
|
|
1590
1604
|
__TYPE__: "DocumentLink";
|
|
1591
1605
|
} & (({
|
|
@@ -1594,6 +1608,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1594
1608
|
kind: "document";
|
|
1595
1609
|
}) & {
|
|
1596
1610
|
text?: string | undefined;
|
|
1611
|
+
variant?: string | undefined;
|
|
1597
1612
|
})) | ({
|
|
1598
1613
|
__TYPE__: "ExternalLink";
|
|
1599
1614
|
} & ((({
|
|
@@ -1608,18 +1623,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1608
1623
|
kind: "web";
|
|
1609
1624
|
}) & {
|
|
1610
1625
|
text?: string | undefined;
|
|
1626
|
+
variant?: string | undefined;
|
|
1611
1627
|
})) | ({
|
|
1612
1628
|
__TYPE__: "MediaLink";
|
|
1613
1629
|
} & {
|
|
1614
1630
|
kind: "media";
|
|
1615
1631
|
} & {
|
|
1616
1632
|
text?: string | undefined;
|
|
1633
|
+
variant?: string | undefined;
|
|
1617
1634
|
}) | ({
|
|
1618
1635
|
__TYPE__: "AnyLink";
|
|
1619
1636
|
} & {
|
|
1620
1637
|
kind: "any";
|
|
1621
1638
|
} & {
|
|
1622
1639
|
text?: string | undefined;
|
|
1640
|
+
variant?: string | undefined;
|
|
1623
1641
|
});
|
|
1624
1642
|
}) | {
|
|
1625
1643
|
__TYPE__: "StructuredTextContent";
|
|
@@ -1714,7 +1732,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1714
1732
|
label?: string | null | undefined;
|
|
1715
1733
|
direction?: string | null | undefined;
|
|
1716
1734
|
}) | ({
|
|
1717
|
-
type: "image" | "
|
|
1735
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1718
1736
|
content: {
|
|
1719
1737
|
text: string;
|
|
1720
1738
|
} & {
|
|
@@ -1767,7 +1785,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1767
1785
|
} | {
|
|
1768
1786
|
start: number;
|
|
1769
1787
|
end: number;
|
|
1770
|
-
type: "
|
|
1788
|
+
type: "strong" | "em" | "list-item";
|
|
1771
1789
|
})[] | undefined;
|
|
1772
1790
|
};
|
|
1773
1791
|
} & {
|
|
@@ -1799,6 +1817,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1799
1817
|
kind: "image";
|
|
1800
1818
|
}) & {
|
|
1801
1819
|
text?: string | undefined;
|
|
1820
|
+
variant?: string | undefined;
|
|
1802
1821
|
})) | ({
|
|
1803
1822
|
__TYPE__: "FileLink";
|
|
1804
1823
|
} & ((({
|
|
@@ -1813,6 +1832,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1813
1832
|
kind: "file";
|
|
1814
1833
|
}) & {
|
|
1815
1834
|
text?: string | undefined;
|
|
1835
|
+
variant?: string | undefined;
|
|
1816
1836
|
})) | ({
|
|
1817
1837
|
__TYPE__: "DocumentLink";
|
|
1818
1838
|
} & (({
|
|
@@ -1821,6 +1841,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1821
1841
|
kind: "document";
|
|
1822
1842
|
}) & {
|
|
1823
1843
|
text?: string | undefined;
|
|
1844
|
+
variant?: string | undefined;
|
|
1824
1845
|
})) | ({
|
|
1825
1846
|
__TYPE__: "ExternalLink";
|
|
1826
1847
|
} & ((({
|
|
@@ -1835,18 +1856,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1835
1856
|
kind: "web";
|
|
1836
1857
|
}) & {
|
|
1837
1858
|
text?: string | undefined;
|
|
1859
|
+
variant?: string | undefined;
|
|
1838
1860
|
})) | ({
|
|
1839
1861
|
__TYPE__: "MediaLink";
|
|
1840
1862
|
} & {
|
|
1841
1863
|
kind: "media";
|
|
1842
1864
|
} & {
|
|
1843
1865
|
text?: string | undefined;
|
|
1866
|
+
variant?: string | undefined;
|
|
1844
1867
|
}) | ({
|
|
1845
1868
|
__TYPE__: "AnyLink";
|
|
1846
1869
|
} & {
|
|
1847
1870
|
kind: "any";
|
|
1848
1871
|
} & {
|
|
1849
1872
|
text?: string | undefined;
|
|
1873
|
+
variant?: string | undefined;
|
|
1850
1874
|
});
|
|
1851
1875
|
})[];
|
|
1852
1876
|
};
|
|
@@ -1985,6 +2009,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1985
2009
|
kind: "image";
|
|
1986
2010
|
}) & {
|
|
1987
2011
|
text?: string | undefined;
|
|
2012
|
+
variant?: string | undefined;
|
|
1988
2013
|
})) | ({
|
|
1989
2014
|
__TYPE__: "FileLink";
|
|
1990
2015
|
} & ((({
|
|
@@ -1999,6 +2024,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1999
2024
|
kind: "file";
|
|
2000
2025
|
}) & {
|
|
2001
2026
|
text?: string | undefined;
|
|
2027
|
+
variant?: string | undefined;
|
|
2002
2028
|
})) | ({
|
|
2003
2029
|
__TYPE__: "DocumentLink";
|
|
2004
2030
|
} & (({
|
|
@@ -2007,6 +2033,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2007
2033
|
kind: "document";
|
|
2008
2034
|
}) & {
|
|
2009
2035
|
text?: string | undefined;
|
|
2036
|
+
variant?: string | undefined;
|
|
2010
2037
|
})) | ({
|
|
2011
2038
|
__TYPE__: "ExternalLink";
|
|
2012
2039
|
} & ((({
|
|
@@ -2021,18 +2048,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2021
2048
|
kind: "web";
|
|
2022
2049
|
}) & {
|
|
2023
2050
|
text?: string | undefined;
|
|
2051
|
+
variant?: string | undefined;
|
|
2024
2052
|
})) | ({
|
|
2025
2053
|
__TYPE__: "MediaLink";
|
|
2026
2054
|
} & {
|
|
2027
2055
|
kind: "media";
|
|
2028
2056
|
} & {
|
|
2029
2057
|
text?: string | undefined;
|
|
2058
|
+
variant?: string | undefined;
|
|
2030
2059
|
}) | ({
|
|
2031
2060
|
__TYPE__: "AnyLink";
|
|
2032
2061
|
} & {
|
|
2033
2062
|
kind: "any";
|
|
2034
2063
|
} & {
|
|
2035
2064
|
text?: string | undefined;
|
|
2065
|
+
variant?: string | undefined;
|
|
2036
2066
|
});
|
|
2037
2067
|
}) | {
|
|
2038
2068
|
__TYPE__: "StructuredTextContent";
|
|
@@ -2127,7 +2157,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2127
2157
|
label?: string | null | undefined;
|
|
2128
2158
|
direction?: string | null | undefined;
|
|
2129
2159
|
}) | ({
|
|
2130
|
-
type: "image" | "
|
|
2160
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2131
2161
|
content: {
|
|
2132
2162
|
text: string;
|
|
2133
2163
|
} & {
|
|
@@ -2180,7 +2210,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2180
2210
|
} | {
|
|
2181
2211
|
start: number;
|
|
2182
2212
|
end: number;
|
|
2183
|
-
type: "
|
|
2213
|
+
type: "strong" | "em" | "list-item";
|
|
2184
2214
|
})[] | undefined;
|
|
2185
2215
|
};
|
|
2186
2216
|
} & {
|
|
@@ -2212,6 +2242,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2212
2242
|
kind: "image";
|
|
2213
2243
|
}) & {
|
|
2214
2244
|
text?: string | undefined;
|
|
2245
|
+
variant?: string | undefined;
|
|
2215
2246
|
})) | ({
|
|
2216
2247
|
__TYPE__: "FileLink";
|
|
2217
2248
|
} & ((({
|
|
@@ -2226,6 +2257,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2226
2257
|
kind: "file";
|
|
2227
2258
|
}) & {
|
|
2228
2259
|
text?: string | undefined;
|
|
2260
|
+
variant?: string | undefined;
|
|
2229
2261
|
})) | ({
|
|
2230
2262
|
__TYPE__: "DocumentLink";
|
|
2231
2263
|
} & (({
|
|
@@ -2234,6 +2266,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2234
2266
|
kind: "document";
|
|
2235
2267
|
}) & {
|
|
2236
2268
|
text?: string | undefined;
|
|
2269
|
+
variant?: string | undefined;
|
|
2237
2270
|
})) | ({
|
|
2238
2271
|
__TYPE__: "ExternalLink";
|
|
2239
2272
|
} & ((({
|
|
@@ -2248,18 +2281,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2248
2281
|
kind: "web";
|
|
2249
2282
|
}) & {
|
|
2250
2283
|
text?: string | undefined;
|
|
2284
|
+
variant?: string | undefined;
|
|
2251
2285
|
})) | ({
|
|
2252
2286
|
__TYPE__: "MediaLink";
|
|
2253
2287
|
} & {
|
|
2254
2288
|
kind: "media";
|
|
2255
2289
|
} & {
|
|
2256
2290
|
text?: string | undefined;
|
|
2291
|
+
variant?: string | undefined;
|
|
2257
2292
|
}) | ({
|
|
2258
2293
|
__TYPE__: "AnyLink";
|
|
2259
2294
|
} & {
|
|
2260
2295
|
kind: "any";
|
|
2261
2296
|
} & {
|
|
2262
2297
|
text?: string | undefined;
|
|
2298
|
+
variant?: string | undefined;
|
|
2263
2299
|
});
|
|
2264
2300
|
})[];
|
|
2265
2301
|
}][];
|
|
@@ -2400,6 +2436,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2400
2436
|
kind: "image";
|
|
2401
2437
|
}) & {
|
|
2402
2438
|
text?: string | undefined;
|
|
2439
|
+
variant?: string | undefined;
|
|
2403
2440
|
})) | ({
|
|
2404
2441
|
__TYPE__: "FileLink";
|
|
2405
2442
|
} & ((({
|
|
@@ -2414,6 +2451,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2414
2451
|
kind: "file";
|
|
2415
2452
|
}) & {
|
|
2416
2453
|
text?: string | undefined;
|
|
2454
|
+
variant?: string | undefined;
|
|
2417
2455
|
})) | ({
|
|
2418
2456
|
__TYPE__: "DocumentLink";
|
|
2419
2457
|
} & (({
|
|
@@ -2422,6 +2460,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2422
2460
|
kind: "document";
|
|
2423
2461
|
}) & {
|
|
2424
2462
|
text?: string | undefined;
|
|
2463
|
+
variant?: string | undefined;
|
|
2425
2464
|
})) | ({
|
|
2426
2465
|
__TYPE__: "ExternalLink";
|
|
2427
2466
|
} & ((({
|
|
@@ -2436,18 +2475,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2436
2475
|
kind: "web";
|
|
2437
2476
|
}) & {
|
|
2438
2477
|
text?: string | undefined;
|
|
2478
|
+
variant?: string | undefined;
|
|
2439
2479
|
})) | ({
|
|
2440
2480
|
__TYPE__: "MediaLink";
|
|
2441
2481
|
} & {
|
|
2442
2482
|
kind: "media";
|
|
2443
2483
|
} & {
|
|
2444
2484
|
text?: string | undefined;
|
|
2485
|
+
variant?: string | undefined;
|
|
2445
2486
|
}) | ({
|
|
2446
2487
|
__TYPE__: "AnyLink";
|
|
2447
2488
|
} & {
|
|
2448
2489
|
kind: "any";
|
|
2449
2490
|
} & {
|
|
2450
2491
|
text?: string | undefined;
|
|
2492
|
+
variant?: string | undefined;
|
|
2451
2493
|
});
|
|
2452
2494
|
}) | {
|
|
2453
2495
|
__TYPE__: "StructuredTextContent";
|
|
@@ -2542,7 +2584,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2542
2584
|
label?: string | null | undefined;
|
|
2543
2585
|
direction?: string | null | undefined;
|
|
2544
2586
|
}) | ({
|
|
2545
|
-
type: "image" | "
|
|
2587
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2546
2588
|
content: {
|
|
2547
2589
|
text: string;
|
|
2548
2590
|
} & {
|
|
@@ -2595,7 +2637,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2595
2637
|
} | {
|
|
2596
2638
|
start: number;
|
|
2597
2639
|
end: number;
|
|
2598
|
-
type: "
|
|
2640
|
+
type: "strong" | "em" | "list-item";
|
|
2599
2641
|
})[] | undefined;
|
|
2600
2642
|
};
|
|
2601
2643
|
} & {
|
|
@@ -2627,6 +2669,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2627
2669
|
kind: "image";
|
|
2628
2670
|
}) & {
|
|
2629
2671
|
text?: string | undefined;
|
|
2672
|
+
variant?: string | undefined;
|
|
2630
2673
|
})) | ({
|
|
2631
2674
|
__TYPE__: "FileLink";
|
|
2632
2675
|
} & ((({
|
|
@@ -2641,6 +2684,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2641
2684
|
kind: "file";
|
|
2642
2685
|
}) & {
|
|
2643
2686
|
text?: string | undefined;
|
|
2687
|
+
variant?: string | undefined;
|
|
2644
2688
|
})) | ({
|
|
2645
2689
|
__TYPE__: "DocumentLink";
|
|
2646
2690
|
} & (({
|
|
@@ -2649,6 +2693,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2649
2693
|
kind: "document";
|
|
2650
2694
|
}) & {
|
|
2651
2695
|
text?: string | undefined;
|
|
2696
|
+
variant?: string | undefined;
|
|
2652
2697
|
})) | ({
|
|
2653
2698
|
__TYPE__: "ExternalLink";
|
|
2654
2699
|
} & ((({
|
|
@@ -2663,18 +2708,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2663
2708
|
kind: "web";
|
|
2664
2709
|
}) & {
|
|
2665
2710
|
text?: string | undefined;
|
|
2711
|
+
variant?: string | undefined;
|
|
2666
2712
|
})) | ({
|
|
2667
2713
|
__TYPE__: "MediaLink";
|
|
2668
2714
|
} & {
|
|
2669
2715
|
kind: "media";
|
|
2670
2716
|
} & {
|
|
2671
2717
|
text?: string | undefined;
|
|
2718
|
+
variant?: string | undefined;
|
|
2672
2719
|
}) | ({
|
|
2673
2720
|
__TYPE__: "AnyLink";
|
|
2674
2721
|
} & {
|
|
2675
2722
|
kind: "any";
|
|
2676
2723
|
} & {
|
|
2677
2724
|
text?: string | undefined;
|
|
2725
|
+
variant?: string | undefined;
|
|
2678
2726
|
});
|
|
2679
2727
|
})[];
|
|
2680
2728
|
};
|
|
@@ -2813,6 +2861,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2813
2861
|
kind: "image";
|
|
2814
2862
|
}) & {
|
|
2815
2863
|
text?: string | undefined;
|
|
2864
|
+
variant?: string | undefined;
|
|
2816
2865
|
})) | ({
|
|
2817
2866
|
__TYPE__: "FileLink";
|
|
2818
2867
|
} & ((({
|
|
@@ -2827,6 +2876,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2827
2876
|
kind: "file";
|
|
2828
2877
|
}) & {
|
|
2829
2878
|
text?: string | undefined;
|
|
2879
|
+
variant?: string | undefined;
|
|
2830
2880
|
})) | ({
|
|
2831
2881
|
__TYPE__: "DocumentLink";
|
|
2832
2882
|
} & (({
|
|
@@ -2835,6 +2885,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2835
2885
|
kind: "document";
|
|
2836
2886
|
}) & {
|
|
2837
2887
|
text?: string | undefined;
|
|
2888
|
+
variant?: string | undefined;
|
|
2838
2889
|
})) | ({
|
|
2839
2890
|
__TYPE__: "ExternalLink";
|
|
2840
2891
|
} & ((({
|
|
@@ -2849,18 +2900,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2849
2900
|
kind: "web";
|
|
2850
2901
|
}) & {
|
|
2851
2902
|
text?: string | undefined;
|
|
2903
|
+
variant?: string | undefined;
|
|
2852
2904
|
})) | ({
|
|
2853
2905
|
__TYPE__: "MediaLink";
|
|
2854
2906
|
} & {
|
|
2855
2907
|
kind: "media";
|
|
2856
2908
|
} & {
|
|
2857
2909
|
text?: string | undefined;
|
|
2910
|
+
variant?: string | undefined;
|
|
2858
2911
|
}) | ({
|
|
2859
2912
|
__TYPE__: "AnyLink";
|
|
2860
2913
|
} & {
|
|
2861
2914
|
kind: "any";
|
|
2862
2915
|
} & {
|
|
2863
2916
|
text?: string | undefined;
|
|
2917
|
+
variant?: string | undefined;
|
|
2864
2918
|
});
|
|
2865
2919
|
}) | {
|
|
2866
2920
|
__TYPE__: "StructuredTextContent";
|
|
@@ -2955,7 +3009,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2955
3009
|
label?: string | null | undefined;
|
|
2956
3010
|
direction?: string | null | undefined;
|
|
2957
3011
|
}) | ({
|
|
2958
|
-
type: "image" | "
|
|
3012
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2959
3013
|
content: {
|
|
2960
3014
|
text: string;
|
|
2961
3015
|
} & {
|
|
@@ -3008,7 +3062,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3008
3062
|
} | {
|
|
3009
3063
|
start: number;
|
|
3010
3064
|
end: number;
|
|
3011
|
-
type: "
|
|
3065
|
+
type: "strong" | "em" | "list-item";
|
|
3012
3066
|
})[] | undefined;
|
|
3013
3067
|
};
|
|
3014
3068
|
} & {
|
|
@@ -3040,6 +3094,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3040
3094
|
kind: "image";
|
|
3041
3095
|
}) & {
|
|
3042
3096
|
text?: string | undefined;
|
|
3097
|
+
variant?: string | undefined;
|
|
3043
3098
|
})) | ({
|
|
3044
3099
|
__TYPE__: "FileLink";
|
|
3045
3100
|
} & ((({
|
|
@@ -3054,6 +3109,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3054
3109
|
kind: "file";
|
|
3055
3110
|
}) & {
|
|
3056
3111
|
text?: string | undefined;
|
|
3112
|
+
variant?: string | undefined;
|
|
3057
3113
|
})) | ({
|
|
3058
3114
|
__TYPE__: "DocumentLink";
|
|
3059
3115
|
} & (({
|
|
@@ -3062,6 +3118,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3062
3118
|
kind: "document";
|
|
3063
3119
|
}) & {
|
|
3064
3120
|
text?: string | undefined;
|
|
3121
|
+
variant?: string | undefined;
|
|
3065
3122
|
})) | ({
|
|
3066
3123
|
__TYPE__: "ExternalLink";
|
|
3067
3124
|
} & ((({
|
|
@@ -3076,18 +3133,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3076
3133
|
kind: "web";
|
|
3077
3134
|
}) & {
|
|
3078
3135
|
text?: string | undefined;
|
|
3136
|
+
variant?: string | undefined;
|
|
3079
3137
|
})) | ({
|
|
3080
3138
|
__TYPE__: "MediaLink";
|
|
3081
3139
|
} & {
|
|
3082
3140
|
kind: "media";
|
|
3083
3141
|
} & {
|
|
3084
3142
|
text?: string | undefined;
|
|
3143
|
+
variant?: string | undefined;
|
|
3085
3144
|
}) | ({
|
|
3086
3145
|
__TYPE__: "AnyLink";
|
|
3087
3146
|
} & {
|
|
3088
3147
|
kind: "any";
|
|
3089
3148
|
} & {
|
|
3090
3149
|
text?: string | undefined;
|
|
3150
|
+
variant?: string | undefined;
|
|
3091
3151
|
});
|
|
3092
3152
|
})[];
|
|
3093
3153
|
}][];
|
|
@@ -3224,6 +3284,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3224
3284
|
kind: "image";
|
|
3225
3285
|
}) & {
|
|
3226
3286
|
text?: string | undefined;
|
|
3287
|
+
variant?: string | undefined;
|
|
3227
3288
|
})) | ({
|
|
3228
3289
|
__TYPE__: "FileLink";
|
|
3229
3290
|
} & ((({
|
|
@@ -3238,6 +3299,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3238
3299
|
kind: "file";
|
|
3239
3300
|
}) & {
|
|
3240
3301
|
text?: string | undefined;
|
|
3302
|
+
variant?: string | undefined;
|
|
3241
3303
|
})) | ({
|
|
3242
3304
|
__TYPE__: "DocumentLink";
|
|
3243
3305
|
} & (({
|
|
@@ -3246,6 +3308,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3246
3308
|
kind: "document";
|
|
3247
3309
|
}) & {
|
|
3248
3310
|
text?: string | undefined;
|
|
3311
|
+
variant?: string | undefined;
|
|
3249
3312
|
})) | ({
|
|
3250
3313
|
__TYPE__: "ExternalLink";
|
|
3251
3314
|
} & ((({
|
|
@@ -3260,18 +3323,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3260
3323
|
kind: "web";
|
|
3261
3324
|
}) & {
|
|
3262
3325
|
text?: string | undefined;
|
|
3326
|
+
variant?: string | undefined;
|
|
3263
3327
|
})) | ({
|
|
3264
3328
|
__TYPE__: "MediaLink";
|
|
3265
3329
|
} & {
|
|
3266
3330
|
kind: "media";
|
|
3267
3331
|
} & {
|
|
3268
3332
|
text?: string | undefined;
|
|
3333
|
+
variant?: string | undefined;
|
|
3269
3334
|
}) | ({
|
|
3270
3335
|
__TYPE__: "AnyLink";
|
|
3271
3336
|
} & {
|
|
3272
3337
|
kind: "any";
|
|
3273
3338
|
} & {
|
|
3274
3339
|
text?: string | undefined;
|
|
3340
|
+
variant?: string | undefined;
|
|
3275
3341
|
});
|
|
3276
3342
|
}) | {
|
|
3277
3343
|
__TYPE__: "StructuredTextContent";
|
|
@@ -3366,7 +3432,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3366
3432
|
label?: string | null | undefined;
|
|
3367
3433
|
direction?: string | null | undefined;
|
|
3368
3434
|
}) | ({
|
|
3369
|
-
type: "image" | "
|
|
3435
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3370
3436
|
content: {
|
|
3371
3437
|
text: string;
|
|
3372
3438
|
} & {
|
|
@@ -3419,7 +3485,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3419
3485
|
} | {
|
|
3420
3486
|
start: number;
|
|
3421
3487
|
end: number;
|
|
3422
|
-
type: "
|
|
3488
|
+
type: "strong" | "em" | "list-item";
|
|
3423
3489
|
})[] | undefined;
|
|
3424
3490
|
};
|
|
3425
3491
|
} & {
|
|
@@ -3451,6 +3517,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3451
3517
|
kind: "image";
|
|
3452
3518
|
}) & {
|
|
3453
3519
|
text?: string | undefined;
|
|
3520
|
+
variant?: string | undefined;
|
|
3454
3521
|
})) | ({
|
|
3455
3522
|
__TYPE__: "FileLink";
|
|
3456
3523
|
} & ((({
|
|
@@ -3465,6 +3532,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3465
3532
|
kind: "file";
|
|
3466
3533
|
}) & {
|
|
3467
3534
|
text?: string | undefined;
|
|
3535
|
+
variant?: string | undefined;
|
|
3468
3536
|
})) | ({
|
|
3469
3537
|
__TYPE__: "DocumentLink";
|
|
3470
3538
|
} & (({
|
|
@@ -3473,6 +3541,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3473
3541
|
kind: "document";
|
|
3474
3542
|
}) & {
|
|
3475
3543
|
text?: string | undefined;
|
|
3544
|
+
variant?: string | undefined;
|
|
3476
3545
|
})) | ({
|
|
3477
3546
|
__TYPE__: "ExternalLink";
|
|
3478
3547
|
} & ((({
|
|
@@ -3487,18 +3556,21 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3487
3556
|
kind: "web";
|
|
3488
3557
|
}) & {
|
|
3489
3558
|
text?: string | undefined;
|
|
3559
|
+
variant?: string | undefined;
|
|
3490
3560
|
})) | ({
|
|
3491
3561
|
__TYPE__: "MediaLink";
|
|
3492
3562
|
} & {
|
|
3493
3563
|
kind: "media";
|
|
3494
3564
|
} & {
|
|
3495
3565
|
text?: string | undefined;
|
|
3566
|
+
variant?: string | undefined;
|
|
3496
3567
|
}) | ({
|
|
3497
3568
|
__TYPE__: "AnyLink";
|
|
3498
3569
|
} & {
|
|
3499
3570
|
kind: "any";
|
|
3500
3571
|
} & {
|
|
3501
3572
|
text?: string | undefined;
|
|
3573
|
+
variant?: string | undefined;
|
|
3502
3574
|
});
|
|
3503
3575
|
})[];
|
|
3504
3576
|
};
|
|
@@ -3646,6 +3718,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3646
3718
|
kind: "image";
|
|
3647
3719
|
}) & {
|
|
3648
3720
|
text?: string | undefined;
|
|
3721
|
+
variant?: string | undefined;
|
|
3649
3722
|
})) | ({
|
|
3650
3723
|
__TYPE__: "FileLink";
|
|
3651
3724
|
} & ((({
|
|
@@ -3660,6 +3733,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3660
3733
|
kind: "file";
|
|
3661
3734
|
}) & {
|
|
3662
3735
|
text?: string | undefined;
|
|
3736
|
+
variant?: string | undefined;
|
|
3663
3737
|
})) | ({
|
|
3664
3738
|
__TYPE__: "DocumentLink";
|
|
3665
3739
|
} & (({
|
|
@@ -3668,6 +3742,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3668
3742
|
kind: "document";
|
|
3669
3743
|
}) & {
|
|
3670
3744
|
text?: string | undefined;
|
|
3745
|
+
variant?: string | undefined;
|
|
3671
3746
|
})) | ({
|
|
3672
3747
|
__TYPE__: "ExternalLink";
|
|
3673
3748
|
} & ((({
|
|
@@ -3682,18 +3757,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3682
3757
|
kind: "web";
|
|
3683
3758
|
}) & {
|
|
3684
3759
|
text?: string | undefined;
|
|
3760
|
+
variant?: string | undefined;
|
|
3685
3761
|
})) | ({
|
|
3686
3762
|
__TYPE__: "MediaLink";
|
|
3687
3763
|
} & {
|
|
3688
3764
|
kind: "media";
|
|
3689
3765
|
} & {
|
|
3690
3766
|
text?: string | undefined;
|
|
3767
|
+
variant?: string | undefined;
|
|
3691
3768
|
}) | ({
|
|
3692
3769
|
__TYPE__: "AnyLink";
|
|
3693
3770
|
} & {
|
|
3694
3771
|
kind: "any";
|
|
3695
3772
|
} & {
|
|
3696
3773
|
text?: string | undefined;
|
|
3774
|
+
variant?: string | undefined;
|
|
3697
3775
|
});
|
|
3698
3776
|
}) | {
|
|
3699
3777
|
__TYPE__: "StructuredTextContent";
|
|
@@ -3788,7 +3866,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3788
3866
|
label?: string | null | undefined;
|
|
3789
3867
|
direction?: string | null | undefined;
|
|
3790
3868
|
}) | ({
|
|
3791
|
-
type: "image" | "
|
|
3869
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3792
3870
|
content: {
|
|
3793
3871
|
text: string;
|
|
3794
3872
|
} & {
|
|
@@ -3841,7 +3919,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3841
3919
|
} | {
|
|
3842
3920
|
start: number;
|
|
3843
3921
|
end: number;
|
|
3844
|
-
type: "
|
|
3922
|
+
type: "strong" | "em" | "list-item";
|
|
3845
3923
|
})[] | undefined;
|
|
3846
3924
|
};
|
|
3847
3925
|
} & {
|
|
@@ -3873,6 +3951,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3873
3951
|
kind: "image";
|
|
3874
3952
|
}) & {
|
|
3875
3953
|
text?: string | undefined;
|
|
3954
|
+
variant?: string | undefined;
|
|
3876
3955
|
})) | ({
|
|
3877
3956
|
__TYPE__: "FileLink";
|
|
3878
3957
|
} & ((({
|
|
@@ -3887,6 +3966,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3887
3966
|
kind: "file";
|
|
3888
3967
|
}) & {
|
|
3889
3968
|
text?: string | undefined;
|
|
3969
|
+
variant?: string | undefined;
|
|
3890
3970
|
})) | ({
|
|
3891
3971
|
__TYPE__: "DocumentLink";
|
|
3892
3972
|
} & (({
|
|
@@ -3895,6 +3975,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3895
3975
|
kind: "document";
|
|
3896
3976
|
}) & {
|
|
3897
3977
|
text?: string | undefined;
|
|
3978
|
+
variant?: string | undefined;
|
|
3898
3979
|
})) | ({
|
|
3899
3980
|
__TYPE__: "ExternalLink";
|
|
3900
3981
|
} & ((({
|
|
@@ -3909,18 +3990,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3909
3990
|
kind: "web";
|
|
3910
3991
|
}) & {
|
|
3911
3992
|
text?: string | undefined;
|
|
3993
|
+
variant?: string | undefined;
|
|
3912
3994
|
})) | ({
|
|
3913
3995
|
__TYPE__: "MediaLink";
|
|
3914
3996
|
} & {
|
|
3915
3997
|
kind: "media";
|
|
3916
3998
|
} & {
|
|
3917
3999
|
text?: string | undefined;
|
|
4000
|
+
variant?: string | undefined;
|
|
3918
4001
|
}) | ({
|
|
3919
4002
|
__TYPE__: "AnyLink";
|
|
3920
4003
|
} & {
|
|
3921
4004
|
kind: "any";
|
|
3922
4005
|
} & {
|
|
3923
4006
|
text?: string | undefined;
|
|
4007
|
+
variant?: string | undefined;
|
|
3924
4008
|
});
|
|
3925
4009
|
})[];
|
|
3926
4010
|
};
|
|
@@ -4059,6 +4143,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4059
4143
|
kind: "image";
|
|
4060
4144
|
}) & {
|
|
4061
4145
|
text?: string | undefined;
|
|
4146
|
+
variant?: string | undefined;
|
|
4062
4147
|
})) | ({
|
|
4063
4148
|
__TYPE__: "FileLink";
|
|
4064
4149
|
} & ((({
|
|
@@ -4073,6 +4158,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4073
4158
|
kind: "file";
|
|
4074
4159
|
}) & {
|
|
4075
4160
|
text?: string | undefined;
|
|
4161
|
+
variant?: string | undefined;
|
|
4076
4162
|
})) | ({
|
|
4077
4163
|
__TYPE__: "DocumentLink";
|
|
4078
4164
|
} & (({
|
|
@@ -4081,6 +4167,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4081
4167
|
kind: "document";
|
|
4082
4168
|
}) & {
|
|
4083
4169
|
text?: string | undefined;
|
|
4170
|
+
variant?: string | undefined;
|
|
4084
4171
|
})) | ({
|
|
4085
4172
|
__TYPE__: "ExternalLink";
|
|
4086
4173
|
} & ((({
|
|
@@ -4095,18 +4182,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4095
4182
|
kind: "web";
|
|
4096
4183
|
}) & {
|
|
4097
4184
|
text?: string | undefined;
|
|
4185
|
+
variant?: string | undefined;
|
|
4098
4186
|
})) | ({
|
|
4099
4187
|
__TYPE__: "MediaLink";
|
|
4100
4188
|
} & {
|
|
4101
4189
|
kind: "media";
|
|
4102
4190
|
} & {
|
|
4103
4191
|
text?: string | undefined;
|
|
4192
|
+
variant?: string | undefined;
|
|
4104
4193
|
}) | ({
|
|
4105
4194
|
__TYPE__: "AnyLink";
|
|
4106
4195
|
} & {
|
|
4107
4196
|
kind: "any";
|
|
4108
4197
|
} & {
|
|
4109
4198
|
text?: string | undefined;
|
|
4199
|
+
variant?: string | undefined;
|
|
4110
4200
|
});
|
|
4111
4201
|
}) | {
|
|
4112
4202
|
__TYPE__: "StructuredTextContent";
|
|
@@ -4201,7 +4291,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4201
4291
|
label?: string | null | undefined;
|
|
4202
4292
|
direction?: string | null | undefined;
|
|
4203
4293
|
}) | ({
|
|
4204
|
-
type: "image" | "
|
|
4294
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4205
4295
|
content: {
|
|
4206
4296
|
text: string;
|
|
4207
4297
|
} & {
|
|
@@ -4254,7 +4344,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4254
4344
|
} | {
|
|
4255
4345
|
start: number;
|
|
4256
4346
|
end: number;
|
|
4257
|
-
type: "
|
|
4347
|
+
type: "strong" | "em" | "list-item";
|
|
4258
4348
|
})[] | undefined;
|
|
4259
4349
|
};
|
|
4260
4350
|
} & {
|
|
@@ -4286,6 +4376,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4286
4376
|
kind: "image";
|
|
4287
4377
|
}) & {
|
|
4288
4378
|
text?: string | undefined;
|
|
4379
|
+
variant?: string | undefined;
|
|
4289
4380
|
})) | ({
|
|
4290
4381
|
__TYPE__: "FileLink";
|
|
4291
4382
|
} & ((({
|
|
@@ -4300,6 +4391,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4300
4391
|
kind: "file";
|
|
4301
4392
|
}) & {
|
|
4302
4393
|
text?: string | undefined;
|
|
4394
|
+
variant?: string | undefined;
|
|
4303
4395
|
})) | ({
|
|
4304
4396
|
__TYPE__: "DocumentLink";
|
|
4305
4397
|
} & (({
|
|
@@ -4308,6 +4400,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4308
4400
|
kind: "document";
|
|
4309
4401
|
}) & {
|
|
4310
4402
|
text?: string | undefined;
|
|
4403
|
+
variant?: string | undefined;
|
|
4311
4404
|
})) | ({
|
|
4312
4405
|
__TYPE__: "ExternalLink";
|
|
4313
4406
|
} & ((({
|
|
@@ -4322,18 +4415,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4322
4415
|
kind: "web";
|
|
4323
4416
|
}) & {
|
|
4324
4417
|
text?: string | undefined;
|
|
4418
|
+
variant?: string | undefined;
|
|
4325
4419
|
})) | ({
|
|
4326
4420
|
__TYPE__: "MediaLink";
|
|
4327
4421
|
} & {
|
|
4328
4422
|
kind: "media";
|
|
4329
4423
|
} & {
|
|
4330
4424
|
text?: string | undefined;
|
|
4425
|
+
variant?: string | undefined;
|
|
4331
4426
|
}) | ({
|
|
4332
4427
|
__TYPE__: "AnyLink";
|
|
4333
4428
|
} & {
|
|
4334
4429
|
kind: "any";
|
|
4335
4430
|
} & {
|
|
4336
4431
|
text?: string | undefined;
|
|
4432
|
+
variant?: string | undefined;
|
|
4337
4433
|
});
|
|
4338
4434
|
})[];
|
|
4339
4435
|
}][];
|
|
@@ -4474,6 +4570,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4474
4570
|
kind: "image";
|
|
4475
4571
|
}) & {
|
|
4476
4572
|
text?: string | undefined;
|
|
4573
|
+
variant?: string | undefined;
|
|
4477
4574
|
})) | ({
|
|
4478
4575
|
__TYPE__: "FileLink";
|
|
4479
4576
|
} & ((({
|
|
@@ -4488,6 +4585,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4488
4585
|
kind: "file";
|
|
4489
4586
|
}) & {
|
|
4490
4587
|
text?: string | undefined;
|
|
4588
|
+
variant?: string | undefined;
|
|
4491
4589
|
})) | ({
|
|
4492
4590
|
__TYPE__: "DocumentLink";
|
|
4493
4591
|
} & (({
|
|
@@ -4496,6 +4594,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4496
4594
|
kind: "document";
|
|
4497
4595
|
}) & {
|
|
4498
4596
|
text?: string | undefined;
|
|
4597
|
+
variant?: string | undefined;
|
|
4499
4598
|
})) | ({
|
|
4500
4599
|
__TYPE__: "ExternalLink";
|
|
4501
4600
|
} & ((({
|
|
@@ -4510,18 +4609,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4510
4609
|
kind: "web";
|
|
4511
4610
|
}) & {
|
|
4512
4611
|
text?: string | undefined;
|
|
4612
|
+
variant?: string | undefined;
|
|
4513
4613
|
})) | ({
|
|
4514
4614
|
__TYPE__: "MediaLink";
|
|
4515
4615
|
} & {
|
|
4516
4616
|
kind: "media";
|
|
4517
4617
|
} & {
|
|
4518
4618
|
text?: string | undefined;
|
|
4619
|
+
variant?: string | undefined;
|
|
4519
4620
|
}) | ({
|
|
4520
4621
|
__TYPE__: "AnyLink";
|
|
4521
4622
|
} & {
|
|
4522
4623
|
kind: "any";
|
|
4523
4624
|
} & {
|
|
4524
4625
|
text?: string | undefined;
|
|
4626
|
+
variant?: string | undefined;
|
|
4525
4627
|
});
|
|
4526
4628
|
}) | {
|
|
4527
4629
|
__TYPE__: "StructuredTextContent";
|
|
@@ -4616,7 +4718,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4616
4718
|
label?: string | null | undefined;
|
|
4617
4719
|
direction?: string | null | undefined;
|
|
4618
4720
|
}) | ({
|
|
4619
|
-
type: "image" | "
|
|
4721
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4620
4722
|
content: {
|
|
4621
4723
|
text: string;
|
|
4622
4724
|
} & {
|
|
@@ -4669,7 +4771,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4669
4771
|
} | {
|
|
4670
4772
|
start: number;
|
|
4671
4773
|
end: number;
|
|
4672
|
-
type: "
|
|
4774
|
+
type: "strong" | "em" | "list-item";
|
|
4673
4775
|
})[] | undefined;
|
|
4674
4776
|
};
|
|
4675
4777
|
} & {
|
|
@@ -4701,6 +4803,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4701
4803
|
kind: "image";
|
|
4702
4804
|
}) & {
|
|
4703
4805
|
text?: string | undefined;
|
|
4806
|
+
variant?: string | undefined;
|
|
4704
4807
|
})) | ({
|
|
4705
4808
|
__TYPE__: "FileLink";
|
|
4706
4809
|
} & ((({
|
|
@@ -4715,6 +4818,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4715
4818
|
kind: "file";
|
|
4716
4819
|
}) & {
|
|
4717
4820
|
text?: string | undefined;
|
|
4821
|
+
variant?: string | undefined;
|
|
4718
4822
|
})) | ({
|
|
4719
4823
|
__TYPE__: "DocumentLink";
|
|
4720
4824
|
} & (({
|
|
@@ -4723,6 +4827,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4723
4827
|
kind: "document";
|
|
4724
4828
|
}) & {
|
|
4725
4829
|
text?: string | undefined;
|
|
4830
|
+
variant?: string | undefined;
|
|
4726
4831
|
})) | ({
|
|
4727
4832
|
__TYPE__: "ExternalLink";
|
|
4728
4833
|
} & ((({
|
|
@@ -4737,18 +4842,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4737
4842
|
kind: "web";
|
|
4738
4843
|
}) & {
|
|
4739
4844
|
text?: string | undefined;
|
|
4845
|
+
variant?: string | undefined;
|
|
4740
4846
|
})) | ({
|
|
4741
4847
|
__TYPE__: "MediaLink";
|
|
4742
4848
|
} & {
|
|
4743
4849
|
kind: "media";
|
|
4744
4850
|
} & {
|
|
4745
4851
|
text?: string | undefined;
|
|
4852
|
+
variant?: string | undefined;
|
|
4746
4853
|
}) | ({
|
|
4747
4854
|
__TYPE__: "AnyLink";
|
|
4748
4855
|
} & {
|
|
4749
4856
|
kind: "any";
|
|
4750
4857
|
} & {
|
|
4751
4858
|
text?: string | undefined;
|
|
4859
|
+
variant?: string | undefined;
|
|
4752
4860
|
});
|
|
4753
4861
|
})[];
|
|
4754
4862
|
};
|
|
@@ -4887,6 +4995,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4887
4995
|
kind: "image";
|
|
4888
4996
|
}) & {
|
|
4889
4997
|
text?: string | undefined;
|
|
4998
|
+
variant?: string | undefined;
|
|
4890
4999
|
})) | ({
|
|
4891
5000
|
__TYPE__: "FileLink";
|
|
4892
5001
|
} & ((({
|
|
@@ -4901,6 +5010,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4901
5010
|
kind: "file";
|
|
4902
5011
|
}) & {
|
|
4903
5012
|
text?: string | undefined;
|
|
5013
|
+
variant?: string | undefined;
|
|
4904
5014
|
})) | ({
|
|
4905
5015
|
__TYPE__: "DocumentLink";
|
|
4906
5016
|
} & (({
|
|
@@ -4909,6 +5019,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4909
5019
|
kind: "document";
|
|
4910
5020
|
}) & {
|
|
4911
5021
|
text?: string | undefined;
|
|
5022
|
+
variant?: string | undefined;
|
|
4912
5023
|
})) | ({
|
|
4913
5024
|
__TYPE__: "ExternalLink";
|
|
4914
5025
|
} & ((({
|
|
@@ -4923,18 +5034,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4923
5034
|
kind: "web";
|
|
4924
5035
|
}) & {
|
|
4925
5036
|
text?: string | undefined;
|
|
5037
|
+
variant?: string | undefined;
|
|
4926
5038
|
})) | ({
|
|
4927
5039
|
__TYPE__: "MediaLink";
|
|
4928
5040
|
} & {
|
|
4929
5041
|
kind: "media";
|
|
4930
5042
|
} & {
|
|
4931
5043
|
text?: string | undefined;
|
|
5044
|
+
variant?: string | undefined;
|
|
4932
5045
|
}) | ({
|
|
4933
5046
|
__TYPE__: "AnyLink";
|
|
4934
5047
|
} & {
|
|
4935
5048
|
kind: "any";
|
|
4936
5049
|
} & {
|
|
4937
5050
|
text?: string | undefined;
|
|
5051
|
+
variant?: string | undefined;
|
|
4938
5052
|
});
|
|
4939
5053
|
}) | {
|
|
4940
5054
|
__TYPE__: "StructuredTextContent";
|
|
@@ -5029,7 +5143,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5029
5143
|
label?: string | null | undefined;
|
|
5030
5144
|
direction?: string | null | undefined;
|
|
5031
5145
|
}) | ({
|
|
5032
|
-
type: "image" | "
|
|
5146
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5033
5147
|
content: {
|
|
5034
5148
|
text: string;
|
|
5035
5149
|
} & {
|
|
@@ -5082,7 +5196,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5082
5196
|
} | {
|
|
5083
5197
|
start: number;
|
|
5084
5198
|
end: number;
|
|
5085
|
-
type: "
|
|
5199
|
+
type: "strong" | "em" | "list-item";
|
|
5086
5200
|
})[] | undefined;
|
|
5087
5201
|
};
|
|
5088
5202
|
} & {
|
|
@@ -5114,6 +5228,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5114
5228
|
kind: "image";
|
|
5115
5229
|
}) & {
|
|
5116
5230
|
text?: string | undefined;
|
|
5231
|
+
variant?: string | undefined;
|
|
5117
5232
|
})) | ({
|
|
5118
5233
|
__TYPE__: "FileLink";
|
|
5119
5234
|
} & ((({
|
|
@@ -5128,6 +5243,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5128
5243
|
kind: "file";
|
|
5129
5244
|
}) & {
|
|
5130
5245
|
text?: string | undefined;
|
|
5246
|
+
variant?: string | undefined;
|
|
5131
5247
|
})) | ({
|
|
5132
5248
|
__TYPE__: "DocumentLink";
|
|
5133
5249
|
} & (({
|
|
@@ -5136,6 +5252,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5136
5252
|
kind: "document";
|
|
5137
5253
|
}) & {
|
|
5138
5254
|
text?: string | undefined;
|
|
5255
|
+
variant?: string | undefined;
|
|
5139
5256
|
})) | ({
|
|
5140
5257
|
__TYPE__: "ExternalLink";
|
|
5141
5258
|
} & ((({
|
|
@@ -5150,18 +5267,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5150
5267
|
kind: "web";
|
|
5151
5268
|
}) & {
|
|
5152
5269
|
text?: string | undefined;
|
|
5270
|
+
variant?: string | undefined;
|
|
5153
5271
|
})) | ({
|
|
5154
5272
|
__TYPE__: "MediaLink";
|
|
5155
5273
|
} & {
|
|
5156
5274
|
kind: "media";
|
|
5157
5275
|
} & {
|
|
5158
5276
|
text?: string | undefined;
|
|
5277
|
+
variant?: string | undefined;
|
|
5159
5278
|
}) | ({
|
|
5160
5279
|
__TYPE__: "AnyLink";
|
|
5161
5280
|
} & {
|
|
5162
5281
|
kind: "any";
|
|
5163
5282
|
} & {
|
|
5164
5283
|
text?: string | undefined;
|
|
5284
|
+
variant?: string | undefined;
|
|
5165
5285
|
});
|
|
5166
5286
|
})[];
|
|
5167
5287
|
}][];
|
|
@@ -5298,6 +5418,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5298
5418
|
kind: "image";
|
|
5299
5419
|
}) & {
|
|
5300
5420
|
text?: string | undefined;
|
|
5421
|
+
variant?: string | undefined;
|
|
5301
5422
|
})) | ({
|
|
5302
5423
|
__TYPE__: "FileLink";
|
|
5303
5424
|
} & ((({
|
|
@@ -5312,6 +5433,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5312
5433
|
kind: "file";
|
|
5313
5434
|
}) & {
|
|
5314
5435
|
text?: string | undefined;
|
|
5436
|
+
variant?: string | undefined;
|
|
5315
5437
|
})) | ({
|
|
5316
5438
|
__TYPE__: "DocumentLink";
|
|
5317
5439
|
} & (({
|
|
@@ -5320,6 +5442,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5320
5442
|
kind: "document";
|
|
5321
5443
|
}) & {
|
|
5322
5444
|
text?: string | undefined;
|
|
5445
|
+
variant?: string | undefined;
|
|
5323
5446
|
})) | ({
|
|
5324
5447
|
__TYPE__: "ExternalLink";
|
|
5325
5448
|
} & ((({
|
|
@@ -5334,18 +5457,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5334
5457
|
kind: "web";
|
|
5335
5458
|
}) & {
|
|
5336
5459
|
text?: string | undefined;
|
|
5460
|
+
variant?: string | undefined;
|
|
5337
5461
|
})) | ({
|
|
5338
5462
|
__TYPE__: "MediaLink";
|
|
5339
5463
|
} & {
|
|
5340
5464
|
kind: "media";
|
|
5341
5465
|
} & {
|
|
5342
5466
|
text?: string | undefined;
|
|
5467
|
+
variant?: string | undefined;
|
|
5343
5468
|
}) | ({
|
|
5344
5469
|
__TYPE__: "AnyLink";
|
|
5345
5470
|
} & {
|
|
5346
5471
|
kind: "any";
|
|
5347
5472
|
} & {
|
|
5348
5473
|
text?: string | undefined;
|
|
5474
|
+
variant?: string | undefined;
|
|
5349
5475
|
});
|
|
5350
5476
|
}) | {
|
|
5351
5477
|
__TYPE__: "StructuredTextContent";
|
|
@@ -5440,7 +5566,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5440
5566
|
label?: string | null | undefined;
|
|
5441
5567
|
direction?: string | null | undefined;
|
|
5442
5568
|
}) | ({
|
|
5443
|
-
type: "image" | "
|
|
5569
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5444
5570
|
content: {
|
|
5445
5571
|
text: string;
|
|
5446
5572
|
} & {
|
|
@@ -5493,7 +5619,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5493
5619
|
} | {
|
|
5494
5620
|
start: number;
|
|
5495
5621
|
end: number;
|
|
5496
|
-
type: "
|
|
5622
|
+
type: "strong" | "em" | "list-item";
|
|
5497
5623
|
})[] | undefined;
|
|
5498
5624
|
};
|
|
5499
5625
|
} & {
|
|
@@ -5525,6 +5651,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5525
5651
|
kind: "image";
|
|
5526
5652
|
}) & {
|
|
5527
5653
|
text?: string | undefined;
|
|
5654
|
+
variant?: string | undefined;
|
|
5528
5655
|
})) | ({
|
|
5529
5656
|
__TYPE__: "FileLink";
|
|
5530
5657
|
} & ((({
|
|
@@ -5539,6 +5666,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5539
5666
|
kind: "file";
|
|
5540
5667
|
}) & {
|
|
5541
5668
|
text?: string | undefined;
|
|
5669
|
+
variant?: string | undefined;
|
|
5542
5670
|
})) | ({
|
|
5543
5671
|
__TYPE__: "DocumentLink";
|
|
5544
5672
|
} & (({
|
|
@@ -5547,6 +5675,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5547
5675
|
kind: "document";
|
|
5548
5676
|
}) & {
|
|
5549
5677
|
text?: string | undefined;
|
|
5678
|
+
variant?: string | undefined;
|
|
5550
5679
|
})) | ({
|
|
5551
5680
|
__TYPE__: "ExternalLink";
|
|
5552
5681
|
} & ((({
|
|
@@ -5561,18 +5690,21 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5561
5690
|
kind: "web";
|
|
5562
5691
|
}) & {
|
|
5563
5692
|
text?: string | undefined;
|
|
5693
|
+
variant?: string | undefined;
|
|
5564
5694
|
})) | ({
|
|
5565
5695
|
__TYPE__: "MediaLink";
|
|
5566
5696
|
} & {
|
|
5567
5697
|
kind: "media";
|
|
5568
5698
|
} & {
|
|
5569
5699
|
text?: string | undefined;
|
|
5700
|
+
variant?: string | undefined;
|
|
5570
5701
|
}) | ({
|
|
5571
5702
|
__TYPE__: "AnyLink";
|
|
5572
5703
|
} & {
|
|
5573
5704
|
kind: "any";
|
|
5574
5705
|
} & {
|
|
5575
5706
|
text?: string | undefined;
|
|
5707
|
+
variant?: string | undefined;
|
|
5576
5708
|
});
|
|
5577
5709
|
})[];
|
|
5578
5710
|
};
|