@prismicio/types-internal 3.4.0-alpha.2 → 3.4.0-alpha.4
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/lib/content/Document.d.ts +3305 -3323
- package/lib/content/fields/RepeatableContent.d.ts +51 -123
- package/lib/content/fields/RepeatableContent.js +10 -14
- package/lib/content/fields/WidgetContent.d.ts +3046 -3064
- package/lib/content/fields/nestable/NestableContent.d.ts +501 -504
- package/lib/content/fields/nestable/NestableContent.js +0 -7
- package/lib/content/fields/nestable/RichTextContent/Block.d.ts +1036 -0
- package/lib/content/fields/nestable/RichTextContent/Block.js +31 -0
- package/lib/content/fields/nestable/RichTextContent/EmbedBlock.d.ts +60 -0
- package/lib/content/fields/nestable/RichTextContent/EmbedBlock.js +53 -0
- package/lib/content/fields/nestable/RichTextContent/ImageBlock.d.ts +203 -0
- package/lib/content/fields/nestable/RichTextContent/ImageBlock.js +36 -0
- package/lib/content/fields/nestable/RichTextContent/TableBlock.d.ts +500 -0
- package/lib/content/fields/nestable/RichTextContent/TableBlock.js +21 -0
- package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +590 -0
- package/lib/content/fields/nestable/RichTextContent/TextBlock.js +80 -0
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +637 -9
- package/lib/content/fields/nestable/RichTextContent/index.js +4 -4
- package/lib/content/fields/nestable/TableContent.d.ts +245 -12
- package/lib/content/fields/nestable/TableContent.js +7 -7
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +1013 -1019
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +234 -235
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +1013 -1019
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +501 -504
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +499 -502
- package/lib/content/fields/slices/Slice/index.d.ts +1852 -1862
- package/lib/content/fields/slices/SliceItem.d.ts +1957 -1967
- package/lib/content/fields/slices/SlicesContent.d.ts +2619 -2634
- package/lib/customtypes/CustomType.d.ts +0 -108
- package/lib/customtypes/Section.d.ts +0 -108
- package/lib/customtypes/diff/SharedSlice.d.ts +0 -48
- package/lib/customtypes/diff/Variation.d.ts +0 -48
- package/lib/customtypes/widgets/Group.d.ts +0 -36
- package/lib/customtypes/widgets/Widget.d.ts +0 -126
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +0 -6
- package/lib/customtypes/widgets/nestable/NestableWidget.js +0 -2
- package/lib/customtypes/widgets/nestable/RichText.d.ts +2 -0
- package/lib/customtypes/widgets/nestable/RichText.js +2 -0
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +0 -12
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +0 -12
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +0 -48
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +0 -36
- package/lib/customtypes/widgets/slices/Slices.d.ts +0 -168
- package/package.json +1 -1
- package/src/content/fields/nestable/NestableContent.ts +0 -12
- package/src/content/fields/nestable/RichTextContent/Block.ts +35 -0
- package/src/content/fields/nestable/RichTextContent/EmbedBlock.ts +81 -0
- package/src/content/fields/nestable/RichTextContent/ImageBlock.ts +42 -0
- package/src/content/fields/nestable/RichTextContent/TableBlock.ts +36 -0
- package/src/content/fields/nestable/RichTextContent/TextBlock.ts +108 -0
- package/src/content/fields/nestable/RichTextContent/index.ts +2 -2
- package/src/content/fields/nestable/TableContent.ts +6 -6
- package/src/customtypes/widgets/nestable/NestableWidget.ts +0 -2
- package/src/customtypes/widgets/nestable/RichText.ts +2 -0
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +0 -238
|
@@ -328,7 +328,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
328
328
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
329
329
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
330
330
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
331
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
331
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
332
332
|
content: t.IntersectionC<[t.TypeC<{
|
|
333
333
|
text: t.StringC;
|
|
334
334
|
}>, t.PartialC<{
|
|
@@ -437,243 +437,242 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
437
437
|
}>, t.PartialC<{
|
|
438
438
|
label: t.StringC;
|
|
439
439
|
direction: t.StringC;
|
|
440
|
-
}>]
|
|
440
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
441
|
+
type: t.LiteralC<"table">;
|
|
442
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
443
|
+
type: t.LiteralC<"tableRow">;
|
|
444
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
445
|
+
type: t.LiteralC<"tableHeader">;
|
|
446
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
447
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
448
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
449
|
+
text: t.StringC;
|
|
450
|
+
}>, t.PartialC<{
|
|
451
|
+
spans: t.Type<({
|
|
452
|
+
data: ({
|
|
453
|
+
__TYPE__: "ImageLink";
|
|
454
|
+
} & {
|
|
455
|
+
kind: "image";
|
|
456
|
+
id: string;
|
|
457
|
+
url: string;
|
|
458
|
+
height: string;
|
|
459
|
+
width: string;
|
|
460
|
+
size: string;
|
|
461
|
+
name: string;
|
|
462
|
+
} & {
|
|
463
|
+
date?: string | null | undefined;
|
|
464
|
+
}) | ({
|
|
465
|
+
__TYPE__: "FileLink";
|
|
466
|
+
} & {
|
|
467
|
+
kind: "file";
|
|
468
|
+
id: string;
|
|
469
|
+
url: string;
|
|
470
|
+
name: string;
|
|
471
|
+
size: string;
|
|
472
|
+
} & {
|
|
473
|
+
date?: string | null | undefined;
|
|
474
|
+
}) | ({
|
|
475
|
+
__TYPE__: "DocumentLink";
|
|
476
|
+
} & {
|
|
477
|
+
id: string;
|
|
478
|
+
}) | ({
|
|
479
|
+
__TYPE__: "ExternalLink";
|
|
480
|
+
} & {
|
|
481
|
+
url: string;
|
|
482
|
+
} & {
|
|
483
|
+
kind?: "web";
|
|
484
|
+
target?: string | null | undefined;
|
|
485
|
+
preview?: {
|
|
486
|
+
title?: string;
|
|
487
|
+
} | null | undefined;
|
|
488
|
+
});
|
|
489
|
+
start: number;
|
|
490
|
+
end: number;
|
|
491
|
+
type: "hyperlink";
|
|
492
|
+
} | {
|
|
493
|
+
data: string;
|
|
494
|
+
start: number;
|
|
495
|
+
end: number;
|
|
496
|
+
type: "label";
|
|
497
|
+
} | {
|
|
498
|
+
start: number;
|
|
499
|
+
end: number;
|
|
500
|
+
type: "strong" | "em" | "list-item";
|
|
501
|
+
})[], ({
|
|
502
|
+
data: ({
|
|
503
|
+
__TYPE__: "ImageLink";
|
|
504
|
+
} & {
|
|
505
|
+
kind: "image";
|
|
506
|
+
id: string;
|
|
507
|
+
url: string;
|
|
508
|
+
height: string;
|
|
509
|
+
width: string;
|
|
510
|
+
size: string;
|
|
511
|
+
name: string;
|
|
512
|
+
} & {
|
|
513
|
+
date?: string | null | undefined;
|
|
514
|
+
}) | ({
|
|
515
|
+
__TYPE__: "FileLink";
|
|
516
|
+
} & {
|
|
517
|
+
kind: "file";
|
|
518
|
+
id: string;
|
|
519
|
+
url: string;
|
|
520
|
+
name: string;
|
|
521
|
+
size: string;
|
|
522
|
+
} & {
|
|
523
|
+
date?: string | null | undefined;
|
|
524
|
+
}) | ({
|
|
525
|
+
__TYPE__: "DocumentLink";
|
|
526
|
+
} & {
|
|
527
|
+
id: string;
|
|
528
|
+
}) | ({
|
|
529
|
+
__TYPE__: "ExternalLink";
|
|
530
|
+
} & {
|
|
531
|
+
url: string;
|
|
532
|
+
} & {
|
|
533
|
+
kind?: "web";
|
|
534
|
+
target?: string | null | undefined;
|
|
535
|
+
preview?: {
|
|
536
|
+
title?: string;
|
|
537
|
+
} | null | undefined;
|
|
538
|
+
});
|
|
539
|
+
start: number;
|
|
540
|
+
end: number;
|
|
541
|
+
type: "hyperlink";
|
|
542
|
+
} | {
|
|
543
|
+
data: string;
|
|
544
|
+
start: number;
|
|
545
|
+
end: number;
|
|
546
|
+
type: "label";
|
|
547
|
+
} | {
|
|
548
|
+
start: number;
|
|
549
|
+
end: number;
|
|
550
|
+
type: "strong" | "em" | "list-item";
|
|
551
|
+
})[], unknown>;
|
|
552
|
+
}>]>;
|
|
553
|
+
}>, t.PartialC<{
|
|
554
|
+
label: t.StringC;
|
|
555
|
+
direction: t.StringC;
|
|
556
|
+
}>]>>>;
|
|
557
|
+
}>>, t.ExactC<t.TypeC<{
|
|
558
|
+
type: t.LiteralC<"tableCell">;
|
|
559
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
560
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
561
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
562
|
+
text: t.StringC;
|
|
563
|
+
}>, t.PartialC<{
|
|
564
|
+
spans: t.Type<({
|
|
565
|
+
data: ({
|
|
566
|
+
__TYPE__: "ImageLink";
|
|
567
|
+
} & {
|
|
568
|
+
kind: "image";
|
|
569
|
+
id: string;
|
|
570
|
+
url: string;
|
|
571
|
+
height: string;
|
|
572
|
+
width: string;
|
|
573
|
+
size: string;
|
|
574
|
+
name: string;
|
|
575
|
+
} & {
|
|
576
|
+
date?: string | null | undefined;
|
|
577
|
+
}) | ({
|
|
578
|
+
__TYPE__: "FileLink";
|
|
579
|
+
} & {
|
|
580
|
+
kind: "file";
|
|
581
|
+
id: string;
|
|
582
|
+
url: string;
|
|
583
|
+
name: string;
|
|
584
|
+
size: string;
|
|
585
|
+
} & {
|
|
586
|
+
date?: string | null | undefined;
|
|
587
|
+
}) | ({
|
|
588
|
+
__TYPE__: "DocumentLink";
|
|
589
|
+
} & {
|
|
590
|
+
id: string;
|
|
591
|
+
}) | ({
|
|
592
|
+
__TYPE__: "ExternalLink";
|
|
593
|
+
} & {
|
|
594
|
+
url: string;
|
|
595
|
+
} & {
|
|
596
|
+
kind?: "web";
|
|
597
|
+
target?: string | null | undefined;
|
|
598
|
+
preview?: {
|
|
599
|
+
title?: string;
|
|
600
|
+
} | null | undefined;
|
|
601
|
+
});
|
|
602
|
+
start: number;
|
|
603
|
+
end: number;
|
|
604
|
+
type: "hyperlink";
|
|
605
|
+
} | {
|
|
606
|
+
data: string;
|
|
607
|
+
start: number;
|
|
608
|
+
end: number;
|
|
609
|
+
type: "label";
|
|
610
|
+
} | {
|
|
611
|
+
start: number;
|
|
612
|
+
end: number;
|
|
613
|
+
type: "strong" | "em" | "list-item";
|
|
614
|
+
})[], ({
|
|
615
|
+
data: ({
|
|
616
|
+
__TYPE__: "ImageLink";
|
|
617
|
+
} & {
|
|
618
|
+
kind: "image";
|
|
619
|
+
id: string;
|
|
620
|
+
url: string;
|
|
621
|
+
height: string;
|
|
622
|
+
width: string;
|
|
623
|
+
size: string;
|
|
624
|
+
name: string;
|
|
625
|
+
} & {
|
|
626
|
+
date?: string | null | undefined;
|
|
627
|
+
}) | ({
|
|
628
|
+
__TYPE__: "FileLink";
|
|
629
|
+
} & {
|
|
630
|
+
kind: "file";
|
|
631
|
+
id: string;
|
|
632
|
+
url: string;
|
|
633
|
+
name: string;
|
|
634
|
+
size: string;
|
|
635
|
+
} & {
|
|
636
|
+
date?: string | null | undefined;
|
|
637
|
+
}) | ({
|
|
638
|
+
__TYPE__: "DocumentLink";
|
|
639
|
+
} & {
|
|
640
|
+
id: string;
|
|
641
|
+
}) | ({
|
|
642
|
+
__TYPE__: "ExternalLink";
|
|
643
|
+
} & {
|
|
644
|
+
url: string;
|
|
645
|
+
} & {
|
|
646
|
+
kind?: "web";
|
|
647
|
+
target?: string | null | undefined;
|
|
648
|
+
preview?: {
|
|
649
|
+
title?: string;
|
|
650
|
+
} | null | undefined;
|
|
651
|
+
});
|
|
652
|
+
start: number;
|
|
653
|
+
end: number;
|
|
654
|
+
type: "hyperlink";
|
|
655
|
+
} | {
|
|
656
|
+
data: string;
|
|
657
|
+
start: number;
|
|
658
|
+
end: number;
|
|
659
|
+
type: "label";
|
|
660
|
+
} | {
|
|
661
|
+
start: number;
|
|
662
|
+
end: number;
|
|
663
|
+
type: "strong" | "em" | "list-item";
|
|
664
|
+
})[], unknown>;
|
|
665
|
+
}>]>;
|
|
666
|
+
}>, t.PartialC<{
|
|
667
|
+
label: t.StringC;
|
|
668
|
+
direction: t.StringC;
|
|
669
|
+
}>]>>>;
|
|
670
|
+
}>>]>>;
|
|
671
|
+
}>>>;
|
|
672
|
+
}>>]>>;
|
|
441
673
|
}>>, t.ExactC<t.TypeC<{
|
|
442
674
|
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
443
|
-
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
444
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
445
|
-
type: t.LiteralC<"tableRow">;
|
|
446
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
447
|
-
type: t.LiteralC<"tableHeader">;
|
|
448
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
449
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
450
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
451
|
-
text: t.StringC;
|
|
452
|
-
}>, t.PartialC<{
|
|
453
|
-
spans: t.Type<({
|
|
454
|
-
data: ({
|
|
455
|
-
__TYPE__: "ImageLink";
|
|
456
|
-
} & {
|
|
457
|
-
kind: "image";
|
|
458
|
-
id: string;
|
|
459
|
-
url: string;
|
|
460
|
-
height: string;
|
|
461
|
-
width: string;
|
|
462
|
-
size: string;
|
|
463
|
-
name: string;
|
|
464
|
-
} & {
|
|
465
|
-
date?: string | null | undefined;
|
|
466
|
-
}) | ({
|
|
467
|
-
__TYPE__: "FileLink";
|
|
468
|
-
} & {
|
|
469
|
-
kind: "file";
|
|
470
|
-
id: string;
|
|
471
|
-
url: string;
|
|
472
|
-
name: string;
|
|
473
|
-
size: string;
|
|
474
|
-
} & {
|
|
475
|
-
date?: string | null | undefined;
|
|
476
|
-
}) | ({
|
|
477
|
-
__TYPE__: "DocumentLink";
|
|
478
|
-
} & {
|
|
479
|
-
id: string;
|
|
480
|
-
}) | ({
|
|
481
|
-
__TYPE__: "ExternalLink";
|
|
482
|
-
} & {
|
|
483
|
-
url: string;
|
|
484
|
-
} & {
|
|
485
|
-
kind?: "web";
|
|
486
|
-
target?: string | null | undefined;
|
|
487
|
-
preview?: {
|
|
488
|
-
title?: string;
|
|
489
|
-
} | null | undefined;
|
|
490
|
-
});
|
|
491
|
-
start: number;
|
|
492
|
-
end: number;
|
|
493
|
-
type: "hyperlink";
|
|
494
|
-
} | {
|
|
495
|
-
data: string;
|
|
496
|
-
start: number;
|
|
497
|
-
end: number;
|
|
498
|
-
type: "label";
|
|
499
|
-
} | {
|
|
500
|
-
start: number;
|
|
501
|
-
end: number;
|
|
502
|
-
type: "strong" | "em" | "list-item";
|
|
503
|
-
})[], ({
|
|
504
|
-
data: ({
|
|
505
|
-
__TYPE__: "ImageLink";
|
|
506
|
-
} & {
|
|
507
|
-
kind: "image";
|
|
508
|
-
id: string;
|
|
509
|
-
url: string;
|
|
510
|
-
height: string;
|
|
511
|
-
width: string;
|
|
512
|
-
size: string;
|
|
513
|
-
name: string;
|
|
514
|
-
} & {
|
|
515
|
-
date?: string | null | undefined;
|
|
516
|
-
}) | ({
|
|
517
|
-
__TYPE__: "FileLink";
|
|
518
|
-
} & {
|
|
519
|
-
kind: "file";
|
|
520
|
-
id: string;
|
|
521
|
-
url: string;
|
|
522
|
-
name: string;
|
|
523
|
-
size: string;
|
|
524
|
-
} & {
|
|
525
|
-
date?: string | null | undefined;
|
|
526
|
-
}) | ({
|
|
527
|
-
__TYPE__: "DocumentLink";
|
|
528
|
-
} & {
|
|
529
|
-
id: string;
|
|
530
|
-
}) | ({
|
|
531
|
-
__TYPE__: "ExternalLink";
|
|
532
|
-
} & {
|
|
533
|
-
url: string;
|
|
534
|
-
} & {
|
|
535
|
-
kind?: "web";
|
|
536
|
-
target?: string | null | undefined;
|
|
537
|
-
preview?: {
|
|
538
|
-
title?: string;
|
|
539
|
-
} | null | undefined;
|
|
540
|
-
});
|
|
541
|
-
start: number;
|
|
542
|
-
end: number;
|
|
543
|
-
type: "hyperlink";
|
|
544
|
-
} | {
|
|
545
|
-
data: string;
|
|
546
|
-
start: number;
|
|
547
|
-
end: number;
|
|
548
|
-
type: "label";
|
|
549
|
-
} | {
|
|
550
|
-
start: number;
|
|
551
|
-
end: number;
|
|
552
|
-
type: "strong" | "em" | "list-item";
|
|
553
|
-
})[], unknown>;
|
|
554
|
-
}>]>;
|
|
555
|
-
}>, t.PartialC<{
|
|
556
|
-
label: t.StringC;
|
|
557
|
-
direction: t.StringC;
|
|
558
|
-
}>]>>>;
|
|
559
|
-
}>>, t.ExactC<t.TypeC<{
|
|
560
|
-
type: t.LiteralC<"tableCell">;
|
|
561
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
562
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
563
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
564
|
-
text: t.StringC;
|
|
565
|
-
}>, t.PartialC<{
|
|
566
|
-
spans: t.Type<({
|
|
567
|
-
data: ({
|
|
568
|
-
__TYPE__: "ImageLink";
|
|
569
|
-
} & {
|
|
570
|
-
kind: "image";
|
|
571
|
-
id: string;
|
|
572
|
-
url: string;
|
|
573
|
-
height: string;
|
|
574
|
-
width: string;
|
|
575
|
-
size: string;
|
|
576
|
-
name: string;
|
|
577
|
-
} & {
|
|
578
|
-
date?: string | null | undefined;
|
|
579
|
-
}) | ({
|
|
580
|
-
__TYPE__: "FileLink";
|
|
581
|
-
} & {
|
|
582
|
-
kind: "file";
|
|
583
|
-
id: string;
|
|
584
|
-
url: string;
|
|
585
|
-
name: string;
|
|
586
|
-
size: string;
|
|
587
|
-
} & {
|
|
588
|
-
date?: string | null | undefined;
|
|
589
|
-
}) | ({
|
|
590
|
-
__TYPE__: "DocumentLink";
|
|
591
|
-
} & {
|
|
592
|
-
id: string;
|
|
593
|
-
}) | ({
|
|
594
|
-
__TYPE__: "ExternalLink";
|
|
595
|
-
} & {
|
|
596
|
-
url: string;
|
|
597
|
-
} & {
|
|
598
|
-
kind?: "web";
|
|
599
|
-
target?: string | null | undefined;
|
|
600
|
-
preview?: {
|
|
601
|
-
title?: string;
|
|
602
|
-
} | null | undefined;
|
|
603
|
-
});
|
|
604
|
-
start: number;
|
|
605
|
-
end: number;
|
|
606
|
-
type: "hyperlink";
|
|
607
|
-
} | {
|
|
608
|
-
data: string;
|
|
609
|
-
start: number;
|
|
610
|
-
end: number;
|
|
611
|
-
type: "label";
|
|
612
|
-
} | {
|
|
613
|
-
start: number;
|
|
614
|
-
end: number;
|
|
615
|
-
type: "strong" | "em" | "list-item";
|
|
616
|
-
})[], ({
|
|
617
|
-
data: ({
|
|
618
|
-
__TYPE__: "ImageLink";
|
|
619
|
-
} & {
|
|
620
|
-
kind: "image";
|
|
621
|
-
id: string;
|
|
622
|
-
url: string;
|
|
623
|
-
height: string;
|
|
624
|
-
width: string;
|
|
625
|
-
size: string;
|
|
626
|
-
name: string;
|
|
627
|
-
} & {
|
|
628
|
-
date?: string | null | undefined;
|
|
629
|
-
}) | ({
|
|
630
|
-
__TYPE__: "FileLink";
|
|
631
|
-
} & {
|
|
632
|
-
kind: "file";
|
|
633
|
-
id: string;
|
|
634
|
-
url: string;
|
|
635
|
-
name: string;
|
|
636
|
-
size: string;
|
|
637
|
-
} & {
|
|
638
|
-
date?: string | null | undefined;
|
|
639
|
-
}) | ({
|
|
640
|
-
__TYPE__: "DocumentLink";
|
|
641
|
-
} & {
|
|
642
|
-
id: string;
|
|
643
|
-
}) | ({
|
|
644
|
-
__TYPE__: "ExternalLink";
|
|
645
|
-
} & {
|
|
646
|
-
url: string;
|
|
647
|
-
} & {
|
|
648
|
-
kind?: "web";
|
|
649
|
-
target?: string | null | undefined;
|
|
650
|
-
preview?: {
|
|
651
|
-
title?: string;
|
|
652
|
-
} | null | undefined;
|
|
653
|
-
});
|
|
654
|
-
start: number;
|
|
655
|
-
end: number;
|
|
656
|
-
type: "hyperlink";
|
|
657
|
-
} | {
|
|
658
|
-
data: string;
|
|
659
|
-
start: number;
|
|
660
|
-
end: number;
|
|
661
|
-
type: "label";
|
|
662
|
-
} | {
|
|
663
|
-
start: number;
|
|
664
|
-
end: number;
|
|
665
|
-
type: "strong" | "em" | "list-item";
|
|
666
|
-
})[], unknown>;
|
|
667
|
-
}>]>;
|
|
668
|
-
}>, t.PartialC<{
|
|
669
|
-
label: t.StringC;
|
|
670
|
-
direction: t.StringC;
|
|
671
|
-
}>]>>>;
|
|
672
|
-
}>>]>>;
|
|
673
|
-
}>>>;
|
|
674
675
|
}>>, t.ExactC<t.TypeC<{
|
|
675
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
676
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
677
676
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
678
677
|
type: t.LiteralC<"Link">;
|
|
679
678
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -1073,7 +1072,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1073
1072
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1074
1073
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1075
1074
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1076
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
1075
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
1077
1076
|
content: t.IntersectionC<[t.TypeC<{
|
|
1078
1077
|
text: t.StringC;
|
|
1079
1078
|
}>, t.PartialC<{
|
|
@@ -1182,243 +1181,242 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1182
1181
|
}>, t.PartialC<{
|
|
1183
1182
|
label: t.StringC;
|
|
1184
1183
|
direction: t.StringC;
|
|
1185
|
-
}>]
|
|
1184
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1185
|
+
type: t.LiteralC<"table">;
|
|
1186
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1187
|
+
type: t.LiteralC<"tableRow">;
|
|
1188
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1189
|
+
type: t.LiteralC<"tableHeader">;
|
|
1190
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1191
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
1192
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
1193
|
+
text: t.StringC;
|
|
1194
|
+
}>, t.PartialC<{
|
|
1195
|
+
spans: t.Type<({
|
|
1196
|
+
data: ({
|
|
1197
|
+
__TYPE__: "ImageLink";
|
|
1198
|
+
} & {
|
|
1199
|
+
kind: "image";
|
|
1200
|
+
id: string;
|
|
1201
|
+
url: string;
|
|
1202
|
+
height: string;
|
|
1203
|
+
width: string;
|
|
1204
|
+
size: string;
|
|
1205
|
+
name: string;
|
|
1206
|
+
} & {
|
|
1207
|
+
date?: string | null | undefined;
|
|
1208
|
+
}) | ({
|
|
1209
|
+
__TYPE__: "FileLink";
|
|
1210
|
+
} & {
|
|
1211
|
+
kind: "file";
|
|
1212
|
+
id: string;
|
|
1213
|
+
url: string;
|
|
1214
|
+
name: string;
|
|
1215
|
+
size: string;
|
|
1216
|
+
} & {
|
|
1217
|
+
date?: string | null | undefined;
|
|
1218
|
+
}) | ({
|
|
1219
|
+
__TYPE__: "DocumentLink";
|
|
1220
|
+
} & {
|
|
1221
|
+
id: string;
|
|
1222
|
+
}) | ({
|
|
1223
|
+
__TYPE__: "ExternalLink";
|
|
1224
|
+
} & {
|
|
1225
|
+
url: string;
|
|
1226
|
+
} & {
|
|
1227
|
+
kind?: "web";
|
|
1228
|
+
target?: string | null | undefined;
|
|
1229
|
+
preview?: {
|
|
1230
|
+
title?: string;
|
|
1231
|
+
} | null | undefined;
|
|
1232
|
+
});
|
|
1233
|
+
start: number;
|
|
1234
|
+
end: number;
|
|
1235
|
+
type: "hyperlink";
|
|
1236
|
+
} | {
|
|
1237
|
+
data: string;
|
|
1238
|
+
start: number;
|
|
1239
|
+
end: number;
|
|
1240
|
+
type: "label";
|
|
1241
|
+
} | {
|
|
1242
|
+
start: number;
|
|
1243
|
+
end: number;
|
|
1244
|
+
type: "strong" | "em" | "list-item";
|
|
1245
|
+
})[], ({
|
|
1246
|
+
data: ({
|
|
1247
|
+
__TYPE__: "ImageLink";
|
|
1248
|
+
} & {
|
|
1249
|
+
kind: "image";
|
|
1250
|
+
id: string;
|
|
1251
|
+
url: string;
|
|
1252
|
+
height: string;
|
|
1253
|
+
width: string;
|
|
1254
|
+
size: string;
|
|
1255
|
+
name: string;
|
|
1256
|
+
} & {
|
|
1257
|
+
date?: string | null | undefined;
|
|
1258
|
+
}) | ({
|
|
1259
|
+
__TYPE__: "FileLink";
|
|
1260
|
+
} & {
|
|
1261
|
+
kind: "file";
|
|
1262
|
+
id: string;
|
|
1263
|
+
url: string;
|
|
1264
|
+
name: string;
|
|
1265
|
+
size: string;
|
|
1266
|
+
} & {
|
|
1267
|
+
date?: string | null | undefined;
|
|
1268
|
+
}) | ({
|
|
1269
|
+
__TYPE__: "DocumentLink";
|
|
1270
|
+
} & {
|
|
1271
|
+
id: string;
|
|
1272
|
+
}) | ({
|
|
1273
|
+
__TYPE__: "ExternalLink";
|
|
1274
|
+
} & {
|
|
1275
|
+
url: string;
|
|
1276
|
+
} & {
|
|
1277
|
+
kind?: "web";
|
|
1278
|
+
target?: string | null | undefined;
|
|
1279
|
+
preview?: {
|
|
1280
|
+
title?: string;
|
|
1281
|
+
} | null | undefined;
|
|
1282
|
+
});
|
|
1283
|
+
start: number;
|
|
1284
|
+
end: number;
|
|
1285
|
+
type: "hyperlink";
|
|
1286
|
+
} | {
|
|
1287
|
+
data: string;
|
|
1288
|
+
start: number;
|
|
1289
|
+
end: number;
|
|
1290
|
+
type: "label";
|
|
1291
|
+
} | {
|
|
1292
|
+
start: number;
|
|
1293
|
+
end: number;
|
|
1294
|
+
type: "strong" | "em" | "list-item";
|
|
1295
|
+
})[], unknown>;
|
|
1296
|
+
}>]>;
|
|
1297
|
+
}>, t.PartialC<{
|
|
1298
|
+
label: t.StringC;
|
|
1299
|
+
direction: t.StringC;
|
|
1300
|
+
}>]>>>;
|
|
1301
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1302
|
+
type: t.LiteralC<"tableCell">;
|
|
1303
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1304
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
1305
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
1306
|
+
text: t.StringC;
|
|
1307
|
+
}>, t.PartialC<{
|
|
1308
|
+
spans: t.Type<({
|
|
1309
|
+
data: ({
|
|
1310
|
+
__TYPE__: "ImageLink";
|
|
1311
|
+
} & {
|
|
1312
|
+
kind: "image";
|
|
1313
|
+
id: string;
|
|
1314
|
+
url: string;
|
|
1315
|
+
height: string;
|
|
1316
|
+
width: string;
|
|
1317
|
+
size: string;
|
|
1318
|
+
name: string;
|
|
1319
|
+
} & {
|
|
1320
|
+
date?: string | null | undefined;
|
|
1321
|
+
}) | ({
|
|
1322
|
+
__TYPE__: "FileLink";
|
|
1323
|
+
} & {
|
|
1324
|
+
kind: "file";
|
|
1325
|
+
id: string;
|
|
1326
|
+
url: string;
|
|
1327
|
+
name: string;
|
|
1328
|
+
size: string;
|
|
1329
|
+
} & {
|
|
1330
|
+
date?: string | null | undefined;
|
|
1331
|
+
}) | ({
|
|
1332
|
+
__TYPE__: "DocumentLink";
|
|
1333
|
+
} & {
|
|
1334
|
+
id: string;
|
|
1335
|
+
}) | ({
|
|
1336
|
+
__TYPE__: "ExternalLink";
|
|
1337
|
+
} & {
|
|
1338
|
+
url: string;
|
|
1339
|
+
} & {
|
|
1340
|
+
kind?: "web";
|
|
1341
|
+
target?: string | null | undefined;
|
|
1342
|
+
preview?: {
|
|
1343
|
+
title?: string;
|
|
1344
|
+
} | null | undefined;
|
|
1345
|
+
});
|
|
1346
|
+
start: number;
|
|
1347
|
+
end: number;
|
|
1348
|
+
type: "hyperlink";
|
|
1349
|
+
} | {
|
|
1350
|
+
data: string;
|
|
1351
|
+
start: number;
|
|
1352
|
+
end: number;
|
|
1353
|
+
type: "label";
|
|
1354
|
+
} | {
|
|
1355
|
+
start: number;
|
|
1356
|
+
end: number;
|
|
1357
|
+
type: "strong" | "em" | "list-item";
|
|
1358
|
+
})[], ({
|
|
1359
|
+
data: ({
|
|
1360
|
+
__TYPE__: "ImageLink";
|
|
1361
|
+
} & {
|
|
1362
|
+
kind: "image";
|
|
1363
|
+
id: string;
|
|
1364
|
+
url: string;
|
|
1365
|
+
height: string;
|
|
1366
|
+
width: string;
|
|
1367
|
+
size: string;
|
|
1368
|
+
name: string;
|
|
1369
|
+
} & {
|
|
1370
|
+
date?: string | null | undefined;
|
|
1371
|
+
}) | ({
|
|
1372
|
+
__TYPE__: "FileLink";
|
|
1373
|
+
} & {
|
|
1374
|
+
kind: "file";
|
|
1375
|
+
id: string;
|
|
1376
|
+
url: string;
|
|
1377
|
+
name: string;
|
|
1378
|
+
size: string;
|
|
1379
|
+
} & {
|
|
1380
|
+
date?: string | null | undefined;
|
|
1381
|
+
}) | ({
|
|
1382
|
+
__TYPE__: "DocumentLink";
|
|
1383
|
+
} & {
|
|
1384
|
+
id: string;
|
|
1385
|
+
}) | ({
|
|
1386
|
+
__TYPE__: "ExternalLink";
|
|
1387
|
+
} & {
|
|
1388
|
+
url: string;
|
|
1389
|
+
} & {
|
|
1390
|
+
kind?: "web";
|
|
1391
|
+
target?: string | null | undefined;
|
|
1392
|
+
preview?: {
|
|
1393
|
+
title?: string;
|
|
1394
|
+
} | null | undefined;
|
|
1395
|
+
});
|
|
1396
|
+
start: number;
|
|
1397
|
+
end: number;
|
|
1398
|
+
type: "hyperlink";
|
|
1399
|
+
} | {
|
|
1400
|
+
data: string;
|
|
1401
|
+
start: number;
|
|
1402
|
+
end: number;
|
|
1403
|
+
type: "label";
|
|
1404
|
+
} | {
|
|
1405
|
+
start: number;
|
|
1406
|
+
end: number;
|
|
1407
|
+
type: "strong" | "em" | "list-item";
|
|
1408
|
+
})[], unknown>;
|
|
1409
|
+
}>]>;
|
|
1410
|
+
}>, t.PartialC<{
|
|
1411
|
+
label: t.StringC;
|
|
1412
|
+
direction: t.StringC;
|
|
1413
|
+
}>]>>>;
|
|
1414
|
+
}>>]>>;
|
|
1415
|
+
}>>>;
|
|
1416
|
+
}>>]>>;
|
|
1186
1417
|
}>>, t.ExactC<t.TypeC<{
|
|
1187
1418
|
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1188
|
-
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1189
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1190
|
-
type: t.LiteralC<"tableRow">;
|
|
1191
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1192
|
-
type: t.LiteralC<"tableHeader">;
|
|
1193
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1194
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
1195
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
1196
|
-
text: t.StringC;
|
|
1197
|
-
}>, t.PartialC<{
|
|
1198
|
-
spans: t.Type<({
|
|
1199
|
-
data: ({
|
|
1200
|
-
__TYPE__: "ImageLink";
|
|
1201
|
-
} & {
|
|
1202
|
-
kind: "image";
|
|
1203
|
-
id: string;
|
|
1204
|
-
url: string;
|
|
1205
|
-
height: string;
|
|
1206
|
-
width: string;
|
|
1207
|
-
size: string;
|
|
1208
|
-
name: string;
|
|
1209
|
-
} & {
|
|
1210
|
-
date?: string | null | undefined;
|
|
1211
|
-
}) | ({
|
|
1212
|
-
__TYPE__: "FileLink";
|
|
1213
|
-
} & {
|
|
1214
|
-
kind: "file";
|
|
1215
|
-
id: string;
|
|
1216
|
-
url: string;
|
|
1217
|
-
name: string;
|
|
1218
|
-
size: string;
|
|
1219
|
-
} & {
|
|
1220
|
-
date?: string | null | undefined;
|
|
1221
|
-
}) | ({
|
|
1222
|
-
__TYPE__: "DocumentLink";
|
|
1223
|
-
} & {
|
|
1224
|
-
id: string;
|
|
1225
|
-
}) | ({
|
|
1226
|
-
__TYPE__: "ExternalLink";
|
|
1227
|
-
} & {
|
|
1228
|
-
url: string;
|
|
1229
|
-
} & {
|
|
1230
|
-
kind?: "web";
|
|
1231
|
-
target?: string | null | undefined;
|
|
1232
|
-
preview?: {
|
|
1233
|
-
title?: string;
|
|
1234
|
-
} | null | undefined;
|
|
1235
|
-
});
|
|
1236
|
-
start: number;
|
|
1237
|
-
end: number;
|
|
1238
|
-
type: "hyperlink";
|
|
1239
|
-
} | {
|
|
1240
|
-
data: string;
|
|
1241
|
-
start: number;
|
|
1242
|
-
end: number;
|
|
1243
|
-
type: "label";
|
|
1244
|
-
} | {
|
|
1245
|
-
start: number;
|
|
1246
|
-
end: number;
|
|
1247
|
-
type: "strong" | "em" | "list-item";
|
|
1248
|
-
})[], ({
|
|
1249
|
-
data: ({
|
|
1250
|
-
__TYPE__: "ImageLink";
|
|
1251
|
-
} & {
|
|
1252
|
-
kind: "image";
|
|
1253
|
-
id: string;
|
|
1254
|
-
url: string;
|
|
1255
|
-
height: string;
|
|
1256
|
-
width: string;
|
|
1257
|
-
size: string;
|
|
1258
|
-
name: string;
|
|
1259
|
-
} & {
|
|
1260
|
-
date?: string | null | undefined;
|
|
1261
|
-
}) | ({
|
|
1262
|
-
__TYPE__: "FileLink";
|
|
1263
|
-
} & {
|
|
1264
|
-
kind: "file";
|
|
1265
|
-
id: string;
|
|
1266
|
-
url: string;
|
|
1267
|
-
name: string;
|
|
1268
|
-
size: string;
|
|
1269
|
-
} & {
|
|
1270
|
-
date?: string | null | undefined;
|
|
1271
|
-
}) | ({
|
|
1272
|
-
__TYPE__: "DocumentLink";
|
|
1273
|
-
} & {
|
|
1274
|
-
id: string;
|
|
1275
|
-
}) | ({
|
|
1276
|
-
__TYPE__: "ExternalLink";
|
|
1277
|
-
} & {
|
|
1278
|
-
url: string;
|
|
1279
|
-
} & {
|
|
1280
|
-
kind?: "web";
|
|
1281
|
-
target?: string | null | undefined;
|
|
1282
|
-
preview?: {
|
|
1283
|
-
title?: string;
|
|
1284
|
-
} | null | undefined;
|
|
1285
|
-
});
|
|
1286
|
-
start: number;
|
|
1287
|
-
end: number;
|
|
1288
|
-
type: "hyperlink";
|
|
1289
|
-
} | {
|
|
1290
|
-
data: string;
|
|
1291
|
-
start: number;
|
|
1292
|
-
end: number;
|
|
1293
|
-
type: "label";
|
|
1294
|
-
} | {
|
|
1295
|
-
start: number;
|
|
1296
|
-
end: number;
|
|
1297
|
-
type: "strong" | "em" | "list-item";
|
|
1298
|
-
})[], unknown>;
|
|
1299
|
-
}>]>;
|
|
1300
|
-
}>, t.PartialC<{
|
|
1301
|
-
label: t.StringC;
|
|
1302
|
-
direction: t.StringC;
|
|
1303
|
-
}>]>>>;
|
|
1304
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1305
|
-
type: t.LiteralC<"tableCell">;
|
|
1306
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1307
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
1308
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
1309
|
-
text: t.StringC;
|
|
1310
|
-
}>, t.PartialC<{
|
|
1311
|
-
spans: t.Type<({
|
|
1312
|
-
data: ({
|
|
1313
|
-
__TYPE__: "ImageLink";
|
|
1314
|
-
} & {
|
|
1315
|
-
kind: "image";
|
|
1316
|
-
id: string;
|
|
1317
|
-
url: string;
|
|
1318
|
-
height: string;
|
|
1319
|
-
width: string;
|
|
1320
|
-
size: string;
|
|
1321
|
-
name: string;
|
|
1322
|
-
} & {
|
|
1323
|
-
date?: string | null | undefined;
|
|
1324
|
-
}) | ({
|
|
1325
|
-
__TYPE__: "FileLink";
|
|
1326
|
-
} & {
|
|
1327
|
-
kind: "file";
|
|
1328
|
-
id: string;
|
|
1329
|
-
url: string;
|
|
1330
|
-
name: string;
|
|
1331
|
-
size: string;
|
|
1332
|
-
} & {
|
|
1333
|
-
date?: string | null | undefined;
|
|
1334
|
-
}) | ({
|
|
1335
|
-
__TYPE__: "DocumentLink";
|
|
1336
|
-
} & {
|
|
1337
|
-
id: string;
|
|
1338
|
-
}) | ({
|
|
1339
|
-
__TYPE__: "ExternalLink";
|
|
1340
|
-
} & {
|
|
1341
|
-
url: string;
|
|
1342
|
-
} & {
|
|
1343
|
-
kind?: "web";
|
|
1344
|
-
target?: string | null | undefined;
|
|
1345
|
-
preview?: {
|
|
1346
|
-
title?: string;
|
|
1347
|
-
} | null | undefined;
|
|
1348
|
-
});
|
|
1349
|
-
start: number;
|
|
1350
|
-
end: number;
|
|
1351
|
-
type: "hyperlink";
|
|
1352
|
-
} | {
|
|
1353
|
-
data: string;
|
|
1354
|
-
start: number;
|
|
1355
|
-
end: number;
|
|
1356
|
-
type: "label";
|
|
1357
|
-
} | {
|
|
1358
|
-
start: number;
|
|
1359
|
-
end: number;
|
|
1360
|
-
type: "strong" | "em" | "list-item";
|
|
1361
|
-
})[], ({
|
|
1362
|
-
data: ({
|
|
1363
|
-
__TYPE__: "ImageLink";
|
|
1364
|
-
} & {
|
|
1365
|
-
kind: "image";
|
|
1366
|
-
id: string;
|
|
1367
|
-
url: string;
|
|
1368
|
-
height: string;
|
|
1369
|
-
width: string;
|
|
1370
|
-
size: string;
|
|
1371
|
-
name: string;
|
|
1372
|
-
} & {
|
|
1373
|
-
date?: string | null | undefined;
|
|
1374
|
-
}) | ({
|
|
1375
|
-
__TYPE__: "FileLink";
|
|
1376
|
-
} & {
|
|
1377
|
-
kind: "file";
|
|
1378
|
-
id: string;
|
|
1379
|
-
url: string;
|
|
1380
|
-
name: string;
|
|
1381
|
-
size: string;
|
|
1382
|
-
} & {
|
|
1383
|
-
date?: string | null | undefined;
|
|
1384
|
-
}) | ({
|
|
1385
|
-
__TYPE__: "DocumentLink";
|
|
1386
|
-
} & {
|
|
1387
|
-
id: string;
|
|
1388
|
-
}) | ({
|
|
1389
|
-
__TYPE__: "ExternalLink";
|
|
1390
|
-
} & {
|
|
1391
|
-
url: string;
|
|
1392
|
-
} & {
|
|
1393
|
-
kind?: "web";
|
|
1394
|
-
target?: string | null | undefined;
|
|
1395
|
-
preview?: {
|
|
1396
|
-
title?: string;
|
|
1397
|
-
} | null | undefined;
|
|
1398
|
-
});
|
|
1399
|
-
start: number;
|
|
1400
|
-
end: number;
|
|
1401
|
-
type: "hyperlink";
|
|
1402
|
-
} | {
|
|
1403
|
-
data: string;
|
|
1404
|
-
start: number;
|
|
1405
|
-
end: number;
|
|
1406
|
-
type: "label";
|
|
1407
|
-
} | {
|
|
1408
|
-
start: number;
|
|
1409
|
-
end: number;
|
|
1410
|
-
type: "strong" | "em" | "list-item";
|
|
1411
|
-
})[], unknown>;
|
|
1412
|
-
}>]>;
|
|
1413
|
-
}>, t.PartialC<{
|
|
1414
|
-
label: t.StringC;
|
|
1415
|
-
direction: t.StringC;
|
|
1416
|
-
}>]>>>;
|
|
1417
|
-
}>>]>>;
|
|
1418
|
-
}>>>;
|
|
1419
1419
|
}>>, t.ExactC<t.TypeC<{
|
|
1420
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
1421
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
1422
1420
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
1423
1421
|
type: t.LiteralC<"Link">;
|
|
1424
1422
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -1820,7 +1818,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1820
1818
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1821
1819
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1822
1820
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1823
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
1821
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
1824
1822
|
content: t.IntersectionC<[t.TypeC<{
|
|
1825
1823
|
text: t.StringC;
|
|
1826
1824
|
}>, t.PartialC<{
|
|
@@ -1929,243 +1927,242 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1929
1927
|
}>, t.PartialC<{
|
|
1930
1928
|
label: t.StringC;
|
|
1931
1929
|
direction: t.StringC;
|
|
1932
|
-
}>]
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
})[], unknown>;
|
|
2046
|
-
}>]>;
|
|
2047
|
-
}>, t.PartialC<{
|
|
2048
|
-
label: t.StringC;
|
|
2049
|
-
direction: t.StringC;
|
|
2050
|
-
}>]>>>;
|
|
2051
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2052
|
-
type: t.LiteralC<"tableCell">;
|
|
2053
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2054
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
2055
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
2056
|
-
text: t.StringC;
|
|
1930
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1931
|
+
type: t.LiteralC<"table">;
|
|
1932
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1933
|
+
type: t.LiteralC<"tableRow">;
|
|
1934
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1935
|
+
type: t.LiteralC<"tableHeader">;
|
|
1936
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1937
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
1938
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
1939
|
+
text: t.StringC;
|
|
1940
|
+
}>, t.PartialC<{
|
|
1941
|
+
spans: t.Type<({
|
|
1942
|
+
data: ({
|
|
1943
|
+
__TYPE__: "ImageLink";
|
|
1944
|
+
} & {
|
|
1945
|
+
kind: "image";
|
|
1946
|
+
id: string;
|
|
1947
|
+
url: string;
|
|
1948
|
+
height: string;
|
|
1949
|
+
width: string;
|
|
1950
|
+
size: string;
|
|
1951
|
+
name: string;
|
|
1952
|
+
} & {
|
|
1953
|
+
date?: string | null | undefined;
|
|
1954
|
+
}) | ({
|
|
1955
|
+
__TYPE__: "FileLink";
|
|
1956
|
+
} & {
|
|
1957
|
+
kind: "file";
|
|
1958
|
+
id: string;
|
|
1959
|
+
url: string;
|
|
1960
|
+
name: string;
|
|
1961
|
+
size: string;
|
|
1962
|
+
} & {
|
|
1963
|
+
date?: string | null | undefined;
|
|
1964
|
+
}) | ({
|
|
1965
|
+
__TYPE__: "DocumentLink";
|
|
1966
|
+
} & {
|
|
1967
|
+
id: string;
|
|
1968
|
+
}) | ({
|
|
1969
|
+
__TYPE__: "ExternalLink";
|
|
1970
|
+
} & {
|
|
1971
|
+
url: string;
|
|
1972
|
+
} & {
|
|
1973
|
+
kind?: "web";
|
|
1974
|
+
target?: string | null | undefined;
|
|
1975
|
+
preview?: {
|
|
1976
|
+
title?: string;
|
|
1977
|
+
} | null | undefined;
|
|
1978
|
+
});
|
|
1979
|
+
start: number;
|
|
1980
|
+
end: number;
|
|
1981
|
+
type: "hyperlink";
|
|
1982
|
+
} | {
|
|
1983
|
+
data: string;
|
|
1984
|
+
start: number;
|
|
1985
|
+
end: number;
|
|
1986
|
+
type: "label";
|
|
1987
|
+
} | {
|
|
1988
|
+
start: number;
|
|
1989
|
+
end: number;
|
|
1990
|
+
type: "strong" | "em" | "list-item";
|
|
1991
|
+
})[], ({
|
|
1992
|
+
data: ({
|
|
1993
|
+
__TYPE__: "ImageLink";
|
|
1994
|
+
} & {
|
|
1995
|
+
kind: "image";
|
|
1996
|
+
id: string;
|
|
1997
|
+
url: string;
|
|
1998
|
+
height: string;
|
|
1999
|
+
width: string;
|
|
2000
|
+
size: string;
|
|
2001
|
+
name: string;
|
|
2002
|
+
} & {
|
|
2003
|
+
date?: string | null | undefined;
|
|
2004
|
+
}) | ({
|
|
2005
|
+
__TYPE__: "FileLink";
|
|
2006
|
+
} & {
|
|
2007
|
+
kind: "file";
|
|
2008
|
+
id: string;
|
|
2009
|
+
url: string;
|
|
2010
|
+
name: string;
|
|
2011
|
+
size: string;
|
|
2012
|
+
} & {
|
|
2013
|
+
date?: string | null | undefined;
|
|
2014
|
+
}) | ({
|
|
2015
|
+
__TYPE__: "DocumentLink";
|
|
2016
|
+
} & {
|
|
2017
|
+
id: string;
|
|
2018
|
+
}) | ({
|
|
2019
|
+
__TYPE__: "ExternalLink";
|
|
2020
|
+
} & {
|
|
2021
|
+
url: string;
|
|
2022
|
+
} & {
|
|
2023
|
+
kind?: "web";
|
|
2024
|
+
target?: string | null | undefined;
|
|
2025
|
+
preview?: {
|
|
2026
|
+
title?: string;
|
|
2027
|
+
} | null | undefined;
|
|
2028
|
+
});
|
|
2029
|
+
start: number;
|
|
2030
|
+
end: number;
|
|
2031
|
+
type: "hyperlink";
|
|
2032
|
+
} | {
|
|
2033
|
+
data: string;
|
|
2034
|
+
start: number;
|
|
2035
|
+
end: number;
|
|
2036
|
+
type: "label";
|
|
2037
|
+
} | {
|
|
2038
|
+
start: number;
|
|
2039
|
+
end: number;
|
|
2040
|
+
type: "strong" | "em" | "list-item";
|
|
2041
|
+
})[], unknown>;
|
|
2042
|
+
}>]>;
|
|
2057
2043
|
}>, t.PartialC<{
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2044
|
+
label: t.StringC;
|
|
2045
|
+
direction: t.StringC;
|
|
2046
|
+
}>]>>>;
|
|
2047
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2048
|
+
type: t.LiteralC<"tableCell">;
|
|
2049
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2050
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
2051
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
2052
|
+
text: t.StringC;
|
|
2053
|
+
}>, t.PartialC<{
|
|
2054
|
+
spans: t.Type<({
|
|
2055
|
+
data: ({
|
|
2056
|
+
__TYPE__: "ImageLink";
|
|
2057
|
+
} & {
|
|
2058
|
+
kind: "image";
|
|
2059
|
+
id: string;
|
|
2060
|
+
url: string;
|
|
2061
|
+
height: string;
|
|
2062
|
+
width: string;
|
|
2063
|
+
size: string;
|
|
2064
|
+
name: string;
|
|
2065
|
+
} & {
|
|
2066
|
+
date?: string | null | undefined;
|
|
2067
|
+
}) | ({
|
|
2068
|
+
__TYPE__: "FileLink";
|
|
2069
|
+
} & {
|
|
2070
|
+
kind: "file";
|
|
2071
|
+
id: string;
|
|
2072
|
+
url: string;
|
|
2073
|
+
name: string;
|
|
2074
|
+
size: string;
|
|
2075
|
+
} & {
|
|
2076
|
+
date?: string | null | undefined;
|
|
2077
|
+
}) | ({
|
|
2078
|
+
__TYPE__: "DocumentLink";
|
|
2079
|
+
} & {
|
|
2080
|
+
id: string;
|
|
2081
|
+
}) | ({
|
|
2082
|
+
__TYPE__: "ExternalLink";
|
|
2083
|
+
} & {
|
|
2084
|
+
url: string;
|
|
2085
|
+
} & {
|
|
2086
|
+
kind?: "web";
|
|
2087
|
+
target?: string | null | undefined;
|
|
2088
|
+
preview?: {
|
|
2089
|
+
title?: string;
|
|
2090
|
+
} | null | undefined;
|
|
2091
|
+
});
|
|
2092
|
+
start: number;
|
|
2093
|
+
end: number;
|
|
2094
|
+
type: "hyperlink";
|
|
2095
|
+
} | {
|
|
2096
|
+
data: string;
|
|
2097
|
+
start: number;
|
|
2098
|
+
end: number;
|
|
2099
|
+
type: "label";
|
|
2100
|
+
} | {
|
|
2101
|
+
start: number;
|
|
2102
|
+
end: number;
|
|
2103
|
+
type: "strong" | "em" | "list-item";
|
|
2104
|
+
})[], ({
|
|
2105
|
+
data: ({
|
|
2106
|
+
__TYPE__: "ImageLink";
|
|
2107
|
+
} & {
|
|
2108
|
+
kind: "image";
|
|
2109
|
+
id: string;
|
|
2110
|
+
url: string;
|
|
2111
|
+
height: string;
|
|
2112
|
+
width: string;
|
|
2113
|
+
size: string;
|
|
2114
|
+
name: string;
|
|
2115
|
+
} & {
|
|
2116
|
+
date?: string | null | undefined;
|
|
2117
|
+
}) | ({
|
|
2118
|
+
__TYPE__: "FileLink";
|
|
2119
|
+
} & {
|
|
2120
|
+
kind: "file";
|
|
2121
|
+
id: string;
|
|
2122
|
+
url: string;
|
|
2123
|
+
name: string;
|
|
2124
|
+
size: string;
|
|
2125
|
+
} & {
|
|
2126
|
+
date?: string | null | undefined;
|
|
2127
|
+
}) | ({
|
|
2128
|
+
__TYPE__: "DocumentLink";
|
|
2129
|
+
} & {
|
|
2130
|
+
id: string;
|
|
2131
|
+
}) | ({
|
|
2132
|
+
__TYPE__: "ExternalLink";
|
|
2133
|
+
} & {
|
|
2134
|
+
url: string;
|
|
2135
|
+
} & {
|
|
2136
|
+
kind?: "web";
|
|
2137
|
+
target?: string | null | undefined;
|
|
2138
|
+
preview?: {
|
|
2139
|
+
title?: string;
|
|
2140
|
+
} | null | undefined;
|
|
2141
|
+
});
|
|
2142
|
+
start: number;
|
|
2143
|
+
end: number;
|
|
2144
|
+
type: "hyperlink";
|
|
2145
|
+
} | {
|
|
2146
|
+
data: string;
|
|
2147
|
+
start: number;
|
|
2148
|
+
end: number;
|
|
2149
|
+
type: "label";
|
|
2150
|
+
} | {
|
|
2151
|
+
start: number;
|
|
2152
|
+
end: number;
|
|
2153
|
+
type: "strong" | "em" | "list-item";
|
|
2154
|
+
})[], unknown>;
|
|
2155
|
+
}>]>;
|
|
2156
|
+
}>, t.PartialC<{
|
|
2157
|
+
label: t.StringC;
|
|
2158
|
+
direction: t.StringC;
|
|
2159
|
+
}>]>>>;
|
|
2160
|
+
}>>]>>;
|
|
2161
|
+
}>>>;
|
|
2162
|
+
}>>]>>;
|
|
2163
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2164
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2166
2165
|
}>>, t.ExactC<t.TypeC<{
|
|
2167
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
2168
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2169
2166
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
2170
2167
|
type: t.LiteralC<"Link">;
|
|
2171
2168
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -2562,355 +2559,354 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
2562
2559
|
all: t.UnknownC;
|
|
2563
2560
|
}>>]>;
|
|
2564
2561
|
}>, t.PartialC<{
|
|
2565
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2566
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2567
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2568
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
2569
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
2570
|
-
text: t.StringC;
|
|
2571
|
-
}>, t.PartialC<{
|
|
2572
|
-
spans: t.Type<({
|
|
2573
|
-
data: ({
|
|
2574
|
-
__TYPE__: "ImageLink";
|
|
2575
|
-
} & {
|
|
2576
|
-
kind: "image";
|
|
2577
|
-
id: string;
|
|
2578
|
-
url: string;
|
|
2579
|
-
height: string;
|
|
2580
|
-
width: string;
|
|
2581
|
-
size: string;
|
|
2582
|
-
name: string;
|
|
2583
|
-
} & {
|
|
2584
|
-
date?: string | null | undefined;
|
|
2585
|
-
}) | ({
|
|
2586
|
-
__TYPE__: "FileLink";
|
|
2587
|
-
} & {
|
|
2588
|
-
kind: "file";
|
|
2589
|
-
id: string;
|
|
2590
|
-
url: string;
|
|
2591
|
-
name: string;
|
|
2592
|
-
size: string;
|
|
2593
|
-
} & {
|
|
2594
|
-
date?: string | null | undefined;
|
|
2595
|
-
}) | ({
|
|
2596
|
-
__TYPE__: "DocumentLink";
|
|
2597
|
-
} & {
|
|
2598
|
-
id: string;
|
|
2599
|
-
}) | ({
|
|
2600
|
-
__TYPE__: "ExternalLink";
|
|
2601
|
-
} & {
|
|
2602
|
-
url: string;
|
|
2603
|
-
} & {
|
|
2604
|
-
kind?: "web";
|
|
2605
|
-
target?: string | null | undefined;
|
|
2606
|
-
preview?: {
|
|
2607
|
-
title?: string;
|
|
2608
|
-
} | null | undefined;
|
|
2609
|
-
});
|
|
2610
|
-
start: number;
|
|
2611
|
-
end: number;
|
|
2612
|
-
type: "hyperlink";
|
|
2613
|
-
} | {
|
|
2614
|
-
data: string;
|
|
2615
|
-
start: number;
|
|
2616
|
-
end: number;
|
|
2617
|
-
type: "label";
|
|
2618
|
-
} | {
|
|
2619
|
-
start: number;
|
|
2620
|
-
end: number;
|
|
2621
|
-
type: "strong" | "em" | "list-item";
|
|
2622
|
-
})[], ({
|
|
2623
|
-
data: ({
|
|
2624
|
-
__TYPE__: "ImageLink";
|
|
2625
|
-
} & {
|
|
2626
|
-
kind: "image";
|
|
2627
|
-
id: string;
|
|
2628
|
-
url: string;
|
|
2629
|
-
height: string;
|
|
2630
|
-
width: string;
|
|
2631
|
-
size: string;
|
|
2632
|
-
name: string;
|
|
2633
|
-
} & {
|
|
2634
|
-
date?: string | null | undefined;
|
|
2635
|
-
}) | ({
|
|
2636
|
-
__TYPE__: "FileLink";
|
|
2637
|
-
} & {
|
|
2638
|
-
kind: "file";
|
|
2639
|
-
id: string;
|
|
2640
|
-
url: string;
|
|
2641
|
-
name: string;
|
|
2642
|
-
size: string;
|
|
2643
|
-
} & {
|
|
2644
|
-
date?: string | null | undefined;
|
|
2645
|
-
}) | ({
|
|
2646
|
-
__TYPE__: "DocumentLink";
|
|
2647
|
-
} & {
|
|
2648
|
-
id: string;
|
|
2649
|
-
}) | ({
|
|
2650
|
-
__TYPE__: "ExternalLink";
|
|
2651
|
-
} & {
|
|
2652
|
-
url: string;
|
|
2653
|
-
} & {
|
|
2654
|
-
kind?: "web";
|
|
2655
|
-
target?: string | null | undefined;
|
|
2656
|
-
preview?: {
|
|
2657
|
-
title?: string;
|
|
2658
|
-
} | null | undefined;
|
|
2659
|
-
});
|
|
2660
|
-
start: number;
|
|
2661
|
-
end: number;
|
|
2662
|
-
type: "hyperlink";
|
|
2663
|
-
} | {
|
|
2664
|
-
data: string;
|
|
2665
|
-
start: number;
|
|
2666
|
-
end: number;
|
|
2667
|
-
type: "label";
|
|
2668
|
-
} | {
|
|
2669
|
-
start: number;
|
|
2670
|
-
end: number;
|
|
2671
|
-
type: "strong" | "em" | "list-item";
|
|
2672
|
-
})[], unknown>;
|
|
2673
|
-
}>]>;
|
|
2674
|
-
}>, t.PartialC<{
|
|
2675
|
-
label: t.StringC;
|
|
2676
|
-
direction: t.StringC;
|
|
2677
|
-
}>]
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
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
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2562
|
+
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2563
|
+
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2564
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2565
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
2566
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
2567
|
+
text: t.StringC;
|
|
2568
|
+
}>, t.PartialC<{
|
|
2569
|
+
spans: t.Type<({
|
|
2570
|
+
data: ({
|
|
2571
|
+
__TYPE__: "ImageLink";
|
|
2572
|
+
} & {
|
|
2573
|
+
kind: "image";
|
|
2574
|
+
id: string;
|
|
2575
|
+
url: string;
|
|
2576
|
+
height: string;
|
|
2577
|
+
width: string;
|
|
2578
|
+
size: string;
|
|
2579
|
+
name: string;
|
|
2580
|
+
} & {
|
|
2581
|
+
date?: string | null | undefined;
|
|
2582
|
+
}) | ({
|
|
2583
|
+
__TYPE__: "FileLink";
|
|
2584
|
+
} & {
|
|
2585
|
+
kind: "file";
|
|
2586
|
+
id: string;
|
|
2587
|
+
url: string;
|
|
2588
|
+
name: string;
|
|
2589
|
+
size: string;
|
|
2590
|
+
} & {
|
|
2591
|
+
date?: string | null | undefined;
|
|
2592
|
+
}) | ({
|
|
2593
|
+
__TYPE__: "DocumentLink";
|
|
2594
|
+
} & {
|
|
2595
|
+
id: string;
|
|
2596
|
+
}) | ({
|
|
2597
|
+
__TYPE__: "ExternalLink";
|
|
2598
|
+
} & {
|
|
2599
|
+
url: string;
|
|
2600
|
+
} & {
|
|
2601
|
+
kind?: "web";
|
|
2602
|
+
target?: string | null | undefined;
|
|
2603
|
+
preview?: {
|
|
2604
|
+
title?: string;
|
|
2605
|
+
} | null | undefined;
|
|
2606
|
+
});
|
|
2607
|
+
start: number;
|
|
2608
|
+
end: number;
|
|
2609
|
+
type: "hyperlink";
|
|
2610
|
+
} | {
|
|
2611
|
+
data: string;
|
|
2612
|
+
start: number;
|
|
2613
|
+
end: number;
|
|
2614
|
+
type: "label";
|
|
2615
|
+
} | {
|
|
2616
|
+
start: number;
|
|
2617
|
+
end: number;
|
|
2618
|
+
type: "strong" | "em" | "list-item";
|
|
2619
|
+
})[], ({
|
|
2620
|
+
data: ({
|
|
2621
|
+
__TYPE__: "ImageLink";
|
|
2622
|
+
} & {
|
|
2623
|
+
kind: "image";
|
|
2624
|
+
id: string;
|
|
2625
|
+
url: string;
|
|
2626
|
+
height: string;
|
|
2627
|
+
width: string;
|
|
2628
|
+
size: string;
|
|
2629
|
+
name: string;
|
|
2630
|
+
} & {
|
|
2631
|
+
date?: string | null | undefined;
|
|
2632
|
+
}) | ({
|
|
2633
|
+
__TYPE__: "FileLink";
|
|
2634
|
+
} & {
|
|
2635
|
+
kind: "file";
|
|
2636
|
+
id: string;
|
|
2637
|
+
url: string;
|
|
2638
|
+
name: string;
|
|
2639
|
+
size: string;
|
|
2640
|
+
} & {
|
|
2641
|
+
date?: string | null | undefined;
|
|
2642
|
+
}) | ({
|
|
2643
|
+
__TYPE__: "DocumentLink";
|
|
2644
|
+
} & {
|
|
2645
|
+
id: string;
|
|
2646
|
+
}) | ({
|
|
2647
|
+
__TYPE__: "ExternalLink";
|
|
2648
|
+
} & {
|
|
2649
|
+
url: string;
|
|
2650
|
+
} & {
|
|
2651
|
+
kind?: "web";
|
|
2652
|
+
target?: string | null | undefined;
|
|
2653
|
+
preview?: {
|
|
2654
|
+
title?: string;
|
|
2655
|
+
} | null | undefined;
|
|
2656
|
+
});
|
|
2657
|
+
start: number;
|
|
2658
|
+
end: number;
|
|
2659
|
+
type: "hyperlink";
|
|
2660
|
+
} | {
|
|
2661
|
+
data: string;
|
|
2662
|
+
start: number;
|
|
2663
|
+
end: number;
|
|
2664
|
+
type: "label";
|
|
2665
|
+
} | {
|
|
2666
|
+
start: number;
|
|
2667
|
+
end: number;
|
|
2668
|
+
type: "strong" | "em" | "list-item";
|
|
2669
|
+
})[], unknown>;
|
|
2670
|
+
}>]>;
|
|
2671
|
+
}>, t.PartialC<{
|
|
2672
|
+
label: t.StringC;
|
|
2673
|
+
direction: t.StringC;
|
|
2674
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2675
|
+
type: t.LiteralC<"table">;
|
|
2676
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
2677
|
+
type: t.LiteralC<"tableRow">;
|
|
2678
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
2679
|
+
type: t.LiteralC<"tableHeader">;
|
|
2680
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2681
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
2682
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
2683
|
+
text: t.StringC;
|
|
2684
|
+
}>, t.PartialC<{
|
|
2685
|
+
spans: t.Type<({
|
|
2686
|
+
data: ({
|
|
2687
|
+
__TYPE__: "ImageLink";
|
|
2688
|
+
} & {
|
|
2689
|
+
kind: "image";
|
|
2690
|
+
id: string;
|
|
2691
|
+
url: string;
|
|
2692
|
+
height: string;
|
|
2693
|
+
width: string;
|
|
2694
|
+
size: string;
|
|
2695
|
+
name: string;
|
|
2696
|
+
} & {
|
|
2697
|
+
date?: string | null | undefined;
|
|
2698
|
+
}) | ({
|
|
2699
|
+
__TYPE__: "FileLink";
|
|
2700
|
+
} & {
|
|
2701
|
+
kind: "file";
|
|
2702
|
+
id: string;
|
|
2703
|
+
url: string;
|
|
2704
|
+
name: string;
|
|
2705
|
+
size: string;
|
|
2706
|
+
} & {
|
|
2707
|
+
date?: string | null | undefined;
|
|
2708
|
+
}) | ({
|
|
2709
|
+
__TYPE__: "DocumentLink";
|
|
2710
|
+
} & {
|
|
2711
|
+
id: string;
|
|
2712
|
+
}) | ({
|
|
2713
|
+
__TYPE__: "ExternalLink";
|
|
2714
|
+
} & {
|
|
2715
|
+
url: string;
|
|
2716
|
+
} & {
|
|
2717
|
+
kind?: "web";
|
|
2718
|
+
target?: string | null | undefined;
|
|
2719
|
+
preview?: {
|
|
2720
|
+
title?: string;
|
|
2721
|
+
} | null | undefined;
|
|
2722
|
+
});
|
|
2723
|
+
start: number;
|
|
2724
|
+
end: number;
|
|
2725
|
+
type: "hyperlink";
|
|
2726
|
+
} | {
|
|
2727
|
+
data: string;
|
|
2728
|
+
start: number;
|
|
2729
|
+
end: number;
|
|
2730
|
+
type: "label";
|
|
2731
|
+
} | {
|
|
2732
|
+
start: number;
|
|
2733
|
+
end: number;
|
|
2734
|
+
type: "strong" | "em" | "list-item";
|
|
2735
|
+
})[], ({
|
|
2736
|
+
data: ({
|
|
2737
|
+
__TYPE__: "ImageLink";
|
|
2738
|
+
} & {
|
|
2739
|
+
kind: "image";
|
|
2740
|
+
id: string;
|
|
2741
|
+
url: string;
|
|
2742
|
+
height: string;
|
|
2743
|
+
width: string;
|
|
2744
|
+
size: string;
|
|
2745
|
+
name: string;
|
|
2746
|
+
} & {
|
|
2747
|
+
date?: string | null | undefined;
|
|
2748
|
+
}) | ({
|
|
2749
|
+
__TYPE__: "FileLink";
|
|
2750
|
+
} & {
|
|
2751
|
+
kind: "file";
|
|
2752
|
+
id: string;
|
|
2753
|
+
url: string;
|
|
2754
|
+
name: string;
|
|
2755
|
+
size: string;
|
|
2756
|
+
} & {
|
|
2757
|
+
date?: string | null | undefined;
|
|
2758
|
+
}) | ({
|
|
2759
|
+
__TYPE__: "DocumentLink";
|
|
2760
|
+
} & {
|
|
2761
|
+
id: string;
|
|
2762
|
+
}) | ({
|
|
2763
|
+
__TYPE__: "ExternalLink";
|
|
2764
|
+
} & {
|
|
2765
|
+
url: string;
|
|
2766
|
+
} & {
|
|
2767
|
+
kind?: "web";
|
|
2768
|
+
target?: string | null | undefined;
|
|
2769
|
+
preview?: {
|
|
2770
|
+
title?: string;
|
|
2771
|
+
} | null | undefined;
|
|
2772
|
+
});
|
|
2773
|
+
start: number;
|
|
2774
|
+
end: number;
|
|
2775
|
+
type: "hyperlink";
|
|
2776
|
+
} | {
|
|
2777
|
+
data: string;
|
|
2778
|
+
start: number;
|
|
2779
|
+
end: number;
|
|
2780
|
+
type: "label";
|
|
2781
|
+
} | {
|
|
2782
|
+
start: number;
|
|
2783
|
+
end: number;
|
|
2784
|
+
type: "strong" | "em" | "list-item";
|
|
2785
|
+
})[], unknown>;
|
|
2786
|
+
}>]>;
|
|
2787
|
+
}>, t.PartialC<{
|
|
2788
|
+
label: t.StringC;
|
|
2789
|
+
direction: t.StringC;
|
|
2790
|
+
}>]>>>;
|
|
2791
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2792
|
+
type: t.LiteralC<"tableCell">;
|
|
2793
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2794
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
2795
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
2796
|
+
text: t.StringC;
|
|
2797
|
+
}>, t.PartialC<{
|
|
2798
|
+
spans: t.Type<({
|
|
2799
|
+
data: ({
|
|
2800
|
+
__TYPE__: "ImageLink";
|
|
2801
|
+
} & {
|
|
2802
|
+
kind: "image";
|
|
2803
|
+
id: string;
|
|
2804
|
+
url: string;
|
|
2805
|
+
height: string;
|
|
2806
|
+
width: string;
|
|
2807
|
+
size: string;
|
|
2808
|
+
name: string;
|
|
2809
|
+
} & {
|
|
2810
|
+
date?: string | null | undefined;
|
|
2811
|
+
}) | ({
|
|
2812
|
+
__TYPE__: "FileLink";
|
|
2813
|
+
} & {
|
|
2814
|
+
kind: "file";
|
|
2815
|
+
id: string;
|
|
2816
|
+
url: string;
|
|
2817
|
+
name: string;
|
|
2818
|
+
size: string;
|
|
2819
|
+
} & {
|
|
2820
|
+
date?: string | null | undefined;
|
|
2821
|
+
}) | ({
|
|
2822
|
+
__TYPE__: "DocumentLink";
|
|
2823
|
+
} & {
|
|
2824
|
+
id: string;
|
|
2825
|
+
}) | ({
|
|
2826
|
+
__TYPE__: "ExternalLink";
|
|
2827
|
+
} & {
|
|
2828
|
+
url: string;
|
|
2829
|
+
} & {
|
|
2830
|
+
kind?: "web";
|
|
2831
|
+
target?: string | null | undefined;
|
|
2832
|
+
preview?: {
|
|
2833
|
+
title?: string;
|
|
2834
|
+
} | null | undefined;
|
|
2835
|
+
});
|
|
2836
|
+
start: number;
|
|
2837
|
+
end: number;
|
|
2838
|
+
type: "hyperlink";
|
|
2839
|
+
} | {
|
|
2840
|
+
data: string;
|
|
2841
|
+
start: number;
|
|
2842
|
+
end: number;
|
|
2843
|
+
type: "label";
|
|
2844
|
+
} | {
|
|
2845
|
+
start: number;
|
|
2846
|
+
end: number;
|
|
2847
|
+
type: "strong" | "em" | "list-item";
|
|
2848
|
+
})[], ({
|
|
2849
|
+
data: ({
|
|
2850
|
+
__TYPE__: "ImageLink";
|
|
2851
|
+
} & {
|
|
2852
|
+
kind: "image";
|
|
2853
|
+
id: string;
|
|
2854
|
+
url: string;
|
|
2855
|
+
height: string;
|
|
2856
|
+
width: string;
|
|
2857
|
+
size: string;
|
|
2858
|
+
name: string;
|
|
2859
|
+
} & {
|
|
2860
|
+
date?: string | null | undefined;
|
|
2861
|
+
}) | ({
|
|
2862
|
+
__TYPE__: "FileLink";
|
|
2863
|
+
} & {
|
|
2864
|
+
kind: "file";
|
|
2865
|
+
id: string;
|
|
2866
|
+
url: string;
|
|
2867
|
+
name: string;
|
|
2868
|
+
size: string;
|
|
2869
|
+
} & {
|
|
2870
|
+
date?: string | null | undefined;
|
|
2871
|
+
}) | ({
|
|
2872
|
+
__TYPE__: "DocumentLink";
|
|
2873
|
+
} & {
|
|
2874
|
+
id: string;
|
|
2875
|
+
}) | ({
|
|
2876
|
+
__TYPE__: "ExternalLink";
|
|
2877
|
+
} & {
|
|
2878
|
+
url: string;
|
|
2879
|
+
} & {
|
|
2880
|
+
kind?: "web";
|
|
2881
|
+
target?: string | null | undefined;
|
|
2882
|
+
preview?: {
|
|
2883
|
+
title?: string;
|
|
2884
|
+
} | null | undefined;
|
|
2885
|
+
});
|
|
2886
|
+
start: number;
|
|
2887
|
+
end: number;
|
|
2888
|
+
type: "hyperlink";
|
|
2889
|
+
} | {
|
|
2890
|
+
data: string;
|
|
2891
|
+
start: number;
|
|
2892
|
+
end: number;
|
|
2893
|
+
type: "label";
|
|
2894
|
+
} | {
|
|
2895
|
+
start: number;
|
|
2896
|
+
end: number;
|
|
2897
|
+
type: "strong" | "em" | "list-item";
|
|
2898
|
+
})[], unknown>;
|
|
2899
|
+
}>]>;
|
|
2900
|
+
}>, t.PartialC<{
|
|
2901
|
+
label: t.StringC;
|
|
2902
|
+
direction: t.StringC;
|
|
2903
|
+
}>]>>>;
|
|
2904
|
+
}>>]>>;
|
|
2905
|
+
}>>>;
|
|
2906
|
+
}>>]>>;
|
|
2907
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2908
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2911
2909
|
}>>, t.ExactC<t.TypeC<{
|
|
2912
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
2913
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2914
2910
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
2915
2911
|
type: t.LiteralC<"Link">;
|
|
2916
2912
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -3309,7 +3305,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
3309
3305
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3310
3306
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3311
3307
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3312
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
3308
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
3313
3309
|
content: t.IntersectionC<[t.TypeC<{
|
|
3314
3310
|
text: t.StringC;
|
|
3315
3311
|
}>, t.PartialC<{
|
|
@@ -3418,243 +3414,242 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
3418
3414
|
}>, t.PartialC<{
|
|
3419
3415
|
label: t.StringC;
|
|
3420
3416
|
direction: t.StringC;
|
|
3421
|
-
}>]
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
})[], unknown>;
|
|
3535
|
-
}>]>;
|
|
3536
|
-
}>, t.PartialC<{
|
|
3537
|
-
label: t.StringC;
|
|
3538
|
-
direction: t.StringC;
|
|
3539
|
-
}>]>>>;
|
|
3540
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3541
|
-
type: t.LiteralC<"tableCell">;
|
|
3542
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3543
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
3544
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
3545
|
-
text: t.StringC;
|
|
3417
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
3418
|
+
type: t.LiteralC<"table">;
|
|
3419
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3420
|
+
type: t.LiteralC<"tableRow">;
|
|
3421
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
3422
|
+
type: t.LiteralC<"tableHeader">;
|
|
3423
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3424
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
3425
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
3426
|
+
text: t.StringC;
|
|
3427
|
+
}>, t.PartialC<{
|
|
3428
|
+
spans: t.Type<({
|
|
3429
|
+
data: ({
|
|
3430
|
+
__TYPE__: "ImageLink";
|
|
3431
|
+
} & {
|
|
3432
|
+
kind: "image";
|
|
3433
|
+
id: string;
|
|
3434
|
+
url: string;
|
|
3435
|
+
height: string;
|
|
3436
|
+
width: string;
|
|
3437
|
+
size: string;
|
|
3438
|
+
name: string;
|
|
3439
|
+
} & {
|
|
3440
|
+
date?: string | null | undefined;
|
|
3441
|
+
}) | ({
|
|
3442
|
+
__TYPE__: "FileLink";
|
|
3443
|
+
} & {
|
|
3444
|
+
kind: "file";
|
|
3445
|
+
id: string;
|
|
3446
|
+
url: string;
|
|
3447
|
+
name: string;
|
|
3448
|
+
size: string;
|
|
3449
|
+
} & {
|
|
3450
|
+
date?: string | null | undefined;
|
|
3451
|
+
}) | ({
|
|
3452
|
+
__TYPE__: "DocumentLink";
|
|
3453
|
+
} & {
|
|
3454
|
+
id: string;
|
|
3455
|
+
}) | ({
|
|
3456
|
+
__TYPE__: "ExternalLink";
|
|
3457
|
+
} & {
|
|
3458
|
+
url: string;
|
|
3459
|
+
} & {
|
|
3460
|
+
kind?: "web";
|
|
3461
|
+
target?: string | null | undefined;
|
|
3462
|
+
preview?: {
|
|
3463
|
+
title?: string;
|
|
3464
|
+
} | null | undefined;
|
|
3465
|
+
});
|
|
3466
|
+
start: number;
|
|
3467
|
+
end: number;
|
|
3468
|
+
type: "hyperlink";
|
|
3469
|
+
} | {
|
|
3470
|
+
data: string;
|
|
3471
|
+
start: number;
|
|
3472
|
+
end: number;
|
|
3473
|
+
type: "label";
|
|
3474
|
+
} | {
|
|
3475
|
+
start: number;
|
|
3476
|
+
end: number;
|
|
3477
|
+
type: "strong" | "em" | "list-item";
|
|
3478
|
+
})[], ({
|
|
3479
|
+
data: ({
|
|
3480
|
+
__TYPE__: "ImageLink";
|
|
3481
|
+
} & {
|
|
3482
|
+
kind: "image";
|
|
3483
|
+
id: string;
|
|
3484
|
+
url: string;
|
|
3485
|
+
height: string;
|
|
3486
|
+
width: string;
|
|
3487
|
+
size: string;
|
|
3488
|
+
name: string;
|
|
3489
|
+
} & {
|
|
3490
|
+
date?: string | null | undefined;
|
|
3491
|
+
}) | ({
|
|
3492
|
+
__TYPE__: "FileLink";
|
|
3493
|
+
} & {
|
|
3494
|
+
kind: "file";
|
|
3495
|
+
id: string;
|
|
3496
|
+
url: string;
|
|
3497
|
+
name: string;
|
|
3498
|
+
size: string;
|
|
3499
|
+
} & {
|
|
3500
|
+
date?: string | null | undefined;
|
|
3501
|
+
}) | ({
|
|
3502
|
+
__TYPE__: "DocumentLink";
|
|
3503
|
+
} & {
|
|
3504
|
+
id: string;
|
|
3505
|
+
}) | ({
|
|
3506
|
+
__TYPE__: "ExternalLink";
|
|
3507
|
+
} & {
|
|
3508
|
+
url: string;
|
|
3509
|
+
} & {
|
|
3510
|
+
kind?: "web";
|
|
3511
|
+
target?: string | null | undefined;
|
|
3512
|
+
preview?: {
|
|
3513
|
+
title?: string;
|
|
3514
|
+
} | null | undefined;
|
|
3515
|
+
});
|
|
3516
|
+
start: number;
|
|
3517
|
+
end: number;
|
|
3518
|
+
type: "hyperlink";
|
|
3519
|
+
} | {
|
|
3520
|
+
data: string;
|
|
3521
|
+
start: number;
|
|
3522
|
+
end: number;
|
|
3523
|
+
type: "label";
|
|
3524
|
+
} | {
|
|
3525
|
+
start: number;
|
|
3526
|
+
end: number;
|
|
3527
|
+
type: "strong" | "em" | "list-item";
|
|
3528
|
+
})[], unknown>;
|
|
3529
|
+
}>]>;
|
|
3546
3530
|
}>, t.PartialC<{
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3531
|
+
label: t.StringC;
|
|
3532
|
+
direction: t.StringC;
|
|
3533
|
+
}>]>>>;
|
|
3534
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3535
|
+
type: t.LiteralC<"tableCell">;
|
|
3536
|
+
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3537
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
|
|
3538
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
3539
|
+
text: t.StringC;
|
|
3540
|
+
}>, t.PartialC<{
|
|
3541
|
+
spans: t.Type<({
|
|
3542
|
+
data: ({
|
|
3543
|
+
__TYPE__: "ImageLink";
|
|
3544
|
+
} & {
|
|
3545
|
+
kind: "image";
|
|
3546
|
+
id: string;
|
|
3547
|
+
url: string;
|
|
3548
|
+
height: string;
|
|
3549
|
+
width: string;
|
|
3550
|
+
size: string;
|
|
3551
|
+
name: string;
|
|
3552
|
+
} & {
|
|
3553
|
+
date?: string | null | undefined;
|
|
3554
|
+
}) | ({
|
|
3555
|
+
__TYPE__: "FileLink";
|
|
3556
|
+
} & {
|
|
3557
|
+
kind: "file";
|
|
3558
|
+
id: string;
|
|
3559
|
+
url: string;
|
|
3560
|
+
name: string;
|
|
3561
|
+
size: string;
|
|
3562
|
+
} & {
|
|
3563
|
+
date?: string | null | undefined;
|
|
3564
|
+
}) | ({
|
|
3565
|
+
__TYPE__: "DocumentLink";
|
|
3566
|
+
} & {
|
|
3567
|
+
id: string;
|
|
3568
|
+
}) | ({
|
|
3569
|
+
__TYPE__: "ExternalLink";
|
|
3570
|
+
} & {
|
|
3571
|
+
url: string;
|
|
3572
|
+
} & {
|
|
3573
|
+
kind?: "web";
|
|
3574
|
+
target?: string | null | undefined;
|
|
3575
|
+
preview?: {
|
|
3576
|
+
title?: string;
|
|
3577
|
+
} | null | undefined;
|
|
3578
|
+
});
|
|
3579
|
+
start: number;
|
|
3580
|
+
end: number;
|
|
3581
|
+
type: "hyperlink";
|
|
3582
|
+
} | {
|
|
3583
|
+
data: string;
|
|
3584
|
+
start: number;
|
|
3585
|
+
end: number;
|
|
3586
|
+
type: "label";
|
|
3587
|
+
} | {
|
|
3588
|
+
start: number;
|
|
3589
|
+
end: number;
|
|
3590
|
+
type: "strong" | "em" | "list-item";
|
|
3591
|
+
})[], ({
|
|
3592
|
+
data: ({
|
|
3593
|
+
__TYPE__: "ImageLink";
|
|
3594
|
+
} & {
|
|
3595
|
+
kind: "image";
|
|
3596
|
+
id: string;
|
|
3597
|
+
url: string;
|
|
3598
|
+
height: string;
|
|
3599
|
+
width: string;
|
|
3600
|
+
size: string;
|
|
3601
|
+
name: string;
|
|
3602
|
+
} & {
|
|
3603
|
+
date?: string | null | undefined;
|
|
3604
|
+
}) | ({
|
|
3605
|
+
__TYPE__: "FileLink";
|
|
3606
|
+
} & {
|
|
3607
|
+
kind: "file";
|
|
3608
|
+
id: string;
|
|
3609
|
+
url: string;
|
|
3610
|
+
name: string;
|
|
3611
|
+
size: string;
|
|
3612
|
+
} & {
|
|
3613
|
+
date?: string | null | undefined;
|
|
3614
|
+
}) | ({
|
|
3615
|
+
__TYPE__: "DocumentLink";
|
|
3616
|
+
} & {
|
|
3617
|
+
id: string;
|
|
3618
|
+
}) | ({
|
|
3619
|
+
__TYPE__: "ExternalLink";
|
|
3620
|
+
} & {
|
|
3621
|
+
url: string;
|
|
3622
|
+
} & {
|
|
3623
|
+
kind?: "web";
|
|
3624
|
+
target?: string | null | undefined;
|
|
3625
|
+
preview?: {
|
|
3626
|
+
title?: string;
|
|
3627
|
+
} | null | undefined;
|
|
3628
|
+
});
|
|
3629
|
+
start: number;
|
|
3630
|
+
end: number;
|
|
3631
|
+
type: "hyperlink";
|
|
3632
|
+
} | {
|
|
3633
|
+
data: string;
|
|
3634
|
+
start: number;
|
|
3635
|
+
end: number;
|
|
3636
|
+
type: "label";
|
|
3637
|
+
} | {
|
|
3638
|
+
start: number;
|
|
3639
|
+
end: number;
|
|
3640
|
+
type: "strong" | "em" | "list-item";
|
|
3641
|
+
})[], unknown>;
|
|
3642
|
+
}>]>;
|
|
3643
|
+
}>, t.PartialC<{
|
|
3644
|
+
label: t.StringC;
|
|
3645
|
+
direction: t.StringC;
|
|
3646
|
+
}>]>>>;
|
|
3647
|
+
}>>]>>;
|
|
3648
|
+
}>>>;
|
|
3649
|
+
}>>]>>;
|
|
3650
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3651
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3655
3652
|
}>>, t.ExactC<t.TypeC<{
|
|
3656
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
3657
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
3658
3653
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
3659
3654
|
type: t.LiteralC<"Link">;
|
|
3660
3655
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -4114,7 +4109,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4114
4109
|
label?: string | null | undefined;
|
|
4115
4110
|
direction?: string | null | undefined;
|
|
4116
4111
|
}) | ({
|
|
4117
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
4112
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4118
4113
|
content: {
|
|
4119
4114
|
text: string;
|
|
4120
4115
|
} & {
|
|
@@ -4173,143 +4168,142 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4173
4168
|
} & {
|
|
4174
4169
|
label?: string;
|
|
4175
4170
|
direction?: string;
|
|
4176
|
-
})
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
content: {
|
|
4181
|
-
type: "tableRow";
|
|
4182
|
-
content: ({
|
|
4183
|
-
type: "tableHeader";
|
|
4184
|
-
content: ({
|
|
4185
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
4186
|
-
content: {
|
|
4187
|
-
text: string;
|
|
4188
|
-
} & {
|
|
4189
|
-
spans?: ({
|
|
4190
|
-
data: ({
|
|
4191
|
-
__TYPE__: "ImageLink";
|
|
4192
|
-
} & {
|
|
4193
|
-
kind: "image";
|
|
4194
|
-
id: string;
|
|
4195
|
-
url: string;
|
|
4196
|
-
height: string;
|
|
4197
|
-
width: string;
|
|
4198
|
-
size: string;
|
|
4199
|
-
name: string;
|
|
4200
|
-
} & {
|
|
4201
|
-
date?: string | null | undefined;
|
|
4202
|
-
}) | ({
|
|
4203
|
-
__TYPE__: "FileLink";
|
|
4204
|
-
} & {
|
|
4205
|
-
kind: "file";
|
|
4206
|
-
id: string;
|
|
4207
|
-
url: string;
|
|
4208
|
-
name: string;
|
|
4209
|
-
size: string;
|
|
4210
|
-
} & {
|
|
4211
|
-
date?: string | null | undefined;
|
|
4212
|
-
}) | ({
|
|
4213
|
-
__TYPE__: "DocumentLink";
|
|
4214
|
-
} & {
|
|
4215
|
-
id: string;
|
|
4216
|
-
}) | ({
|
|
4217
|
-
__TYPE__: "ExternalLink";
|
|
4218
|
-
} & {
|
|
4219
|
-
url: string;
|
|
4220
|
-
} & {
|
|
4221
|
-
kind?: "web";
|
|
4222
|
-
target?: string | null | undefined;
|
|
4223
|
-
preview?: {
|
|
4224
|
-
title?: string;
|
|
4225
|
-
} | null | undefined;
|
|
4226
|
-
});
|
|
4227
|
-
start: number;
|
|
4228
|
-
end: number;
|
|
4229
|
-
type: "hyperlink";
|
|
4230
|
-
} | {
|
|
4231
|
-
data: string;
|
|
4232
|
-
start: number;
|
|
4233
|
-
end: number;
|
|
4234
|
-
type: "label";
|
|
4235
|
-
} | {
|
|
4236
|
-
start: number;
|
|
4237
|
-
end: number;
|
|
4238
|
-
type: "strong" | "em" | "list-item";
|
|
4239
|
-
})[];
|
|
4240
|
-
};
|
|
4241
|
-
} & {
|
|
4242
|
-
label?: string;
|
|
4243
|
-
direction?: string;
|
|
4244
|
-
})[];
|
|
4245
|
-
} | {
|
|
4246
|
-
type: "tableCell";
|
|
4171
|
+
}) | {
|
|
4172
|
+
type: "table";
|
|
4173
|
+
content: {
|
|
4174
|
+
type: "tableRow";
|
|
4247
4175
|
content: ({
|
|
4248
|
-
type: "
|
|
4249
|
-
content: {
|
|
4250
|
-
|
|
4176
|
+
type: "tableHeader";
|
|
4177
|
+
content: ({
|
|
4178
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4179
|
+
content: {
|
|
4180
|
+
text: string;
|
|
4181
|
+
} & {
|
|
4182
|
+
spans?: ({
|
|
4183
|
+
data: ({
|
|
4184
|
+
__TYPE__: "ImageLink";
|
|
4185
|
+
} & {
|
|
4186
|
+
kind: "image";
|
|
4187
|
+
id: string;
|
|
4188
|
+
url: string;
|
|
4189
|
+
height: string;
|
|
4190
|
+
width: string;
|
|
4191
|
+
size: string;
|
|
4192
|
+
name: string;
|
|
4193
|
+
} & {
|
|
4194
|
+
date?: string | null | undefined;
|
|
4195
|
+
}) | ({
|
|
4196
|
+
__TYPE__: "FileLink";
|
|
4197
|
+
} & {
|
|
4198
|
+
kind: "file";
|
|
4199
|
+
id: string;
|
|
4200
|
+
url: string;
|
|
4201
|
+
name: string;
|
|
4202
|
+
size: string;
|
|
4203
|
+
} & {
|
|
4204
|
+
date?: string | null | undefined;
|
|
4205
|
+
}) | ({
|
|
4206
|
+
__TYPE__: "DocumentLink";
|
|
4207
|
+
} & {
|
|
4208
|
+
id: string;
|
|
4209
|
+
}) | ({
|
|
4210
|
+
__TYPE__: "ExternalLink";
|
|
4211
|
+
} & {
|
|
4212
|
+
url: string;
|
|
4213
|
+
} & {
|
|
4214
|
+
kind?: "web";
|
|
4215
|
+
target?: string | null | undefined;
|
|
4216
|
+
preview?: {
|
|
4217
|
+
title?: string;
|
|
4218
|
+
} | null | undefined;
|
|
4219
|
+
});
|
|
4220
|
+
start: number;
|
|
4221
|
+
end: number;
|
|
4222
|
+
type: "hyperlink";
|
|
4223
|
+
} | {
|
|
4224
|
+
data: string;
|
|
4225
|
+
start: number;
|
|
4226
|
+
end: number;
|
|
4227
|
+
type: "label";
|
|
4228
|
+
} | {
|
|
4229
|
+
start: number;
|
|
4230
|
+
end: number;
|
|
4231
|
+
type: "strong" | "em" | "list-item";
|
|
4232
|
+
})[];
|
|
4233
|
+
};
|
|
4251
4234
|
} & {
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
4276
|
-
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
|
|
4281
|
-
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4235
|
+
label?: string;
|
|
4236
|
+
direction?: string;
|
|
4237
|
+
})[];
|
|
4238
|
+
} | {
|
|
4239
|
+
type: "tableCell";
|
|
4240
|
+
content: ({
|
|
4241
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4242
|
+
content: {
|
|
4243
|
+
text: string;
|
|
4244
|
+
} & {
|
|
4245
|
+
spans?: ({
|
|
4246
|
+
data: ({
|
|
4247
|
+
__TYPE__: "ImageLink";
|
|
4248
|
+
} & {
|
|
4249
|
+
kind: "image";
|
|
4250
|
+
id: string;
|
|
4251
|
+
url: string;
|
|
4252
|
+
height: string;
|
|
4253
|
+
width: string;
|
|
4254
|
+
size: string;
|
|
4255
|
+
name: string;
|
|
4256
|
+
} & {
|
|
4257
|
+
date?: string | null | undefined;
|
|
4258
|
+
}) | ({
|
|
4259
|
+
__TYPE__: "FileLink";
|
|
4260
|
+
} & {
|
|
4261
|
+
kind: "file";
|
|
4262
|
+
id: string;
|
|
4263
|
+
url: string;
|
|
4264
|
+
name: string;
|
|
4265
|
+
size: string;
|
|
4266
|
+
} & {
|
|
4267
|
+
date?: string | null | undefined;
|
|
4268
|
+
}) | ({
|
|
4269
|
+
__TYPE__: "DocumentLink";
|
|
4270
|
+
} & {
|
|
4271
|
+
id: string;
|
|
4272
|
+
}) | ({
|
|
4273
|
+
__TYPE__: "ExternalLink";
|
|
4274
|
+
} & {
|
|
4275
|
+
url: string;
|
|
4276
|
+
} & {
|
|
4277
|
+
kind?: "web";
|
|
4278
|
+
target?: string | null | undefined;
|
|
4279
|
+
preview?: {
|
|
4280
|
+
title?: string;
|
|
4281
|
+
} | null | undefined;
|
|
4282
|
+
});
|
|
4283
|
+
start: number;
|
|
4284
|
+
end: number;
|
|
4285
|
+
type: "hyperlink";
|
|
4286
|
+
} | {
|
|
4287
|
+
data: string;
|
|
4288
|
+
start: number;
|
|
4289
|
+
end: number;
|
|
4290
|
+
type: "label";
|
|
4291
|
+
} | {
|
|
4292
|
+
start: number;
|
|
4293
|
+
end: number;
|
|
4294
|
+
type: "strong" | "em" | "list-item";
|
|
4295
|
+
})[];
|
|
4296
|
+
};
|
|
4297
|
+
} & {
|
|
4298
|
+
label?: string;
|
|
4299
|
+
direction?: string;
|
|
4300
|
+
})[];
|
|
4307
4301
|
})[];
|
|
4308
|
-
}
|
|
4309
|
-
}[];
|
|
4310
|
-
}
|
|
4311
|
-
__TYPE__: "
|
|
4312
|
-
}
|
|
4302
|
+
}[];
|
|
4303
|
+
})[];
|
|
4304
|
+
} | {
|
|
4305
|
+
__TYPE__: "SeparatorContent";
|
|
4306
|
+
} | {
|
|
4313
4307
|
__TYPE__: "CompositeSliceContent";
|
|
4314
4308
|
nonRepeat: {
|
|
4315
4309
|
[x: string]: {
|
|
@@ -4671,7 +4665,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4671
4665
|
label?: string | null | undefined;
|
|
4672
4666
|
direction?: string | null | undefined;
|
|
4673
4667
|
}) | ({
|
|
4674
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
4668
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4675
4669
|
content: {
|
|
4676
4670
|
text: string;
|
|
4677
4671
|
} & {
|
|
@@ -4730,143 +4724,142 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4730
4724
|
} & {
|
|
4731
4725
|
label?: string;
|
|
4732
4726
|
direction?: string;
|
|
4733
|
-
})
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
content: {
|
|
4738
|
-
type: "tableRow";
|
|
4739
|
-
content: ({
|
|
4740
|
-
type: "tableHeader";
|
|
4727
|
+
}) | {
|
|
4728
|
+
type: "table";
|
|
4729
|
+
content: {
|
|
4730
|
+
type: "tableRow";
|
|
4741
4731
|
content: ({
|
|
4742
|
-
type: "
|
|
4743
|
-
content: {
|
|
4744
|
-
|
|
4732
|
+
type: "tableHeader";
|
|
4733
|
+
content: ({
|
|
4734
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4735
|
+
content: {
|
|
4736
|
+
text: string;
|
|
4737
|
+
} & {
|
|
4738
|
+
spans?: ({
|
|
4739
|
+
data: ({
|
|
4740
|
+
__TYPE__: "ImageLink";
|
|
4741
|
+
} & {
|
|
4742
|
+
kind: "image";
|
|
4743
|
+
id: string;
|
|
4744
|
+
url: string;
|
|
4745
|
+
height: string;
|
|
4746
|
+
width: string;
|
|
4747
|
+
size: string;
|
|
4748
|
+
name: string;
|
|
4749
|
+
} & {
|
|
4750
|
+
date?: string | null | undefined;
|
|
4751
|
+
}) | ({
|
|
4752
|
+
__TYPE__: "FileLink";
|
|
4753
|
+
} & {
|
|
4754
|
+
kind: "file";
|
|
4755
|
+
id: string;
|
|
4756
|
+
url: string;
|
|
4757
|
+
name: string;
|
|
4758
|
+
size: string;
|
|
4759
|
+
} & {
|
|
4760
|
+
date?: string | null | undefined;
|
|
4761
|
+
}) | ({
|
|
4762
|
+
__TYPE__: "DocumentLink";
|
|
4763
|
+
} & {
|
|
4764
|
+
id: string;
|
|
4765
|
+
}) | ({
|
|
4766
|
+
__TYPE__: "ExternalLink";
|
|
4767
|
+
} & {
|
|
4768
|
+
url: string;
|
|
4769
|
+
} & {
|
|
4770
|
+
kind?: "web";
|
|
4771
|
+
target?: string | null | undefined;
|
|
4772
|
+
preview?: {
|
|
4773
|
+
title?: string;
|
|
4774
|
+
} | null | undefined;
|
|
4775
|
+
});
|
|
4776
|
+
start: number;
|
|
4777
|
+
end: number;
|
|
4778
|
+
type: "hyperlink";
|
|
4779
|
+
} | {
|
|
4780
|
+
data: string;
|
|
4781
|
+
start: number;
|
|
4782
|
+
end: number;
|
|
4783
|
+
type: "label";
|
|
4784
|
+
} | {
|
|
4785
|
+
start: number;
|
|
4786
|
+
end: number;
|
|
4787
|
+
type: "strong" | "em" | "list-item";
|
|
4788
|
+
})[];
|
|
4789
|
+
};
|
|
4745
4790
|
} & {
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4791
|
+
label?: string;
|
|
4792
|
+
direction?: string;
|
|
4793
|
+
})[];
|
|
4794
|
+
} | {
|
|
4795
|
+
type: "tableCell";
|
|
4796
|
+
content: ({
|
|
4797
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4798
|
+
content: {
|
|
4799
|
+
text: string;
|
|
4800
|
+
} & {
|
|
4801
|
+
spans?: ({
|
|
4802
|
+
data: ({
|
|
4803
|
+
__TYPE__: "ImageLink";
|
|
4804
|
+
} & {
|
|
4805
|
+
kind: "image";
|
|
4806
|
+
id: string;
|
|
4807
|
+
url: string;
|
|
4808
|
+
height: string;
|
|
4809
|
+
width: string;
|
|
4810
|
+
size: string;
|
|
4811
|
+
name: string;
|
|
4812
|
+
} & {
|
|
4813
|
+
date?: string | null | undefined;
|
|
4814
|
+
}) | ({
|
|
4815
|
+
__TYPE__: "FileLink";
|
|
4816
|
+
} & {
|
|
4817
|
+
kind: "file";
|
|
4818
|
+
id: string;
|
|
4819
|
+
url: string;
|
|
4820
|
+
name: string;
|
|
4821
|
+
size: string;
|
|
4822
|
+
} & {
|
|
4823
|
+
date?: string | null | undefined;
|
|
4824
|
+
}) | ({
|
|
4825
|
+
__TYPE__: "DocumentLink";
|
|
4826
|
+
} & {
|
|
4827
|
+
id: string;
|
|
4828
|
+
}) | ({
|
|
4829
|
+
__TYPE__: "ExternalLink";
|
|
4830
|
+
} & {
|
|
4831
|
+
url: string;
|
|
4832
|
+
} & {
|
|
4833
|
+
kind?: "web";
|
|
4834
|
+
target?: string | null | undefined;
|
|
4835
|
+
preview?: {
|
|
4836
|
+
title?: string;
|
|
4837
|
+
} | null | undefined;
|
|
4838
|
+
});
|
|
4839
|
+
start: number;
|
|
4840
|
+
end: number;
|
|
4841
|
+
type: "hyperlink";
|
|
4842
|
+
} | {
|
|
4843
|
+
data: string;
|
|
4844
|
+
start: number;
|
|
4845
|
+
end: number;
|
|
4846
|
+
type: "label";
|
|
4847
|
+
} | {
|
|
4848
|
+
start: number;
|
|
4849
|
+
end: number;
|
|
4850
|
+
type: "strong" | "em" | "list-item";
|
|
4851
|
+
})[];
|
|
4852
|
+
};
|
|
4808
4853
|
} & {
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4812
|
-
} & {
|
|
4813
|
-
kind: "image";
|
|
4814
|
-
id: string;
|
|
4815
|
-
url: string;
|
|
4816
|
-
height: string;
|
|
4817
|
-
width: string;
|
|
4818
|
-
size: string;
|
|
4819
|
-
name: string;
|
|
4820
|
-
} & {
|
|
4821
|
-
date?: string | null | undefined;
|
|
4822
|
-
}) | ({
|
|
4823
|
-
__TYPE__: "FileLink";
|
|
4824
|
-
} & {
|
|
4825
|
-
kind: "file";
|
|
4826
|
-
id: string;
|
|
4827
|
-
url: string;
|
|
4828
|
-
name: string;
|
|
4829
|
-
size: string;
|
|
4830
|
-
} & {
|
|
4831
|
-
date?: string | null | undefined;
|
|
4832
|
-
}) | ({
|
|
4833
|
-
__TYPE__: "DocumentLink";
|
|
4834
|
-
} & {
|
|
4835
|
-
id: string;
|
|
4836
|
-
}) | ({
|
|
4837
|
-
__TYPE__: "ExternalLink";
|
|
4838
|
-
} & {
|
|
4839
|
-
url: string;
|
|
4840
|
-
} & {
|
|
4841
|
-
kind?: "web";
|
|
4842
|
-
target?: string | null | undefined;
|
|
4843
|
-
preview?: {
|
|
4844
|
-
title?: string;
|
|
4845
|
-
} | null | undefined;
|
|
4846
|
-
});
|
|
4847
|
-
start: number;
|
|
4848
|
-
end: number;
|
|
4849
|
-
type: "hyperlink";
|
|
4850
|
-
} | {
|
|
4851
|
-
data: string;
|
|
4852
|
-
start: number;
|
|
4853
|
-
end: number;
|
|
4854
|
-
type: "label";
|
|
4855
|
-
} | {
|
|
4856
|
-
start: number;
|
|
4857
|
-
end: number;
|
|
4858
|
-
type: "strong" | "em" | "list-item";
|
|
4859
|
-
})[];
|
|
4860
|
-
};
|
|
4861
|
-
} & {
|
|
4862
|
-
label?: string;
|
|
4863
|
-
direction?: string;
|
|
4854
|
+
label?: string;
|
|
4855
|
+
direction?: string;
|
|
4856
|
+
})[];
|
|
4864
4857
|
})[];
|
|
4865
|
-
}
|
|
4866
|
-
}[];
|
|
4867
|
-
}
|
|
4868
|
-
__TYPE__: "
|
|
4869
|
-
}
|
|
4858
|
+
}[];
|
|
4859
|
+
})[];
|
|
4860
|
+
} | {
|
|
4861
|
+
__TYPE__: "SeparatorContent";
|
|
4862
|
+
};
|
|
4870
4863
|
};
|
|
4871
4864
|
repeat: {
|
|
4872
4865
|
__TYPE__: "GroupItemContent";
|
|
@@ -5229,7 +5222,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5229
5222
|
label?: string | null | undefined;
|
|
5230
5223
|
direction?: string | null | undefined;
|
|
5231
5224
|
}) | ({
|
|
5232
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
5225
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
5233
5226
|
content: {
|
|
5234
5227
|
text: string;
|
|
5235
5228
|
} & {
|
|
@@ -5285,146 +5278,145 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5285
5278
|
type: "strong" | "em" | "list-item";
|
|
5286
5279
|
})[];
|
|
5287
5280
|
};
|
|
5288
|
-
} & {
|
|
5289
|
-
label?: string;
|
|
5290
|
-
direction?: string;
|
|
5291
|
-
})
|
|
5292
|
-
|
|
5293
|
-
|
|
5294
|
-
|
|
5295
|
-
|
|
5296
|
-
|
|
5297
|
-
|
|
5298
|
-
|
|
5299
|
-
|
|
5300
|
-
|
|
5301
|
-
|
|
5302
|
-
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
|
|
5317
|
-
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
|
|
5339
|
-
|
|
5340
|
-
|
|
5341
|
-
|
|
5342
|
-
|
|
5343
|
-
|
|
5344
|
-
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5406
|
-
|
|
5407
|
-
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
direction?: string;
|
|
5281
|
+
} & {
|
|
5282
|
+
label?: string;
|
|
5283
|
+
direction?: string;
|
|
5284
|
+
}) | {
|
|
5285
|
+
type: "table";
|
|
5286
|
+
content: {
|
|
5287
|
+
type: "tableRow";
|
|
5288
|
+
content: ({
|
|
5289
|
+
type: "tableHeader";
|
|
5290
|
+
content: ({
|
|
5291
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
5292
|
+
content: {
|
|
5293
|
+
text: string;
|
|
5294
|
+
} & {
|
|
5295
|
+
spans?: ({
|
|
5296
|
+
data: ({
|
|
5297
|
+
__TYPE__: "ImageLink";
|
|
5298
|
+
} & {
|
|
5299
|
+
kind: "image";
|
|
5300
|
+
id: string;
|
|
5301
|
+
url: string;
|
|
5302
|
+
height: string;
|
|
5303
|
+
width: string;
|
|
5304
|
+
size: string;
|
|
5305
|
+
name: string;
|
|
5306
|
+
} & {
|
|
5307
|
+
date?: string | null | undefined;
|
|
5308
|
+
}) | ({
|
|
5309
|
+
__TYPE__: "FileLink";
|
|
5310
|
+
} & {
|
|
5311
|
+
kind: "file";
|
|
5312
|
+
id: string;
|
|
5313
|
+
url: string;
|
|
5314
|
+
name: string;
|
|
5315
|
+
size: string;
|
|
5316
|
+
} & {
|
|
5317
|
+
date?: string | null | undefined;
|
|
5318
|
+
}) | ({
|
|
5319
|
+
__TYPE__: "DocumentLink";
|
|
5320
|
+
} & {
|
|
5321
|
+
id: string;
|
|
5322
|
+
}) | ({
|
|
5323
|
+
__TYPE__: "ExternalLink";
|
|
5324
|
+
} & {
|
|
5325
|
+
url: string;
|
|
5326
|
+
} & {
|
|
5327
|
+
kind?: "web";
|
|
5328
|
+
target?: string | null | undefined;
|
|
5329
|
+
preview?: {
|
|
5330
|
+
title?: string;
|
|
5331
|
+
} | null | undefined;
|
|
5332
|
+
});
|
|
5333
|
+
start: number;
|
|
5334
|
+
end: number;
|
|
5335
|
+
type: "hyperlink";
|
|
5336
|
+
} | {
|
|
5337
|
+
data: string;
|
|
5338
|
+
start: number;
|
|
5339
|
+
end: number;
|
|
5340
|
+
type: "label";
|
|
5341
|
+
} | {
|
|
5342
|
+
start: number;
|
|
5343
|
+
end: number;
|
|
5344
|
+
type: "strong" | "em" | "list-item";
|
|
5345
|
+
})[];
|
|
5346
|
+
};
|
|
5347
|
+
} & {
|
|
5348
|
+
label?: string;
|
|
5349
|
+
direction?: string;
|
|
5350
|
+
})[];
|
|
5351
|
+
} | {
|
|
5352
|
+
type: "tableCell";
|
|
5353
|
+
content: ({
|
|
5354
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
5355
|
+
content: {
|
|
5356
|
+
text: string;
|
|
5357
|
+
} & {
|
|
5358
|
+
spans?: ({
|
|
5359
|
+
data: ({
|
|
5360
|
+
__TYPE__: "ImageLink";
|
|
5361
|
+
} & {
|
|
5362
|
+
kind: "image";
|
|
5363
|
+
id: string;
|
|
5364
|
+
url: string;
|
|
5365
|
+
height: string;
|
|
5366
|
+
width: string;
|
|
5367
|
+
size: string;
|
|
5368
|
+
name: string;
|
|
5369
|
+
} & {
|
|
5370
|
+
date?: string | null | undefined;
|
|
5371
|
+
}) | ({
|
|
5372
|
+
__TYPE__: "FileLink";
|
|
5373
|
+
} & {
|
|
5374
|
+
kind: "file";
|
|
5375
|
+
id: string;
|
|
5376
|
+
url: string;
|
|
5377
|
+
name: string;
|
|
5378
|
+
size: string;
|
|
5379
|
+
} & {
|
|
5380
|
+
date?: string | null | undefined;
|
|
5381
|
+
}) | ({
|
|
5382
|
+
__TYPE__: "DocumentLink";
|
|
5383
|
+
} & {
|
|
5384
|
+
id: string;
|
|
5385
|
+
}) | ({
|
|
5386
|
+
__TYPE__: "ExternalLink";
|
|
5387
|
+
} & {
|
|
5388
|
+
url: string;
|
|
5389
|
+
} & {
|
|
5390
|
+
kind?: "web";
|
|
5391
|
+
target?: string | null | undefined;
|
|
5392
|
+
preview?: {
|
|
5393
|
+
title?: string;
|
|
5394
|
+
} | null | undefined;
|
|
5395
|
+
});
|
|
5396
|
+
start: number;
|
|
5397
|
+
end: number;
|
|
5398
|
+
type: "hyperlink";
|
|
5399
|
+
} | {
|
|
5400
|
+
data: string;
|
|
5401
|
+
start: number;
|
|
5402
|
+
end: number;
|
|
5403
|
+
type: "label";
|
|
5404
|
+
} | {
|
|
5405
|
+
start: number;
|
|
5406
|
+
end: number;
|
|
5407
|
+
type: "strong" | "em" | "list-item";
|
|
5408
|
+
})[];
|
|
5409
|
+
};
|
|
5410
|
+
} & {
|
|
5411
|
+
label?: string;
|
|
5412
|
+
direction?: string;
|
|
5413
|
+
})[];
|
|
5422
5414
|
})[];
|
|
5423
|
-
}
|
|
5424
|
-
}[];
|
|
5425
|
-
}
|
|
5426
|
-
__TYPE__: "
|
|
5427
|
-
}
|
|
5415
|
+
}[];
|
|
5416
|
+
})[];
|
|
5417
|
+
} | {
|
|
5418
|
+
__TYPE__: "SeparatorContent";
|
|
5419
|
+
}][];
|
|
5428
5420
|
}[];
|
|
5429
5421
|
} | {
|
|
5430
5422
|
__TYPE__: "SharedSliceContent";
|
|
@@ -5789,7 +5781,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5789
5781
|
label?: string | null | undefined;
|
|
5790
5782
|
direction?: string | null | undefined;
|
|
5791
5783
|
}) | ({
|
|
5792
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
5784
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
5793
5785
|
content: {
|
|
5794
5786
|
text: string;
|
|
5795
5787
|
} & {
|
|
@@ -5848,143 +5840,142 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5848
5840
|
} & {
|
|
5849
5841
|
label?: string;
|
|
5850
5842
|
direction?: string;
|
|
5851
|
-
})
|
|
5852
|
-
|
|
5853
|
-
|
|
5854
|
-
|
|
5855
|
-
content: {
|
|
5856
|
-
type: "tableRow";
|
|
5857
|
-
content: ({
|
|
5858
|
-
type: "tableHeader";
|
|
5843
|
+
}) | {
|
|
5844
|
+
type: "table";
|
|
5845
|
+
content: {
|
|
5846
|
+
type: "tableRow";
|
|
5859
5847
|
content: ({
|
|
5860
|
-
type: "
|
|
5861
|
-
content: {
|
|
5862
|
-
|
|
5848
|
+
type: "tableHeader";
|
|
5849
|
+
content: ({
|
|
5850
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
5851
|
+
content: {
|
|
5852
|
+
text: string;
|
|
5853
|
+
} & {
|
|
5854
|
+
spans?: ({
|
|
5855
|
+
data: ({
|
|
5856
|
+
__TYPE__: "ImageLink";
|
|
5857
|
+
} & {
|
|
5858
|
+
kind: "image";
|
|
5859
|
+
id: string;
|
|
5860
|
+
url: string;
|
|
5861
|
+
height: string;
|
|
5862
|
+
width: string;
|
|
5863
|
+
size: string;
|
|
5864
|
+
name: string;
|
|
5865
|
+
} & {
|
|
5866
|
+
date?: string | null | undefined;
|
|
5867
|
+
}) | ({
|
|
5868
|
+
__TYPE__: "FileLink";
|
|
5869
|
+
} & {
|
|
5870
|
+
kind: "file";
|
|
5871
|
+
id: string;
|
|
5872
|
+
url: string;
|
|
5873
|
+
name: string;
|
|
5874
|
+
size: string;
|
|
5875
|
+
} & {
|
|
5876
|
+
date?: string | null | undefined;
|
|
5877
|
+
}) | ({
|
|
5878
|
+
__TYPE__: "DocumentLink";
|
|
5879
|
+
} & {
|
|
5880
|
+
id: string;
|
|
5881
|
+
}) | ({
|
|
5882
|
+
__TYPE__: "ExternalLink";
|
|
5883
|
+
} & {
|
|
5884
|
+
url: string;
|
|
5885
|
+
} & {
|
|
5886
|
+
kind?: "web";
|
|
5887
|
+
target?: string | null | undefined;
|
|
5888
|
+
preview?: {
|
|
5889
|
+
title?: string;
|
|
5890
|
+
} | null | undefined;
|
|
5891
|
+
});
|
|
5892
|
+
start: number;
|
|
5893
|
+
end: number;
|
|
5894
|
+
type: "hyperlink";
|
|
5895
|
+
} | {
|
|
5896
|
+
data: string;
|
|
5897
|
+
start: number;
|
|
5898
|
+
end: number;
|
|
5899
|
+
type: "label";
|
|
5900
|
+
} | {
|
|
5901
|
+
start: number;
|
|
5902
|
+
end: number;
|
|
5903
|
+
type: "strong" | "em" | "list-item";
|
|
5904
|
+
})[];
|
|
5905
|
+
};
|
|
5863
5906
|
} & {
|
|
5864
|
-
|
|
5865
|
-
|
|
5866
|
-
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
|
|
5873
|
-
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
|
|
5877
|
-
|
|
5878
|
-
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
|
|
5886
|
-
|
|
5887
|
-
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
5892
|
-
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5907
|
+
label?: string;
|
|
5908
|
+
direction?: string;
|
|
5909
|
+
})[];
|
|
5910
|
+
} | {
|
|
5911
|
+
type: "tableCell";
|
|
5912
|
+
content: ({
|
|
5913
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
5914
|
+
content: {
|
|
5915
|
+
text: string;
|
|
5916
|
+
} & {
|
|
5917
|
+
spans?: ({
|
|
5918
|
+
data: ({
|
|
5919
|
+
__TYPE__: "ImageLink";
|
|
5920
|
+
} & {
|
|
5921
|
+
kind: "image";
|
|
5922
|
+
id: string;
|
|
5923
|
+
url: string;
|
|
5924
|
+
height: string;
|
|
5925
|
+
width: string;
|
|
5926
|
+
size: string;
|
|
5927
|
+
name: string;
|
|
5928
|
+
} & {
|
|
5929
|
+
date?: string | null | undefined;
|
|
5930
|
+
}) | ({
|
|
5931
|
+
__TYPE__: "FileLink";
|
|
5932
|
+
} & {
|
|
5933
|
+
kind: "file";
|
|
5934
|
+
id: string;
|
|
5935
|
+
url: string;
|
|
5936
|
+
name: string;
|
|
5937
|
+
size: string;
|
|
5938
|
+
} & {
|
|
5939
|
+
date?: string | null | undefined;
|
|
5940
|
+
}) | ({
|
|
5941
|
+
__TYPE__: "DocumentLink";
|
|
5942
|
+
} & {
|
|
5943
|
+
id: string;
|
|
5944
|
+
}) | ({
|
|
5945
|
+
__TYPE__: "ExternalLink";
|
|
5946
|
+
} & {
|
|
5947
|
+
url: string;
|
|
5948
|
+
} & {
|
|
5949
|
+
kind?: "web";
|
|
5950
|
+
target?: string | null | undefined;
|
|
5951
|
+
preview?: {
|
|
5952
|
+
title?: string;
|
|
5953
|
+
} | null | undefined;
|
|
5954
|
+
});
|
|
5955
|
+
start: number;
|
|
5956
|
+
end: number;
|
|
5957
|
+
type: "hyperlink";
|
|
5958
|
+
} | {
|
|
5959
|
+
data: string;
|
|
5960
|
+
start: number;
|
|
5961
|
+
end: number;
|
|
5962
|
+
type: "label";
|
|
5963
|
+
} | {
|
|
5964
|
+
start: number;
|
|
5965
|
+
end: number;
|
|
5966
|
+
type: "strong" | "em" | "list-item";
|
|
5967
|
+
})[];
|
|
5968
|
+
};
|
|
5926
5969
|
} & {
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
} & {
|
|
5931
|
-
kind: "image";
|
|
5932
|
-
id: string;
|
|
5933
|
-
url: string;
|
|
5934
|
-
height: string;
|
|
5935
|
-
width: string;
|
|
5936
|
-
size: string;
|
|
5937
|
-
name: string;
|
|
5938
|
-
} & {
|
|
5939
|
-
date?: string | null | undefined;
|
|
5940
|
-
}) | ({
|
|
5941
|
-
__TYPE__: "FileLink";
|
|
5942
|
-
} & {
|
|
5943
|
-
kind: "file";
|
|
5944
|
-
id: string;
|
|
5945
|
-
url: string;
|
|
5946
|
-
name: string;
|
|
5947
|
-
size: string;
|
|
5948
|
-
} & {
|
|
5949
|
-
date?: string | null | undefined;
|
|
5950
|
-
}) | ({
|
|
5951
|
-
__TYPE__: "DocumentLink";
|
|
5952
|
-
} & {
|
|
5953
|
-
id: string;
|
|
5954
|
-
}) | ({
|
|
5955
|
-
__TYPE__: "ExternalLink";
|
|
5956
|
-
} & {
|
|
5957
|
-
url: string;
|
|
5958
|
-
} & {
|
|
5959
|
-
kind?: "web";
|
|
5960
|
-
target?: string | null | undefined;
|
|
5961
|
-
preview?: {
|
|
5962
|
-
title?: string;
|
|
5963
|
-
} | null | undefined;
|
|
5964
|
-
});
|
|
5965
|
-
start: number;
|
|
5966
|
-
end: number;
|
|
5967
|
-
type: "hyperlink";
|
|
5968
|
-
} | {
|
|
5969
|
-
data: string;
|
|
5970
|
-
start: number;
|
|
5971
|
-
end: number;
|
|
5972
|
-
type: "label";
|
|
5973
|
-
} | {
|
|
5974
|
-
start: number;
|
|
5975
|
-
end: number;
|
|
5976
|
-
type: "strong" | "em" | "list-item";
|
|
5977
|
-
})[];
|
|
5978
|
-
};
|
|
5979
|
-
} & {
|
|
5980
|
-
label?: string;
|
|
5981
|
-
direction?: string;
|
|
5970
|
+
label?: string;
|
|
5971
|
+
direction?: string;
|
|
5972
|
+
})[];
|
|
5982
5973
|
})[];
|
|
5983
|
-
}
|
|
5984
|
-
}[];
|
|
5985
|
-
}
|
|
5986
|
-
__TYPE__: "
|
|
5987
|
-
}
|
|
5974
|
+
}[];
|
|
5975
|
+
})[];
|
|
5976
|
+
} | {
|
|
5977
|
+
__TYPE__: "SeparatorContent";
|
|
5978
|
+
};
|
|
5988
5979
|
};
|
|
5989
5980
|
items: {
|
|
5990
5981
|
__TYPE__: "GroupItemContent";
|
|
@@ -6347,7 +6338,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
6347
6338
|
label?: string | null | undefined;
|
|
6348
6339
|
direction?: string | null | undefined;
|
|
6349
6340
|
}) | ({
|
|
6350
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6341
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6351
6342
|
content: {
|
|
6352
6343
|
text: string;
|
|
6353
6344
|
} & {
|
|
@@ -6406,143 +6397,142 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
6406
6397
|
} & {
|
|
6407
6398
|
label?: string;
|
|
6408
6399
|
direction?: string;
|
|
6409
|
-
})
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
|
|
6413
|
-
content: {
|
|
6414
|
-
type: "tableRow";
|
|
6415
|
-
content: ({
|
|
6416
|
-
type: "tableHeader";
|
|
6400
|
+
}) | {
|
|
6401
|
+
type: "table";
|
|
6402
|
+
content: {
|
|
6403
|
+
type: "tableRow";
|
|
6417
6404
|
content: ({
|
|
6418
|
-
type: "
|
|
6419
|
-
content: {
|
|
6420
|
-
|
|
6405
|
+
type: "tableHeader";
|
|
6406
|
+
content: ({
|
|
6407
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6408
|
+
content: {
|
|
6409
|
+
text: string;
|
|
6410
|
+
} & {
|
|
6411
|
+
spans?: ({
|
|
6412
|
+
data: ({
|
|
6413
|
+
__TYPE__: "ImageLink";
|
|
6414
|
+
} & {
|
|
6415
|
+
kind: "image";
|
|
6416
|
+
id: string;
|
|
6417
|
+
url: string;
|
|
6418
|
+
height: string;
|
|
6419
|
+
width: string;
|
|
6420
|
+
size: string;
|
|
6421
|
+
name: string;
|
|
6422
|
+
} & {
|
|
6423
|
+
date?: string | null | undefined;
|
|
6424
|
+
}) | ({
|
|
6425
|
+
__TYPE__: "FileLink";
|
|
6426
|
+
} & {
|
|
6427
|
+
kind: "file";
|
|
6428
|
+
id: string;
|
|
6429
|
+
url: string;
|
|
6430
|
+
name: string;
|
|
6431
|
+
size: string;
|
|
6432
|
+
} & {
|
|
6433
|
+
date?: string | null | undefined;
|
|
6434
|
+
}) | ({
|
|
6435
|
+
__TYPE__: "DocumentLink";
|
|
6436
|
+
} & {
|
|
6437
|
+
id: string;
|
|
6438
|
+
}) | ({
|
|
6439
|
+
__TYPE__: "ExternalLink";
|
|
6440
|
+
} & {
|
|
6441
|
+
url: string;
|
|
6442
|
+
} & {
|
|
6443
|
+
kind?: "web";
|
|
6444
|
+
target?: string | null | undefined;
|
|
6445
|
+
preview?: {
|
|
6446
|
+
title?: string;
|
|
6447
|
+
} | null | undefined;
|
|
6448
|
+
});
|
|
6449
|
+
start: number;
|
|
6450
|
+
end: number;
|
|
6451
|
+
type: "hyperlink";
|
|
6452
|
+
} | {
|
|
6453
|
+
data: string;
|
|
6454
|
+
start: number;
|
|
6455
|
+
end: number;
|
|
6456
|
+
type: "label";
|
|
6457
|
+
} | {
|
|
6458
|
+
start: number;
|
|
6459
|
+
end: number;
|
|
6460
|
+
type: "strong" | "em" | "list-item";
|
|
6461
|
+
})[];
|
|
6462
|
+
};
|
|
6421
6463
|
} & {
|
|
6422
|
-
|
|
6423
|
-
|
|
6424
|
-
|
|
6425
|
-
|
|
6426
|
-
|
|
6427
|
-
|
|
6428
|
-
|
|
6429
|
-
|
|
6430
|
-
|
|
6431
|
-
|
|
6432
|
-
|
|
6433
|
-
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
|
|
6441
|
-
|
|
6442
|
-
|
|
6443
|
-
|
|
6444
|
-
|
|
6445
|
-
|
|
6446
|
-
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
|
|
6470
|
-
|
|
6471
|
-
|
|
6472
|
-
|
|
6473
|
-
|
|
6474
|
-
|
|
6475
|
-
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6464
|
+
label?: string;
|
|
6465
|
+
direction?: string;
|
|
6466
|
+
})[];
|
|
6467
|
+
} | {
|
|
6468
|
+
type: "tableCell";
|
|
6469
|
+
content: ({
|
|
6470
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6471
|
+
content: {
|
|
6472
|
+
text: string;
|
|
6473
|
+
} & {
|
|
6474
|
+
spans?: ({
|
|
6475
|
+
data: ({
|
|
6476
|
+
__TYPE__: "ImageLink";
|
|
6477
|
+
} & {
|
|
6478
|
+
kind: "image";
|
|
6479
|
+
id: string;
|
|
6480
|
+
url: string;
|
|
6481
|
+
height: string;
|
|
6482
|
+
width: string;
|
|
6483
|
+
size: string;
|
|
6484
|
+
name: string;
|
|
6485
|
+
} & {
|
|
6486
|
+
date?: string | null | undefined;
|
|
6487
|
+
}) | ({
|
|
6488
|
+
__TYPE__: "FileLink";
|
|
6489
|
+
} & {
|
|
6490
|
+
kind: "file";
|
|
6491
|
+
id: string;
|
|
6492
|
+
url: string;
|
|
6493
|
+
name: string;
|
|
6494
|
+
size: string;
|
|
6495
|
+
} & {
|
|
6496
|
+
date?: string | null | undefined;
|
|
6497
|
+
}) | ({
|
|
6498
|
+
__TYPE__: "DocumentLink";
|
|
6499
|
+
} & {
|
|
6500
|
+
id: string;
|
|
6501
|
+
}) | ({
|
|
6502
|
+
__TYPE__: "ExternalLink";
|
|
6503
|
+
} & {
|
|
6504
|
+
url: string;
|
|
6505
|
+
} & {
|
|
6506
|
+
kind?: "web";
|
|
6507
|
+
target?: string | null | undefined;
|
|
6508
|
+
preview?: {
|
|
6509
|
+
title?: string;
|
|
6510
|
+
} | null | undefined;
|
|
6511
|
+
});
|
|
6512
|
+
start: number;
|
|
6513
|
+
end: number;
|
|
6514
|
+
type: "hyperlink";
|
|
6515
|
+
} | {
|
|
6516
|
+
data: string;
|
|
6517
|
+
start: number;
|
|
6518
|
+
end: number;
|
|
6519
|
+
type: "label";
|
|
6520
|
+
} | {
|
|
6521
|
+
start: number;
|
|
6522
|
+
end: number;
|
|
6523
|
+
type: "strong" | "em" | "list-item";
|
|
6524
|
+
})[];
|
|
6525
|
+
};
|
|
6484
6526
|
} & {
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
} & {
|
|
6489
|
-
kind: "image";
|
|
6490
|
-
id: string;
|
|
6491
|
-
url: string;
|
|
6492
|
-
height: string;
|
|
6493
|
-
width: string;
|
|
6494
|
-
size: string;
|
|
6495
|
-
name: string;
|
|
6496
|
-
} & {
|
|
6497
|
-
date?: string | null | undefined;
|
|
6498
|
-
}) | ({
|
|
6499
|
-
__TYPE__: "FileLink";
|
|
6500
|
-
} & {
|
|
6501
|
-
kind: "file";
|
|
6502
|
-
id: string;
|
|
6503
|
-
url: string;
|
|
6504
|
-
name: string;
|
|
6505
|
-
size: string;
|
|
6506
|
-
} & {
|
|
6507
|
-
date?: string | null | undefined;
|
|
6508
|
-
}) | ({
|
|
6509
|
-
__TYPE__: "DocumentLink";
|
|
6510
|
-
} & {
|
|
6511
|
-
id: string;
|
|
6512
|
-
}) | ({
|
|
6513
|
-
__TYPE__: "ExternalLink";
|
|
6514
|
-
} & {
|
|
6515
|
-
url: string;
|
|
6516
|
-
} & {
|
|
6517
|
-
kind?: "web";
|
|
6518
|
-
target?: string | null | undefined;
|
|
6519
|
-
preview?: {
|
|
6520
|
-
title?: string;
|
|
6521
|
-
} | null | undefined;
|
|
6522
|
-
});
|
|
6523
|
-
start: number;
|
|
6524
|
-
end: number;
|
|
6525
|
-
type: "hyperlink";
|
|
6526
|
-
} | {
|
|
6527
|
-
data: string;
|
|
6528
|
-
start: number;
|
|
6529
|
-
end: number;
|
|
6530
|
-
type: "label";
|
|
6531
|
-
} | {
|
|
6532
|
-
start: number;
|
|
6533
|
-
end: number;
|
|
6534
|
-
type: "strong" | "em" | "list-item";
|
|
6535
|
-
})[];
|
|
6536
|
-
};
|
|
6537
|
-
} & {
|
|
6538
|
-
label?: string;
|
|
6539
|
-
direction?: string;
|
|
6527
|
+
label?: string;
|
|
6528
|
+
direction?: string;
|
|
6529
|
+
})[];
|
|
6540
6530
|
})[];
|
|
6541
|
-
}
|
|
6542
|
-
}[];
|
|
6543
|
-
}
|
|
6544
|
-
__TYPE__: "
|
|
6545
|
-
}
|
|
6531
|
+
}[];
|
|
6532
|
+
})[];
|
|
6533
|
+
} | {
|
|
6534
|
+
__TYPE__: "SeparatorContent";
|
|
6535
|
+
}][];
|
|
6546
6536
|
}[];
|
|
6547
6537
|
};
|
|
6548
6538
|
}, WithTypes<{
|