@prismicio/types-internal 3.4.0-alpha.13 → 3.4.0-alpha.14
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 +498 -3366
- package/lib/content/fields/GroupContent.d.ts +1 -1
- package/lib/content/fields/GroupContent.js +2 -1
- package/lib/content/fields/WidgetContent.d.ts +514 -3382
- package/lib/content/fields/nestable/NestableContent.d.ts +68 -546
- package/lib/content/fields/nestable/NestableContent.js +7 -8
- package/lib/content/fields/nestable/RepeatableContent.d.ts +2 -2
- package/lib/content/fields/nestable/RepeatableContent.js +5 -2
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +9 -641
- package/lib/content/fields/nestable/RichTextContent/index.js +4 -8
- package/lib/content/fields/nestable/TableContent.d.ts +637 -834
- package/lib/content/fields/nestable/TableContent.js +10 -7
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +190 -1146
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +26 -252
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +190 -1146
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +68 -546
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +68 -546
- package/lib/content/fields/slices/Slice/index.d.ts +269 -2029
- package/lib/content/fields/slices/SliceItem.d.ts +463 -2223
- package/lib/content/fields/slices/SlicesContent.d.ts +394 -2784
- package/lib/customtypes/widgets/Group.d.ts +36 -36
- package/lib/customtypes/widgets/Widget.d.ts +54 -54
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +6 -6
- package/lib/customtypes/widgets/nestable/NestableWidget.js +1 -1
- package/lib/customtypes/widgets/nestable/RichText.d.ts +0 -2
- package/lib/customtypes/widgets/nestable/RichText.js +0 -2
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +12 -12
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +12 -12
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +48 -48
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +18 -18
- package/lib/customtypes/widgets/slices/Slices.d.ts +72 -72
- package/package.json +1 -1
- package/src/content/fields/GroupContent.ts +2 -1
- package/src/content/fields/nestable/NestableContent.ts +13 -9
- package/src/content/fields/nestable/RepeatableContent.ts +6 -2
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +238 -0
- package/src/content/fields/nestable/RichTextContent/index.ts +3 -7
- package/src/content/fields/nestable/TableContent.ts +10 -7
- package/src/customtypes/widgets/nestable/NestableWidget.ts +1 -1
- package/src/customtypes/widgets/nestable/RichText.ts +0 -2
- package/src/content/fields/nestable/RichTextContent/Block.ts +0 -35
- package/src/content/fields/nestable/RichTextContent/EmbedBlock.ts +0 -81
- package/src/content/fields/nestable/RichTextContent/ImageBlock.ts +0 -42
- package/src/content/fields/nestable/RichTextContent/TableBlock.ts +0 -36
- package/src/content/fields/nestable/RichTextContent/TextBlock.ts +0 -108
|
@@ -320,7 +320,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
320
320
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
321
321
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
322
322
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
323
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
323
|
+
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>;
|
|
324
324
|
content: t.IntersectionC<[t.TypeC<{
|
|
325
325
|
text: t.StringC;
|
|
326
326
|
}>, t.PartialC<{
|
|
@@ -429,14 +429,18 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
429
429
|
}>, t.PartialC<{
|
|
430
430
|
label: t.StringC;
|
|
431
431
|
direction: t.StringC;
|
|
432
|
-
}>]
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
432
|
+
}>]>>]>>;
|
|
433
|
+
}>>, t.ExactC<t.TypeC<{
|
|
434
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
435
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
436
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
437
|
+
type: t.LiteralC<"tableRow">;
|
|
438
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
439
|
+
type: t.LiteralC<"tableHeader">;
|
|
440
|
+
content: t.ExactC<t.TypeC<{
|
|
441
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
442
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
443
|
+
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>;
|
|
440
444
|
content: t.IntersectionC<[t.TypeC<{
|
|
441
445
|
text: t.StringC;
|
|
442
446
|
}>, t.PartialC<{
|
|
@@ -546,10 +550,13 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
546
550
|
label: t.StringC;
|
|
547
551
|
direction: t.StringC;
|
|
548
552
|
}>]>>>;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
+
}>>;
|
|
554
|
+
}>>, t.ExactC<t.TypeC<{
|
|
555
|
+
type: t.LiteralC<"tableCell">;
|
|
556
|
+
content: t.ExactC<t.TypeC<{
|
|
557
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
558
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
559
|
+
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>;
|
|
553
560
|
content: t.IntersectionC<[t.TypeC<{
|
|
554
561
|
text: t.StringC;
|
|
555
562
|
}>, t.PartialC<{
|
|
@@ -659,12 +666,12 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
659
666
|
label: t.StringC;
|
|
660
667
|
direction: t.StringC;
|
|
661
668
|
}>]>>>;
|
|
662
|
-
}
|
|
663
|
-
}
|
|
664
|
-
}
|
|
665
|
-
}>>, t.ExactC<t.TypeC<{
|
|
666
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
669
|
+
}>>;
|
|
670
|
+
}>>]>>;
|
|
671
|
+
}>>>;
|
|
667
672
|
}>>, t.ExactC<t.TypeC<{
|
|
673
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
674
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
668
675
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
669
676
|
type: t.LiteralC<"Link">;
|
|
670
677
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -745,240 +752,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
745
752
|
variant: t.StringC;
|
|
746
753
|
}>]>>]>]>;
|
|
747
754
|
}>>]>>;
|
|
748
|
-
}
|
|
749
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
750
|
-
type: t.LiteralC<"tableRow">;
|
|
751
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
752
|
-
type: t.LiteralC<"tableHeader">;
|
|
753
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
754
|
-
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>;
|
|
755
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
756
|
-
text: t.StringC;
|
|
757
|
-
}>, t.PartialC<{
|
|
758
|
-
spans: t.Type<({
|
|
759
|
-
data: ({
|
|
760
|
-
__TYPE__: "ImageLink";
|
|
761
|
-
} & {
|
|
762
|
-
kind: "image";
|
|
763
|
-
id: string;
|
|
764
|
-
url: string;
|
|
765
|
-
height: string;
|
|
766
|
-
width: string;
|
|
767
|
-
size: string;
|
|
768
|
-
name: string;
|
|
769
|
-
} & {
|
|
770
|
-
date?: string | null | undefined;
|
|
771
|
-
}) | ({
|
|
772
|
-
__TYPE__: "FileLink";
|
|
773
|
-
} & {
|
|
774
|
-
kind: "file";
|
|
775
|
-
id: string;
|
|
776
|
-
url: string;
|
|
777
|
-
name: string;
|
|
778
|
-
size: string;
|
|
779
|
-
} & {
|
|
780
|
-
date?: string | null | undefined;
|
|
781
|
-
}) | ({
|
|
782
|
-
__TYPE__: "DocumentLink";
|
|
783
|
-
} & {
|
|
784
|
-
id: string;
|
|
785
|
-
}) | ({
|
|
786
|
-
__TYPE__: "ExternalLink";
|
|
787
|
-
} & {
|
|
788
|
-
url: string;
|
|
789
|
-
} & {
|
|
790
|
-
kind?: "web";
|
|
791
|
-
target?: string | null | undefined;
|
|
792
|
-
preview?: {
|
|
793
|
-
title?: string;
|
|
794
|
-
} | null | undefined;
|
|
795
|
-
});
|
|
796
|
-
start: number;
|
|
797
|
-
end: number;
|
|
798
|
-
type: "hyperlink";
|
|
799
|
-
} | {
|
|
800
|
-
data: string;
|
|
801
|
-
start: number;
|
|
802
|
-
end: number;
|
|
803
|
-
type: "label";
|
|
804
|
-
} | {
|
|
805
|
-
start: number;
|
|
806
|
-
end: number;
|
|
807
|
-
type: "strong" | "em" | "list-item";
|
|
808
|
-
})[], ({
|
|
809
|
-
data: ({
|
|
810
|
-
__TYPE__: "ImageLink";
|
|
811
|
-
} & {
|
|
812
|
-
kind: "image";
|
|
813
|
-
id: string;
|
|
814
|
-
url: string;
|
|
815
|
-
height: string;
|
|
816
|
-
width: string;
|
|
817
|
-
size: string;
|
|
818
|
-
name: string;
|
|
819
|
-
} & {
|
|
820
|
-
date?: string | null | undefined;
|
|
821
|
-
}) | ({
|
|
822
|
-
__TYPE__: "FileLink";
|
|
823
|
-
} & {
|
|
824
|
-
kind: "file";
|
|
825
|
-
id: string;
|
|
826
|
-
url: string;
|
|
827
|
-
name: string;
|
|
828
|
-
size: string;
|
|
829
|
-
} & {
|
|
830
|
-
date?: string | null | undefined;
|
|
831
|
-
}) | ({
|
|
832
|
-
__TYPE__: "DocumentLink";
|
|
833
|
-
} & {
|
|
834
|
-
id: string;
|
|
835
|
-
}) | ({
|
|
836
|
-
__TYPE__: "ExternalLink";
|
|
837
|
-
} & {
|
|
838
|
-
url: string;
|
|
839
|
-
} & {
|
|
840
|
-
kind?: "web";
|
|
841
|
-
target?: string | null | undefined;
|
|
842
|
-
preview?: {
|
|
843
|
-
title?: string;
|
|
844
|
-
} | null | undefined;
|
|
845
|
-
});
|
|
846
|
-
start: number;
|
|
847
|
-
end: number;
|
|
848
|
-
type: "hyperlink";
|
|
849
|
-
} | {
|
|
850
|
-
data: string;
|
|
851
|
-
start: number;
|
|
852
|
-
end: number;
|
|
853
|
-
type: "label";
|
|
854
|
-
} | {
|
|
855
|
-
start: number;
|
|
856
|
-
end: number;
|
|
857
|
-
type: "strong" | "em" | "list-item";
|
|
858
|
-
})[], unknown>;
|
|
859
|
-
}>]>;
|
|
860
|
-
}>, t.PartialC<{
|
|
861
|
-
label: t.StringC;
|
|
862
|
-
direction: t.StringC;
|
|
863
|
-
}>]>>>;
|
|
864
|
-
}>>, t.ExactC<t.TypeC<{
|
|
865
|
-
type: t.LiteralC<"tableCell">;
|
|
866
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
867
|
-
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>;
|
|
868
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
869
|
-
text: t.StringC;
|
|
870
|
-
}>, t.PartialC<{
|
|
871
|
-
spans: t.Type<({
|
|
872
|
-
data: ({
|
|
873
|
-
__TYPE__: "ImageLink";
|
|
874
|
-
} & {
|
|
875
|
-
kind: "image";
|
|
876
|
-
id: string;
|
|
877
|
-
url: string;
|
|
878
|
-
height: string;
|
|
879
|
-
width: string;
|
|
880
|
-
size: string;
|
|
881
|
-
name: string;
|
|
882
|
-
} & {
|
|
883
|
-
date?: string | null | undefined;
|
|
884
|
-
}) | ({
|
|
885
|
-
__TYPE__: "FileLink";
|
|
886
|
-
} & {
|
|
887
|
-
kind: "file";
|
|
888
|
-
id: string;
|
|
889
|
-
url: string;
|
|
890
|
-
name: string;
|
|
891
|
-
size: string;
|
|
892
|
-
} & {
|
|
893
|
-
date?: string | null | undefined;
|
|
894
|
-
}) | ({
|
|
895
|
-
__TYPE__: "DocumentLink";
|
|
896
|
-
} & {
|
|
897
|
-
id: string;
|
|
898
|
-
}) | ({
|
|
899
|
-
__TYPE__: "ExternalLink";
|
|
900
|
-
} & {
|
|
901
|
-
url: string;
|
|
902
|
-
} & {
|
|
903
|
-
kind?: "web";
|
|
904
|
-
target?: string | null | undefined;
|
|
905
|
-
preview?: {
|
|
906
|
-
title?: string;
|
|
907
|
-
} | null | undefined;
|
|
908
|
-
});
|
|
909
|
-
start: number;
|
|
910
|
-
end: number;
|
|
911
|
-
type: "hyperlink";
|
|
912
|
-
} | {
|
|
913
|
-
data: string;
|
|
914
|
-
start: number;
|
|
915
|
-
end: number;
|
|
916
|
-
type: "label";
|
|
917
|
-
} | {
|
|
918
|
-
start: number;
|
|
919
|
-
end: number;
|
|
920
|
-
type: "strong" | "em" | "list-item";
|
|
921
|
-
})[], ({
|
|
922
|
-
data: ({
|
|
923
|
-
__TYPE__: "ImageLink";
|
|
924
|
-
} & {
|
|
925
|
-
kind: "image";
|
|
926
|
-
id: string;
|
|
927
|
-
url: string;
|
|
928
|
-
height: string;
|
|
929
|
-
width: string;
|
|
930
|
-
size: string;
|
|
931
|
-
name: string;
|
|
932
|
-
} & {
|
|
933
|
-
date?: string | null | undefined;
|
|
934
|
-
}) | ({
|
|
935
|
-
__TYPE__: "FileLink";
|
|
936
|
-
} & {
|
|
937
|
-
kind: "file";
|
|
938
|
-
id: string;
|
|
939
|
-
url: string;
|
|
940
|
-
name: string;
|
|
941
|
-
size: string;
|
|
942
|
-
} & {
|
|
943
|
-
date?: string | null | undefined;
|
|
944
|
-
}) | ({
|
|
945
|
-
__TYPE__: "DocumentLink";
|
|
946
|
-
} & {
|
|
947
|
-
id: string;
|
|
948
|
-
}) | ({
|
|
949
|
-
__TYPE__: "ExternalLink";
|
|
950
|
-
} & {
|
|
951
|
-
url: string;
|
|
952
|
-
} & {
|
|
953
|
-
kind?: "web";
|
|
954
|
-
target?: string | null | undefined;
|
|
955
|
-
preview?: {
|
|
956
|
-
title?: string;
|
|
957
|
-
} | null | undefined;
|
|
958
|
-
});
|
|
959
|
-
start: number;
|
|
960
|
-
end: number;
|
|
961
|
-
type: "hyperlink";
|
|
962
|
-
} | {
|
|
963
|
-
data: string;
|
|
964
|
-
start: number;
|
|
965
|
-
end: number;
|
|
966
|
-
type: "label";
|
|
967
|
-
} | {
|
|
968
|
-
start: number;
|
|
969
|
-
end: number;
|
|
970
|
-
type: "strong" | "em" | "list-item";
|
|
971
|
-
})[], unknown>;
|
|
972
|
-
}>]>;
|
|
973
|
-
}>, t.PartialC<{
|
|
974
|
-
label: t.StringC;
|
|
975
|
-
direction: t.StringC;
|
|
976
|
-
}>]>>>;
|
|
977
|
-
}>>]>>;
|
|
978
|
-
}>>>;
|
|
979
|
-
}>>, t.ExactC<t.TypeC<{
|
|
980
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
981
|
-
}>>]>]>, t.TypeC<{
|
|
755
|
+
}>>]>, t.TypeC<{
|
|
982
756
|
__TYPE__: t.LiteralC<"UIDContent">;
|
|
983
757
|
value: t.StringC;
|
|
984
758
|
}>, t.TypeC<{
|
|
@@ -1305,7 +1079,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1305
1079
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1306
1080
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1307
1081
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1308
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
1082
|
+
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>;
|
|
1309
1083
|
content: t.IntersectionC<[t.TypeC<{
|
|
1310
1084
|
text: t.StringC;
|
|
1311
1085
|
}>, t.PartialC<{
|
|
@@ -1414,14 +1188,18 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1414
1188
|
}>, t.PartialC<{
|
|
1415
1189
|
label: t.StringC;
|
|
1416
1190
|
direction: t.StringC;
|
|
1417
|
-
}>]
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1191
|
+
}>]>>]>>;
|
|
1192
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1193
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1194
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1195
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1196
|
+
type: t.LiteralC<"tableRow">;
|
|
1197
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1198
|
+
type: t.LiteralC<"tableHeader">;
|
|
1199
|
+
content: t.ExactC<t.TypeC<{
|
|
1200
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
1201
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1202
|
+
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>;
|
|
1425
1203
|
content: t.IntersectionC<[t.TypeC<{
|
|
1426
1204
|
text: t.StringC;
|
|
1427
1205
|
}>, t.PartialC<{
|
|
@@ -1531,10 +1309,13 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1531
1309
|
label: t.StringC;
|
|
1532
1310
|
direction: t.StringC;
|
|
1533
1311
|
}>]>>>;
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1312
|
+
}>>;
|
|
1313
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1314
|
+
type: t.LiteralC<"tableCell">;
|
|
1315
|
+
content: t.ExactC<t.TypeC<{
|
|
1316
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
1317
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1318
|
+
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>;
|
|
1538
1319
|
content: t.IntersectionC<[t.TypeC<{
|
|
1539
1320
|
text: t.StringC;
|
|
1540
1321
|
}>, t.PartialC<{
|
|
@@ -1644,12 +1425,12 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1644
1425
|
label: t.StringC;
|
|
1645
1426
|
direction: t.StringC;
|
|
1646
1427
|
}>]>>>;
|
|
1647
|
-
}
|
|
1648
|
-
}
|
|
1649
|
-
}
|
|
1650
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1651
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1428
|
+
}>>;
|
|
1429
|
+
}>>]>>;
|
|
1430
|
+
}>>>;
|
|
1652
1431
|
}>>, t.ExactC<t.TypeC<{
|
|
1432
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
1433
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1653
1434
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
1654
1435
|
type: t.LiteralC<"Link">;
|
|
1655
1436
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -1730,240 +1511,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1730
1511
|
variant: t.StringC;
|
|
1731
1512
|
}>]>>]>]>;
|
|
1732
1513
|
}>>]>>;
|
|
1733
|
-
}
|
|
1734
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1735
|
-
type: t.LiteralC<"tableRow">;
|
|
1736
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1737
|
-
type: t.LiteralC<"tableHeader">;
|
|
1738
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1739
|
-
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>;
|
|
1740
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
1741
|
-
text: t.StringC;
|
|
1742
|
-
}>, t.PartialC<{
|
|
1743
|
-
spans: t.Type<({
|
|
1744
|
-
data: ({
|
|
1745
|
-
__TYPE__: "ImageLink";
|
|
1746
|
-
} & {
|
|
1747
|
-
kind: "image";
|
|
1748
|
-
id: string;
|
|
1749
|
-
url: string;
|
|
1750
|
-
height: string;
|
|
1751
|
-
width: string;
|
|
1752
|
-
size: string;
|
|
1753
|
-
name: string;
|
|
1754
|
-
} & {
|
|
1755
|
-
date?: string | null | undefined;
|
|
1756
|
-
}) | ({
|
|
1757
|
-
__TYPE__: "FileLink";
|
|
1758
|
-
} & {
|
|
1759
|
-
kind: "file";
|
|
1760
|
-
id: string;
|
|
1761
|
-
url: string;
|
|
1762
|
-
name: string;
|
|
1763
|
-
size: string;
|
|
1764
|
-
} & {
|
|
1765
|
-
date?: string | null | undefined;
|
|
1766
|
-
}) | ({
|
|
1767
|
-
__TYPE__: "DocumentLink";
|
|
1768
|
-
} & {
|
|
1769
|
-
id: string;
|
|
1770
|
-
}) | ({
|
|
1771
|
-
__TYPE__: "ExternalLink";
|
|
1772
|
-
} & {
|
|
1773
|
-
url: string;
|
|
1774
|
-
} & {
|
|
1775
|
-
kind?: "web";
|
|
1776
|
-
target?: string | null | undefined;
|
|
1777
|
-
preview?: {
|
|
1778
|
-
title?: string;
|
|
1779
|
-
} | null | undefined;
|
|
1780
|
-
});
|
|
1781
|
-
start: number;
|
|
1782
|
-
end: number;
|
|
1783
|
-
type: "hyperlink";
|
|
1784
|
-
} | {
|
|
1785
|
-
data: string;
|
|
1786
|
-
start: number;
|
|
1787
|
-
end: number;
|
|
1788
|
-
type: "label";
|
|
1789
|
-
} | {
|
|
1790
|
-
start: number;
|
|
1791
|
-
end: number;
|
|
1792
|
-
type: "strong" | "em" | "list-item";
|
|
1793
|
-
})[], ({
|
|
1794
|
-
data: ({
|
|
1795
|
-
__TYPE__: "ImageLink";
|
|
1796
|
-
} & {
|
|
1797
|
-
kind: "image";
|
|
1798
|
-
id: string;
|
|
1799
|
-
url: string;
|
|
1800
|
-
height: string;
|
|
1801
|
-
width: string;
|
|
1802
|
-
size: string;
|
|
1803
|
-
name: string;
|
|
1804
|
-
} & {
|
|
1805
|
-
date?: string | null | undefined;
|
|
1806
|
-
}) | ({
|
|
1807
|
-
__TYPE__: "FileLink";
|
|
1808
|
-
} & {
|
|
1809
|
-
kind: "file";
|
|
1810
|
-
id: string;
|
|
1811
|
-
url: string;
|
|
1812
|
-
name: string;
|
|
1813
|
-
size: string;
|
|
1814
|
-
} & {
|
|
1815
|
-
date?: string | null | undefined;
|
|
1816
|
-
}) | ({
|
|
1817
|
-
__TYPE__: "DocumentLink";
|
|
1818
|
-
} & {
|
|
1819
|
-
id: string;
|
|
1820
|
-
}) | ({
|
|
1821
|
-
__TYPE__: "ExternalLink";
|
|
1822
|
-
} & {
|
|
1823
|
-
url: string;
|
|
1824
|
-
} & {
|
|
1825
|
-
kind?: "web";
|
|
1826
|
-
target?: string | null | undefined;
|
|
1827
|
-
preview?: {
|
|
1828
|
-
title?: string;
|
|
1829
|
-
} | null | undefined;
|
|
1830
|
-
});
|
|
1831
|
-
start: number;
|
|
1832
|
-
end: number;
|
|
1833
|
-
type: "hyperlink";
|
|
1834
|
-
} | {
|
|
1835
|
-
data: string;
|
|
1836
|
-
start: number;
|
|
1837
|
-
end: number;
|
|
1838
|
-
type: "label";
|
|
1839
|
-
} | {
|
|
1840
|
-
start: number;
|
|
1841
|
-
end: number;
|
|
1842
|
-
type: "strong" | "em" | "list-item";
|
|
1843
|
-
})[], unknown>;
|
|
1844
|
-
}>]>;
|
|
1845
|
-
}>, t.PartialC<{
|
|
1846
|
-
label: t.StringC;
|
|
1847
|
-
direction: t.StringC;
|
|
1848
|
-
}>]>>>;
|
|
1849
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1850
|
-
type: t.LiteralC<"tableCell">;
|
|
1851
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1852
|
-
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>;
|
|
1853
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
1854
|
-
text: t.StringC;
|
|
1855
|
-
}>, t.PartialC<{
|
|
1856
|
-
spans: t.Type<({
|
|
1857
|
-
data: ({
|
|
1858
|
-
__TYPE__: "ImageLink";
|
|
1859
|
-
} & {
|
|
1860
|
-
kind: "image";
|
|
1861
|
-
id: string;
|
|
1862
|
-
url: string;
|
|
1863
|
-
height: string;
|
|
1864
|
-
width: string;
|
|
1865
|
-
size: string;
|
|
1866
|
-
name: string;
|
|
1867
|
-
} & {
|
|
1868
|
-
date?: string | null | undefined;
|
|
1869
|
-
}) | ({
|
|
1870
|
-
__TYPE__: "FileLink";
|
|
1871
|
-
} & {
|
|
1872
|
-
kind: "file";
|
|
1873
|
-
id: string;
|
|
1874
|
-
url: string;
|
|
1875
|
-
name: string;
|
|
1876
|
-
size: string;
|
|
1877
|
-
} & {
|
|
1878
|
-
date?: string | null | undefined;
|
|
1879
|
-
}) | ({
|
|
1880
|
-
__TYPE__: "DocumentLink";
|
|
1881
|
-
} & {
|
|
1882
|
-
id: string;
|
|
1883
|
-
}) | ({
|
|
1884
|
-
__TYPE__: "ExternalLink";
|
|
1885
|
-
} & {
|
|
1886
|
-
url: string;
|
|
1887
|
-
} & {
|
|
1888
|
-
kind?: "web";
|
|
1889
|
-
target?: string | null | undefined;
|
|
1890
|
-
preview?: {
|
|
1891
|
-
title?: string;
|
|
1892
|
-
} | null | undefined;
|
|
1893
|
-
});
|
|
1894
|
-
start: number;
|
|
1895
|
-
end: number;
|
|
1896
|
-
type: "hyperlink";
|
|
1897
|
-
} | {
|
|
1898
|
-
data: string;
|
|
1899
|
-
start: number;
|
|
1900
|
-
end: number;
|
|
1901
|
-
type: "label";
|
|
1902
|
-
} | {
|
|
1903
|
-
start: number;
|
|
1904
|
-
end: number;
|
|
1905
|
-
type: "strong" | "em" | "list-item";
|
|
1906
|
-
})[], ({
|
|
1907
|
-
data: ({
|
|
1908
|
-
__TYPE__: "ImageLink";
|
|
1909
|
-
} & {
|
|
1910
|
-
kind: "image";
|
|
1911
|
-
id: string;
|
|
1912
|
-
url: string;
|
|
1913
|
-
height: string;
|
|
1914
|
-
width: string;
|
|
1915
|
-
size: string;
|
|
1916
|
-
name: string;
|
|
1917
|
-
} & {
|
|
1918
|
-
date?: string | null | undefined;
|
|
1919
|
-
}) | ({
|
|
1920
|
-
__TYPE__: "FileLink";
|
|
1921
|
-
} & {
|
|
1922
|
-
kind: "file";
|
|
1923
|
-
id: string;
|
|
1924
|
-
url: string;
|
|
1925
|
-
name: string;
|
|
1926
|
-
size: string;
|
|
1927
|
-
} & {
|
|
1928
|
-
date?: string | null | undefined;
|
|
1929
|
-
}) | ({
|
|
1930
|
-
__TYPE__: "DocumentLink";
|
|
1931
|
-
} & {
|
|
1932
|
-
id: string;
|
|
1933
|
-
}) | ({
|
|
1934
|
-
__TYPE__: "ExternalLink";
|
|
1935
|
-
} & {
|
|
1936
|
-
url: string;
|
|
1937
|
-
} & {
|
|
1938
|
-
kind?: "web";
|
|
1939
|
-
target?: string | null | undefined;
|
|
1940
|
-
preview?: {
|
|
1941
|
-
title?: string;
|
|
1942
|
-
} | null | undefined;
|
|
1943
|
-
});
|
|
1944
|
-
start: number;
|
|
1945
|
-
end: number;
|
|
1946
|
-
type: "hyperlink";
|
|
1947
|
-
} | {
|
|
1948
|
-
data: string;
|
|
1949
|
-
start: number;
|
|
1950
|
-
end: number;
|
|
1951
|
-
type: "label";
|
|
1952
|
-
} | {
|
|
1953
|
-
start: number;
|
|
1954
|
-
end: number;
|
|
1955
|
-
type: "strong" | "em" | "list-item";
|
|
1956
|
-
})[], unknown>;
|
|
1957
|
-
}>]>;
|
|
1958
|
-
}>, t.PartialC<{
|
|
1959
|
-
label: t.StringC;
|
|
1960
|
-
direction: t.StringC;
|
|
1961
|
-
}>]>>>;
|
|
1962
|
-
}>>]>>;
|
|
1963
|
-
}>>>;
|
|
1964
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1965
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
1966
|
-
}>>]>]>>;
|
|
1514
|
+
}>>]>>;
|
|
1967
1515
|
repeat: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1968
1516
|
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
1969
1517
|
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2282,7 +1830,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2282
1830
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2283
1831
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2284
1832
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2285
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
1833
|
+
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>;
|
|
2286
1834
|
content: t.IntersectionC<[t.TypeC<{
|
|
2287
1835
|
text: t.StringC;
|
|
2288
1836
|
}>, t.PartialC<{
|
|
@@ -2391,16 +1939,20 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2391
1939
|
}>, t.PartialC<{
|
|
2392
1940
|
label: t.StringC;
|
|
2393
1941
|
direction: t.StringC;
|
|
2394
|
-
}>]
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
1942
|
+
}>]>>]>>;
|
|
1943
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1944
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1945
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1946
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1947
|
+
type: t.LiteralC<"tableRow">;
|
|
1948
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1949
|
+
type: t.LiteralC<"tableHeader">;
|
|
1950
|
+
content: t.ExactC<t.TypeC<{
|
|
1951
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
1952
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1953
|
+
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>;
|
|
1954
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
1955
|
+
text: t.StringC;
|
|
2404
1956
|
}>, t.PartialC<{
|
|
2405
1957
|
spans: t.Type<({
|
|
2406
1958
|
data: ({
|
|
@@ -2508,10 +2060,13 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2508
2060
|
label: t.StringC;
|
|
2509
2061
|
direction: t.StringC;
|
|
2510
2062
|
}>]>>>;
|
|
2511
|
-
}
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2063
|
+
}>>;
|
|
2064
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2065
|
+
type: t.LiteralC<"tableCell">;
|
|
2066
|
+
content: t.ExactC<t.TypeC<{
|
|
2067
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2068
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2069
|
+
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>;
|
|
2515
2070
|
content: t.IntersectionC<[t.TypeC<{
|
|
2516
2071
|
text: t.StringC;
|
|
2517
2072
|
}>, t.PartialC<{
|
|
@@ -2621,12 +2176,12 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2621
2176
|
label: t.StringC;
|
|
2622
2177
|
direction: t.StringC;
|
|
2623
2178
|
}>]>>>;
|
|
2624
|
-
}
|
|
2625
|
-
}
|
|
2626
|
-
}
|
|
2627
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2628
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2179
|
+
}>>;
|
|
2180
|
+
}>>]>>;
|
|
2181
|
+
}>>>;
|
|
2629
2182
|
}>>, t.ExactC<t.TypeC<{
|
|
2183
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
2184
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
2630
2185
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
2631
2186
|
type: t.LiteralC<"Link">;
|
|
2632
2187
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -2707,240 +2262,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2707
2262
|
variant: t.StringC;
|
|
2708
2263
|
}>]>>]>]>;
|
|
2709
2264
|
}>>]>>;
|
|
2710
|
-
}
|
|
2711
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
2712
|
-
type: t.LiteralC<"tableRow">;
|
|
2713
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
2714
|
-
type: t.LiteralC<"tableHeader">;
|
|
2715
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2716
|
-
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>;
|
|
2717
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
2718
|
-
text: t.StringC;
|
|
2719
|
-
}>, t.PartialC<{
|
|
2720
|
-
spans: t.Type<({
|
|
2721
|
-
data: ({
|
|
2722
|
-
__TYPE__: "ImageLink";
|
|
2723
|
-
} & {
|
|
2724
|
-
kind: "image";
|
|
2725
|
-
id: string;
|
|
2726
|
-
url: string;
|
|
2727
|
-
height: string;
|
|
2728
|
-
width: string;
|
|
2729
|
-
size: string;
|
|
2730
|
-
name: string;
|
|
2731
|
-
} & {
|
|
2732
|
-
date?: string | null | undefined;
|
|
2733
|
-
}) | ({
|
|
2734
|
-
__TYPE__: "FileLink";
|
|
2735
|
-
} & {
|
|
2736
|
-
kind: "file";
|
|
2737
|
-
id: string;
|
|
2738
|
-
url: string;
|
|
2739
|
-
name: string;
|
|
2740
|
-
size: string;
|
|
2741
|
-
} & {
|
|
2742
|
-
date?: string | null | undefined;
|
|
2743
|
-
}) | ({
|
|
2744
|
-
__TYPE__: "DocumentLink";
|
|
2745
|
-
} & {
|
|
2746
|
-
id: string;
|
|
2747
|
-
}) | ({
|
|
2748
|
-
__TYPE__: "ExternalLink";
|
|
2749
|
-
} & {
|
|
2750
|
-
url: string;
|
|
2751
|
-
} & {
|
|
2752
|
-
kind?: "web";
|
|
2753
|
-
target?: string | null | undefined;
|
|
2754
|
-
preview?: {
|
|
2755
|
-
title?: string;
|
|
2756
|
-
} | null | undefined;
|
|
2757
|
-
});
|
|
2758
|
-
start: number;
|
|
2759
|
-
end: number;
|
|
2760
|
-
type: "hyperlink";
|
|
2761
|
-
} | {
|
|
2762
|
-
data: string;
|
|
2763
|
-
start: number;
|
|
2764
|
-
end: number;
|
|
2765
|
-
type: "label";
|
|
2766
|
-
} | {
|
|
2767
|
-
start: number;
|
|
2768
|
-
end: number;
|
|
2769
|
-
type: "strong" | "em" | "list-item";
|
|
2770
|
-
})[], ({
|
|
2771
|
-
data: ({
|
|
2772
|
-
__TYPE__: "ImageLink";
|
|
2773
|
-
} & {
|
|
2774
|
-
kind: "image";
|
|
2775
|
-
id: string;
|
|
2776
|
-
url: string;
|
|
2777
|
-
height: string;
|
|
2778
|
-
width: string;
|
|
2779
|
-
size: string;
|
|
2780
|
-
name: string;
|
|
2781
|
-
} & {
|
|
2782
|
-
date?: string | null | undefined;
|
|
2783
|
-
}) | ({
|
|
2784
|
-
__TYPE__: "FileLink";
|
|
2785
|
-
} & {
|
|
2786
|
-
kind: "file";
|
|
2787
|
-
id: string;
|
|
2788
|
-
url: string;
|
|
2789
|
-
name: string;
|
|
2790
|
-
size: string;
|
|
2791
|
-
} & {
|
|
2792
|
-
date?: string | null | undefined;
|
|
2793
|
-
}) | ({
|
|
2794
|
-
__TYPE__: "DocumentLink";
|
|
2795
|
-
} & {
|
|
2796
|
-
id: string;
|
|
2797
|
-
}) | ({
|
|
2798
|
-
__TYPE__: "ExternalLink";
|
|
2799
|
-
} & {
|
|
2800
|
-
url: string;
|
|
2801
|
-
} & {
|
|
2802
|
-
kind?: "web";
|
|
2803
|
-
target?: string | null | undefined;
|
|
2804
|
-
preview?: {
|
|
2805
|
-
title?: string;
|
|
2806
|
-
} | null | undefined;
|
|
2807
|
-
});
|
|
2808
|
-
start: number;
|
|
2809
|
-
end: number;
|
|
2810
|
-
type: "hyperlink";
|
|
2811
|
-
} | {
|
|
2812
|
-
data: string;
|
|
2813
|
-
start: number;
|
|
2814
|
-
end: number;
|
|
2815
|
-
type: "label";
|
|
2816
|
-
} | {
|
|
2817
|
-
start: number;
|
|
2818
|
-
end: number;
|
|
2819
|
-
type: "strong" | "em" | "list-item";
|
|
2820
|
-
})[], unknown>;
|
|
2821
|
-
}>]>;
|
|
2822
|
-
}>, t.PartialC<{
|
|
2823
|
-
label: t.StringC;
|
|
2824
|
-
direction: t.StringC;
|
|
2825
|
-
}>]>>>;
|
|
2826
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2827
|
-
type: t.LiteralC<"tableCell">;
|
|
2828
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2829
|
-
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>;
|
|
2830
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
2831
|
-
text: t.StringC;
|
|
2832
|
-
}>, t.PartialC<{
|
|
2833
|
-
spans: t.Type<({
|
|
2834
|
-
data: ({
|
|
2835
|
-
__TYPE__: "ImageLink";
|
|
2836
|
-
} & {
|
|
2837
|
-
kind: "image";
|
|
2838
|
-
id: string;
|
|
2839
|
-
url: string;
|
|
2840
|
-
height: string;
|
|
2841
|
-
width: string;
|
|
2842
|
-
size: string;
|
|
2843
|
-
name: string;
|
|
2844
|
-
} & {
|
|
2845
|
-
date?: string | null | undefined;
|
|
2846
|
-
}) | ({
|
|
2847
|
-
__TYPE__: "FileLink";
|
|
2848
|
-
} & {
|
|
2849
|
-
kind: "file";
|
|
2850
|
-
id: string;
|
|
2851
|
-
url: string;
|
|
2852
|
-
name: string;
|
|
2853
|
-
size: string;
|
|
2854
|
-
} & {
|
|
2855
|
-
date?: string | null | undefined;
|
|
2856
|
-
}) | ({
|
|
2857
|
-
__TYPE__: "DocumentLink";
|
|
2858
|
-
} & {
|
|
2859
|
-
id: string;
|
|
2860
|
-
}) | ({
|
|
2861
|
-
__TYPE__: "ExternalLink";
|
|
2862
|
-
} & {
|
|
2863
|
-
url: string;
|
|
2864
|
-
} & {
|
|
2865
|
-
kind?: "web";
|
|
2866
|
-
target?: string | null | undefined;
|
|
2867
|
-
preview?: {
|
|
2868
|
-
title?: string;
|
|
2869
|
-
} | null | undefined;
|
|
2870
|
-
});
|
|
2871
|
-
start: number;
|
|
2872
|
-
end: number;
|
|
2873
|
-
type: "hyperlink";
|
|
2874
|
-
} | {
|
|
2875
|
-
data: string;
|
|
2876
|
-
start: number;
|
|
2877
|
-
end: number;
|
|
2878
|
-
type: "label";
|
|
2879
|
-
} | {
|
|
2880
|
-
start: number;
|
|
2881
|
-
end: number;
|
|
2882
|
-
type: "strong" | "em" | "list-item";
|
|
2883
|
-
})[], ({
|
|
2884
|
-
data: ({
|
|
2885
|
-
__TYPE__: "ImageLink";
|
|
2886
|
-
} & {
|
|
2887
|
-
kind: "image";
|
|
2888
|
-
id: string;
|
|
2889
|
-
url: string;
|
|
2890
|
-
height: string;
|
|
2891
|
-
width: string;
|
|
2892
|
-
size: string;
|
|
2893
|
-
name: string;
|
|
2894
|
-
} & {
|
|
2895
|
-
date?: string | null | undefined;
|
|
2896
|
-
}) | ({
|
|
2897
|
-
__TYPE__: "FileLink";
|
|
2898
|
-
} & {
|
|
2899
|
-
kind: "file";
|
|
2900
|
-
id: string;
|
|
2901
|
-
url: string;
|
|
2902
|
-
name: string;
|
|
2903
|
-
size: string;
|
|
2904
|
-
} & {
|
|
2905
|
-
date?: string | null | undefined;
|
|
2906
|
-
}) | ({
|
|
2907
|
-
__TYPE__: "DocumentLink";
|
|
2908
|
-
} & {
|
|
2909
|
-
id: string;
|
|
2910
|
-
}) | ({
|
|
2911
|
-
__TYPE__: "ExternalLink";
|
|
2912
|
-
} & {
|
|
2913
|
-
url: string;
|
|
2914
|
-
} & {
|
|
2915
|
-
kind?: "web";
|
|
2916
|
-
target?: string | null | undefined;
|
|
2917
|
-
preview?: {
|
|
2918
|
-
title?: string;
|
|
2919
|
-
} | null | undefined;
|
|
2920
|
-
});
|
|
2921
|
-
start: number;
|
|
2922
|
-
end: number;
|
|
2923
|
-
type: "hyperlink";
|
|
2924
|
-
} | {
|
|
2925
|
-
data: string;
|
|
2926
|
-
start: number;
|
|
2927
|
-
end: number;
|
|
2928
|
-
type: "label";
|
|
2929
|
-
} | {
|
|
2930
|
-
start: number;
|
|
2931
|
-
end: number;
|
|
2932
|
-
type: "strong" | "em" | "list-item";
|
|
2933
|
-
})[], unknown>;
|
|
2934
|
-
}>]>;
|
|
2935
|
-
}>, t.PartialC<{
|
|
2936
|
-
label: t.StringC;
|
|
2937
|
-
direction: t.StringC;
|
|
2938
|
-
}>]>>>;
|
|
2939
|
-
}>>]>>;
|
|
2940
|
-
}>>>;
|
|
2941
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2942
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
2943
|
-
}>>]>]>, t.Type<import("./fields").GroupContent, import("./fields").GroupContent, unknown>]>]>>;
|
|
2265
|
+
}>>]>, t.Type<import("./fields").GroupContent, import("./fields").GroupContent, unknown>]>]>>;
|
|
2944
2266
|
}>>>;
|
|
2945
2267
|
}>>, t.ExactC<t.TypeC<{
|
|
2946
2268
|
__TYPE__: t.LiteralC<"SharedSliceContent">;
|
|
@@ -3261,7 +2583,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
3261
2583
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3262
2584
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3263
2585
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3264
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
2586
|
+
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>;
|
|
3265
2587
|
content: t.IntersectionC<[t.TypeC<{
|
|
3266
2588
|
text: t.StringC;
|
|
3267
2589
|
}>, t.PartialC<{
|
|
@@ -3370,16 +2692,20 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
3370
2692
|
}>, t.PartialC<{
|
|
3371
2693
|
label: t.StringC;
|
|
3372
2694
|
direction: t.StringC;
|
|
3373
|
-
}>]
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
2695
|
+
}>]>>]>>;
|
|
2696
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2697
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2698
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2699
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
2700
|
+
type: t.LiteralC<"tableRow">;
|
|
2701
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
2702
|
+
type: t.LiteralC<"tableHeader">;
|
|
2703
|
+
content: t.ExactC<t.TypeC<{
|
|
2704
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2705
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2706
|
+
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>;
|
|
2707
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
2708
|
+
text: t.StringC;
|
|
3383
2709
|
}>, t.PartialC<{
|
|
3384
2710
|
spans: t.Type<({
|
|
3385
2711
|
data: ({
|
|
@@ -3487,10 +2813,13 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
3487
2813
|
label: t.StringC;
|
|
3488
2814
|
direction: t.StringC;
|
|
3489
2815
|
}>]>>>;
|
|
3490
|
-
}
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
2816
|
+
}>>;
|
|
2817
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2818
|
+
type: t.LiteralC<"tableCell">;
|
|
2819
|
+
content: t.ExactC<t.TypeC<{
|
|
2820
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2821
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2822
|
+
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>;
|
|
3494
2823
|
content: t.IntersectionC<[t.TypeC<{
|
|
3495
2824
|
text: t.StringC;
|
|
3496
2825
|
}>, t.PartialC<{
|
|
@@ -3600,12 +2929,12 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
3600
2929
|
label: t.StringC;
|
|
3601
2930
|
direction: t.StringC;
|
|
3602
2931
|
}>]>>>;
|
|
3603
|
-
}
|
|
3604
|
-
}
|
|
3605
|
-
}
|
|
3606
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3607
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2932
|
+
}>>;
|
|
2933
|
+
}>>]>>;
|
|
2934
|
+
}>>>;
|
|
3608
2935
|
}>>, t.ExactC<t.TypeC<{
|
|
2936
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
2937
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
3609
2938
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
3610
2939
|
type: t.LiteralC<"Link">;
|
|
3611
2940
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -3686,240 +3015,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
3686
3015
|
variant: t.StringC;
|
|
3687
3016
|
}>]>>]>]>;
|
|
3688
3017
|
}>>]>>;
|
|
3689
|
-
}
|
|
3690
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3691
|
-
type: t.LiteralC<"tableRow">;
|
|
3692
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
3693
|
-
type: t.LiteralC<"tableHeader">;
|
|
3694
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3695
|
-
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>;
|
|
3696
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
3697
|
-
text: t.StringC;
|
|
3698
|
-
}>, t.PartialC<{
|
|
3699
|
-
spans: t.Type<({
|
|
3700
|
-
data: ({
|
|
3701
|
-
__TYPE__: "ImageLink";
|
|
3702
|
-
} & {
|
|
3703
|
-
kind: "image";
|
|
3704
|
-
id: string;
|
|
3705
|
-
url: string;
|
|
3706
|
-
height: string;
|
|
3707
|
-
width: string;
|
|
3708
|
-
size: string;
|
|
3709
|
-
name: string;
|
|
3710
|
-
} & {
|
|
3711
|
-
date?: string | null | undefined;
|
|
3712
|
-
}) | ({
|
|
3713
|
-
__TYPE__: "FileLink";
|
|
3714
|
-
} & {
|
|
3715
|
-
kind: "file";
|
|
3716
|
-
id: string;
|
|
3717
|
-
url: string;
|
|
3718
|
-
name: string;
|
|
3719
|
-
size: string;
|
|
3720
|
-
} & {
|
|
3721
|
-
date?: string | null | undefined;
|
|
3722
|
-
}) | ({
|
|
3723
|
-
__TYPE__: "DocumentLink";
|
|
3724
|
-
} & {
|
|
3725
|
-
id: string;
|
|
3726
|
-
}) | ({
|
|
3727
|
-
__TYPE__: "ExternalLink";
|
|
3728
|
-
} & {
|
|
3729
|
-
url: string;
|
|
3730
|
-
} & {
|
|
3731
|
-
kind?: "web";
|
|
3732
|
-
target?: string | null | undefined;
|
|
3733
|
-
preview?: {
|
|
3734
|
-
title?: string;
|
|
3735
|
-
} | null | undefined;
|
|
3736
|
-
});
|
|
3737
|
-
start: number;
|
|
3738
|
-
end: number;
|
|
3739
|
-
type: "hyperlink";
|
|
3740
|
-
} | {
|
|
3741
|
-
data: string;
|
|
3742
|
-
start: number;
|
|
3743
|
-
end: number;
|
|
3744
|
-
type: "label";
|
|
3745
|
-
} | {
|
|
3746
|
-
start: number;
|
|
3747
|
-
end: number;
|
|
3748
|
-
type: "strong" | "em" | "list-item";
|
|
3749
|
-
})[], ({
|
|
3750
|
-
data: ({
|
|
3751
|
-
__TYPE__: "ImageLink";
|
|
3752
|
-
} & {
|
|
3753
|
-
kind: "image";
|
|
3754
|
-
id: string;
|
|
3755
|
-
url: string;
|
|
3756
|
-
height: string;
|
|
3757
|
-
width: string;
|
|
3758
|
-
size: string;
|
|
3759
|
-
name: string;
|
|
3760
|
-
} & {
|
|
3761
|
-
date?: string | null | undefined;
|
|
3762
|
-
}) | ({
|
|
3763
|
-
__TYPE__: "FileLink";
|
|
3764
|
-
} & {
|
|
3765
|
-
kind: "file";
|
|
3766
|
-
id: string;
|
|
3767
|
-
url: string;
|
|
3768
|
-
name: string;
|
|
3769
|
-
size: string;
|
|
3770
|
-
} & {
|
|
3771
|
-
date?: string | null | undefined;
|
|
3772
|
-
}) | ({
|
|
3773
|
-
__TYPE__: "DocumentLink";
|
|
3774
|
-
} & {
|
|
3775
|
-
id: string;
|
|
3776
|
-
}) | ({
|
|
3777
|
-
__TYPE__: "ExternalLink";
|
|
3778
|
-
} & {
|
|
3779
|
-
url: string;
|
|
3780
|
-
} & {
|
|
3781
|
-
kind?: "web";
|
|
3782
|
-
target?: string | null | undefined;
|
|
3783
|
-
preview?: {
|
|
3784
|
-
title?: string;
|
|
3785
|
-
} | null | undefined;
|
|
3786
|
-
});
|
|
3787
|
-
start: number;
|
|
3788
|
-
end: number;
|
|
3789
|
-
type: "hyperlink";
|
|
3790
|
-
} | {
|
|
3791
|
-
data: string;
|
|
3792
|
-
start: number;
|
|
3793
|
-
end: number;
|
|
3794
|
-
type: "label";
|
|
3795
|
-
} | {
|
|
3796
|
-
start: number;
|
|
3797
|
-
end: number;
|
|
3798
|
-
type: "strong" | "em" | "list-item";
|
|
3799
|
-
})[], unknown>;
|
|
3800
|
-
}>]>;
|
|
3801
|
-
}>, t.PartialC<{
|
|
3802
|
-
label: t.StringC;
|
|
3803
|
-
direction: t.StringC;
|
|
3804
|
-
}>]>>>;
|
|
3805
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3806
|
-
type: t.LiteralC<"tableCell">;
|
|
3807
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3808
|
-
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>;
|
|
3809
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
3810
|
-
text: t.StringC;
|
|
3811
|
-
}>, t.PartialC<{
|
|
3812
|
-
spans: t.Type<({
|
|
3813
|
-
data: ({
|
|
3814
|
-
__TYPE__: "ImageLink";
|
|
3815
|
-
} & {
|
|
3816
|
-
kind: "image";
|
|
3817
|
-
id: string;
|
|
3818
|
-
url: string;
|
|
3819
|
-
height: string;
|
|
3820
|
-
width: string;
|
|
3821
|
-
size: string;
|
|
3822
|
-
name: string;
|
|
3823
|
-
} & {
|
|
3824
|
-
date?: string | null | undefined;
|
|
3825
|
-
}) | ({
|
|
3826
|
-
__TYPE__: "FileLink";
|
|
3827
|
-
} & {
|
|
3828
|
-
kind: "file";
|
|
3829
|
-
id: string;
|
|
3830
|
-
url: string;
|
|
3831
|
-
name: string;
|
|
3832
|
-
size: string;
|
|
3833
|
-
} & {
|
|
3834
|
-
date?: string | null | undefined;
|
|
3835
|
-
}) | ({
|
|
3836
|
-
__TYPE__: "DocumentLink";
|
|
3837
|
-
} & {
|
|
3838
|
-
id: string;
|
|
3839
|
-
}) | ({
|
|
3840
|
-
__TYPE__: "ExternalLink";
|
|
3841
|
-
} & {
|
|
3842
|
-
url: string;
|
|
3843
|
-
} & {
|
|
3844
|
-
kind?: "web";
|
|
3845
|
-
target?: string | null | undefined;
|
|
3846
|
-
preview?: {
|
|
3847
|
-
title?: string;
|
|
3848
|
-
} | null | undefined;
|
|
3849
|
-
});
|
|
3850
|
-
start: number;
|
|
3851
|
-
end: number;
|
|
3852
|
-
type: "hyperlink";
|
|
3853
|
-
} | {
|
|
3854
|
-
data: string;
|
|
3855
|
-
start: number;
|
|
3856
|
-
end: number;
|
|
3857
|
-
type: "label";
|
|
3858
|
-
} | {
|
|
3859
|
-
start: number;
|
|
3860
|
-
end: number;
|
|
3861
|
-
type: "strong" | "em" | "list-item";
|
|
3862
|
-
})[], ({
|
|
3863
|
-
data: ({
|
|
3864
|
-
__TYPE__: "ImageLink";
|
|
3865
|
-
} & {
|
|
3866
|
-
kind: "image";
|
|
3867
|
-
id: string;
|
|
3868
|
-
url: string;
|
|
3869
|
-
height: string;
|
|
3870
|
-
width: string;
|
|
3871
|
-
size: string;
|
|
3872
|
-
name: string;
|
|
3873
|
-
} & {
|
|
3874
|
-
date?: string | null | undefined;
|
|
3875
|
-
}) | ({
|
|
3876
|
-
__TYPE__: "FileLink";
|
|
3877
|
-
} & {
|
|
3878
|
-
kind: "file";
|
|
3879
|
-
id: string;
|
|
3880
|
-
url: string;
|
|
3881
|
-
name: string;
|
|
3882
|
-
size: string;
|
|
3883
|
-
} & {
|
|
3884
|
-
date?: string | null | undefined;
|
|
3885
|
-
}) | ({
|
|
3886
|
-
__TYPE__: "DocumentLink";
|
|
3887
|
-
} & {
|
|
3888
|
-
id: string;
|
|
3889
|
-
}) | ({
|
|
3890
|
-
__TYPE__: "ExternalLink";
|
|
3891
|
-
} & {
|
|
3892
|
-
url: string;
|
|
3893
|
-
} & {
|
|
3894
|
-
kind?: "web";
|
|
3895
|
-
target?: string | null | undefined;
|
|
3896
|
-
preview?: {
|
|
3897
|
-
title?: string;
|
|
3898
|
-
} | null | undefined;
|
|
3899
|
-
});
|
|
3900
|
-
start: number;
|
|
3901
|
-
end: number;
|
|
3902
|
-
type: "hyperlink";
|
|
3903
|
-
} | {
|
|
3904
|
-
data: string;
|
|
3905
|
-
start: number;
|
|
3906
|
-
end: number;
|
|
3907
|
-
type: "label";
|
|
3908
|
-
} | {
|
|
3909
|
-
start: number;
|
|
3910
|
-
end: number;
|
|
3911
|
-
type: "strong" | "em" | "list-item";
|
|
3912
|
-
})[], unknown>;
|
|
3913
|
-
}>]>;
|
|
3914
|
-
}>, t.PartialC<{
|
|
3915
|
-
label: t.StringC;
|
|
3916
|
-
direction: t.StringC;
|
|
3917
|
-
}>]>>>;
|
|
3918
|
-
}>>]>>;
|
|
3919
|
-
}>>>;
|
|
3920
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3921
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
3922
|
-
}>>]>]>, t.Type<import("./fields").GroupContent, import("./fields").GroupContent, unknown>]>>;
|
|
3018
|
+
}>>]>, t.Type<import("./fields").GroupContent, import("./fields").GroupContent, unknown>]>>;
|
|
3923
3019
|
items: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3924
3020
|
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
3925
3021
|
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -4238,7 +3334,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
4238
3334
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4239
3335
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4240
3336
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4241
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
3337
|
+
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>;
|
|
4242
3338
|
content: t.IntersectionC<[t.TypeC<{
|
|
4243
3339
|
text: t.StringC;
|
|
4244
3340
|
}>, t.PartialC<{
|
|
@@ -4347,16 +3443,20 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
4347
3443
|
}>, t.PartialC<{
|
|
4348
3444
|
label: t.StringC;
|
|
4349
3445
|
direction: t.StringC;
|
|
4350
|
-
}>]
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
3446
|
+
}>]>>]>>;
|
|
3447
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3448
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3449
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3450
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3451
|
+
type: t.LiteralC<"tableRow">;
|
|
3452
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
3453
|
+
type: t.LiteralC<"tableHeader">;
|
|
3454
|
+
content: t.ExactC<t.TypeC<{
|
|
3455
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
3456
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3457
|
+
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>;
|
|
3458
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
3459
|
+
text: t.StringC;
|
|
4360
3460
|
}>, t.PartialC<{
|
|
4361
3461
|
spans: t.Type<({
|
|
4362
3462
|
data: ({
|
|
@@ -4464,10 +3564,13 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
4464
3564
|
label: t.StringC;
|
|
4465
3565
|
direction: t.StringC;
|
|
4466
3566
|
}>]>>>;
|
|
4467
|
-
}
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
3567
|
+
}>>;
|
|
3568
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3569
|
+
type: t.LiteralC<"tableCell">;
|
|
3570
|
+
content: t.ExactC<t.TypeC<{
|
|
3571
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
3572
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3573
|
+
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>;
|
|
4471
3574
|
content: t.IntersectionC<[t.TypeC<{
|
|
4472
3575
|
text: t.StringC;
|
|
4473
3576
|
}>, t.PartialC<{
|
|
@@ -4577,12 +3680,12 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
4577
3680
|
label: t.StringC;
|
|
4578
3681
|
direction: t.StringC;
|
|
4579
3682
|
}>]>>>;
|
|
4580
|
-
}
|
|
4581
|
-
}
|
|
4582
|
-
}
|
|
4583
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4584
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3683
|
+
}>>;
|
|
3684
|
+
}>>]>>;
|
|
3685
|
+
}>>>;
|
|
4585
3686
|
}>>, t.ExactC<t.TypeC<{
|
|
3687
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
3688
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
4586
3689
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
4587
3690
|
type: t.LiteralC<"Link">;
|
|
4588
3691
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -4663,240 +3766,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
4663
3766
|
variant: t.StringC;
|
|
4664
3767
|
}>]>>]>]>;
|
|
4665
3768
|
}>>]>>;
|
|
4666
|
-
}
|
|
4667
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
4668
|
-
type: t.LiteralC<"tableRow">;
|
|
4669
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
4670
|
-
type: t.LiteralC<"tableHeader">;
|
|
4671
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4672
|
-
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>;
|
|
4673
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
4674
|
-
text: t.StringC;
|
|
4675
|
-
}>, t.PartialC<{
|
|
4676
|
-
spans: t.Type<({
|
|
4677
|
-
data: ({
|
|
4678
|
-
__TYPE__: "ImageLink";
|
|
4679
|
-
} & {
|
|
4680
|
-
kind: "image";
|
|
4681
|
-
id: string;
|
|
4682
|
-
url: string;
|
|
4683
|
-
height: string;
|
|
4684
|
-
width: string;
|
|
4685
|
-
size: string;
|
|
4686
|
-
name: string;
|
|
4687
|
-
} & {
|
|
4688
|
-
date?: string | null | undefined;
|
|
4689
|
-
}) | ({
|
|
4690
|
-
__TYPE__: "FileLink";
|
|
4691
|
-
} & {
|
|
4692
|
-
kind: "file";
|
|
4693
|
-
id: string;
|
|
4694
|
-
url: string;
|
|
4695
|
-
name: string;
|
|
4696
|
-
size: string;
|
|
4697
|
-
} & {
|
|
4698
|
-
date?: string | null | undefined;
|
|
4699
|
-
}) | ({
|
|
4700
|
-
__TYPE__: "DocumentLink";
|
|
4701
|
-
} & {
|
|
4702
|
-
id: string;
|
|
4703
|
-
}) | ({
|
|
4704
|
-
__TYPE__: "ExternalLink";
|
|
4705
|
-
} & {
|
|
4706
|
-
url: string;
|
|
4707
|
-
} & {
|
|
4708
|
-
kind?: "web";
|
|
4709
|
-
target?: string | null | undefined;
|
|
4710
|
-
preview?: {
|
|
4711
|
-
title?: string;
|
|
4712
|
-
} | null | undefined;
|
|
4713
|
-
});
|
|
4714
|
-
start: number;
|
|
4715
|
-
end: number;
|
|
4716
|
-
type: "hyperlink";
|
|
4717
|
-
} | {
|
|
4718
|
-
data: string;
|
|
4719
|
-
start: number;
|
|
4720
|
-
end: number;
|
|
4721
|
-
type: "label";
|
|
4722
|
-
} | {
|
|
4723
|
-
start: number;
|
|
4724
|
-
end: number;
|
|
4725
|
-
type: "strong" | "em" | "list-item";
|
|
4726
|
-
})[], ({
|
|
4727
|
-
data: ({
|
|
4728
|
-
__TYPE__: "ImageLink";
|
|
4729
|
-
} & {
|
|
4730
|
-
kind: "image";
|
|
4731
|
-
id: string;
|
|
4732
|
-
url: string;
|
|
4733
|
-
height: string;
|
|
4734
|
-
width: string;
|
|
4735
|
-
size: string;
|
|
4736
|
-
name: string;
|
|
4737
|
-
} & {
|
|
4738
|
-
date?: string | null | undefined;
|
|
4739
|
-
}) | ({
|
|
4740
|
-
__TYPE__: "FileLink";
|
|
4741
|
-
} & {
|
|
4742
|
-
kind: "file";
|
|
4743
|
-
id: string;
|
|
4744
|
-
url: string;
|
|
4745
|
-
name: string;
|
|
4746
|
-
size: string;
|
|
4747
|
-
} & {
|
|
4748
|
-
date?: string | null | undefined;
|
|
4749
|
-
}) | ({
|
|
4750
|
-
__TYPE__: "DocumentLink";
|
|
4751
|
-
} & {
|
|
4752
|
-
id: string;
|
|
4753
|
-
}) | ({
|
|
4754
|
-
__TYPE__: "ExternalLink";
|
|
4755
|
-
} & {
|
|
4756
|
-
url: string;
|
|
4757
|
-
} & {
|
|
4758
|
-
kind?: "web";
|
|
4759
|
-
target?: string | null | undefined;
|
|
4760
|
-
preview?: {
|
|
4761
|
-
title?: string;
|
|
4762
|
-
} | null | undefined;
|
|
4763
|
-
});
|
|
4764
|
-
start: number;
|
|
4765
|
-
end: number;
|
|
4766
|
-
type: "hyperlink";
|
|
4767
|
-
} | {
|
|
4768
|
-
data: string;
|
|
4769
|
-
start: number;
|
|
4770
|
-
end: number;
|
|
4771
|
-
type: "label";
|
|
4772
|
-
} | {
|
|
4773
|
-
start: number;
|
|
4774
|
-
end: number;
|
|
4775
|
-
type: "strong" | "em" | "list-item";
|
|
4776
|
-
})[], unknown>;
|
|
4777
|
-
}>]>;
|
|
4778
|
-
}>, t.PartialC<{
|
|
4779
|
-
label: t.StringC;
|
|
4780
|
-
direction: t.StringC;
|
|
4781
|
-
}>]>>>;
|
|
4782
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4783
|
-
type: t.LiteralC<"tableCell">;
|
|
4784
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4785
|
-
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>;
|
|
4786
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
4787
|
-
text: t.StringC;
|
|
4788
|
-
}>, t.PartialC<{
|
|
4789
|
-
spans: t.Type<({
|
|
4790
|
-
data: ({
|
|
4791
|
-
__TYPE__: "ImageLink";
|
|
4792
|
-
} & {
|
|
4793
|
-
kind: "image";
|
|
4794
|
-
id: string;
|
|
4795
|
-
url: string;
|
|
4796
|
-
height: string;
|
|
4797
|
-
width: string;
|
|
4798
|
-
size: string;
|
|
4799
|
-
name: string;
|
|
4800
|
-
} & {
|
|
4801
|
-
date?: string | null | undefined;
|
|
4802
|
-
}) | ({
|
|
4803
|
-
__TYPE__: "FileLink";
|
|
4804
|
-
} & {
|
|
4805
|
-
kind: "file";
|
|
4806
|
-
id: string;
|
|
4807
|
-
url: string;
|
|
4808
|
-
name: string;
|
|
4809
|
-
size: string;
|
|
4810
|
-
} & {
|
|
4811
|
-
date?: string | null | undefined;
|
|
4812
|
-
}) | ({
|
|
4813
|
-
__TYPE__: "DocumentLink";
|
|
4814
|
-
} & {
|
|
4815
|
-
id: string;
|
|
4816
|
-
}) | ({
|
|
4817
|
-
__TYPE__: "ExternalLink";
|
|
4818
|
-
} & {
|
|
4819
|
-
url: string;
|
|
4820
|
-
} & {
|
|
4821
|
-
kind?: "web";
|
|
4822
|
-
target?: string | null | undefined;
|
|
4823
|
-
preview?: {
|
|
4824
|
-
title?: string;
|
|
4825
|
-
} | null | undefined;
|
|
4826
|
-
});
|
|
4827
|
-
start: number;
|
|
4828
|
-
end: number;
|
|
4829
|
-
type: "hyperlink";
|
|
4830
|
-
} | {
|
|
4831
|
-
data: string;
|
|
4832
|
-
start: number;
|
|
4833
|
-
end: number;
|
|
4834
|
-
type: "label";
|
|
4835
|
-
} | {
|
|
4836
|
-
start: number;
|
|
4837
|
-
end: number;
|
|
4838
|
-
type: "strong" | "em" | "list-item";
|
|
4839
|
-
})[], ({
|
|
4840
|
-
data: ({
|
|
4841
|
-
__TYPE__: "ImageLink";
|
|
4842
|
-
} & {
|
|
4843
|
-
kind: "image";
|
|
4844
|
-
id: string;
|
|
4845
|
-
url: string;
|
|
4846
|
-
height: string;
|
|
4847
|
-
width: string;
|
|
4848
|
-
size: string;
|
|
4849
|
-
name: string;
|
|
4850
|
-
} & {
|
|
4851
|
-
date?: string | null | undefined;
|
|
4852
|
-
}) | ({
|
|
4853
|
-
__TYPE__: "FileLink";
|
|
4854
|
-
} & {
|
|
4855
|
-
kind: "file";
|
|
4856
|
-
id: string;
|
|
4857
|
-
url: string;
|
|
4858
|
-
name: string;
|
|
4859
|
-
size: string;
|
|
4860
|
-
} & {
|
|
4861
|
-
date?: string | null | undefined;
|
|
4862
|
-
}) | ({
|
|
4863
|
-
__TYPE__: "DocumentLink";
|
|
4864
|
-
} & {
|
|
4865
|
-
id: string;
|
|
4866
|
-
}) | ({
|
|
4867
|
-
__TYPE__: "ExternalLink";
|
|
4868
|
-
} & {
|
|
4869
|
-
url: string;
|
|
4870
|
-
} & {
|
|
4871
|
-
kind?: "web";
|
|
4872
|
-
target?: string | null | undefined;
|
|
4873
|
-
preview?: {
|
|
4874
|
-
title?: string;
|
|
4875
|
-
} | null | undefined;
|
|
4876
|
-
});
|
|
4877
|
-
start: number;
|
|
4878
|
-
end: number;
|
|
4879
|
-
type: "hyperlink";
|
|
4880
|
-
} | {
|
|
4881
|
-
data: string;
|
|
4882
|
-
start: number;
|
|
4883
|
-
end: number;
|
|
4884
|
-
type: "label";
|
|
4885
|
-
} | {
|
|
4886
|
-
start: number;
|
|
4887
|
-
end: number;
|
|
4888
|
-
type: "strong" | "em" | "list-item";
|
|
4889
|
-
})[], unknown>;
|
|
4890
|
-
}>]>;
|
|
4891
|
-
}>, t.PartialC<{
|
|
4892
|
-
label: t.StringC;
|
|
4893
|
-
direction: t.StringC;
|
|
4894
|
-
}>]>>>;
|
|
4895
|
-
}>>]>>;
|
|
4896
|
-
}>>>;
|
|
4897
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4898
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
4899
|
-
}>>]>]>, t.Type<import("./fields").GroupContent, import("./fields").GroupContent, unknown>]>]>>;
|
|
3769
|
+
}>>]>, t.Type<import("./fields").GroupContent, import("./fields").GroupContent, unknown>]>]>>;
|
|
4900
3770
|
}>>>;
|
|
4901
3771
|
}>>, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
4902
3772
|
type: t.StringC;
|
|
@@ -5214,7 +4084,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
5214
4084
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5215
4085
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5216
4086
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5217
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
4087
|
+
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>;
|
|
5218
4088
|
content: t.IntersectionC<[t.TypeC<{
|
|
5219
4089
|
text: t.StringC;
|
|
5220
4090
|
}>, t.PartialC<{
|
|
@@ -5323,16 +4193,20 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
5323
4193
|
}>, t.PartialC<{
|
|
5324
4194
|
label: t.StringC;
|
|
5325
4195
|
direction: t.StringC;
|
|
5326
|
-
}>]
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
|
|
4196
|
+
}>]>>]>>;
|
|
4197
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4198
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4199
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4200
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
4201
|
+
type: t.LiteralC<"tableRow">;
|
|
4202
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
4203
|
+
type: t.LiteralC<"tableHeader">;
|
|
4204
|
+
content: t.ExactC<t.TypeC<{
|
|
4205
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4206
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4207
|
+
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>;
|
|
4208
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
4209
|
+
text: t.StringC;
|
|
5336
4210
|
}>, t.PartialC<{
|
|
5337
4211
|
spans: t.Type<({
|
|
5338
4212
|
data: ({
|
|
@@ -5440,10 +4314,13 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
5440
4314
|
label: t.StringC;
|
|
5441
4315
|
direction: t.StringC;
|
|
5442
4316
|
}>]>>>;
|
|
5443
|
-
}
|
|
5444
|
-
|
|
5445
|
-
|
|
5446
|
-
|
|
4317
|
+
}>>;
|
|
4318
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4319
|
+
type: t.LiteralC<"tableCell">;
|
|
4320
|
+
content: t.ExactC<t.TypeC<{
|
|
4321
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4322
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4323
|
+
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>;
|
|
5447
4324
|
content: t.IntersectionC<[t.TypeC<{
|
|
5448
4325
|
text: t.StringC;
|
|
5449
4326
|
}>, t.PartialC<{
|
|
@@ -5553,12 +4430,12 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
5553
4430
|
label: t.StringC;
|
|
5554
4431
|
direction: t.StringC;
|
|
5555
4432
|
}>]>>>;
|
|
5556
|
-
}
|
|
5557
|
-
}
|
|
5558
|
-
}
|
|
5559
|
-
}>>, t.ExactC<t.TypeC<{
|
|
5560
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4433
|
+
}>>;
|
|
4434
|
+
}>>]>>;
|
|
4435
|
+
}>>>;
|
|
5561
4436
|
}>>, t.ExactC<t.TypeC<{
|
|
4437
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
4438
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
5562
4439
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
5563
4440
|
type: t.LiteralC<"Link">;
|
|
5564
4441
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -5639,240 +4516,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
5639
4516
|
variant: t.StringC;
|
|
5640
4517
|
}>]>>]>]>;
|
|
5641
4518
|
}>>]>>;
|
|
5642
|
-
}
|
|
5643
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
5644
|
-
type: t.LiteralC<"tableRow">;
|
|
5645
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
5646
|
-
type: t.LiteralC<"tableHeader">;
|
|
5647
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5648
|
-
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>;
|
|
5649
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
5650
|
-
text: t.StringC;
|
|
5651
|
-
}>, t.PartialC<{
|
|
5652
|
-
spans: t.Type<({
|
|
5653
|
-
data: ({
|
|
5654
|
-
__TYPE__: "ImageLink";
|
|
5655
|
-
} & {
|
|
5656
|
-
kind: "image";
|
|
5657
|
-
id: string;
|
|
5658
|
-
url: string;
|
|
5659
|
-
height: string;
|
|
5660
|
-
width: string;
|
|
5661
|
-
size: string;
|
|
5662
|
-
name: string;
|
|
5663
|
-
} & {
|
|
5664
|
-
date?: string | null | undefined;
|
|
5665
|
-
}) | ({
|
|
5666
|
-
__TYPE__: "FileLink";
|
|
5667
|
-
} & {
|
|
5668
|
-
kind: "file";
|
|
5669
|
-
id: string;
|
|
5670
|
-
url: string;
|
|
5671
|
-
name: string;
|
|
5672
|
-
size: string;
|
|
5673
|
-
} & {
|
|
5674
|
-
date?: string | null | undefined;
|
|
5675
|
-
}) | ({
|
|
5676
|
-
__TYPE__: "DocumentLink";
|
|
5677
|
-
} & {
|
|
5678
|
-
id: string;
|
|
5679
|
-
}) | ({
|
|
5680
|
-
__TYPE__: "ExternalLink";
|
|
5681
|
-
} & {
|
|
5682
|
-
url: string;
|
|
5683
|
-
} & {
|
|
5684
|
-
kind?: "web";
|
|
5685
|
-
target?: string | null | undefined;
|
|
5686
|
-
preview?: {
|
|
5687
|
-
title?: string;
|
|
5688
|
-
} | null | undefined;
|
|
5689
|
-
});
|
|
5690
|
-
start: number;
|
|
5691
|
-
end: number;
|
|
5692
|
-
type: "hyperlink";
|
|
5693
|
-
} | {
|
|
5694
|
-
data: string;
|
|
5695
|
-
start: number;
|
|
5696
|
-
end: number;
|
|
5697
|
-
type: "label";
|
|
5698
|
-
} | {
|
|
5699
|
-
start: number;
|
|
5700
|
-
end: number;
|
|
5701
|
-
type: "strong" | "em" | "list-item";
|
|
5702
|
-
})[], ({
|
|
5703
|
-
data: ({
|
|
5704
|
-
__TYPE__: "ImageLink";
|
|
5705
|
-
} & {
|
|
5706
|
-
kind: "image";
|
|
5707
|
-
id: string;
|
|
5708
|
-
url: string;
|
|
5709
|
-
height: string;
|
|
5710
|
-
width: string;
|
|
5711
|
-
size: string;
|
|
5712
|
-
name: string;
|
|
5713
|
-
} & {
|
|
5714
|
-
date?: string | null | undefined;
|
|
5715
|
-
}) | ({
|
|
5716
|
-
__TYPE__: "FileLink";
|
|
5717
|
-
} & {
|
|
5718
|
-
kind: "file";
|
|
5719
|
-
id: string;
|
|
5720
|
-
url: string;
|
|
5721
|
-
name: string;
|
|
5722
|
-
size: string;
|
|
5723
|
-
} & {
|
|
5724
|
-
date?: string | null | undefined;
|
|
5725
|
-
}) | ({
|
|
5726
|
-
__TYPE__: "DocumentLink";
|
|
5727
|
-
} & {
|
|
5728
|
-
id: string;
|
|
5729
|
-
}) | ({
|
|
5730
|
-
__TYPE__: "ExternalLink";
|
|
5731
|
-
} & {
|
|
5732
|
-
url: string;
|
|
5733
|
-
} & {
|
|
5734
|
-
kind?: "web";
|
|
5735
|
-
target?: string | null | undefined;
|
|
5736
|
-
preview?: {
|
|
5737
|
-
title?: string;
|
|
5738
|
-
} | null | undefined;
|
|
5739
|
-
});
|
|
5740
|
-
start: number;
|
|
5741
|
-
end: number;
|
|
5742
|
-
type: "hyperlink";
|
|
5743
|
-
} | {
|
|
5744
|
-
data: string;
|
|
5745
|
-
start: number;
|
|
5746
|
-
end: number;
|
|
5747
|
-
type: "label";
|
|
5748
|
-
} | {
|
|
5749
|
-
start: number;
|
|
5750
|
-
end: number;
|
|
5751
|
-
type: "strong" | "em" | "list-item";
|
|
5752
|
-
})[], unknown>;
|
|
5753
|
-
}>]>;
|
|
5754
|
-
}>, t.PartialC<{
|
|
5755
|
-
label: t.StringC;
|
|
5756
|
-
direction: t.StringC;
|
|
5757
|
-
}>]>>>;
|
|
5758
|
-
}>>, t.ExactC<t.TypeC<{
|
|
5759
|
-
type: t.LiteralC<"tableCell">;
|
|
5760
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5761
|
-
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>;
|
|
5762
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
5763
|
-
text: t.StringC;
|
|
5764
|
-
}>, t.PartialC<{
|
|
5765
|
-
spans: t.Type<({
|
|
5766
|
-
data: ({
|
|
5767
|
-
__TYPE__: "ImageLink";
|
|
5768
|
-
} & {
|
|
5769
|
-
kind: "image";
|
|
5770
|
-
id: string;
|
|
5771
|
-
url: string;
|
|
5772
|
-
height: string;
|
|
5773
|
-
width: string;
|
|
5774
|
-
size: string;
|
|
5775
|
-
name: string;
|
|
5776
|
-
} & {
|
|
5777
|
-
date?: string | null | undefined;
|
|
5778
|
-
}) | ({
|
|
5779
|
-
__TYPE__: "FileLink";
|
|
5780
|
-
} & {
|
|
5781
|
-
kind: "file";
|
|
5782
|
-
id: string;
|
|
5783
|
-
url: string;
|
|
5784
|
-
name: string;
|
|
5785
|
-
size: string;
|
|
5786
|
-
} & {
|
|
5787
|
-
date?: string | null | undefined;
|
|
5788
|
-
}) | ({
|
|
5789
|
-
__TYPE__: "DocumentLink";
|
|
5790
|
-
} & {
|
|
5791
|
-
id: string;
|
|
5792
|
-
}) | ({
|
|
5793
|
-
__TYPE__: "ExternalLink";
|
|
5794
|
-
} & {
|
|
5795
|
-
url: string;
|
|
5796
|
-
} & {
|
|
5797
|
-
kind?: "web";
|
|
5798
|
-
target?: string | null | undefined;
|
|
5799
|
-
preview?: {
|
|
5800
|
-
title?: string;
|
|
5801
|
-
} | null | undefined;
|
|
5802
|
-
});
|
|
5803
|
-
start: number;
|
|
5804
|
-
end: number;
|
|
5805
|
-
type: "hyperlink";
|
|
5806
|
-
} | {
|
|
5807
|
-
data: string;
|
|
5808
|
-
start: number;
|
|
5809
|
-
end: number;
|
|
5810
|
-
type: "label";
|
|
5811
|
-
} | {
|
|
5812
|
-
start: number;
|
|
5813
|
-
end: number;
|
|
5814
|
-
type: "strong" | "em" | "list-item";
|
|
5815
|
-
})[], ({
|
|
5816
|
-
data: ({
|
|
5817
|
-
__TYPE__: "ImageLink";
|
|
5818
|
-
} & {
|
|
5819
|
-
kind: "image";
|
|
5820
|
-
id: string;
|
|
5821
|
-
url: string;
|
|
5822
|
-
height: string;
|
|
5823
|
-
width: string;
|
|
5824
|
-
size: string;
|
|
5825
|
-
name: string;
|
|
5826
|
-
} & {
|
|
5827
|
-
date?: string | null | undefined;
|
|
5828
|
-
}) | ({
|
|
5829
|
-
__TYPE__: "FileLink";
|
|
5830
|
-
} & {
|
|
5831
|
-
kind: "file";
|
|
5832
|
-
id: string;
|
|
5833
|
-
url: string;
|
|
5834
|
-
name: string;
|
|
5835
|
-
size: string;
|
|
5836
|
-
} & {
|
|
5837
|
-
date?: string | null | undefined;
|
|
5838
|
-
}) | ({
|
|
5839
|
-
__TYPE__: "DocumentLink";
|
|
5840
|
-
} & {
|
|
5841
|
-
id: string;
|
|
5842
|
-
}) | ({
|
|
5843
|
-
__TYPE__: "ExternalLink";
|
|
5844
|
-
} & {
|
|
5845
|
-
url: string;
|
|
5846
|
-
} & {
|
|
5847
|
-
kind?: "web";
|
|
5848
|
-
target?: string | null | undefined;
|
|
5849
|
-
preview?: {
|
|
5850
|
-
title?: string;
|
|
5851
|
-
} | null | undefined;
|
|
5852
|
-
});
|
|
5853
|
-
start: number;
|
|
5854
|
-
end: number;
|
|
5855
|
-
type: "hyperlink";
|
|
5856
|
-
} | {
|
|
5857
|
-
data: string;
|
|
5858
|
-
start: number;
|
|
5859
|
-
end: number;
|
|
5860
|
-
type: "label";
|
|
5861
|
-
} | {
|
|
5862
|
-
start: number;
|
|
5863
|
-
end: number;
|
|
5864
|
-
type: "strong" | "em" | "list-item";
|
|
5865
|
-
})[], unknown>;
|
|
5866
|
-
}>]>;
|
|
5867
|
-
}>, t.PartialC<{
|
|
5868
|
-
label: t.StringC;
|
|
5869
|
-
direction: t.StringC;
|
|
5870
|
-
}>]>>>;
|
|
5871
|
-
}>>]>>;
|
|
5872
|
-
}>>>;
|
|
5873
|
-
}>>, t.ExactC<t.TypeC<{
|
|
5874
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
5875
|
-
}>>]>]>, t.Type<import("./fields").GroupContent, import("./fields").GroupContent, unknown>]>]>;
|
|
4519
|
+
}>>]>, t.Type<import("./fields").GroupContent, import("./fields").GroupContent, unknown>]>]>;
|
|
5876
4520
|
}>>;
|
|
5877
4521
|
}>]>>;
|
|
5878
4522
|
export declare type Document = t.TypeOf<typeof Document>;
|
|
@@ -6252,7 +4896,7 @@ export declare const DocumentLegacy: {
|
|
|
6252
4896
|
label?: string | null | undefined;
|
|
6253
4897
|
direction?: string | null | undefined;
|
|
6254
4898
|
}) | ({
|
|
6255
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
4899
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6256
4900
|
content: {
|
|
6257
4901
|
text: string;
|
|
6258
4902
|
} & {
|
|
@@ -6311,14 +4955,18 @@ export declare const DocumentLegacy: {
|
|
|
6311
4955
|
} & {
|
|
6312
4956
|
label?: string;
|
|
6313
4957
|
direction?: string;
|
|
6314
|
-
})
|
|
6315
|
-
|
|
6316
|
-
|
|
6317
|
-
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
|
|
4958
|
+
}))[];
|
|
4959
|
+
} | {
|
|
4960
|
+
__TYPE__: "SeparatorContent";
|
|
4961
|
+
} | ({
|
|
4962
|
+
content: {
|
|
4963
|
+
type: "tableRow";
|
|
4964
|
+
content: ({
|
|
4965
|
+
type: "tableHeader";
|
|
4966
|
+
content: {
|
|
4967
|
+
__TYPE__: "StructuredTextContent";
|
|
4968
|
+
value: ({
|
|
4969
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6322
4970
|
content: {
|
|
6323
4971
|
text: string;
|
|
6324
4972
|
} & {
|
|
@@ -6378,10 +5026,13 @@ export declare const DocumentLegacy: {
|
|
|
6378
5026
|
label?: string;
|
|
6379
5027
|
direction?: string;
|
|
6380
5028
|
})[];
|
|
6381
|
-
}
|
|
6382
|
-
|
|
6383
|
-
|
|
6384
|
-
|
|
5029
|
+
};
|
|
5030
|
+
} | {
|
|
5031
|
+
type: "tableCell";
|
|
5032
|
+
content: {
|
|
5033
|
+
__TYPE__: "StructuredTextContent";
|
|
5034
|
+
value: ({
|
|
5035
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6385
5036
|
content: {
|
|
6386
5037
|
text: string;
|
|
6387
5038
|
} & {
|
|
@@ -6441,140 +5092,7 @@ export declare const DocumentLegacy: {
|
|
|
6441
5092
|
label?: string;
|
|
6442
5093
|
direction?: string;
|
|
6443
5094
|
})[];
|
|
6444
|
-
}
|
|
6445
|
-
}[];
|
|
6446
|
-
})[];
|
|
6447
|
-
} | {
|
|
6448
|
-
__TYPE__: "SeparatorContent";
|
|
6449
|
-
} | ({
|
|
6450
|
-
content: {
|
|
6451
|
-
type: "tableRow";
|
|
6452
|
-
content: ({
|
|
6453
|
-
type: "tableHeader";
|
|
6454
|
-
content: ({
|
|
6455
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6456
|
-
content: {
|
|
6457
|
-
text: string;
|
|
6458
|
-
} & {
|
|
6459
|
-
spans?: ({
|
|
6460
|
-
data: ({
|
|
6461
|
-
__TYPE__: "ImageLink";
|
|
6462
|
-
} & {
|
|
6463
|
-
kind: "image";
|
|
6464
|
-
id: string;
|
|
6465
|
-
url: string;
|
|
6466
|
-
height: string;
|
|
6467
|
-
width: string;
|
|
6468
|
-
size: string;
|
|
6469
|
-
name: string;
|
|
6470
|
-
} & {
|
|
6471
|
-
date?: string | null | undefined;
|
|
6472
|
-
}) | ({
|
|
6473
|
-
__TYPE__: "FileLink";
|
|
6474
|
-
} & {
|
|
6475
|
-
kind: "file";
|
|
6476
|
-
id: string;
|
|
6477
|
-
url: string;
|
|
6478
|
-
name: string;
|
|
6479
|
-
size: string;
|
|
6480
|
-
} & {
|
|
6481
|
-
date?: string | null | undefined;
|
|
6482
|
-
}) | ({
|
|
6483
|
-
__TYPE__: "DocumentLink";
|
|
6484
|
-
} & {
|
|
6485
|
-
id: string;
|
|
6486
|
-
}) | ({
|
|
6487
|
-
__TYPE__: "ExternalLink";
|
|
6488
|
-
} & {
|
|
6489
|
-
url: string;
|
|
6490
|
-
} & {
|
|
6491
|
-
kind?: "web";
|
|
6492
|
-
target?: string | null | undefined;
|
|
6493
|
-
preview?: {
|
|
6494
|
-
title?: string;
|
|
6495
|
-
} | null | undefined;
|
|
6496
|
-
});
|
|
6497
|
-
start: number;
|
|
6498
|
-
end: number;
|
|
6499
|
-
type: "hyperlink";
|
|
6500
|
-
} | {
|
|
6501
|
-
data: string;
|
|
6502
|
-
start: number;
|
|
6503
|
-
end: number;
|
|
6504
|
-
type: "label";
|
|
6505
|
-
} | {
|
|
6506
|
-
start: number;
|
|
6507
|
-
end: number;
|
|
6508
|
-
type: "strong" | "em" | "list-item";
|
|
6509
|
-
})[];
|
|
6510
|
-
};
|
|
6511
|
-
} & {
|
|
6512
|
-
label?: string;
|
|
6513
|
-
direction?: string;
|
|
6514
|
-
})[];
|
|
6515
|
-
} | {
|
|
6516
|
-
type: "tableCell";
|
|
6517
|
-
content: ({
|
|
6518
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6519
|
-
content: {
|
|
6520
|
-
text: string;
|
|
6521
|
-
} & {
|
|
6522
|
-
spans?: ({
|
|
6523
|
-
data: ({
|
|
6524
|
-
__TYPE__: "ImageLink";
|
|
6525
|
-
} & {
|
|
6526
|
-
kind: "image";
|
|
6527
|
-
id: string;
|
|
6528
|
-
url: string;
|
|
6529
|
-
height: string;
|
|
6530
|
-
width: string;
|
|
6531
|
-
size: string;
|
|
6532
|
-
name: string;
|
|
6533
|
-
} & {
|
|
6534
|
-
date?: string | null | undefined;
|
|
6535
|
-
}) | ({
|
|
6536
|
-
__TYPE__: "FileLink";
|
|
6537
|
-
} & {
|
|
6538
|
-
kind: "file";
|
|
6539
|
-
id: string;
|
|
6540
|
-
url: string;
|
|
6541
|
-
name: string;
|
|
6542
|
-
size: string;
|
|
6543
|
-
} & {
|
|
6544
|
-
date?: string | null | undefined;
|
|
6545
|
-
}) | ({
|
|
6546
|
-
__TYPE__: "DocumentLink";
|
|
6547
|
-
} & {
|
|
6548
|
-
id: string;
|
|
6549
|
-
}) | ({
|
|
6550
|
-
__TYPE__: "ExternalLink";
|
|
6551
|
-
} & {
|
|
6552
|
-
url: string;
|
|
6553
|
-
} & {
|
|
6554
|
-
kind?: "web";
|
|
6555
|
-
target?: string | null | undefined;
|
|
6556
|
-
preview?: {
|
|
6557
|
-
title?: string;
|
|
6558
|
-
} | null | undefined;
|
|
6559
|
-
});
|
|
6560
|
-
start: number;
|
|
6561
|
-
end: number;
|
|
6562
|
-
type: "hyperlink";
|
|
6563
|
-
} | {
|
|
6564
|
-
data: string;
|
|
6565
|
-
start: number;
|
|
6566
|
-
end: number;
|
|
6567
|
-
type: "label";
|
|
6568
|
-
} | {
|
|
6569
|
-
start: number;
|
|
6570
|
-
end: number;
|
|
6571
|
-
type: "strong" | "em" | "list-item";
|
|
6572
|
-
})[];
|
|
6573
|
-
};
|
|
6574
|
-
} & {
|
|
6575
|
-
label?: string;
|
|
6576
|
-
direction?: string;
|
|
6577
|
-
})[];
|
|
5095
|
+
};
|
|
6578
5096
|
})[];
|
|
6579
5097
|
}[];
|
|
6580
5098
|
} & {
|
|
@@ -6947,7 +5465,7 @@ export declare const DocumentLegacy: {
|
|
|
6947
5465
|
label?: string | null | undefined;
|
|
6948
5466
|
direction?: string | null | undefined;
|
|
6949
5467
|
}) | ({
|
|
6950
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
5468
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6951
5469
|
content: {
|
|
6952
5470
|
text: string;
|
|
6953
5471
|
} & {
|
|
@@ -7006,14 +5524,18 @@ export declare const DocumentLegacy: {
|
|
|
7006
5524
|
} & {
|
|
7007
5525
|
label?: string;
|
|
7008
5526
|
direction?: string;
|
|
7009
|
-
})
|
|
7010
|
-
|
|
7011
|
-
|
|
7012
|
-
|
|
7013
|
-
|
|
7014
|
-
|
|
7015
|
-
|
|
7016
|
-
|
|
5527
|
+
}))[];
|
|
5528
|
+
} | {
|
|
5529
|
+
__TYPE__: "SeparatorContent";
|
|
5530
|
+
} | ({
|
|
5531
|
+
content: {
|
|
5532
|
+
type: "tableRow";
|
|
5533
|
+
content: ({
|
|
5534
|
+
type: "tableHeader";
|
|
5535
|
+
content: {
|
|
5536
|
+
__TYPE__: "StructuredTextContent";
|
|
5537
|
+
value: ({
|
|
5538
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7017
5539
|
content: {
|
|
7018
5540
|
text: string;
|
|
7019
5541
|
} & {
|
|
@@ -7073,10 +5595,13 @@ export declare const DocumentLegacy: {
|
|
|
7073
5595
|
label?: string;
|
|
7074
5596
|
direction?: string;
|
|
7075
5597
|
})[];
|
|
7076
|
-
}
|
|
7077
|
-
|
|
7078
|
-
|
|
7079
|
-
|
|
5598
|
+
};
|
|
5599
|
+
} | {
|
|
5600
|
+
type: "tableCell";
|
|
5601
|
+
content: {
|
|
5602
|
+
__TYPE__: "StructuredTextContent";
|
|
5603
|
+
value: ({
|
|
5604
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7080
5605
|
content: {
|
|
7081
5606
|
text: string;
|
|
7082
5607
|
} & {
|
|
@@ -7136,140 +5661,7 @@ export declare const DocumentLegacy: {
|
|
|
7136
5661
|
label?: string;
|
|
7137
5662
|
direction?: string;
|
|
7138
5663
|
})[];
|
|
7139
|
-
}
|
|
7140
|
-
}[];
|
|
7141
|
-
})[];
|
|
7142
|
-
} | {
|
|
7143
|
-
__TYPE__: "SeparatorContent";
|
|
7144
|
-
} | ({
|
|
7145
|
-
content: {
|
|
7146
|
-
type: "tableRow";
|
|
7147
|
-
content: ({
|
|
7148
|
-
type: "tableHeader";
|
|
7149
|
-
content: ({
|
|
7150
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
7151
|
-
content: {
|
|
7152
|
-
text: string;
|
|
7153
|
-
} & {
|
|
7154
|
-
spans?: ({
|
|
7155
|
-
data: ({
|
|
7156
|
-
__TYPE__: "ImageLink";
|
|
7157
|
-
} & {
|
|
7158
|
-
kind: "image";
|
|
7159
|
-
id: string;
|
|
7160
|
-
url: string;
|
|
7161
|
-
height: string;
|
|
7162
|
-
width: string;
|
|
7163
|
-
size: string;
|
|
7164
|
-
name: string;
|
|
7165
|
-
} & {
|
|
7166
|
-
date?: string | null | undefined;
|
|
7167
|
-
}) | ({
|
|
7168
|
-
__TYPE__: "FileLink";
|
|
7169
|
-
} & {
|
|
7170
|
-
kind: "file";
|
|
7171
|
-
id: string;
|
|
7172
|
-
url: string;
|
|
7173
|
-
name: string;
|
|
7174
|
-
size: string;
|
|
7175
|
-
} & {
|
|
7176
|
-
date?: string | null | undefined;
|
|
7177
|
-
}) | ({
|
|
7178
|
-
__TYPE__: "DocumentLink";
|
|
7179
|
-
} & {
|
|
7180
|
-
id: string;
|
|
7181
|
-
}) | ({
|
|
7182
|
-
__TYPE__: "ExternalLink";
|
|
7183
|
-
} & {
|
|
7184
|
-
url: string;
|
|
7185
|
-
} & {
|
|
7186
|
-
kind?: "web";
|
|
7187
|
-
target?: string | null | undefined;
|
|
7188
|
-
preview?: {
|
|
7189
|
-
title?: string;
|
|
7190
|
-
} | null | undefined;
|
|
7191
|
-
});
|
|
7192
|
-
start: number;
|
|
7193
|
-
end: number;
|
|
7194
|
-
type: "hyperlink";
|
|
7195
|
-
} | {
|
|
7196
|
-
data: string;
|
|
7197
|
-
start: number;
|
|
7198
|
-
end: number;
|
|
7199
|
-
type: "label";
|
|
7200
|
-
} | {
|
|
7201
|
-
start: number;
|
|
7202
|
-
end: number;
|
|
7203
|
-
type: "strong" | "em" | "list-item";
|
|
7204
|
-
})[];
|
|
7205
|
-
};
|
|
7206
|
-
} & {
|
|
7207
|
-
label?: string;
|
|
7208
|
-
direction?: string;
|
|
7209
|
-
})[];
|
|
7210
|
-
} | {
|
|
7211
|
-
type: "tableCell";
|
|
7212
|
-
content: ({
|
|
7213
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
7214
|
-
content: {
|
|
7215
|
-
text: string;
|
|
7216
|
-
} & {
|
|
7217
|
-
spans?: ({
|
|
7218
|
-
data: ({
|
|
7219
|
-
__TYPE__: "ImageLink";
|
|
7220
|
-
} & {
|
|
7221
|
-
kind: "image";
|
|
7222
|
-
id: string;
|
|
7223
|
-
url: string;
|
|
7224
|
-
height: string;
|
|
7225
|
-
width: string;
|
|
7226
|
-
size: string;
|
|
7227
|
-
name: string;
|
|
7228
|
-
} & {
|
|
7229
|
-
date?: string | null | undefined;
|
|
7230
|
-
}) | ({
|
|
7231
|
-
__TYPE__: "FileLink";
|
|
7232
|
-
} & {
|
|
7233
|
-
kind: "file";
|
|
7234
|
-
id: string;
|
|
7235
|
-
url: string;
|
|
7236
|
-
name: string;
|
|
7237
|
-
size: string;
|
|
7238
|
-
} & {
|
|
7239
|
-
date?: string | null | undefined;
|
|
7240
|
-
}) | ({
|
|
7241
|
-
__TYPE__: "DocumentLink";
|
|
7242
|
-
} & {
|
|
7243
|
-
id: string;
|
|
7244
|
-
}) | ({
|
|
7245
|
-
__TYPE__: "ExternalLink";
|
|
7246
|
-
} & {
|
|
7247
|
-
url: string;
|
|
7248
|
-
} & {
|
|
7249
|
-
kind?: "web";
|
|
7250
|
-
target?: string | null | undefined;
|
|
7251
|
-
preview?: {
|
|
7252
|
-
title?: string;
|
|
7253
|
-
} | null | undefined;
|
|
7254
|
-
});
|
|
7255
|
-
start: number;
|
|
7256
|
-
end: number;
|
|
7257
|
-
type: "hyperlink";
|
|
7258
|
-
} | {
|
|
7259
|
-
data: string;
|
|
7260
|
-
start: number;
|
|
7261
|
-
end: number;
|
|
7262
|
-
type: "label";
|
|
7263
|
-
} | {
|
|
7264
|
-
start: number;
|
|
7265
|
-
end: number;
|
|
7266
|
-
type: "strong" | "em" | "list-item";
|
|
7267
|
-
})[];
|
|
7268
|
-
};
|
|
7269
|
-
} & {
|
|
7270
|
-
label?: string;
|
|
7271
|
-
direction?: string;
|
|
7272
|
-
})[];
|
|
5664
|
+
};
|
|
7273
5665
|
})[];
|
|
7274
5666
|
}[];
|
|
7275
5667
|
} & {
|
|
@@ -7636,7 +6028,7 @@ export declare const DocumentLegacy: {
|
|
|
7636
6028
|
label?: string | null | undefined;
|
|
7637
6029
|
direction?: string | null | undefined;
|
|
7638
6030
|
}) | ({
|
|
7639
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
6031
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7640
6032
|
content: {
|
|
7641
6033
|
text: string;
|
|
7642
6034
|
} & {
|
|
@@ -7695,14 +6087,18 @@ export declare const DocumentLegacy: {
|
|
|
7695
6087
|
} & {
|
|
7696
6088
|
label?: string;
|
|
7697
6089
|
direction?: string;
|
|
7698
|
-
})
|
|
7699
|
-
|
|
7700
|
-
|
|
7701
|
-
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
|
|
7705
|
-
|
|
6090
|
+
}))[];
|
|
6091
|
+
} | {
|
|
6092
|
+
__TYPE__: "SeparatorContent";
|
|
6093
|
+
} | ({
|
|
6094
|
+
content: {
|
|
6095
|
+
type: "tableRow";
|
|
6096
|
+
content: ({
|
|
6097
|
+
type: "tableHeader";
|
|
6098
|
+
content: {
|
|
6099
|
+
__TYPE__: "StructuredTextContent";
|
|
6100
|
+
value: ({
|
|
6101
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7706
6102
|
content: {
|
|
7707
6103
|
text: string;
|
|
7708
6104
|
} & {
|
|
@@ -7762,10 +6158,13 @@ export declare const DocumentLegacy: {
|
|
|
7762
6158
|
label?: string;
|
|
7763
6159
|
direction?: string;
|
|
7764
6160
|
})[];
|
|
7765
|
-
}
|
|
7766
|
-
|
|
7767
|
-
|
|
7768
|
-
|
|
6161
|
+
};
|
|
6162
|
+
} | {
|
|
6163
|
+
type: "tableCell";
|
|
6164
|
+
content: {
|
|
6165
|
+
__TYPE__: "StructuredTextContent";
|
|
6166
|
+
value: ({
|
|
6167
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7769
6168
|
content: {
|
|
7770
6169
|
text: string;
|
|
7771
6170
|
} & {
|
|
@@ -7825,140 +6224,7 @@ export declare const DocumentLegacy: {
|
|
|
7825
6224
|
label?: string;
|
|
7826
6225
|
direction?: string;
|
|
7827
6226
|
})[];
|
|
7828
|
-
}
|
|
7829
|
-
}[];
|
|
7830
|
-
})[];
|
|
7831
|
-
} | {
|
|
7832
|
-
__TYPE__: "SeparatorContent";
|
|
7833
|
-
} | ({
|
|
7834
|
-
content: {
|
|
7835
|
-
type: "tableRow";
|
|
7836
|
-
content: ({
|
|
7837
|
-
type: "tableHeader";
|
|
7838
|
-
content: ({
|
|
7839
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
7840
|
-
content: {
|
|
7841
|
-
text: string;
|
|
7842
|
-
} & {
|
|
7843
|
-
spans?: ({
|
|
7844
|
-
data: ({
|
|
7845
|
-
__TYPE__: "ImageLink";
|
|
7846
|
-
} & {
|
|
7847
|
-
kind: "image";
|
|
7848
|
-
id: string;
|
|
7849
|
-
url: string;
|
|
7850
|
-
height: string;
|
|
7851
|
-
width: string;
|
|
7852
|
-
size: string;
|
|
7853
|
-
name: string;
|
|
7854
|
-
} & {
|
|
7855
|
-
date?: string | null | undefined;
|
|
7856
|
-
}) | ({
|
|
7857
|
-
__TYPE__: "FileLink";
|
|
7858
|
-
} & {
|
|
7859
|
-
kind: "file";
|
|
7860
|
-
id: string;
|
|
7861
|
-
url: string;
|
|
7862
|
-
name: string;
|
|
7863
|
-
size: string;
|
|
7864
|
-
} & {
|
|
7865
|
-
date?: string | null | undefined;
|
|
7866
|
-
}) | ({
|
|
7867
|
-
__TYPE__: "DocumentLink";
|
|
7868
|
-
} & {
|
|
7869
|
-
id: string;
|
|
7870
|
-
}) | ({
|
|
7871
|
-
__TYPE__: "ExternalLink";
|
|
7872
|
-
} & {
|
|
7873
|
-
url: string;
|
|
7874
|
-
} & {
|
|
7875
|
-
kind?: "web";
|
|
7876
|
-
target?: string | null | undefined;
|
|
7877
|
-
preview?: {
|
|
7878
|
-
title?: string;
|
|
7879
|
-
} | null | undefined;
|
|
7880
|
-
});
|
|
7881
|
-
start: number;
|
|
7882
|
-
end: number;
|
|
7883
|
-
type: "hyperlink";
|
|
7884
|
-
} | {
|
|
7885
|
-
data: string;
|
|
7886
|
-
start: number;
|
|
7887
|
-
end: number;
|
|
7888
|
-
type: "label";
|
|
7889
|
-
} | {
|
|
7890
|
-
start: number;
|
|
7891
|
-
end: number;
|
|
7892
|
-
type: "strong" | "em" | "list-item";
|
|
7893
|
-
})[];
|
|
7894
|
-
};
|
|
7895
|
-
} & {
|
|
7896
|
-
label?: string;
|
|
7897
|
-
direction?: string;
|
|
7898
|
-
})[];
|
|
7899
|
-
} | {
|
|
7900
|
-
type: "tableCell";
|
|
7901
|
-
content: ({
|
|
7902
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
7903
|
-
content: {
|
|
7904
|
-
text: string;
|
|
7905
|
-
} & {
|
|
7906
|
-
spans?: ({
|
|
7907
|
-
data: ({
|
|
7908
|
-
__TYPE__: "ImageLink";
|
|
7909
|
-
} & {
|
|
7910
|
-
kind: "image";
|
|
7911
|
-
id: string;
|
|
7912
|
-
url: string;
|
|
7913
|
-
height: string;
|
|
7914
|
-
width: string;
|
|
7915
|
-
size: string;
|
|
7916
|
-
name: string;
|
|
7917
|
-
} & {
|
|
7918
|
-
date?: string | null | undefined;
|
|
7919
|
-
}) | ({
|
|
7920
|
-
__TYPE__: "FileLink";
|
|
7921
|
-
} & {
|
|
7922
|
-
kind: "file";
|
|
7923
|
-
id: string;
|
|
7924
|
-
url: string;
|
|
7925
|
-
name: string;
|
|
7926
|
-
size: string;
|
|
7927
|
-
} & {
|
|
7928
|
-
date?: string | null | undefined;
|
|
7929
|
-
}) | ({
|
|
7930
|
-
__TYPE__: "DocumentLink";
|
|
7931
|
-
} & {
|
|
7932
|
-
id: string;
|
|
7933
|
-
}) | ({
|
|
7934
|
-
__TYPE__: "ExternalLink";
|
|
7935
|
-
} & {
|
|
7936
|
-
url: string;
|
|
7937
|
-
} & {
|
|
7938
|
-
kind?: "web";
|
|
7939
|
-
target?: string | null | undefined;
|
|
7940
|
-
preview?: {
|
|
7941
|
-
title?: string;
|
|
7942
|
-
} | null | undefined;
|
|
7943
|
-
});
|
|
7944
|
-
start: number;
|
|
7945
|
-
end: number;
|
|
7946
|
-
type: "hyperlink";
|
|
7947
|
-
} | {
|
|
7948
|
-
data: string;
|
|
7949
|
-
start: number;
|
|
7950
|
-
end: number;
|
|
7951
|
-
type: "label";
|
|
7952
|
-
} | {
|
|
7953
|
-
start: number;
|
|
7954
|
-
end: number;
|
|
7955
|
-
type: "strong" | "em" | "list-item";
|
|
7956
|
-
})[];
|
|
7957
|
-
};
|
|
7958
|
-
} & {
|
|
7959
|
-
label?: string;
|
|
7960
|
-
direction?: string;
|
|
7961
|
-
})[];
|
|
6227
|
+
};
|
|
7962
6228
|
})[];
|
|
7963
6229
|
}[];
|
|
7964
6230
|
} & {
|
|
@@ -8326,7 +6592,7 @@ export declare const DocumentLegacy: {
|
|
|
8326
6592
|
label?: string | null | undefined;
|
|
8327
6593
|
direction?: string | null | undefined;
|
|
8328
6594
|
}) | ({
|
|
8329
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
6595
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
8330
6596
|
content: {
|
|
8331
6597
|
text: string;
|
|
8332
6598
|
} & {
|
|
@@ -8385,14 +6651,18 @@ export declare const DocumentLegacy: {
|
|
|
8385
6651
|
} & {
|
|
8386
6652
|
label?: string;
|
|
8387
6653
|
direction?: string;
|
|
8388
|
-
})
|
|
8389
|
-
|
|
8390
|
-
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
6654
|
+
}))[];
|
|
6655
|
+
} | {
|
|
6656
|
+
__TYPE__: "SeparatorContent";
|
|
6657
|
+
} | ({
|
|
6658
|
+
content: {
|
|
6659
|
+
type: "tableRow";
|
|
6660
|
+
content: ({
|
|
6661
|
+
type: "tableHeader";
|
|
6662
|
+
content: {
|
|
6663
|
+
__TYPE__: "StructuredTextContent";
|
|
6664
|
+
value: ({
|
|
6665
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
8396
6666
|
content: {
|
|
8397
6667
|
text: string;
|
|
8398
6668
|
} & {
|
|
@@ -8452,10 +6722,13 @@ export declare const DocumentLegacy: {
|
|
|
8452
6722
|
label?: string;
|
|
8453
6723
|
direction?: string;
|
|
8454
6724
|
})[];
|
|
8455
|
-
}
|
|
8456
|
-
|
|
8457
|
-
|
|
8458
|
-
|
|
6725
|
+
};
|
|
6726
|
+
} | {
|
|
6727
|
+
type: "tableCell";
|
|
6728
|
+
content: {
|
|
6729
|
+
__TYPE__: "StructuredTextContent";
|
|
6730
|
+
value: ({
|
|
6731
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
8459
6732
|
content: {
|
|
8460
6733
|
text: string;
|
|
8461
6734
|
} & {
|
|
@@ -8515,156 +6788,23 @@ export declare const DocumentLegacy: {
|
|
|
8515
6788
|
label?: string;
|
|
8516
6789
|
direction?: string;
|
|
8517
6790
|
})[];
|
|
8518
|
-
}
|
|
8519
|
-
}[];
|
|
8520
|
-
}
|
|
6791
|
+
};
|
|
6792
|
+
})[];
|
|
6793
|
+
}[];
|
|
6794
|
+
} & {
|
|
6795
|
+
__TYPE__: "TableContent";
|
|
6796
|
+
})][];
|
|
6797
|
+
}[];
|
|
6798
|
+
} | {
|
|
6799
|
+
__TYPE__: "SharedSliceContent";
|
|
6800
|
+
variation: string;
|
|
6801
|
+
primary: {
|
|
6802
|
+
[x: string]: {
|
|
6803
|
+
type: string;
|
|
6804
|
+
__TYPE__: "EmptyContent";
|
|
8521
6805
|
} | {
|
|
8522
|
-
__TYPE__: "
|
|
8523
|
-
|
|
8524
|
-
content: {
|
|
8525
|
-
type: "tableRow";
|
|
8526
|
-
content: ({
|
|
8527
|
-
type: "tableHeader";
|
|
8528
|
-
content: ({
|
|
8529
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
8530
|
-
content: {
|
|
8531
|
-
text: string;
|
|
8532
|
-
} & {
|
|
8533
|
-
spans?: ({
|
|
8534
|
-
data: ({
|
|
8535
|
-
__TYPE__: "ImageLink";
|
|
8536
|
-
} & {
|
|
8537
|
-
kind: "image";
|
|
8538
|
-
id: string;
|
|
8539
|
-
url: string;
|
|
8540
|
-
height: string;
|
|
8541
|
-
width: string;
|
|
8542
|
-
size: string;
|
|
8543
|
-
name: string;
|
|
8544
|
-
} & {
|
|
8545
|
-
date?: string | null | undefined;
|
|
8546
|
-
}) | ({
|
|
8547
|
-
__TYPE__: "FileLink";
|
|
8548
|
-
} & {
|
|
8549
|
-
kind: "file";
|
|
8550
|
-
id: string;
|
|
8551
|
-
url: string;
|
|
8552
|
-
name: string;
|
|
8553
|
-
size: string;
|
|
8554
|
-
} & {
|
|
8555
|
-
date?: string | null | undefined;
|
|
8556
|
-
}) | ({
|
|
8557
|
-
__TYPE__: "DocumentLink";
|
|
8558
|
-
} & {
|
|
8559
|
-
id: string;
|
|
8560
|
-
}) | ({
|
|
8561
|
-
__TYPE__: "ExternalLink";
|
|
8562
|
-
} & {
|
|
8563
|
-
url: string;
|
|
8564
|
-
} & {
|
|
8565
|
-
kind?: "web";
|
|
8566
|
-
target?: string | null | undefined;
|
|
8567
|
-
preview?: {
|
|
8568
|
-
title?: string;
|
|
8569
|
-
} | null | undefined;
|
|
8570
|
-
});
|
|
8571
|
-
start: number;
|
|
8572
|
-
end: number;
|
|
8573
|
-
type: "hyperlink";
|
|
8574
|
-
} | {
|
|
8575
|
-
data: string;
|
|
8576
|
-
start: number;
|
|
8577
|
-
end: number;
|
|
8578
|
-
type: "label";
|
|
8579
|
-
} | {
|
|
8580
|
-
start: number;
|
|
8581
|
-
end: number;
|
|
8582
|
-
type: "strong" | "em" | "list-item";
|
|
8583
|
-
})[];
|
|
8584
|
-
};
|
|
8585
|
-
} & {
|
|
8586
|
-
label?: string;
|
|
8587
|
-
direction?: string;
|
|
8588
|
-
})[];
|
|
8589
|
-
} | {
|
|
8590
|
-
type: "tableCell";
|
|
8591
|
-
content: ({
|
|
8592
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
8593
|
-
content: {
|
|
8594
|
-
text: string;
|
|
8595
|
-
} & {
|
|
8596
|
-
spans?: ({
|
|
8597
|
-
data: ({
|
|
8598
|
-
__TYPE__: "ImageLink";
|
|
8599
|
-
} & {
|
|
8600
|
-
kind: "image";
|
|
8601
|
-
id: string;
|
|
8602
|
-
url: string;
|
|
8603
|
-
height: string;
|
|
8604
|
-
width: string;
|
|
8605
|
-
size: string;
|
|
8606
|
-
name: string;
|
|
8607
|
-
} & {
|
|
8608
|
-
date?: string | null | undefined;
|
|
8609
|
-
}) | ({
|
|
8610
|
-
__TYPE__: "FileLink";
|
|
8611
|
-
} & {
|
|
8612
|
-
kind: "file";
|
|
8613
|
-
id: string;
|
|
8614
|
-
url: string;
|
|
8615
|
-
name: string;
|
|
8616
|
-
size: string;
|
|
8617
|
-
} & {
|
|
8618
|
-
date?: string | null | undefined;
|
|
8619
|
-
}) | ({
|
|
8620
|
-
__TYPE__: "DocumentLink";
|
|
8621
|
-
} & {
|
|
8622
|
-
id: string;
|
|
8623
|
-
}) | ({
|
|
8624
|
-
__TYPE__: "ExternalLink";
|
|
8625
|
-
} & {
|
|
8626
|
-
url: string;
|
|
8627
|
-
} & {
|
|
8628
|
-
kind?: "web";
|
|
8629
|
-
target?: string | null | undefined;
|
|
8630
|
-
preview?: {
|
|
8631
|
-
title?: string;
|
|
8632
|
-
} | null | undefined;
|
|
8633
|
-
});
|
|
8634
|
-
start: number;
|
|
8635
|
-
end: number;
|
|
8636
|
-
type: "hyperlink";
|
|
8637
|
-
} | {
|
|
8638
|
-
data: string;
|
|
8639
|
-
start: number;
|
|
8640
|
-
end: number;
|
|
8641
|
-
type: "label";
|
|
8642
|
-
} | {
|
|
8643
|
-
start: number;
|
|
8644
|
-
end: number;
|
|
8645
|
-
type: "strong" | "em" | "list-item";
|
|
8646
|
-
})[];
|
|
8647
|
-
};
|
|
8648
|
-
} & {
|
|
8649
|
-
label?: string;
|
|
8650
|
-
direction?: string;
|
|
8651
|
-
})[];
|
|
8652
|
-
})[];
|
|
8653
|
-
}[];
|
|
8654
|
-
} & {
|
|
8655
|
-
__TYPE__: "TableContent";
|
|
8656
|
-
})][];
|
|
8657
|
-
}[];
|
|
8658
|
-
} | {
|
|
8659
|
-
__TYPE__: "SharedSliceContent";
|
|
8660
|
-
variation: string;
|
|
8661
|
-
primary: {
|
|
8662
|
-
[x: string]: {
|
|
8663
|
-
type: string;
|
|
8664
|
-
__TYPE__: "EmptyContent";
|
|
8665
|
-
} | {
|
|
8666
|
-
__TYPE__: "BooleanContent";
|
|
8667
|
-
value: boolean;
|
|
6806
|
+
__TYPE__: "BooleanContent";
|
|
6807
|
+
value: boolean;
|
|
8668
6808
|
} | ({
|
|
8669
6809
|
embed_url: string;
|
|
8670
6810
|
type: string;
|
|
@@ -9018,7 +7158,7 @@ export declare const DocumentLegacy: {
|
|
|
9018
7158
|
label?: string | null | undefined;
|
|
9019
7159
|
direction?: string | null | undefined;
|
|
9020
7160
|
}) | ({
|
|
9021
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
7161
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9022
7162
|
content: {
|
|
9023
7163
|
text: string;
|
|
9024
7164
|
} & {
|
|
@@ -9077,14 +7217,18 @@ export declare const DocumentLegacy: {
|
|
|
9077
7217
|
} & {
|
|
9078
7218
|
label?: string;
|
|
9079
7219
|
direction?: string;
|
|
9080
|
-
})
|
|
9081
|
-
|
|
9082
|
-
|
|
9083
|
-
|
|
9084
|
-
|
|
9085
|
-
|
|
9086
|
-
|
|
9087
|
-
|
|
7220
|
+
}))[];
|
|
7221
|
+
} | {
|
|
7222
|
+
__TYPE__: "SeparatorContent";
|
|
7223
|
+
} | ({
|
|
7224
|
+
content: {
|
|
7225
|
+
type: "tableRow";
|
|
7226
|
+
content: ({
|
|
7227
|
+
type: "tableHeader";
|
|
7228
|
+
content: {
|
|
7229
|
+
__TYPE__: "StructuredTextContent";
|
|
7230
|
+
value: ({
|
|
7231
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9088
7232
|
content: {
|
|
9089
7233
|
text: string;
|
|
9090
7234
|
} & {
|
|
@@ -9144,10 +7288,13 @@ export declare const DocumentLegacy: {
|
|
|
9144
7288
|
label?: string;
|
|
9145
7289
|
direction?: string;
|
|
9146
7290
|
})[];
|
|
9147
|
-
}
|
|
9148
|
-
|
|
9149
|
-
|
|
9150
|
-
|
|
7291
|
+
};
|
|
7292
|
+
} | {
|
|
7293
|
+
type: "tableCell";
|
|
7294
|
+
content: {
|
|
7295
|
+
__TYPE__: "StructuredTextContent";
|
|
7296
|
+
value: ({
|
|
7297
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9151
7298
|
content: {
|
|
9152
7299
|
text: string;
|
|
9153
7300
|
} & {
|
|
@@ -9207,154 +7354,21 @@ export declare const DocumentLegacy: {
|
|
|
9207
7354
|
label?: string;
|
|
9208
7355
|
direction?: string;
|
|
9209
7356
|
})[];
|
|
9210
|
-
}
|
|
9211
|
-
}[];
|
|
9212
|
-
}
|
|
7357
|
+
};
|
|
7358
|
+
})[];
|
|
7359
|
+
}[];
|
|
7360
|
+
} & {
|
|
7361
|
+
__TYPE__: "TableContent";
|
|
7362
|
+
});
|
|
7363
|
+
};
|
|
7364
|
+
items: {
|
|
7365
|
+
__TYPE__: "GroupItemContent";
|
|
7366
|
+
value: [string, {
|
|
7367
|
+
type: string;
|
|
7368
|
+
__TYPE__: "EmptyContent";
|
|
9213
7369
|
} | {
|
|
9214
|
-
__TYPE__: "
|
|
9215
|
-
|
|
9216
|
-
content: {
|
|
9217
|
-
type: "tableRow";
|
|
9218
|
-
content: ({
|
|
9219
|
-
type: "tableHeader";
|
|
9220
|
-
content: ({
|
|
9221
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
9222
|
-
content: {
|
|
9223
|
-
text: string;
|
|
9224
|
-
} & {
|
|
9225
|
-
spans?: ({
|
|
9226
|
-
data: ({
|
|
9227
|
-
__TYPE__: "ImageLink";
|
|
9228
|
-
} & {
|
|
9229
|
-
kind: "image";
|
|
9230
|
-
id: string;
|
|
9231
|
-
url: string;
|
|
9232
|
-
height: string;
|
|
9233
|
-
width: string;
|
|
9234
|
-
size: string;
|
|
9235
|
-
name: string;
|
|
9236
|
-
} & {
|
|
9237
|
-
date?: string | null | undefined;
|
|
9238
|
-
}) | ({
|
|
9239
|
-
__TYPE__: "FileLink";
|
|
9240
|
-
} & {
|
|
9241
|
-
kind: "file";
|
|
9242
|
-
id: string;
|
|
9243
|
-
url: string;
|
|
9244
|
-
name: string;
|
|
9245
|
-
size: string;
|
|
9246
|
-
} & {
|
|
9247
|
-
date?: string | null | undefined;
|
|
9248
|
-
}) | ({
|
|
9249
|
-
__TYPE__: "DocumentLink";
|
|
9250
|
-
} & {
|
|
9251
|
-
id: string;
|
|
9252
|
-
}) | ({
|
|
9253
|
-
__TYPE__: "ExternalLink";
|
|
9254
|
-
} & {
|
|
9255
|
-
url: string;
|
|
9256
|
-
} & {
|
|
9257
|
-
kind?: "web";
|
|
9258
|
-
target?: string | null | undefined;
|
|
9259
|
-
preview?: {
|
|
9260
|
-
title?: string;
|
|
9261
|
-
} | null | undefined;
|
|
9262
|
-
});
|
|
9263
|
-
start: number;
|
|
9264
|
-
end: number;
|
|
9265
|
-
type: "hyperlink";
|
|
9266
|
-
} | {
|
|
9267
|
-
data: string;
|
|
9268
|
-
start: number;
|
|
9269
|
-
end: number;
|
|
9270
|
-
type: "label";
|
|
9271
|
-
} | {
|
|
9272
|
-
start: number;
|
|
9273
|
-
end: number;
|
|
9274
|
-
type: "strong" | "em" | "list-item";
|
|
9275
|
-
})[];
|
|
9276
|
-
};
|
|
9277
|
-
} & {
|
|
9278
|
-
label?: string;
|
|
9279
|
-
direction?: string;
|
|
9280
|
-
})[];
|
|
9281
|
-
} | {
|
|
9282
|
-
type: "tableCell";
|
|
9283
|
-
content: ({
|
|
9284
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
9285
|
-
content: {
|
|
9286
|
-
text: string;
|
|
9287
|
-
} & {
|
|
9288
|
-
spans?: ({
|
|
9289
|
-
data: ({
|
|
9290
|
-
__TYPE__: "ImageLink";
|
|
9291
|
-
} & {
|
|
9292
|
-
kind: "image";
|
|
9293
|
-
id: string;
|
|
9294
|
-
url: string;
|
|
9295
|
-
height: string;
|
|
9296
|
-
width: string;
|
|
9297
|
-
size: string;
|
|
9298
|
-
name: string;
|
|
9299
|
-
} & {
|
|
9300
|
-
date?: string | null | undefined;
|
|
9301
|
-
}) | ({
|
|
9302
|
-
__TYPE__: "FileLink";
|
|
9303
|
-
} & {
|
|
9304
|
-
kind: "file";
|
|
9305
|
-
id: string;
|
|
9306
|
-
url: string;
|
|
9307
|
-
name: string;
|
|
9308
|
-
size: string;
|
|
9309
|
-
} & {
|
|
9310
|
-
date?: string | null | undefined;
|
|
9311
|
-
}) | ({
|
|
9312
|
-
__TYPE__: "DocumentLink";
|
|
9313
|
-
} & {
|
|
9314
|
-
id: string;
|
|
9315
|
-
}) | ({
|
|
9316
|
-
__TYPE__: "ExternalLink";
|
|
9317
|
-
} & {
|
|
9318
|
-
url: string;
|
|
9319
|
-
} & {
|
|
9320
|
-
kind?: "web";
|
|
9321
|
-
target?: string | null | undefined;
|
|
9322
|
-
preview?: {
|
|
9323
|
-
title?: string;
|
|
9324
|
-
} | null | undefined;
|
|
9325
|
-
});
|
|
9326
|
-
start: number;
|
|
9327
|
-
end: number;
|
|
9328
|
-
type: "hyperlink";
|
|
9329
|
-
} | {
|
|
9330
|
-
data: string;
|
|
9331
|
-
start: number;
|
|
9332
|
-
end: number;
|
|
9333
|
-
type: "label";
|
|
9334
|
-
} | {
|
|
9335
|
-
start: number;
|
|
9336
|
-
end: number;
|
|
9337
|
-
type: "strong" | "em" | "list-item";
|
|
9338
|
-
})[];
|
|
9339
|
-
};
|
|
9340
|
-
} & {
|
|
9341
|
-
label?: string;
|
|
9342
|
-
direction?: string;
|
|
9343
|
-
})[];
|
|
9344
|
-
})[];
|
|
9345
|
-
}[];
|
|
9346
|
-
} & {
|
|
9347
|
-
__TYPE__: "TableContent";
|
|
9348
|
-
});
|
|
9349
|
-
};
|
|
9350
|
-
items: {
|
|
9351
|
-
__TYPE__: "GroupItemContent";
|
|
9352
|
-
value: [string, {
|
|
9353
|
-
type: string;
|
|
9354
|
-
__TYPE__: "EmptyContent";
|
|
9355
|
-
} | {
|
|
9356
|
-
__TYPE__: "BooleanContent";
|
|
9357
|
-
value: boolean;
|
|
7370
|
+
__TYPE__: "BooleanContent";
|
|
7371
|
+
value: boolean;
|
|
9358
7372
|
} | ({
|
|
9359
7373
|
embed_url: string;
|
|
9360
7374
|
type: string;
|
|
@@ -9708,7 +7722,7 @@ export declare const DocumentLegacy: {
|
|
|
9708
7722
|
label?: string | null | undefined;
|
|
9709
7723
|
direction?: string | null | undefined;
|
|
9710
7724
|
}) | ({
|
|
9711
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
7725
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9712
7726
|
content: {
|
|
9713
7727
|
text: string;
|
|
9714
7728
|
} & {
|
|
@@ -9767,14 +7781,18 @@ export declare const DocumentLegacy: {
|
|
|
9767
7781
|
} & {
|
|
9768
7782
|
label?: string;
|
|
9769
7783
|
direction?: string;
|
|
9770
|
-
})
|
|
9771
|
-
|
|
9772
|
-
|
|
9773
|
-
|
|
9774
|
-
|
|
9775
|
-
|
|
9776
|
-
|
|
9777
|
-
|
|
7784
|
+
}))[];
|
|
7785
|
+
} | {
|
|
7786
|
+
__TYPE__: "SeparatorContent";
|
|
7787
|
+
} | ({
|
|
7788
|
+
content: {
|
|
7789
|
+
type: "tableRow";
|
|
7790
|
+
content: ({
|
|
7791
|
+
type: "tableHeader";
|
|
7792
|
+
content: {
|
|
7793
|
+
__TYPE__: "StructuredTextContent";
|
|
7794
|
+
value: ({
|
|
7795
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9778
7796
|
content: {
|
|
9779
7797
|
text: string;
|
|
9780
7798
|
} & {
|
|
@@ -9834,10 +7852,13 @@ export declare const DocumentLegacy: {
|
|
|
9834
7852
|
label?: string;
|
|
9835
7853
|
direction?: string;
|
|
9836
7854
|
})[];
|
|
9837
|
-
}
|
|
9838
|
-
|
|
9839
|
-
|
|
9840
|
-
|
|
7855
|
+
};
|
|
7856
|
+
} | {
|
|
7857
|
+
type: "tableCell";
|
|
7858
|
+
content: {
|
|
7859
|
+
__TYPE__: "StructuredTextContent";
|
|
7860
|
+
value: ({
|
|
7861
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9841
7862
|
content: {
|
|
9842
7863
|
text: string;
|
|
9843
7864
|
} & {
|
|
@@ -9897,140 +7918,7 @@ export declare const DocumentLegacy: {
|
|
|
9897
7918
|
label?: string;
|
|
9898
7919
|
direction?: string;
|
|
9899
7920
|
})[];
|
|
9900
|
-
}
|
|
9901
|
-
}[];
|
|
9902
|
-
})[];
|
|
9903
|
-
} | {
|
|
9904
|
-
__TYPE__: "SeparatorContent";
|
|
9905
|
-
} | ({
|
|
9906
|
-
content: {
|
|
9907
|
-
type: "tableRow";
|
|
9908
|
-
content: ({
|
|
9909
|
-
type: "tableHeader";
|
|
9910
|
-
content: ({
|
|
9911
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
9912
|
-
content: {
|
|
9913
|
-
text: string;
|
|
9914
|
-
} & {
|
|
9915
|
-
spans?: ({
|
|
9916
|
-
data: ({
|
|
9917
|
-
__TYPE__: "ImageLink";
|
|
9918
|
-
} & {
|
|
9919
|
-
kind: "image";
|
|
9920
|
-
id: string;
|
|
9921
|
-
url: string;
|
|
9922
|
-
height: string;
|
|
9923
|
-
width: string;
|
|
9924
|
-
size: string;
|
|
9925
|
-
name: string;
|
|
9926
|
-
} & {
|
|
9927
|
-
date?: string | null | undefined;
|
|
9928
|
-
}) | ({
|
|
9929
|
-
__TYPE__: "FileLink";
|
|
9930
|
-
} & {
|
|
9931
|
-
kind: "file";
|
|
9932
|
-
id: string;
|
|
9933
|
-
url: string;
|
|
9934
|
-
name: string;
|
|
9935
|
-
size: string;
|
|
9936
|
-
} & {
|
|
9937
|
-
date?: string | null | undefined;
|
|
9938
|
-
}) | ({
|
|
9939
|
-
__TYPE__: "DocumentLink";
|
|
9940
|
-
} & {
|
|
9941
|
-
id: string;
|
|
9942
|
-
}) | ({
|
|
9943
|
-
__TYPE__: "ExternalLink";
|
|
9944
|
-
} & {
|
|
9945
|
-
url: string;
|
|
9946
|
-
} & {
|
|
9947
|
-
kind?: "web";
|
|
9948
|
-
target?: string | null | undefined;
|
|
9949
|
-
preview?: {
|
|
9950
|
-
title?: string;
|
|
9951
|
-
} | null | undefined;
|
|
9952
|
-
});
|
|
9953
|
-
start: number;
|
|
9954
|
-
end: number;
|
|
9955
|
-
type: "hyperlink";
|
|
9956
|
-
} | {
|
|
9957
|
-
data: string;
|
|
9958
|
-
start: number;
|
|
9959
|
-
end: number;
|
|
9960
|
-
type: "label";
|
|
9961
|
-
} | {
|
|
9962
|
-
start: number;
|
|
9963
|
-
end: number;
|
|
9964
|
-
type: "strong" | "em" | "list-item";
|
|
9965
|
-
})[];
|
|
9966
|
-
};
|
|
9967
|
-
} & {
|
|
9968
|
-
label?: string;
|
|
9969
|
-
direction?: string;
|
|
9970
|
-
})[];
|
|
9971
|
-
} | {
|
|
9972
|
-
type: "tableCell";
|
|
9973
|
-
content: ({
|
|
9974
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
9975
|
-
content: {
|
|
9976
|
-
text: string;
|
|
9977
|
-
} & {
|
|
9978
|
-
spans?: ({
|
|
9979
|
-
data: ({
|
|
9980
|
-
__TYPE__: "ImageLink";
|
|
9981
|
-
} & {
|
|
9982
|
-
kind: "image";
|
|
9983
|
-
id: string;
|
|
9984
|
-
url: string;
|
|
9985
|
-
height: string;
|
|
9986
|
-
width: string;
|
|
9987
|
-
size: string;
|
|
9988
|
-
name: string;
|
|
9989
|
-
} & {
|
|
9990
|
-
date?: string | null | undefined;
|
|
9991
|
-
}) | ({
|
|
9992
|
-
__TYPE__: "FileLink";
|
|
9993
|
-
} & {
|
|
9994
|
-
kind: "file";
|
|
9995
|
-
id: string;
|
|
9996
|
-
url: string;
|
|
9997
|
-
name: string;
|
|
9998
|
-
size: string;
|
|
9999
|
-
} & {
|
|
10000
|
-
date?: string | null | undefined;
|
|
10001
|
-
}) | ({
|
|
10002
|
-
__TYPE__: "DocumentLink";
|
|
10003
|
-
} & {
|
|
10004
|
-
id: string;
|
|
10005
|
-
}) | ({
|
|
10006
|
-
__TYPE__: "ExternalLink";
|
|
10007
|
-
} & {
|
|
10008
|
-
url: string;
|
|
10009
|
-
} & {
|
|
10010
|
-
kind?: "web";
|
|
10011
|
-
target?: string | null | undefined;
|
|
10012
|
-
preview?: {
|
|
10013
|
-
title?: string;
|
|
10014
|
-
} | null | undefined;
|
|
10015
|
-
});
|
|
10016
|
-
start: number;
|
|
10017
|
-
end: number;
|
|
10018
|
-
type: "hyperlink";
|
|
10019
|
-
} | {
|
|
10020
|
-
data: string;
|
|
10021
|
-
start: number;
|
|
10022
|
-
end: number;
|
|
10023
|
-
type: "label";
|
|
10024
|
-
} | {
|
|
10025
|
-
start: number;
|
|
10026
|
-
end: number;
|
|
10027
|
-
type: "strong" | "em" | "list-item";
|
|
10028
|
-
})[];
|
|
10029
|
-
};
|
|
10030
|
-
} & {
|
|
10031
|
-
label?: string;
|
|
10032
|
-
direction?: string;
|
|
10033
|
-
})[];
|
|
7921
|
+
};
|
|
10034
7922
|
})[];
|
|
10035
7923
|
}[];
|
|
10036
7924
|
} & {
|
|
@@ -10434,7 +8322,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
10434
8322
|
label?: string | null | undefined;
|
|
10435
8323
|
direction?: string | null | undefined;
|
|
10436
8324
|
}) | ({
|
|
10437
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
8325
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
10438
8326
|
content: {
|
|
10439
8327
|
text: string;
|
|
10440
8328
|
} & {
|
|
@@ -10493,14 +8381,18 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
10493
8381
|
} & {
|
|
10494
8382
|
label?: string;
|
|
10495
8383
|
direction?: string;
|
|
10496
|
-
})
|
|
10497
|
-
|
|
10498
|
-
|
|
10499
|
-
|
|
10500
|
-
|
|
10501
|
-
|
|
10502
|
-
|
|
10503
|
-
|
|
8384
|
+
}))[];
|
|
8385
|
+
} | {
|
|
8386
|
+
__TYPE__: "SeparatorContent";
|
|
8387
|
+
} | ({
|
|
8388
|
+
content: {
|
|
8389
|
+
type: "tableRow";
|
|
8390
|
+
content: ({
|
|
8391
|
+
type: "tableHeader";
|
|
8392
|
+
content: {
|
|
8393
|
+
__TYPE__: "StructuredTextContent";
|
|
8394
|
+
value: ({
|
|
8395
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
10504
8396
|
content: {
|
|
10505
8397
|
text: string;
|
|
10506
8398
|
} & {
|
|
@@ -10560,10 +8452,13 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
10560
8452
|
label?: string;
|
|
10561
8453
|
direction?: string;
|
|
10562
8454
|
})[];
|
|
10563
|
-
}
|
|
10564
|
-
|
|
10565
|
-
|
|
10566
|
-
|
|
8455
|
+
};
|
|
8456
|
+
} | {
|
|
8457
|
+
type: "tableCell";
|
|
8458
|
+
content: {
|
|
8459
|
+
__TYPE__: "StructuredTextContent";
|
|
8460
|
+
value: ({
|
|
8461
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
10567
8462
|
content: {
|
|
10568
8463
|
text: string;
|
|
10569
8464
|
} & {
|
|
@@ -10623,147 +8518,14 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
10623
8518
|
label?: string;
|
|
10624
8519
|
direction?: string;
|
|
10625
8520
|
})[];
|
|
10626
|
-
}
|
|
10627
|
-
}[];
|
|
10628
|
-
}
|
|
10629
|
-
}
|
|
10630
|
-
__TYPE__: "
|
|
10631
|
-
} |
|
|
10632
|
-
|
|
10633
|
-
|
|
10634
|
-
content: ({
|
|
10635
|
-
type: "tableHeader";
|
|
10636
|
-
content: ({
|
|
10637
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
10638
|
-
content: {
|
|
10639
|
-
text: string;
|
|
10640
|
-
} & {
|
|
10641
|
-
spans?: ({
|
|
10642
|
-
data: ({
|
|
10643
|
-
__TYPE__: "ImageLink";
|
|
10644
|
-
} & {
|
|
10645
|
-
kind: "image";
|
|
10646
|
-
id: string;
|
|
10647
|
-
url: string;
|
|
10648
|
-
height: string;
|
|
10649
|
-
width: string;
|
|
10650
|
-
size: string;
|
|
10651
|
-
name: string;
|
|
10652
|
-
} & {
|
|
10653
|
-
date?: string | null | undefined;
|
|
10654
|
-
}) | ({
|
|
10655
|
-
__TYPE__: "FileLink";
|
|
10656
|
-
} & {
|
|
10657
|
-
kind: "file";
|
|
10658
|
-
id: string;
|
|
10659
|
-
url: string;
|
|
10660
|
-
name: string;
|
|
10661
|
-
size: string;
|
|
10662
|
-
} & {
|
|
10663
|
-
date?: string | null | undefined;
|
|
10664
|
-
}) | ({
|
|
10665
|
-
__TYPE__: "DocumentLink";
|
|
10666
|
-
} & {
|
|
10667
|
-
id: string;
|
|
10668
|
-
}) | ({
|
|
10669
|
-
__TYPE__: "ExternalLink";
|
|
10670
|
-
} & {
|
|
10671
|
-
url: string;
|
|
10672
|
-
} & {
|
|
10673
|
-
kind?: "web";
|
|
10674
|
-
target?: string | null | undefined;
|
|
10675
|
-
preview?: {
|
|
10676
|
-
title?: string;
|
|
10677
|
-
} | null | undefined;
|
|
10678
|
-
});
|
|
10679
|
-
start: number;
|
|
10680
|
-
end: number;
|
|
10681
|
-
type: "hyperlink";
|
|
10682
|
-
} | {
|
|
10683
|
-
data: string;
|
|
10684
|
-
start: number;
|
|
10685
|
-
end: number;
|
|
10686
|
-
type: "label";
|
|
10687
|
-
} | {
|
|
10688
|
-
start: number;
|
|
10689
|
-
end: number;
|
|
10690
|
-
type: "strong" | "em" | "list-item";
|
|
10691
|
-
})[];
|
|
10692
|
-
};
|
|
10693
|
-
} & {
|
|
10694
|
-
label?: string;
|
|
10695
|
-
direction?: string;
|
|
10696
|
-
})[];
|
|
10697
|
-
} | {
|
|
10698
|
-
type: "tableCell";
|
|
10699
|
-
content: ({
|
|
10700
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
10701
|
-
content: {
|
|
10702
|
-
text: string;
|
|
10703
|
-
} & {
|
|
10704
|
-
spans?: ({
|
|
10705
|
-
data: ({
|
|
10706
|
-
__TYPE__: "ImageLink";
|
|
10707
|
-
} & {
|
|
10708
|
-
kind: "image";
|
|
10709
|
-
id: string;
|
|
10710
|
-
url: string;
|
|
10711
|
-
height: string;
|
|
10712
|
-
width: string;
|
|
10713
|
-
size: string;
|
|
10714
|
-
name: string;
|
|
10715
|
-
} & {
|
|
10716
|
-
date?: string | null | undefined;
|
|
10717
|
-
}) | ({
|
|
10718
|
-
__TYPE__: "FileLink";
|
|
10719
|
-
} & {
|
|
10720
|
-
kind: "file";
|
|
10721
|
-
id: string;
|
|
10722
|
-
url: string;
|
|
10723
|
-
name: string;
|
|
10724
|
-
size: string;
|
|
10725
|
-
} & {
|
|
10726
|
-
date?: string | null | undefined;
|
|
10727
|
-
}) | ({
|
|
10728
|
-
__TYPE__: "DocumentLink";
|
|
10729
|
-
} & {
|
|
10730
|
-
id: string;
|
|
10731
|
-
}) | ({
|
|
10732
|
-
__TYPE__: "ExternalLink";
|
|
10733
|
-
} & {
|
|
10734
|
-
url: string;
|
|
10735
|
-
} & {
|
|
10736
|
-
kind?: "web";
|
|
10737
|
-
target?: string | null | undefined;
|
|
10738
|
-
preview?: {
|
|
10739
|
-
title?: string;
|
|
10740
|
-
} | null | undefined;
|
|
10741
|
-
});
|
|
10742
|
-
start: number;
|
|
10743
|
-
end: number;
|
|
10744
|
-
type: "hyperlink";
|
|
10745
|
-
} | {
|
|
10746
|
-
data: string;
|
|
10747
|
-
start: number;
|
|
10748
|
-
end: number;
|
|
10749
|
-
type: "label";
|
|
10750
|
-
} | {
|
|
10751
|
-
start: number;
|
|
10752
|
-
end: number;
|
|
10753
|
-
type: "strong" | "em" | "list-item";
|
|
10754
|
-
})[];
|
|
10755
|
-
};
|
|
10756
|
-
} & {
|
|
10757
|
-
label?: string;
|
|
10758
|
-
direction?: string;
|
|
10759
|
-
})[];
|
|
10760
|
-
})[];
|
|
10761
|
-
}[];
|
|
10762
|
-
} & {
|
|
10763
|
-
__TYPE__: "TableContent";
|
|
10764
|
-
}) | {
|
|
10765
|
-
__TYPE__: "UIDContent";
|
|
10766
|
-
value: string;
|
|
8521
|
+
};
|
|
8522
|
+
})[];
|
|
8523
|
+
}[];
|
|
8524
|
+
} & {
|
|
8525
|
+
__TYPE__: "TableContent";
|
|
8526
|
+
}) | {
|
|
8527
|
+
__TYPE__: "UIDContent";
|
|
8528
|
+
value: string;
|
|
10767
8529
|
} | {
|
|
10768
8530
|
__TYPE__: "SliceContentType";
|
|
10769
8531
|
value: {
|
|
@@ -11129,7 +8891,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
11129
8891
|
label?: string | null | undefined;
|
|
11130
8892
|
direction?: string | null | undefined;
|
|
11131
8893
|
}) | ({
|
|
11132
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
8894
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11133
8895
|
content: {
|
|
11134
8896
|
text: string;
|
|
11135
8897
|
} & {
|
|
@@ -11188,14 +8950,18 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
11188
8950
|
} & {
|
|
11189
8951
|
label?: string;
|
|
11190
8952
|
direction?: string;
|
|
11191
|
-
})
|
|
11192
|
-
|
|
11193
|
-
|
|
11194
|
-
|
|
11195
|
-
|
|
11196
|
-
|
|
11197
|
-
|
|
11198
|
-
|
|
8953
|
+
}))[];
|
|
8954
|
+
} | {
|
|
8955
|
+
__TYPE__: "SeparatorContent";
|
|
8956
|
+
} | ({
|
|
8957
|
+
content: {
|
|
8958
|
+
type: "tableRow";
|
|
8959
|
+
content: ({
|
|
8960
|
+
type: "tableHeader";
|
|
8961
|
+
content: {
|
|
8962
|
+
__TYPE__: "StructuredTextContent";
|
|
8963
|
+
value: ({
|
|
8964
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11199
8965
|
content: {
|
|
11200
8966
|
text: string;
|
|
11201
8967
|
} & {
|
|
@@ -11255,10 +9021,13 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
11255
9021
|
label?: string;
|
|
11256
9022
|
direction?: string;
|
|
11257
9023
|
})[];
|
|
11258
|
-
}
|
|
11259
|
-
|
|
11260
|
-
|
|
11261
|
-
|
|
9024
|
+
};
|
|
9025
|
+
} | {
|
|
9026
|
+
type: "tableCell";
|
|
9027
|
+
content: {
|
|
9028
|
+
__TYPE__: "StructuredTextContent";
|
|
9029
|
+
value: ({
|
|
9030
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11262
9031
|
content: {
|
|
11263
9032
|
text: string;
|
|
11264
9033
|
} & {
|
|
@@ -11318,140 +9087,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
11318
9087
|
label?: string;
|
|
11319
9088
|
direction?: string;
|
|
11320
9089
|
})[];
|
|
11321
|
-
}
|
|
11322
|
-
}[];
|
|
11323
|
-
})[];
|
|
11324
|
-
} | {
|
|
11325
|
-
__TYPE__: "SeparatorContent";
|
|
11326
|
-
} | ({
|
|
11327
|
-
content: {
|
|
11328
|
-
type: "tableRow";
|
|
11329
|
-
content: ({
|
|
11330
|
-
type: "tableHeader";
|
|
11331
|
-
content: ({
|
|
11332
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
11333
|
-
content: {
|
|
11334
|
-
text: string;
|
|
11335
|
-
} & {
|
|
11336
|
-
spans?: ({
|
|
11337
|
-
data: ({
|
|
11338
|
-
__TYPE__: "ImageLink";
|
|
11339
|
-
} & {
|
|
11340
|
-
kind: "image";
|
|
11341
|
-
id: string;
|
|
11342
|
-
url: string;
|
|
11343
|
-
height: string;
|
|
11344
|
-
width: string;
|
|
11345
|
-
size: string;
|
|
11346
|
-
name: string;
|
|
11347
|
-
} & {
|
|
11348
|
-
date?: string | null | undefined;
|
|
11349
|
-
}) | ({
|
|
11350
|
-
__TYPE__: "FileLink";
|
|
11351
|
-
} & {
|
|
11352
|
-
kind: "file";
|
|
11353
|
-
id: string;
|
|
11354
|
-
url: string;
|
|
11355
|
-
name: string;
|
|
11356
|
-
size: string;
|
|
11357
|
-
} & {
|
|
11358
|
-
date?: string | null | undefined;
|
|
11359
|
-
}) | ({
|
|
11360
|
-
__TYPE__: "DocumentLink";
|
|
11361
|
-
} & {
|
|
11362
|
-
id: string;
|
|
11363
|
-
}) | ({
|
|
11364
|
-
__TYPE__: "ExternalLink";
|
|
11365
|
-
} & {
|
|
11366
|
-
url: string;
|
|
11367
|
-
} & {
|
|
11368
|
-
kind?: "web";
|
|
11369
|
-
target?: string | null | undefined;
|
|
11370
|
-
preview?: {
|
|
11371
|
-
title?: string;
|
|
11372
|
-
} | null | undefined;
|
|
11373
|
-
});
|
|
11374
|
-
start: number;
|
|
11375
|
-
end: number;
|
|
11376
|
-
type: "hyperlink";
|
|
11377
|
-
} | {
|
|
11378
|
-
data: string;
|
|
11379
|
-
start: number;
|
|
11380
|
-
end: number;
|
|
11381
|
-
type: "label";
|
|
11382
|
-
} | {
|
|
11383
|
-
start: number;
|
|
11384
|
-
end: number;
|
|
11385
|
-
type: "strong" | "em" | "list-item";
|
|
11386
|
-
})[];
|
|
11387
|
-
};
|
|
11388
|
-
} & {
|
|
11389
|
-
label?: string;
|
|
11390
|
-
direction?: string;
|
|
11391
|
-
})[];
|
|
11392
|
-
} | {
|
|
11393
|
-
type: "tableCell";
|
|
11394
|
-
content: ({
|
|
11395
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
11396
|
-
content: {
|
|
11397
|
-
text: string;
|
|
11398
|
-
} & {
|
|
11399
|
-
spans?: ({
|
|
11400
|
-
data: ({
|
|
11401
|
-
__TYPE__: "ImageLink";
|
|
11402
|
-
} & {
|
|
11403
|
-
kind: "image";
|
|
11404
|
-
id: string;
|
|
11405
|
-
url: string;
|
|
11406
|
-
height: string;
|
|
11407
|
-
width: string;
|
|
11408
|
-
size: string;
|
|
11409
|
-
name: string;
|
|
11410
|
-
} & {
|
|
11411
|
-
date?: string | null | undefined;
|
|
11412
|
-
}) | ({
|
|
11413
|
-
__TYPE__: "FileLink";
|
|
11414
|
-
} & {
|
|
11415
|
-
kind: "file";
|
|
11416
|
-
id: string;
|
|
11417
|
-
url: string;
|
|
11418
|
-
name: string;
|
|
11419
|
-
size: string;
|
|
11420
|
-
} & {
|
|
11421
|
-
date?: string | null | undefined;
|
|
11422
|
-
}) | ({
|
|
11423
|
-
__TYPE__: "DocumentLink";
|
|
11424
|
-
} & {
|
|
11425
|
-
id: string;
|
|
11426
|
-
}) | ({
|
|
11427
|
-
__TYPE__: "ExternalLink";
|
|
11428
|
-
} & {
|
|
11429
|
-
url: string;
|
|
11430
|
-
} & {
|
|
11431
|
-
kind?: "web";
|
|
11432
|
-
target?: string | null | undefined;
|
|
11433
|
-
preview?: {
|
|
11434
|
-
title?: string;
|
|
11435
|
-
} | null | undefined;
|
|
11436
|
-
});
|
|
11437
|
-
start: number;
|
|
11438
|
-
end: number;
|
|
11439
|
-
type: "hyperlink";
|
|
11440
|
-
} | {
|
|
11441
|
-
data: string;
|
|
11442
|
-
start: number;
|
|
11443
|
-
end: number;
|
|
11444
|
-
type: "label";
|
|
11445
|
-
} | {
|
|
11446
|
-
start: number;
|
|
11447
|
-
end: number;
|
|
11448
|
-
type: "strong" | "em" | "list-item";
|
|
11449
|
-
})[];
|
|
11450
|
-
};
|
|
11451
|
-
} & {
|
|
11452
|
-
label?: string;
|
|
11453
|
-
direction?: string;
|
|
11454
|
-
})[];
|
|
9090
|
+
};
|
|
11455
9091
|
})[];
|
|
11456
9092
|
}[];
|
|
11457
9093
|
} & {
|
|
@@ -11818,7 +9454,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
11818
9454
|
label?: string | null | undefined;
|
|
11819
9455
|
direction?: string | null | undefined;
|
|
11820
9456
|
}) | ({
|
|
11821
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
9457
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11822
9458
|
content: {
|
|
11823
9459
|
text: string;
|
|
11824
9460
|
} & {
|
|
@@ -11877,14 +9513,18 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
11877
9513
|
} & {
|
|
11878
9514
|
label?: string;
|
|
11879
9515
|
direction?: string;
|
|
11880
|
-
})
|
|
11881
|
-
|
|
11882
|
-
|
|
11883
|
-
|
|
11884
|
-
|
|
11885
|
-
|
|
11886
|
-
|
|
11887
|
-
|
|
9516
|
+
}))[];
|
|
9517
|
+
} | {
|
|
9518
|
+
__TYPE__: "SeparatorContent";
|
|
9519
|
+
} | ({
|
|
9520
|
+
content: {
|
|
9521
|
+
type: "tableRow";
|
|
9522
|
+
content: ({
|
|
9523
|
+
type: "tableHeader";
|
|
9524
|
+
content: {
|
|
9525
|
+
__TYPE__: "StructuredTextContent";
|
|
9526
|
+
value: ({
|
|
9527
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11888
9528
|
content: {
|
|
11889
9529
|
text: string;
|
|
11890
9530
|
} & {
|
|
@@ -11944,10 +9584,13 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
11944
9584
|
label?: string;
|
|
11945
9585
|
direction?: string;
|
|
11946
9586
|
})[];
|
|
11947
|
-
}
|
|
11948
|
-
|
|
11949
|
-
|
|
11950
|
-
|
|
9587
|
+
};
|
|
9588
|
+
} | {
|
|
9589
|
+
type: "tableCell";
|
|
9590
|
+
content: {
|
|
9591
|
+
__TYPE__: "StructuredTextContent";
|
|
9592
|
+
value: ({
|
|
9593
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11951
9594
|
content: {
|
|
11952
9595
|
text: string;
|
|
11953
9596
|
} & {
|
|
@@ -12007,140 +9650,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
12007
9650
|
label?: string;
|
|
12008
9651
|
direction?: string;
|
|
12009
9652
|
})[];
|
|
12010
|
-
}
|
|
12011
|
-
}[];
|
|
12012
|
-
})[];
|
|
12013
|
-
} | {
|
|
12014
|
-
__TYPE__: "SeparatorContent";
|
|
12015
|
-
} | ({
|
|
12016
|
-
content: {
|
|
12017
|
-
type: "tableRow";
|
|
12018
|
-
content: ({
|
|
12019
|
-
type: "tableHeader";
|
|
12020
|
-
content: ({
|
|
12021
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
12022
|
-
content: {
|
|
12023
|
-
text: string;
|
|
12024
|
-
} & {
|
|
12025
|
-
spans?: ({
|
|
12026
|
-
data: ({
|
|
12027
|
-
__TYPE__: "ImageLink";
|
|
12028
|
-
} & {
|
|
12029
|
-
kind: "image";
|
|
12030
|
-
id: string;
|
|
12031
|
-
url: string;
|
|
12032
|
-
height: string;
|
|
12033
|
-
width: string;
|
|
12034
|
-
size: string;
|
|
12035
|
-
name: string;
|
|
12036
|
-
} & {
|
|
12037
|
-
date?: string | null | undefined;
|
|
12038
|
-
}) | ({
|
|
12039
|
-
__TYPE__: "FileLink";
|
|
12040
|
-
} & {
|
|
12041
|
-
kind: "file";
|
|
12042
|
-
id: string;
|
|
12043
|
-
url: string;
|
|
12044
|
-
name: string;
|
|
12045
|
-
size: string;
|
|
12046
|
-
} & {
|
|
12047
|
-
date?: string | null | undefined;
|
|
12048
|
-
}) | ({
|
|
12049
|
-
__TYPE__: "DocumentLink";
|
|
12050
|
-
} & {
|
|
12051
|
-
id: string;
|
|
12052
|
-
}) | ({
|
|
12053
|
-
__TYPE__: "ExternalLink";
|
|
12054
|
-
} & {
|
|
12055
|
-
url: string;
|
|
12056
|
-
} & {
|
|
12057
|
-
kind?: "web";
|
|
12058
|
-
target?: string | null | undefined;
|
|
12059
|
-
preview?: {
|
|
12060
|
-
title?: string;
|
|
12061
|
-
} | null | undefined;
|
|
12062
|
-
});
|
|
12063
|
-
start: number;
|
|
12064
|
-
end: number;
|
|
12065
|
-
type: "hyperlink";
|
|
12066
|
-
} | {
|
|
12067
|
-
data: string;
|
|
12068
|
-
start: number;
|
|
12069
|
-
end: number;
|
|
12070
|
-
type: "label";
|
|
12071
|
-
} | {
|
|
12072
|
-
start: number;
|
|
12073
|
-
end: number;
|
|
12074
|
-
type: "strong" | "em" | "list-item";
|
|
12075
|
-
})[];
|
|
12076
|
-
};
|
|
12077
|
-
} & {
|
|
12078
|
-
label?: string;
|
|
12079
|
-
direction?: string;
|
|
12080
|
-
})[];
|
|
12081
|
-
} | {
|
|
12082
|
-
type: "tableCell";
|
|
12083
|
-
content: ({
|
|
12084
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
12085
|
-
content: {
|
|
12086
|
-
text: string;
|
|
12087
|
-
} & {
|
|
12088
|
-
spans?: ({
|
|
12089
|
-
data: ({
|
|
12090
|
-
__TYPE__: "ImageLink";
|
|
12091
|
-
} & {
|
|
12092
|
-
kind: "image";
|
|
12093
|
-
id: string;
|
|
12094
|
-
url: string;
|
|
12095
|
-
height: string;
|
|
12096
|
-
width: string;
|
|
12097
|
-
size: string;
|
|
12098
|
-
name: string;
|
|
12099
|
-
} & {
|
|
12100
|
-
date?: string | null | undefined;
|
|
12101
|
-
}) | ({
|
|
12102
|
-
__TYPE__: "FileLink";
|
|
12103
|
-
} & {
|
|
12104
|
-
kind: "file";
|
|
12105
|
-
id: string;
|
|
12106
|
-
url: string;
|
|
12107
|
-
name: string;
|
|
12108
|
-
size: string;
|
|
12109
|
-
} & {
|
|
12110
|
-
date?: string | null | undefined;
|
|
12111
|
-
}) | ({
|
|
12112
|
-
__TYPE__: "DocumentLink";
|
|
12113
|
-
} & {
|
|
12114
|
-
id: string;
|
|
12115
|
-
}) | ({
|
|
12116
|
-
__TYPE__: "ExternalLink";
|
|
12117
|
-
} & {
|
|
12118
|
-
url: string;
|
|
12119
|
-
} & {
|
|
12120
|
-
kind?: "web";
|
|
12121
|
-
target?: string | null | undefined;
|
|
12122
|
-
preview?: {
|
|
12123
|
-
title?: string;
|
|
12124
|
-
} | null | undefined;
|
|
12125
|
-
});
|
|
12126
|
-
start: number;
|
|
12127
|
-
end: number;
|
|
12128
|
-
type: "hyperlink";
|
|
12129
|
-
} | {
|
|
12130
|
-
data: string;
|
|
12131
|
-
start: number;
|
|
12132
|
-
end: number;
|
|
12133
|
-
type: "label";
|
|
12134
|
-
} | {
|
|
12135
|
-
start: number;
|
|
12136
|
-
end: number;
|
|
12137
|
-
type: "strong" | "em" | "list-item";
|
|
12138
|
-
})[];
|
|
12139
|
-
};
|
|
12140
|
-
} & {
|
|
12141
|
-
label?: string;
|
|
12142
|
-
direction?: string;
|
|
12143
|
-
})[];
|
|
9653
|
+
};
|
|
12144
9654
|
})[];
|
|
12145
9655
|
}[];
|
|
12146
9656
|
} & {
|
|
@@ -12508,7 +10018,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
12508
10018
|
label?: string | null | undefined;
|
|
12509
10019
|
direction?: string | null | undefined;
|
|
12510
10020
|
}) | ({
|
|
12511
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
10021
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
12512
10022
|
content: {
|
|
12513
10023
|
text: string;
|
|
12514
10024
|
} & {
|
|
@@ -12567,14 +10077,18 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
12567
10077
|
} & {
|
|
12568
10078
|
label?: string;
|
|
12569
10079
|
direction?: string;
|
|
12570
|
-
})
|
|
12571
|
-
|
|
12572
|
-
|
|
12573
|
-
|
|
12574
|
-
|
|
12575
|
-
|
|
12576
|
-
|
|
12577
|
-
|
|
10080
|
+
}))[];
|
|
10081
|
+
} | {
|
|
10082
|
+
__TYPE__: "SeparatorContent";
|
|
10083
|
+
} | ({
|
|
10084
|
+
content: {
|
|
10085
|
+
type: "tableRow";
|
|
10086
|
+
content: ({
|
|
10087
|
+
type: "tableHeader";
|
|
10088
|
+
content: {
|
|
10089
|
+
__TYPE__: "StructuredTextContent";
|
|
10090
|
+
value: ({
|
|
10091
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
12578
10092
|
content: {
|
|
12579
10093
|
text: string;
|
|
12580
10094
|
} & {
|
|
@@ -12634,10 +10148,13 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
12634
10148
|
label?: string;
|
|
12635
10149
|
direction?: string;
|
|
12636
10150
|
})[];
|
|
12637
|
-
}
|
|
12638
|
-
|
|
12639
|
-
|
|
12640
|
-
|
|
10151
|
+
};
|
|
10152
|
+
} | {
|
|
10153
|
+
type: "tableCell";
|
|
10154
|
+
content: {
|
|
10155
|
+
__TYPE__: "StructuredTextContent";
|
|
10156
|
+
value: ({
|
|
10157
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
12641
10158
|
content: {
|
|
12642
10159
|
text: string;
|
|
12643
10160
|
} & {
|
|
@@ -12697,140 +10214,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
12697
10214
|
label?: string;
|
|
12698
10215
|
direction?: string;
|
|
12699
10216
|
})[];
|
|
12700
|
-
}
|
|
12701
|
-
}[];
|
|
12702
|
-
})[];
|
|
12703
|
-
} | {
|
|
12704
|
-
__TYPE__: "SeparatorContent";
|
|
12705
|
-
} | ({
|
|
12706
|
-
content: {
|
|
12707
|
-
type: "tableRow";
|
|
12708
|
-
content: ({
|
|
12709
|
-
type: "tableHeader";
|
|
12710
|
-
content: ({
|
|
12711
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
12712
|
-
content: {
|
|
12713
|
-
text: string;
|
|
12714
|
-
} & {
|
|
12715
|
-
spans?: ({
|
|
12716
|
-
data: ({
|
|
12717
|
-
__TYPE__: "ImageLink";
|
|
12718
|
-
} & {
|
|
12719
|
-
kind: "image";
|
|
12720
|
-
id: string;
|
|
12721
|
-
url: string;
|
|
12722
|
-
height: string;
|
|
12723
|
-
width: string;
|
|
12724
|
-
size: string;
|
|
12725
|
-
name: string;
|
|
12726
|
-
} & {
|
|
12727
|
-
date?: string | null | undefined;
|
|
12728
|
-
}) | ({
|
|
12729
|
-
__TYPE__: "FileLink";
|
|
12730
|
-
} & {
|
|
12731
|
-
kind: "file";
|
|
12732
|
-
id: string;
|
|
12733
|
-
url: string;
|
|
12734
|
-
name: string;
|
|
12735
|
-
size: string;
|
|
12736
|
-
} & {
|
|
12737
|
-
date?: string | null | undefined;
|
|
12738
|
-
}) | ({
|
|
12739
|
-
__TYPE__: "DocumentLink";
|
|
12740
|
-
} & {
|
|
12741
|
-
id: string;
|
|
12742
|
-
}) | ({
|
|
12743
|
-
__TYPE__: "ExternalLink";
|
|
12744
|
-
} & {
|
|
12745
|
-
url: string;
|
|
12746
|
-
} & {
|
|
12747
|
-
kind?: "web";
|
|
12748
|
-
target?: string | null | undefined;
|
|
12749
|
-
preview?: {
|
|
12750
|
-
title?: string;
|
|
12751
|
-
} | null | undefined;
|
|
12752
|
-
});
|
|
12753
|
-
start: number;
|
|
12754
|
-
end: number;
|
|
12755
|
-
type: "hyperlink";
|
|
12756
|
-
} | {
|
|
12757
|
-
data: string;
|
|
12758
|
-
start: number;
|
|
12759
|
-
end: number;
|
|
12760
|
-
type: "label";
|
|
12761
|
-
} | {
|
|
12762
|
-
start: number;
|
|
12763
|
-
end: number;
|
|
12764
|
-
type: "strong" | "em" | "list-item";
|
|
12765
|
-
})[];
|
|
12766
|
-
};
|
|
12767
|
-
} & {
|
|
12768
|
-
label?: string;
|
|
12769
|
-
direction?: string;
|
|
12770
|
-
})[];
|
|
12771
|
-
} | {
|
|
12772
|
-
type: "tableCell";
|
|
12773
|
-
content: ({
|
|
12774
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
12775
|
-
content: {
|
|
12776
|
-
text: string;
|
|
12777
|
-
} & {
|
|
12778
|
-
spans?: ({
|
|
12779
|
-
data: ({
|
|
12780
|
-
__TYPE__: "ImageLink";
|
|
12781
|
-
} & {
|
|
12782
|
-
kind: "image";
|
|
12783
|
-
id: string;
|
|
12784
|
-
url: string;
|
|
12785
|
-
height: string;
|
|
12786
|
-
width: string;
|
|
12787
|
-
size: string;
|
|
12788
|
-
name: string;
|
|
12789
|
-
} & {
|
|
12790
|
-
date?: string | null | undefined;
|
|
12791
|
-
}) | ({
|
|
12792
|
-
__TYPE__: "FileLink";
|
|
12793
|
-
} & {
|
|
12794
|
-
kind: "file";
|
|
12795
|
-
id: string;
|
|
12796
|
-
url: string;
|
|
12797
|
-
name: string;
|
|
12798
|
-
size: string;
|
|
12799
|
-
} & {
|
|
12800
|
-
date?: string | null | undefined;
|
|
12801
|
-
}) | ({
|
|
12802
|
-
__TYPE__: "DocumentLink";
|
|
12803
|
-
} & {
|
|
12804
|
-
id: string;
|
|
12805
|
-
}) | ({
|
|
12806
|
-
__TYPE__: "ExternalLink";
|
|
12807
|
-
} & {
|
|
12808
|
-
url: string;
|
|
12809
|
-
} & {
|
|
12810
|
-
kind?: "web";
|
|
12811
|
-
target?: string | null | undefined;
|
|
12812
|
-
preview?: {
|
|
12813
|
-
title?: string;
|
|
12814
|
-
} | null | undefined;
|
|
12815
|
-
});
|
|
12816
|
-
start: number;
|
|
12817
|
-
end: number;
|
|
12818
|
-
type: "hyperlink";
|
|
12819
|
-
} | {
|
|
12820
|
-
data: string;
|
|
12821
|
-
start: number;
|
|
12822
|
-
end: number;
|
|
12823
|
-
type: "label";
|
|
12824
|
-
} | {
|
|
12825
|
-
start: number;
|
|
12826
|
-
end: number;
|
|
12827
|
-
type: "strong" | "em" | "list-item";
|
|
12828
|
-
})[];
|
|
12829
|
-
};
|
|
12830
|
-
} & {
|
|
12831
|
-
label?: string;
|
|
12832
|
-
direction?: string;
|
|
12833
|
-
})[];
|
|
10217
|
+
};
|
|
12834
10218
|
})[];
|
|
12835
10219
|
}[];
|
|
12836
10220
|
} & {
|
|
@@ -13200,7 +10584,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
13200
10584
|
label?: string | null | undefined;
|
|
13201
10585
|
direction?: string | null | undefined;
|
|
13202
10586
|
}) | ({
|
|
13203
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
10587
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13204
10588
|
content: {
|
|
13205
10589
|
text: string;
|
|
13206
10590
|
} & {
|
|
@@ -13259,14 +10643,18 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
13259
10643
|
} & {
|
|
13260
10644
|
label?: string;
|
|
13261
10645
|
direction?: string;
|
|
13262
|
-
})
|
|
13263
|
-
|
|
13264
|
-
|
|
13265
|
-
|
|
13266
|
-
|
|
13267
|
-
|
|
13268
|
-
|
|
13269
|
-
|
|
10646
|
+
}))[];
|
|
10647
|
+
} | {
|
|
10648
|
+
__TYPE__: "SeparatorContent";
|
|
10649
|
+
} | ({
|
|
10650
|
+
content: {
|
|
10651
|
+
type: "tableRow";
|
|
10652
|
+
content: ({
|
|
10653
|
+
type: "tableHeader";
|
|
10654
|
+
content: {
|
|
10655
|
+
__TYPE__: "StructuredTextContent";
|
|
10656
|
+
value: ({
|
|
10657
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13270
10658
|
content: {
|
|
13271
10659
|
text: string;
|
|
13272
10660
|
} & {
|
|
@@ -13326,10 +10714,13 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
13326
10714
|
label?: string;
|
|
13327
10715
|
direction?: string;
|
|
13328
10716
|
})[];
|
|
13329
|
-
}
|
|
13330
|
-
|
|
13331
|
-
|
|
13332
|
-
|
|
10717
|
+
};
|
|
10718
|
+
} | {
|
|
10719
|
+
type: "tableCell";
|
|
10720
|
+
content: {
|
|
10721
|
+
__TYPE__: "StructuredTextContent";
|
|
10722
|
+
value: ({
|
|
10723
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13333
10724
|
content: {
|
|
13334
10725
|
text: string;
|
|
13335
10726
|
} & {
|
|
@@ -13341,188 +10732,55 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
13341
10732
|
id: string;
|
|
13342
10733
|
url: string;
|
|
13343
10734
|
height: string;
|
|
13344
|
-
width: string;
|
|
13345
|
-
size: string;
|
|
13346
|
-
name: string;
|
|
13347
|
-
} & {
|
|
13348
|
-
date?: string | null | undefined;
|
|
13349
|
-
}) | ({
|
|
13350
|
-
__TYPE__: "FileLink";
|
|
13351
|
-
} & {
|
|
13352
|
-
kind: "file";
|
|
13353
|
-
id: string;
|
|
13354
|
-
url: string;
|
|
13355
|
-
name: string;
|
|
13356
|
-
size: string;
|
|
13357
|
-
} & {
|
|
13358
|
-
date?: string | null | undefined;
|
|
13359
|
-
}) | ({
|
|
13360
|
-
__TYPE__: "DocumentLink";
|
|
13361
|
-
} & {
|
|
13362
|
-
id: string;
|
|
13363
|
-
}) | ({
|
|
13364
|
-
__TYPE__: "ExternalLink";
|
|
13365
|
-
} & {
|
|
13366
|
-
url: string;
|
|
13367
|
-
} & {
|
|
13368
|
-
kind?: "web";
|
|
13369
|
-
target?: string | null | undefined;
|
|
13370
|
-
preview?: {
|
|
13371
|
-
title?: string;
|
|
13372
|
-
} | null | undefined;
|
|
13373
|
-
});
|
|
13374
|
-
start: number;
|
|
13375
|
-
end: number;
|
|
13376
|
-
type: "hyperlink";
|
|
13377
|
-
} | {
|
|
13378
|
-
data: string;
|
|
13379
|
-
start: number;
|
|
13380
|
-
end: number;
|
|
13381
|
-
type: "label";
|
|
13382
|
-
} | {
|
|
13383
|
-
start: number;
|
|
13384
|
-
end: number;
|
|
13385
|
-
type: "strong" | "em" | "list-item";
|
|
13386
|
-
})[];
|
|
13387
|
-
};
|
|
13388
|
-
} & {
|
|
13389
|
-
label?: string;
|
|
13390
|
-
direction?: string;
|
|
13391
|
-
})[];
|
|
13392
|
-
})[];
|
|
13393
|
-
}[];
|
|
13394
|
-
})[];
|
|
13395
|
-
} | {
|
|
13396
|
-
__TYPE__: "SeparatorContent";
|
|
13397
|
-
} | ({
|
|
13398
|
-
content: {
|
|
13399
|
-
type: "tableRow";
|
|
13400
|
-
content: ({
|
|
13401
|
-
type: "tableHeader";
|
|
13402
|
-
content: ({
|
|
13403
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
13404
|
-
content: {
|
|
13405
|
-
text: string;
|
|
13406
|
-
} & {
|
|
13407
|
-
spans?: ({
|
|
13408
|
-
data: ({
|
|
13409
|
-
__TYPE__: "ImageLink";
|
|
13410
|
-
} & {
|
|
13411
|
-
kind: "image";
|
|
13412
|
-
id: string;
|
|
13413
|
-
url: string;
|
|
13414
|
-
height: string;
|
|
13415
|
-
width: string;
|
|
13416
|
-
size: string;
|
|
13417
|
-
name: string;
|
|
13418
|
-
} & {
|
|
13419
|
-
date?: string | null | undefined;
|
|
13420
|
-
}) | ({
|
|
13421
|
-
__TYPE__: "FileLink";
|
|
13422
|
-
} & {
|
|
13423
|
-
kind: "file";
|
|
13424
|
-
id: string;
|
|
13425
|
-
url: string;
|
|
13426
|
-
name: string;
|
|
13427
|
-
size: string;
|
|
13428
|
-
} & {
|
|
13429
|
-
date?: string | null | undefined;
|
|
13430
|
-
}) | ({
|
|
13431
|
-
__TYPE__: "DocumentLink";
|
|
13432
|
-
} & {
|
|
13433
|
-
id: string;
|
|
13434
|
-
}) | ({
|
|
13435
|
-
__TYPE__: "ExternalLink";
|
|
13436
|
-
} & {
|
|
13437
|
-
url: string;
|
|
13438
|
-
} & {
|
|
13439
|
-
kind?: "web";
|
|
13440
|
-
target?: string | null | undefined;
|
|
13441
|
-
preview?: {
|
|
13442
|
-
title?: string;
|
|
13443
|
-
} | null | undefined;
|
|
13444
|
-
});
|
|
13445
|
-
start: number;
|
|
13446
|
-
end: number;
|
|
13447
|
-
type: "hyperlink";
|
|
13448
|
-
} | {
|
|
13449
|
-
data: string;
|
|
13450
|
-
start: number;
|
|
13451
|
-
end: number;
|
|
13452
|
-
type: "label";
|
|
13453
|
-
} | {
|
|
13454
|
-
start: number;
|
|
13455
|
-
end: number;
|
|
13456
|
-
type: "strong" | "em" | "list-item";
|
|
13457
|
-
})[];
|
|
13458
|
-
};
|
|
13459
|
-
} & {
|
|
13460
|
-
label?: string;
|
|
13461
|
-
direction?: string;
|
|
13462
|
-
})[];
|
|
13463
|
-
} | {
|
|
13464
|
-
type: "tableCell";
|
|
13465
|
-
content: ({
|
|
13466
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
13467
|
-
content: {
|
|
13468
|
-
text: string;
|
|
10735
|
+
width: string;
|
|
10736
|
+
size: string;
|
|
10737
|
+
name: string;
|
|
10738
|
+
} & {
|
|
10739
|
+
date?: string | null | undefined;
|
|
10740
|
+
}) | ({
|
|
10741
|
+
__TYPE__: "FileLink";
|
|
10742
|
+
} & {
|
|
10743
|
+
kind: "file";
|
|
10744
|
+
id: string;
|
|
10745
|
+
url: string;
|
|
10746
|
+
name: string;
|
|
10747
|
+
size: string;
|
|
10748
|
+
} & {
|
|
10749
|
+
date?: string | null | undefined;
|
|
10750
|
+
}) | ({
|
|
10751
|
+
__TYPE__: "DocumentLink";
|
|
10752
|
+
} & {
|
|
10753
|
+
id: string;
|
|
10754
|
+
}) | ({
|
|
10755
|
+
__TYPE__: "ExternalLink";
|
|
10756
|
+
} & {
|
|
10757
|
+
url: string;
|
|
10758
|
+
} & {
|
|
10759
|
+
kind?: "web";
|
|
10760
|
+
target?: string | null | undefined;
|
|
10761
|
+
preview?: {
|
|
10762
|
+
title?: string;
|
|
10763
|
+
} | null | undefined;
|
|
10764
|
+
});
|
|
10765
|
+
start: number;
|
|
10766
|
+
end: number;
|
|
10767
|
+
type: "hyperlink";
|
|
10768
|
+
} | {
|
|
10769
|
+
data: string;
|
|
10770
|
+
start: number;
|
|
10771
|
+
end: number;
|
|
10772
|
+
type: "label";
|
|
10773
|
+
} | {
|
|
10774
|
+
start: number;
|
|
10775
|
+
end: number;
|
|
10776
|
+
type: "strong" | "em" | "list-item";
|
|
10777
|
+
})[];
|
|
10778
|
+
};
|
|
13469
10779
|
} & {
|
|
13470
|
-
|
|
13471
|
-
|
|
13472
|
-
|
|
13473
|
-
|
|
13474
|
-
kind: "image";
|
|
13475
|
-
id: string;
|
|
13476
|
-
url: string;
|
|
13477
|
-
height: string;
|
|
13478
|
-
width: string;
|
|
13479
|
-
size: string;
|
|
13480
|
-
name: string;
|
|
13481
|
-
} & {
|
|
13482
|
-
date?: string | null | undefined;
|
|
13483
|
-
}) | ({
|
|
13484
|
-
__TYPE__: "FileLink";
|
|
13485
|
-
} & {
|
|
13486
|
-
kind: "file";
|
|
13487
|
-
id: string;
|
|
13488
|
-
url: string;
|
|
13489
|
-
name: string;
|
|
13490
|
-
size: string;
|
|
13491
|
-
} & {
|
|
13492
|
-
date?: string | null | undefined;
|
|
13493
|
-
}) | ({
|
|
13494
|
-
__TYPE__: "DocumentLink";
|
|
13495
|
-
} & {
|
|
13496
|
-
id: string;
|
|
13497
|
-
}) | ({
|
|
13498
|
-
__TYPE__: "ExternalLink";
|
|
13499
|
-
} & {
|
|
13500
|
-
url: string;
|
|
13501
|
-
} & {
|
|
13502
|
-
kind?: "web";
|
|
13503
|
-
target?: string | null | undefined;
|
|
13504
|
-
preview?: {
|
|
13505
|
-
title?: string;
|
|
13506
|
-
} | null | undefined;
|
|
13507
|
-
});
|
|
13508
|
-
start: number;
|
|
13509
|
-
end: number;
|
|
13510
|
-
type: "hyperlink";
|
|
13511
|
-
} | {
|
|
13512
|
-
data: string;
|
|
13513
|
-
start: number;
|
|
13514
|
-
end: number;
|
|
13515
|
-
type: "label";
|
|
13516
|
-
} | {
|
|
13517
|
-
start: number;
|
|
13518
|
-
end: number;
|
|
13519
|
-
type: "strong" | "em" | "list-item";
|
|
13520
|
-
})[];
|
|
13521
|
-
};
|
|
13522
|
-
} & {
|
|
13523
|
-
label?: string;
|
|
13524
|
-
direction?: string;
|
|
13525
|
-
})[];
|
|
10780
|
+
label?: string;
|
|
10781
|
+
direction?: string;
|
|
10782
|
+
})[];
|
|
10783
|
+
};
|
|
13526
10784
|
})[];
|
|
13527
10785
|
}[];
|
|
13528
10786
|
} & {
|
|
@@ -13890,7 +11148,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
13890
11148
|
label?: string | null | undefined;
|
|
13891
11149
|
direction?: string | null | undefined;
|
|
13892
11150
|
}) | ({
|
|
13893
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
11151
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13894
11152
|
content: {
|
|
13895
11153
|
text: string;
|
|
13896
11154
|
} & {
|
|
@@ -13949,14 +11207,18 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
13949
11207
|
} & {
|
|
13950
11208
|
label?: string;
|
|
13951
11209
|
direction?: string;
|
|
13952
|
-
})
|
|
13953
|
-
|
|
13954
|
-
|
|
13955
|
-
|
|
13956
|
-
|
|
13957
|
-
|
|
13958
|
-
|
|
13959
|
-
|
|
11210
|
+
}))[];
|
|
11211
|
+
} | {
|
|
11212
|
+
__TYPE__: "SeparatorContent";
|
|
11213
|
+
} | ({
|
|
11214
|
+
content: {
|
|
11215
|
+
type: "tableRow";
|
|
11216
|
+
content: ({
|
|
11217
|
+
type: "tableHeader";
|
|
11218
|
+
content: {
|
|
11219
|
+
__TYPE__: "StructuredTextContent";
|
|
11220
|
+
value: ({
|
|
11221
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13960
11222
|
content: {
|
|
13961
11223
|
text: string;
|
|
13962
11224
|
} & {
|
|
@@ -14016,10 +11278,13 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
14016
11278
|
label?: string;
|
|
14017
11279
|
direction?: string;
|
|
14018
11280
|
})[];
|
|
14019
|
-
}
|
|
14020
|
-
|
|
14021
|
-
|
|
14022
|
-
|
|
11281
|
+
};
|
|
11282
|
+
} | {
|
|
11283
|
+
type: "tableCell";
|
|
11284
|
+
content: {
|
|
11285
|
+
__TYPE__: "StructuredTextContent";
|
|
11286
|
+
value: ({
|
|
11287
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
14023
11288
|
content: {
|
|
14024
11289
|
text: string;
|
|
14025
11290
|
} & {
|
|
@@ -14079,140 +11344,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
14079
11344
|
label?: string;
|
|
14080
11345
|
direction?: string;
|
|
14081
11346
|
})[];
|
|
14082
|
-
}
|
|
14083
|
-
}[];
|
|
14084
|
-
})[];
|
|
14085
|
-
} | {
|
|
14086
|
-
__TYPE__: "SeparatorContent";
|
|
14087
|
-
} | ({
|
|
14088
|
-
content: {
|
|
14089
|
-
type: "tableRow";
|
|
14090
|
-
content: ({
|
|
14091
|
-
type: "tableHeader";
|
|
14092
|
-
content: ({
|
|
14093
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
14094
|
-
content: {
|
|
14095
|
-
text: string;
|
|
14096
|
-
} & {
|
|
14097
|
-
spans?: ({
|
|
14098
|
-
data: ({
|
|
14099
|
-
__TYPE__: "ImageLink";
|
|
14100
|
-
} & {
|
|
14101
|
-
kind: "image";
|
|
14102
|
-
id: string;
|
|
14103
|
-
url: string;
|
|
14104
|
-
height: string;
|
|
14105
|
-
width: string;
|
|
14106
|
-
size: string;
|
|
14107
|
-
name: string;
|
|
14108
|
-
} & {
|
|
14109
|
-
date?: string | null | undefined;
|
|
14110
|
-
}) | ({
|
|
14111
|
-
__TYPE__: "FileLink";
|
|
14112
|
-
} & {
|
|
14113
|
-
kind: "file";
|
|
14114
|
-
id: string;
|
|
14115
|
-
url: string;
|
|
14116
|
-
name: string;
|
|
14117
|
-
size: string;
|
|
14118
|
-
} & {
|
|
14119
|
-
date?: string | null | undefined;
|
|
14120
|
-
}) | ({
|
|
14121
|
-
__TYPE__: "DocumentLink";
|
|
14122
|
-
} & {
|
|
14123
|
-
id: string;
|
|
14124
|
-
}) | ({
|
|
14125
|
-
__TYPE__: "ExternalLink";
|
|
14126
|
-
} & {
|
|
14127
|
-
url: string;
|
|
14128
|
-
} & {
|
|
14129
|
-
kind?: "web";
|
|
14130
|
-
target?: string | null | undefined;
|
|
14131
|
-
preview?: {
|
|
14132
|
-
title?: string;
|
|
14133
|
-
} | null | undefined;
|
|
14134
|
-
});
|
|
14135
|
-
start: number;
|
|
14136
|
-
end: number;
|
|
14137
|
-
type: "hyperlink";
|
|
14138
|
-
} | {
|
|
14139
|
-
data: string;
|
|
14140
|
-
start: number;
|
|
14141
|
-
end: number;
|
|
14142
|
-
type: "label";
|
|
14143
|
-
} | {
|
|
14144
|
-
start: number;
|
|
14145
|
-
end: number;
|
|
14146
|
-
type: "strong" | "em" | "list-item";
|
|
14147
|
-
})[];
|
|
14148
|
-
};
|
|
14149
|
-
} & {
|
|
14150
|
-
label?: string;
|
|
14151
|
-
direction?: string;
|
|
14152
|
-
})[];
|
|
14153
|
-
} | {
|
|
14154
|
-
type: "tableCell";
|
|
14155
|
-
content: ({
|
|
14156
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
14157
|
-
content: {
|
|
14158
|
-
text: string;
|
|
14159
|
-
} & {
|
|
14160
|
-
spans?: ({
|
|
14161
|
-
data: ({
|
|
14162
|
-
__TYPE__: "ImageLink";
|
|
14163
|
-
} & {
|
|
14164
|
-
kind: "image";
|
|
14165
|
-
id: string;
|
|
14166
|
-
url: string;
|
|
14167
|
-
height: string;
|
|
14168
|
-
width: string;
|
|
14169
|
-
size: string;
|
|
14170
|
-
name: string;
|
|
14171
|
-
} & {
|
|
14172
|
-
date?: string | null | undefined;
|
|
14173
|
-
}) | ({
|
|
14174
|
-
__TYPE__: "FileLink";
|
|
14175
|
-
} & {
|
|
14176
|
-
kind: "file";
|
|
14177
|
-
id: string;
|
|
14178
|
-
url: string;
|
|
14179
|
-
name: string;
|
|
14180
|
-
size: string;
|
|
14181
|
-
} & {
|
|
14182
|
-
date?: string | null | undefined;
|
|
14183
|
-
}) | ({
|
|
14184
|
-
__TYPE__: "DocumentLink";
|
|
14185
|
-
} & {
|
|
14186
|
-
id: string;
|
|
14187
|
-
}) | ({
|
|
14188
|
-
__TYPE__: "ExternalLink";
|
|
14189
|
-
} & {
|
|
14190
|
-
url: string;
|
|
14191
|
-
} & {
|
|
14192
|
-
kind?: "web";
|
|
14193
|
-
target?: string | null | undefined;
|
|
14194
|
-
preview?: {
|
|
14195
|
-
title?: string;
|
|
14196
|
-
} | null | undefined;
|
|
14197
|
-
});
|
|
14198
|
-
start: number;
|
|
14199
|
-
end: number;
|
|
14200
|
-
type: "hyperlink";
|
|
14201
|
-
} | {
|
|
14202
|
-
data: string;
|
|
14203
|
-
start: number;
|
|
14204
|
-
end: number;
|
|
14205
|
-
type: "label";
|
|
14206
|
-
} | {
|
|
14207
|
-
start: number;
|
|
14208
|
-
end: number;
|
|
14209
|
-
type: "strong" | "em" | "list-item";
|
|
14210
|
-
})[];
|
|
14211
|
-
};
|
|
14212
|
-
} & {
|
|
14213
|
-
label?: string;
|
|
14214
|
-
direction?: string;
|
|
14215
|
-
})[];
|
|
11347
|
+
};
|
|
14216
11348
|
})[];
|
|
14217
11349
|
}[];
|
|
14218
11350
|
} & {
|