@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
|
@@ -317,7 +317,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
317
317
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
318
318
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
319
319
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
320
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
320
|
+
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>;
|
|
321
321
|
content: t.IntersectionC<[t.TypeC<{
|
|
322
322
|
text: t.StringC;
|
|
323
323
|
}>, t.PartialC<{
|
|
@@ -426,14 +426,18 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
426
426
|
}>, t.PartialC<{
|
|
427
427
|
label: t.StringC;
|
|
428
428
|
direction: t.StringC;
|
|
429
|
-
}>]
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
429
|
+
}>]>>]>>;
|
|
430
|
+
}>>, t.ExactC<t.TypeC<{
|
|
431
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
432
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
433
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
434
|
+
type: t.LiteralC<"tableRow">;
|
|
435
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
436
|
+
type: t.LiteralC<"tableHeader">;
|
|
437
|
+
content: t.ExactC<t.TypeC<{
|
|
438
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
439
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
440
|
+
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>;
|
|
437
441
|
content: t.IntersectionC<[t.TypeC<{
|
|
438
442
|
text: t.StringC;
|
|
439
443
|
}>, t.PartialC<{
|
|
@@ -543,10 +547,13 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
543
547
|
label: t.StringC;
|
|
544
548
|
direction: t.StringC;
|
|
545
549
|
}>]>>>;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
+
}>>;
|
|
551
|
+
}>>, t.ExactC<t.TypeC<{
|
|
552
|
+
type: t.LiteralC<"tableCell">;
|
|
553
|
+
content: t.ExactC<t.TypeC<{
|
|
554
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
555
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
556
|
+
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>;
|
|
550
557
|
content: t.IntersectionC<[t.TypeC<{
|
|
551
558
|
text: t.StringC;
|
|
552
559
|
}>, t.PartialC<{
|
|
@@ -656,12 +663,12 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
656
663
|
label: t.StringC;
|
|
657
664
|
direction: t.StringC;
|
|
658
665
|
}>]>>>;
|
|
659
|
-
}
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
}>>, t.ExactC<t.TypeC<{
|
|
663
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
666
|
+
}>>;
|
|
667
|
+
}>>]>>;
|
|
668
|
+
}>>>;
|
|
664
669
|
}>>, t.ExactC<t.TypeC<{
|
|
670
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
671
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
665
672
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
666
673
|
type: t.LiteralC<"Link">;
|
|
667
674
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -742,240 +749,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
742
749
|
variant: t.StringC;
|
|
743
750
|
}>]>>]>]>;
|
|
744
751
|
}>>]>>;
|
|
745
|
-
}
|
|
746
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
747
|
-
type: t.LiteralC<"tableRow">;
|
|
748
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
749
|
-
type: t.LiteralC<"tableHeader">;
|
|
750
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
751
|
-
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>;
|
|
752
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
753
|
-
text: t.StringC;
|
|
754
|
-
}>, t.PartialC<{
|
|
755
|
-
spans: t.Type<({
|
|
756
|
-
data: ({
|
|
757
|
-
__TYPE__: "ImageLink";
|
|
758
|
-
} & {
|
|
759
|
-
kind: "image";
|
|
760
|
-
id: string;
|
|
761
|
-
url: string;
|
|
762
|
-
height: string;
|
|
763
|
-
width: string;
|
|
764
|
-
size: string;
|
|
765
|
-
name: string;
|
|
766
|
-
} & {
|
|
767
|
-
date?: string | null | undefined;
|
|
768
|
-
}) | ({
|
|
769
|
-
__TYPE__: "FileLink";
|
|
770
|
-
} & {
|
|
771
|
-
kind: "file";
|
|
772
|
-
id: string;
|
|
773
|
-
url: string;
|
|
774
|
-
name: string;
|
|
775
|
-
size: string;
|
|
776
|
-
} & {
|
|
777
|
-
date?: string | null | undefined;
|
|
778
|
-
}) | ({
|
|
779
|
-
__TYPE__: "DocumentLink";
|
|
780
|
-
} & {
|
|
781
|
-
id: string;
|
|
782
|
-
}) | ({
|
|
783
|
-
__TYPE__: "ExternalLink";
|
|
784
|
-
} & {
|
|
785
|
-
url: string;
|
|
786
|
-
} & {
|
|
787
|
-
kind?: "web";
|
|
788
|
-
target?: string | null | undefined;
|
|
789
|
-
preview?: {
|
|
790
|
-
title?: string;
|
|
791
|
-
} | null | undefined;
|
|
792
|
-
});
|
|
793
|
-
start: number;
|
|
794
|
-
end: number;
|
|
795
|
-
type: "hyperlink";
|
|
796
|
-
} | {
|
|
797
|
-
data: string;
|
|
798
|
-
start: number;
|
|
799
|
-
end: number;
|
|
800
|
-
type: "label";
|
|
801
|
-
} | {
|
|
802
|
-
start: number;
|
|
803
|
-
end: number;
|
|
804
|
-
type: "strong" | "em" | "list-item";
|
|
805
|
-
})[], ({
|
|
806
|
-
data: ({
|
|
807
|
-
__TYPE__: "ImageLink";
|
|
808
|
-
} & {
|
|
809
|
-
kind: "image";
|
|
810
|
-
id: string;
|
|
811
|
-
url: string;
|
|
812
|
-
height: string;
|
|
813
|
-
width: string;
|
|
814
|
-
size: string;
|
|
815
|
-
name: string;
|
|
816
|
-
} & {
|
|
817
|
-
date?: string | null | undefined;
|
|
818
|
-
}) | ({
|
|
819
|
-
__TYPE__: "FileLink";
|
|
820
|
-
} & {
|
|
821
|
-
kind: "file";
|
|
822
|
-
id: string;
|
|
823
|
-
url: string;
|
|
824
|
-
name: string;
|
|
825
|
-
size: string;
|
|
826
|
-
} & {
|
|
827
|
-
date?: string | null | undefined;
|
|
828
|
-
}) | ({
|
|
829
|
-
__TYPE__: "DocumentLink";
|
|
830
|
-
} & {
|
|
831
|
-
id: string;
|
|
832
|
-
}) | ({
|
|
833
|
-
__TYPE__: "ExternalLink";
|
|
834
|
-
} & {
|
|
835
|
-
url: string;
|
|
836
|
-
} & {
|
|
837
|
-
kind?: "web";
|
|
838
|
-
target?: string | null | undefined;
|
|
839
|
-
preview?: {
|
|
840
|
-
title?: string;
|
|
841
|
-
} | null | undefined;
|
|
842
|
-
});
|
|
843
|
-
start: number;
|
|
844
|
-
end: number;
|
|
845
|
-
type: "hyperlink";
|
|
846
|
-
} | {
|
|
847
|
-
data: string;
|
|
848
|
-
start: number;
|
|
849
|
-
end: number;
|
|
850
|
-
type: "label";
|
|
851
|
-
} | {
|
|
852
|
-
start: number;
|
|
853
|
-
end: number;
|
|
854
|
-
type: "strong" | "em" | "list-item";
|
|
855
|
-
})[], unknown>;
|
|
856
|
-
}>]>;
|
|
857
|
-
}>, t.PartialC<{
|
|
858
|
-
label: t.StringC;
|
|
859
|
-
direction: t.StringC;
|
|
860
|
-
}>]>>>;
|
|
861
|
-
}>>, t.ExactC<t.TypeC<{
|
|
862
|
-
type: t.LiteralC<"tableCell">;
|
|
863
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
864
|
-
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>;
|
|
865
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
866
|
-
text: t.StringC;
|
|
867
|
-
}>, t.PartialC<{
|
|
868
|
-
spans: t.Type<({
|
|
869
|
-
data: ({
|
|
870
|
-
__TYPE__: "ImageLink";
|
|
871
|
-
} & {
|
|
872
|
-
kind: "image";
|
|
873
|
-
id: string;
|
|
874
|
-
url: string;
|
|
875
|
-
height: string;
|
|
876
|
-
width: string;
|
|
877
|
-
size: string;
|
|
878
|
-
name: string;
|
|
879
|
-
} & {
|
|
880
|
-
date?: string | null | undefined;
|
|
881
|
-
}) | ({
|
|
882
|
-
__TYPE__: "FileLink";
|
|
883
|
-
} & {
|
|
884
|
-
kind: "file";
|
|
885
|
-
id: string;
|
|
886
|
-
url: string;
|
|
887
|
-
name: string;
|
|
888
|
-
size: string;
|
|
889
|
-
} & {
|
|
890
|
-
date?: string | null | undefined;
|
|
891
|
-
}) | ({
|
|
892
|
-
__TYPE__: "DocumentLink";
|
|
893
|
-
} & {
|
|
894
|
-
id: string;
|
|
895
|
-
}) | ({
|
|
896
|
-
__TYPE__: "ExternalLink";
|
|
897
|
-
} & {
|
|
898
|
-
url: string;
|
|
899
|
-
} & {
|
|
900
|
-
kind?: "web";
|
|
901
|
-
target?: string | null | undefined;
|
|
902
|
-
preview?: {
|
|
903
|
-
title?: string;
|
|
904
|
-
} | null | undefined;
|
|
905
|
-
});
|
|
906
|
-
start: number;
|
|
907
|
-
end: number;
|
|
908
|
-
type: "hyperlink";
|
|
909
|
-
} | {
|
|
910
|
-
data: string;
|
|
911
|
-
start: number;
|
|
912
|
-
end: number;
|
|
913
|
-
type: "label";
|
|
914
|
-
} | {
|
|
915
|
-
start: number;
|
|
916
|
-
end: number;
|
|
917
|
-
type: "strong" | "em" | "list-item";
|
|
918
|
-
})[], ({
|
|
919
|
-
data: ({
|
|
920
|
-
__TYPE__: "ImageLink";
|
|
921
|
-
} & {
|
|
922
|
-
kind: "image";
|
|
923
|
-
id: string;
|
|
924
|
-
url: string;
|
|
925
|
-
height: string;
|
|
926
|
-
width: string;
|
|
927
|
-
size: string;
|
|
928
|
-
name: string;
|
|
929
|
-
} & {
|
|
930
|
-
date?: string | null | undefined;
|
|
931
|
-
}) | ({
|
|
932
|
-
__TYPE__: "FileLink";
|
|
933
|
-
} & {
|
|
934
|
-
kind: "file";
|
|
935
|
-
id: string;
|
|
936
|
-
url: string;
|
|
937
|
-
name: string;
|
|
938
|
-
size: string;
|
|
939
|
-
} & {
|
|
940
|
-
date?: string | null | undefined;
|
|
941
|
-
}) | ({
|
|
942
|
-
__TYPE__: "DocumentLink";
|
|
943
|
-
} & {
|
|
944
|
-
id: string;
|
|
945
|
-
}) | ({
|
|
946
|
-
__TYPE__: "ExternalLink";
|
|
947
|
-
} & {
|
|
948
|
-
url: string;
|
|
949
|
-
} & {
|
|
950
|
-
kind?: "web";
|
|
951
|
-
target?: string | null | undefined;
|
|
952
|
-
preview?: {
|
|
953
|
-
title?: string;
|
|
954
|
-
} | null | undefined;
|
|
955
|
-
});
|
|
956
|
-
start: number;
|
|
957
|
-
end: number;
|
|
958
|
-
type: "hyperlink";
|
|
959
|
-
} | {
|
|
960
|
-
data: string;
|
|
961
|
-
start: number;
|
|
962
|
-
end: number;
|
|
963
|
-
type: "label";
|
|
964
|
-
} | {
|
|
965
|
-
start: number;
|
|
966
|
-
end: number;
|
|
967
|
-
type: "strong" | "em" | "list-item";
|
|
968
|
-
})[], unknown>;
|
|
969
|
-
}>]>;
|
|
970
|
-
}>, t.PartialC<{
|
|
971
|
-
label: t.StringC;
|
|
972
|
-
direction: t.StringC;
|
|
973
|
-
}>]>>>;
|
|
974
|
-
}>>]>>;
|
|
975
|
-
}>>>;
|
|
976
|
-
}>>, t.ExactC<t.TypeC<{
|
|
977
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
978
|
-
}>>]>]>, t.TypeC<{
|
|
752
|
+
}>>]>, t.TypeC<{
|
|
979
753
|
__TYPE__: t.LiteralC<"UIDContent">;
|
|
980
754
|
value: t.StringC;
|
|
981
755
|
}>, t.TypeC<{
|
|
@@ -1302,7 +1076,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1302
1076
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1303
1077
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1304
1078
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1305
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
1079
|
+
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>;
|
|
1306
1080
|
content: t.IntersectionC<[t.TypeC<{
|
|
1307
1081
|
text: t.StringC;
|
|
1308
1082
|
}>, t.PartialC<{
|
|
@@ -1411,14 +1185,18 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1411
1185
|
}>, t.PartialC<{
|
|
1412
1186
|
label: t.StringC;
|
|
1413
1187
|
direction: t.StringC;
|
|
1414
|
-
}>]
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1188
|
+
}>]>>]>>;
|
|
1189
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1190
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1191
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1192
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1193
|
+
type: t.LiteralC<"tableRow">;
|
|
1194
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1195
|
+
type: t.LiteralC<"tableHeader">;
|
|
1196
|
+
content: t.ExactC<t.TypeC<{
|
|
1197
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
1198
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1199
|
+
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>;
|
|
1422
1200
|
content: t.IntersectionC<[t.TypeC<{
|
|
1423
1201
|
text: t.StringC;
|
|
1424
1202
|
}>, t.PartialC<{
|
|
@@ -1528,10 +1306,13 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1528
1306
|
label: t.StringC;
|
|
1529
1307
|
direction: t.StringC;
|
|
1530
1308
|
}>]>>>;
|
|
1531
|
-
}
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1309
|
+
}>>;
|
|
1310
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1311
|
+
type: t.LiteralC<"tableCell">;
|
|
1312
|
+
content: t.ExactC<t.TypeC<{
|
|
1313
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
1314
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1315
|
+
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>;
|
|
1535
1316
|
content: t.IntersectionC<[t.TypeC<{
|
|
1536
1317
|
text: t.StringC;
|
|
1537
1318
|
}>, t.PartialC<{
|
|
@@ -1641,12 +1422,12 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1641
1422
|
label: t.StringC;
|
|
1642
1423
|
direction: t.StringC;
|
|
1643
1424
|
}>]>>>;
|
|
1644
|
-
}
|
|
1645
|
-
}
|
|
1646
|
-
}
|
|
1647
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1648
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1425
|
+
}>>;
|
|
1426
|
+
}>>]>>;
|
|
1427
|
+
}>>>;
|
|
1649
1428
|
}>>, t.ExactC<t.TypeC<{
|
|
1429
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
1430
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1650
1431
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
1651
1432
|
type: t.LiteralC<"Link">;
|
|
1652
1433
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -1727,240 +1508,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1727
1508
|
variant: t.StringC;
|
|
1728
1509
|
}>]>>]>]>;
|
|
1729
1510
|
}>>]>>;
|
|
1730
|
-
}
|
|
1731
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1732
|
-
type: t.LiteralC<"tableRow">;
|
|
1733
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1734
|
-
type: t.LiteralC<"tableHeader">;
|
|
1735
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1736
|
-
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>;
|
|
1737
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
1738
|
-
text: t.StringC;
|
|
1739
|
-
}>, t.PartialC<{
|
|
1740
|
-
spans: t.Type<({
|
|
1741
|
-
data: ({
|
|
1742
|
-
__TYPE__: "ImageLink";
|
|
1743
|
-
} & {
|
|
1744
|
-
kind: "image";
|
|
1745
|
-
id: string;
|
|
1746
|
-
url: string;
|
|
1747
|
-
height: string;
|
|
1748
|
-
width: string;
|
|
1749
|
-
size: string;
|
|
1750
|
-
name: string;
|
|
1751
|
-
} & {
|
|
1752
|
-
date?: string | null | undefined;
|
|
1753
|
-
}) | ({
|
|
1754
|
-
__TYPE__: "FileLink";
|
|
1755
|
-
} & {
|
|
1756
|
-
kind: "file";
|
|
1757
|
-
id: string;
|
|
1758
|
-
url: string;
|
|
1759
|
-
name: string;
|
|
1760
|
-
size: string;
|
|
1761
|
-
} & {
|
|
1762
|
-
date?: string | null | undefined;
|
|
1763
|
-
}) | ({
|
|
1764
|
-
__TYPE__: "DocumentLink";
|
|
1765
|
-
} & {
|
|
1766
|
-
id: string;
|
|
1767
|
-
}) | ({
|
|
1768
|
-
__TYPE__: "ExternalLink";
|
|
1769
|
-
} & {
|
|
1770
|
-
url: string;
|
|
1771
|
-
} & {
|
|
1772
|
-
kind?: "web";
|
|
1773
|
-
target?: string | null | undefined;
|
|
1774
|
-
preview?: {
|
|
1775
|
-
title?: string;
|
|
1776
|
-
} | null | undefined;
|
|
1777
|
-
});
|
|
1778
|
-
start: number;
|
|
1779
|
-
end: number;
|
|
1780
|
-
type: "hyperlink";
|
|
1781
|
-
} | {
|
|
1782
|
-
data: string;
|
|
1783
|
-
start: number;
|
|
1784
|
-
end: number;
|
|
1785
|
-
type: "label";
|
|
1786
|
-
} | {
|
|
1787
|
-
start: number;
|
|
1788
|
-
end: number;
|
|
1789
|
-
type: "strong" | "em" | "list-item";
|
|
1790
|
-
})[], ({
|
|
1791
|
-
data: ({
|
|
1792
|
-
__TYPE__: "ImageLink";
|
|
1793
|
-
} & {
|
|
1794
|
-
kind: "image";
|
|
1795
|
-
id: string;
|
|
1796
|
-
url: string;
|
|
1797
|
-
height: string;
|
|
1798
|
-
width: string;
|
|
1799
|
-
size: string;
|
|
1800
|
-
name: string;
|
|
1801
|
-
} & {
|
|
1802
|
-
date?: string | null | undefined;
|
|
1803
|
-
}) | ({
|
|
1804
|
-
__TYPE__: "FileLink";
|
|
1805
|
-
} & {
|
|
1806
|
-
kind: "file";
|
|
1807
|
-
id: string;
|
|
1808
|
-
url: string;
|
|
1809
|
-
name: string;
|
|
1810
|
-
size: string;
|
|
1811
|
-
} & {
|
|
1812
|
-
date?: string | null | undefined;
|
|
1813
|
-
}) | ({
|
|
1814
|
-
__TYPE__: "DocumentLink";
|
|
1815
|
-
} & {
|
|
1816
|
-
id: string;
|
|
1817
|
-
}) | ({
|
|
1818
|
-
__TYPE__: "ExternalLink";
|
|
1819
|
-
} & {
|
|
1820
|
-
url: string;
|
|
1821
|
-
} & {
|
|
1822
|
-
kind?: "web";
|
|
1823
|
-
target?: string | null | undefined;
|
|
1824
|
-
preview?: {
|
|
1825
|
-
title?: string;
|
|
1826
|
-
} | null | undefined;
|
|
1827
|
-
});
|
|
1828
|
-
start: number;
|
|
1829
|
-
end: number;
|
|
1830
|
-
type: "hyperlink";
|
|
1831
|
-
} | {
|
|
1832
|
-
data: string;
|
|
1833
|
-
start: number;
|
|
1834
|
-
end: number;
|
|
1835
|
-
type: "label";
|
|
1836
|
-
} | {
|
|
1837
|
-
start: number;
|
|
1838
|
-
end: number;
|
|
1839
|
-
type: "strong" | "em" | "list-item";
|
|
1840
|
-
})[], unknown>;
|
|
1841
|
-
}>]>;
|
|
1842
|
-
}>, t.PartialC<{
|
|
1843
|
-
label: t.StringC;
|
|
1844
|
-
direction: t.StringC;
|
|
1845
|
-
}>]>>>;
|
|
1846
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1847
|
-
type: t.LiteralC<"tableCell">;
|
|
1848
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1849
|
-
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>;
|
|
1850
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
1851
|
-
text: t.StringC;
|
|
1852
|
-
}>, t.PartialC<{
|
|
1853
|
-
spans: t.Type<({
|
|
1854
|
-
data: ({
|
|
1855
|
-
__TYPE__: "ImageLink";
|
|
1856
|
-
} & {
|
|
1857
|
-
kind: "image";
|
|
1858
|
-
id: string;
|
|
1859
|
-
url: string;
|
|
1860
|
-
height: string;
|
|
1861
|
-
width: string;
|
|
1862
|
-
size: string;
|
|
1863
|
-
name: string;
|
|
1864
|
-
} & {
|
|
1865
|
-
date?: string | null | undefined;
|
|
1866
|
-
}) | ({
|
|
1867
|
-
__TYPE__: "FileLink";
|
|
1868
|
-
} & {
|
|
1869
|
-
kind: "file";
|
|
1870
|
-
id: string;
|
|
1871
|
-
url: string;
|
|
1872
|
-
name: string;
|
|
1873
|
-
size: string;
|
|
1874
|
-
} & {
|
|
1875
|
-
date?: string | null | undefined;
|
|
1876
|
-
}) | ({
|
|
1877
|
-
__TYPE__: "DocumentLink";
|
|
1878
|
-
} & {
|
|
1879
|
-
id: string;
|
|
1880
|
-
}) | ({
|
|
1881
|
-
__TYPE__: "ExternalLink";
|
|
1882
|
-
} & {
|
|
1883
|
-
url: string;
|
|
1884
|
-
} & {
|
|
1885
|
-
kind?: "web";
|
|
1886
|
-
target?: string | null | undefined;
|
|
1887
|
-
preview?: {
|
|
1888
|
-
title?: string;
|
|
1889
|
-
} | null | undefined;
|
|
1890
|
-
});
|
|
1891
|
-
start: number;
|
|
1892
|
-
end: number;
|
|
1893
|
-
type: "hyperlink";
|
|
1894
|
-
} | {
|
|
1895
|
-
data: string;
|
|
1896
|
-
start: number;
|
|
1897
|
-
end: number;
|
|
1898
|
-
type: "label";
|
|
1899
|
-
} | {
|
|
1900
|
-
start: number;
|
|
1901
|
-
end: number;
|
|
1902
|
-
type: "strong" | "em" | "list-item";
|
|
1903
|
-
})[], ({
|
|
1904
|
-
data: ({
|
|
1905
|
-
__TYPE__: "ImageLink";
|
|
1906
|
-
} & {
|
|
1907
|
-
kind: "image";
|
|
1908
|
-
id: string;
|
|
1909
|
-
url: string;
|
|
1910
|
-
height: string;
|
|
1911
|
-
width: string;
|
|
1912
|
-
size: string;
|
|
1913
|
-
name: string;
|
|
1914
|
-
} & {
|
|
1915
|
-
date?: string | null | undefined;
|
|
1916
|
-
}) | ({
|
|
1917
|
-
__TYPE__: "FileLink";
|
|
1918
|
-
} & {
|
|
1919
|
-
kind: "file";
|
|
1920
|
-
id: string;
|
|
1921
|
-
url: string;
|
|
1922
|
-
name: string;
|
|
1923
|
-
size: string;
|
|
1924
|
-
} & {
|
|
1925
|
-
date?: string | null | undefined;
|
|
1926
|
-
}) | ({
|
|
1927
|
-
__TYPE__: "DocumentLink";
|
|
1928
|
-
} & {
|
|
1929
|
-
id: string;
|
|
1930
|
-
}) | ({
|
|
1931
|
-
__TYPE__: "ExternalLink";
|
|
1932
|
-
} & {
|
|
1933
|
-
url: string;
|
|
1934
|
-
} & {
|
|
1935
|
-
kind?: "web";
|
|
1936
|
-
target?: string | null | undefined;
|
|
1937
|
-
preview?: {
|
|
1938
|
-
title?: string;
|
|
1939
|
-
} | null | undefined;
|
|
1940
|
-
});
|
|
1941
|
-
start: number;
|
|
1942
|
-
end: number;
|
|
1943
|
-
type: "hyperlink";
|
|
1944
|
-
} | {
|
|
1945
|
-
data: string;
|
|
1946
|
-
start: number;
|
|
1947
|
-
end: number;
|
|
1948
|
-
type: "label";
|
|
1949
|
-
} | {
|
|
1950
|
-
start: number;
|
|
1951
|
-
end: number;
|
|
1952
|
-
type: "strong" | "em" | "list-item";
|
|
1953
|
-
})[], unknown>;
|
|
1954
|
-
}>]>;
|
|
1955
|
-
}>, t.PartialC<{
|
|
1956
|
-
label: t.StringC;
|
|
1957
|
-
direction: t.StringC;
|
|
1958
|
-
}>]>>>;
|
|
1959
|
-
}>>]>>;
|
|
1960
|
-
}>>>;
|
|
1961
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1962
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
1963
|
-
}>>]>]>>;
|
|
1511
|
+
}>>]>>;
|
|
1964
1512
|
repeat: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1965
1513
|
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
1966
1514
|
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2279,7 +1827,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2279
1827
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2280
1828
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2281
1829
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2282
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
1830
|
+
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>;
|
|
2283
1831
|
content: t.IntersectionC<[t.TypeC<{
|
|
2284
1832
|
text: t.StringC;
|
|
2285
1833
|
}>, t.PartialC<{
|
|
@@ -2388,16 +1936,20 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2388
1936
|
}>, t.PartialC<{
|
|
2389
1937
|
label: t.StringC;
|
|
2390
1938
|
direction: t.StringC;
|
|
2391
|
-
}>]
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
1939
|
+
}>]>>]>>;
|
|
1940
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1941
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1942
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1943
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1944
|
+
type: t.LiteralC<"tableRow">;
|
|
1945
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
1946
|
+
type: t.LiteralC<"tableHeader">;
|
|
1947
|
+
content: t.ExactC<t.TypeC<{
|
|
1948
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
1949
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1950
|
+
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>;
|
|
1951
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
1952
|
+
text: t.StringC;
|
|
2401
1953
|
}>, t.PartialC<{
|
|
2402
1954
|
spans: t.Type<({
|
|
2403
1955
|
data: ({
|
|
@@ -2505,10 +2057,13 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2505
2057
|
label: t.StringC;
|
|
2506
2058
|
direction: t.StringC;
|
|
2507
2059
|
}>]>>>;
|
|
2508
|
-
}
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2060
|
+
}>>;
|
|
2061
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2062
|
+
type: t.LiteralC<"tableCell">;
|
|
2063
|
+
content: t.ExactC<t.TypeC<{
|
|
2064
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2065
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2066
|
+
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>;
|
|
2512
2067
|
content: t.IntersectionC<[t.TypeC<{
|
|
2513
2068
|
text: t.StringC;
|
|
2514
2069
|
}>, t.PartialC<{
|
|
@@ -2618,12 +2173,12 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2618
2173
|
label: t.StringC;
|
|
2619
2174
|
direction: t.StringC;
|
|
2620
2175
|
}>]>>>;
|
|
2621
|
-
}
|
|
2622
|
-
}
|
|
2623
|
-
}
|
|
2624
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2625
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2176
|
+
}>>;
|
|
2177
|
+
}>>]>>;
|
|
2178
|
+
}>>>;
|
|
2626
2179
|
}>>, t.ExactC<t.TypeC<{
|
|
2180
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
2181
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
2627
2182
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
2628
2183
|
type: t.LiteralC<"Link">;
|
|
2629
2184
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -2704,240 +2259,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2704
2259
|
variant: t.StringC;
|
|
2705
2260
|
}>]>>]>]>;
|
|
2706
2261
|
}>>]>>;
|
|
2707
|
-
}
|
|
2708
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
2709
|
-
type: t.LiteralC<"tableRow">;
|
|
2710
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
2711
|
-
type: t.LiteralC<"tableHeader">;
|
|
2712
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2713
|
-
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>;
|
|
2714
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
2715
|
-
text: t.StringC;
|
|
2716
|
-
}>, t.PartialC<{
|
|
2717
|
-
spans: t.Type<({
|
|
2718
|
-
data: ({
|
|
2719
|
-
__TYPE__: "ImageLink";
|
|
2720
|
-
} & {
|
|
2721
|
-
kind: "image";
|
|
2722
|
-
id: string;
|
|
2723
|
-
url: string;
|
|
2724
|
-
height: string;
|
|
2725
|
-
width: string;
|
|
2726
|
-
size: string;
|
|
2727
|
-
name: string;
|
|
2728
|
-
} & {
|
|
2729
|
-
date?: string | null | undefined;
|
|
2730
|
-
}) | ({
|
|
2731
|
-
__TYPE__: "FileLink";
|
|
2732
|
-
} & {
|
|
2733
|
-
kind: "file";
|
|
2734
|
-
id: string;
|
|
2735
|
-
url: string;
|
|
2736
|
-
name: string;
|
|
2737
|
-
size: string;
|
|
2738
|
-
} & {
|
|
2739
|
-
date?: string | null | undefined;
|
|
2740
|
-
}) | ({
|
|
2741
|
-
__TYPE__: "DocumentLink";
|
|
2742
|
-
} & {
|
|
2743
|
-
id: string;
|
|
2744
|
-
}) | ({
|
|
2745
|
-
__TYPE__: "ExternalLink";
|
|
2746
|
-
} & {
|
|
2747
|
-
url: string;
|
|
2748
|
-
} & {
|
|
2749
|
-
kind?: "web";
|
|
2750
|
-
target?: string | null | undefined;
|
|
2751
|
-
preview?: {
|
|
2752
|
-
title?: string;
|
|
2753
|
-
} | null | undefined;
|
|
2754
|
-
});
|
|
2755
|
-
start: number;
|
|
2756
|
-
end: number;
|
|
2757
|
-
type: "hyperlink";
|
|
2758
|
-
} | {
|
|
2759
|
-
data: string;
|
|
2760
|
-
start: number;
|
|
2761
|
-
end: number;
|
|
2762
|
-
type: "label";
|
|
2763
|
-
} | {
|
|
2764
|
-
start: number;
|
|
2765
|
-
end: number;
|
|
2766
|
-
type: "strong" | "em" | "list-item";
|
|
2767
|
-
})[], ({
|
|
2768
|
-
data: ({
|
|
2769
|
-
__TYPE__: "ImageLink";
|
|
2770
|
-
} & {
|
|
2771
|
-
kind: "image";
|
|
2772
|
-
id: string;
|
|
2773
|
-
url: string;
|
|
2774
|
-
height: string;
|
|
2775
|
-
width: string;
|
|
2776
|
-
size: string;
|
|
2777
|
-
name: string;
|
|
2778
|
-
} & {
|
|
2779
|
-
date?: string | null | undefined;
|
|
2780
|
-
}) | ({
|
|
2781
|
-
__TYPE__: "FileLink";
|
|
2782
|
-
} & {
|
|
2783
|
-
kind: "file";
|
|
2784
|
-
id: string;
|
|
2785
|
-
url: string;
|
|
2786
|
-
name: string;
|
|
2787
|
-
size: string;
|
|
2788
|
-
} & {
|
|
2789
|
-
date?: string | null | undefined;
|
|
2790
|
-
}) | ({
|
|
2791
|
-
__TYPE__: "DocumentLink";
|
|
2792
|
-
} & {
|
|
2793
|
-
id: string;
|
|
2794
|
-
}) | ({
|
|
2795
|
-
__TYPE__: "ExternalLink";
|
|
2796
|
-
} & {
|
|
2797
|
-
url: string;
|
|
2798
|
-
} & {
|
|
2799
|
-
kind?: "web";
|
|
2800
|
-
target?: string | null | undefined;
|
|
2801
|
-
preview?: {
|
|
2802
|
-
title?: string;
|
|
2803
|
-
} | null | undefined;
|
|
2804
|
-
});
|
|
2805
|
-
start: number;
|
|
2806
|
-
end: number;
|
|
2807
|
-
type: "hyperlink";
|
|
2808
|
-
} | {
|
|
2809
|
-
data: string;
|
|
2810
|
-
start: number;
|
|
2811
|
-
end: number;
|
|
2812
|
-
type: "label";
|
|
2813
|
-
} | {
|
|
2814
|
-
start: number;
|
|
2815
|
-
end: number;
|
|
2816
|
-
type: "strong" | "em" | "list-item";
|
|
2817
|
-
})[], unknown>;
|
|
2818
|
-
}>]>;
|
|
2819
|
-
}>, t.PartialC<{
|
|
2820
|
-
label: t.StringC;
|
|
2821
|
-
direction: t.StringC;
|
|
2822
|
-
}>]>>>;
|
|
2823
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2824
|
-
type: t.LiteralC<"tableCell">;
|
|
2825
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2826
|
-
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>;
|
|
2827
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
2828
|
-
text: t.StringC;
|
|
2829
|
-
}>, t.PartialC<{
|
|
2830
|
-
spans: t.Type<({
|
|
2831
|
-
data: ({
|
|
2832
|
-
__TYPE__: "ImageLink";
|
|
2833
|
-
} & {
|
|
2834
|
-
kind: "image";
|
|
2835
|
-
id: string;
|
|
2836
|
-
url: string;
|
|
2837
|
-
height: string;
|
|
2838
|
-
width: string;
|
|
2839
|
-
size: string;
|
|
2840
|
-
name: string;
|
|
2841
|
-
} & {
|
|
2842
|
-
date?: string | null | undefined;
|
|
2843
|
-
}) | ({
|
|
2844
|
-
__TYPE__: "FileLink";
|
|
2845
|
-
} & {
|
|
2846
|
-
kind: "file";
|
|
2847
|
-
id: string;
|
|
2848
|
-
url: string;
|
|
2849
|
-
name: string;
|
|
2850
|
-
size: string;
|
|
2851
|
-
} & {
|
|
2852
|
-
date?: string | null | undefined;
|
|
2853
|
-
}) | ({
|
|
2854
|
-
__TYPE__: "DocumentLink";
|
|
2855
|
-
} & {
|
|
2856
|
-
id: string;
|
|
2857
|
-
}) | ({
|
|
2858
|
-
__TYPE__: "ExternalLink";
|
|
2859
|
-
} & {
|
|
2860
|
-
url: string;
|
|
2861
|
-
} & {
|
|
2862
|
-
kind?: "web";
|
|
2863
|
-
target?: string | null | undefined;
|
|
2864
|
-
preview?: {
|
|
2865
|
-
title?: string;
|
|
2866
|
-
} | null | undefined;
|
|
2867
|
-
});
|
|
2868
|
-
start: number;
|
|
2869
|
-
end: number;
|
|
2870
|
-
type: "hyperlink";
|
|
2871
|
-
} | {
|
|
2872
|
-
data: string;
|
|
2873
|
-
start: number;
|
|
2874
|
-
end: number;
|
|
2875
|
-
type: "label";
|
|
2876
|
-
} | {
|
|
2877
|
-
start: number;
|
|
2878
|
-
end: number;
|
|
2879
|
-
type: "strong" | "em" | "list-item";
|
|
2880
|
-
})[], ({
|
|
2881
|
-
data: ({
|
|
2882
|
-
__TYPE__: "ImageLink";
|
|
2883
|
-
} & {
|
|
2884
|
-
kind: "image";
|
|
2885
|
-
id: string;
|
|
2886
|
-
url: string;
|
|
2887
|
-
height: string;
|
|
2888
|
-
width: string;
|
|
2889
|
-
size: string;
|
|
2890
|
-
name: string;
|
|
2891
|
-
} & {
|
|
2892
|
-
date?: string | null | undefined;
|
|
2893
|
-
}) | ({
|
|
2894
|
-
__TYPE__: "FileLink";
|
|
2895
|
-
} & {
|
|
2896
|
-
kind: "file";
|
|
2897
|
-
id: string;
|
|
2898
|
-
url: string;
|
|
2899
|
-
name: string;
|
|
2900
|
-
size: string;
|
|
2901
|
-
} & {
|
|
2902
|
-
date?: string | null | undefined;
|
|
2903
|
-
}) | ({
|
|
2904
|
-
__TYPE__: "DocumentLink";
|
|
2905
|
-
} & {
|
|
2906
|
-
id: string;
|
|
2907
|
-
}) | ({
|
|
2908
|
-
__TYPE__: "ExternalLink";
|
|
2909
|
-
} & {
|
|
2910
|
-
url: string;
|
|
2911
|
-
} & {
|
|
2912
|
-
kind?: "web";
|
|
2913
|
-
target?: string | null | undefined;
|
|
2914
|
-
preview?: {
|
|
2915
|
-
title?: string;
|
|
2916
|
-
} | null | undefined;
|
|
2917
|
-
});
|
|
2918
|
-
start: number;
|
|
2919
|
-
end: number;
|
|
2920
|
-
type: "hyperlink";
|
|
2921
|
-
} | {
|
|
2922
|
-
data: string;
|
|
2923
|
-
start: number;
|
|
2924
|
-
end: number;
|
|
2925
|
-
type: "label";
|
|
2926
|
-
} | {
|
|
2927
|
-
start: number;
|
|
2928
|
-
end: number;
|
|
2929
|
-
type: "strong" | "em" | "list-item";
|
|
2930
|
-
})[], unknown>;
|
|
2931
|
-
}>]>;
|
|
2932
|
-
}>, t.PartialC<{
|
|
2933
|
-
label: t.StringC;
|
|
2934
|
-
direction: t.StringC;
|
|
2935
|
-
}>]>>>;
|
|
2936
|
-
}>>]>>;
|
|
2937
|
-
}>>>;
|
|
2938
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2939
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
2940
|
-
}>>]>]>, t.Type<GroupContent, GroupContent, unknown>]>]>>;
|
|
2262
|
+
}>>]>, t.Type<GroupContent, GroupContent, unknown>]>]>>;
|
|
2941
2263
|
}>>>;
|
|
2942
2264
|
}>>, t.ExactC<t.TypeC<{
|
|
2943
2265
|
__TYPE__: t.LiteralC<"SharedSliceContent">;
|
|
@@ -3258,7 +2580,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
3258
2580
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3259
2581
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3260
2582
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3261
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
2583
|
+
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>;
|
|
3262
2584
|
content: t.IntersectionC<[t.TypeC<{
|
|
3263
2585
|
text: t.StringC;
|
|
3264
2586
|
}>, t.PartialC<{
|
|
@@ -3367,16 +2689,20 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
3367
2689
|
}>, t.PartialC<{
|
|
3368
2690
|
label: t.StringC;
|
|
3369
2691
|
direction: t.StringC;
|
|
3370
|
-
}>]
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
2692
|
+
}>]>>]>>;
|
|
2693
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2694
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2695
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2696
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
2697
|
+
type: t.LiteralC<"tableRow">;
|
|
2698
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
2699
|
+
type: t.LiteralC<"tableHeader">;
|
|
2700
|
+
content: t.ExactC<t.TypeC<{
|
|
2701
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2702
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2703
|
+
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>;
|
|
2704
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
2705
|
+
text: t.StringC;
|
|
3380
2706
|
}>, t.PartialC<{
|
|
3381
2707
|
spans: t.Type<({
|
|
3382
2708
|
data: ({
|
|
@@ -3484,10 +2810,13 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
3484
2810
|
label: t.StringC;
|
|
3485
2811
|
direction: t.StringC;
|
|
3486
2812
|
}>]>>>;
|
|
3487
|
-
}
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
2813
|
+
}>>;
|
|
2814
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2815
|
+
type: t.LiteralC<"tableCell">;
|
|
2816
|
+
content: t.ExactC<t.TypeC<{
|
|
2817
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2818
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2819
|
+
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>;
|
|
3491
2820
|
content: t.IntersectionC<[t.TypeC<{
|
|
3492
2821
|
text: t.StringC;
|
|
3493
2822
|
}>, t.PartialC<{
|
|
@@ -3597,12 +2926,12 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
3597
2926
|
label: t.StringC;
|
|
3598
2927
|
direction: t.StringC;
|
|
3599
2928
|
}>]>>>;
|
|
3600
|
-
}
|
|
3601
|
-
}
|
|
3602
|
-
}
|
|
3603
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3604
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2929
|
+
}>>;
|
|
2930
|
+
}>>]>>;
|
|
2931
|
+
}>>>;
|
|
3605
2932
|
}>>, t.ExactC<t.TypeC<{
|
|
2933
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
2934
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
3606
2935
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
3607
2936
|
type: t.LiteralC<"Link">;
|
|
3608
2937
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -3683,240 +3012,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
3683
3012
|
variant: t.StringC;
|
|
3684
3013
|
}>]>>]>]>;
|
|
3685
3014
|
}>>]>>;
|
|
3686
|
-
}
|
|
3687
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3688
|
-
type: t.LiteralC<"tableRow">;
|
|
3689
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
3690
|
-
type: t.LiteralC<"tableHeader">;
|
|
3691
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3692
|
-
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>;
|
|
3693
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
3694
|
-
text: t.StringC;
|
|
3695
|
-
}>, t.PartialC<{
|
|
3696
|
-
spans: t.Type<({
|
|
3697
|
-
data: ({
|
|
3698
|
-
__TYPE__: "ImageLink";
|
|
3699
|
-
} & {
|
|
3700
|
-
kind: "image";
|
|
3701
|
-
id: string;
|
|
3702
|
-
url: string;
|
|
3703
|
-
height: string;
|
|
3704
|
-
width: string;
|
|
3705
|
-
size: string;
|
|
3706
|
-
name: string;
|
|
3707
|
-
} & {
|
|
3708
|
-
date?: string | null | undefined;
|
|
3709
|
-
}) | ({
|
|
3710
|
-
__TYPE__: "FileLink";
|
|
3711
|
-
} & {
|
|
3712
|
-
kind: "file";
|
|
3713
|
-
id: string;
|
|
3714
|
-
url: string;
|
|
3715
|
-
name: string;
|
|
3716
|
-
size: string;
|
|
3717
|
-
} & {
|
|
3718
|
-
date?: string | null | undefined;
|
|
3719
|
-
}) | ({
|
|
3720
|
-
__TYPE__: "DocumentLink";
|
|
3721
|
-
} & {
|
|
3722
|
-
id: string;
|
|
3723
|
-
}) | ({
|
|
3724
|
-
__TYPE__: "ExternalLink";
|
|
3725
|
-
} & {
|
|
3726
|
-
url: string;
|
|
3727
|
-
} & {
|
|
3728
|
-
kind?: "web";
|
|
3729
|
-
target?: string | null | undefined;
|
|
3730
|
-
preview?: {
|
|
3731
|
-
title?: string;
|
|
3732
|
-
} | null | undefined;
|
|
3733
|
-
});
|
|
3734
|
-
start: number;
|
|
3735
|
-
end: number;
|
|
3736
|
-
type: "hyperlink";
|
|
3737
|
-
} | {
|
|
3738
|
-
data: string;
|
|
3739
|
-
start: number;
|
|
3740
|
-
end: number;
|
|
3741
|
-
type: "label";
|
|
3742
|
-
} | {
|
|
3743
|
-
start: number;
|
|
3744
|
-
end: number;
|
|
3745
|
-
type: "strong" | "em" | "list-item";
|
|
3746
|
-
})[], ({
|
|
3747
|
-
data: ({
|
|
3748
|
-
__TYPE__: "ImageLink";
|
|
3749
|
-
} & {
|
|
3750
|
-
kind: "image";
|
|
3751
|
-
id: string;
|
|
3752
|
-
url: string;
|
|
3753
|
-
height: string;
|
|
3754
|
-
width: string;
|
|
3755
|
-
size: string;
|
|
3756
|
-
name: string;
|
|
3757
|
-
} & {
|
|
3758
|
-
date?: string | null | undefined;
|
|
3759
|
-
}) | ({
|
|
3760
|
-
__TYPE__: "FileLink";
|
|
3761
|
-
} & {
|
|
3762
|
-
kind: "file";
|
|
3763
|
-
id: string;
|
|
3764
|
-
url: string;
|
|
3765
|
-
name: string;
|
|
3766
|
-
size: string;
|
|
3767
|
-
} & {
|
|
3768
|
-
date?: string | null | undefined;
|
|
3769
|
-
}) | ({
|
|
3770
|
-
__TYPE__: "DocumentLink";
|
|
3771
|
-
} & {
|
|
3772
|
-
id: string;
|
|
3773
|
-
}) | ({
|
|
3774
|
-
__TYPE__: "ExternalLink";
|
|
3775
|
-
} & {
|
|
3776
|
-
url: string;
|
|
3777
|
-
} & {
|
|
3778
|
-
kind?: "web";
|
|
3779
|
-
target?: string | null | undefined;
|
|
3780
|
-
preview?: {
|
|
3781
|
-
title?: string;
|
|
3782
|
-
} | null | undefined;
|
|
3783
|
-
});
|
|
3784
|
-
start: number;
|
|
3785
|
-
end: number;
|
|
3786
|
-
type: "hyperlink";
|
|
3787
|
-
} | {
|
|
3788
|
-
data: string;
|
|
3789
|
-
start: number;
|
|
3790
|
-
end: number;
|
|
3791
|
-
type: "label";
|
|
3792
|
-
} | {
|
|
3793
|
-
start: number;
|
|
3794
|
-
end: number;
|
|
3795
|
-
type: "strong" | "em" | "list-item";
|
|
3796
|
-
})[], unknown>;
|
|
3797
|
-
}>]>;
|
|
3798
|
-
}>, t.PartialC<{
|
|
3799
|
-
label: t.StringC;
|
|
3800
|
-
direction: t.StringC;
|
|
3801
|
-
}>]>>>;
|
|
3802
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3803
|
-
type: t.LiteralC<"tableCell">;
|
|
3804
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3805
|
-
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>;
|
|
3806
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
3807
|
-
text: t.StringC;
|
|
3808
|
-
}>, t.PartialC<{
|
|
3809
|
-
spans: t.Type<({
|
|
3810
|
-
data: ({
|
|
3811
|
-
__TYPE__: "ImageLink";
|
|
3812
|
-
} & {
|
|
3813
|
-
kind: "image";
|
|
3814
|
-
id: string;
|
|
3815
|
-
url: string;
|
|
3816
|
-
height: string;
|
|
3817
|
-
width: string;
|
|
3818
|
-
size: string;
|
|
3819
|
-
name: string;
|
|
3820
|
-
} & {
|
|
3821
|
-
date?: string | null | undefined;
|
|
3822
|
-
}) | ({
|
|
3823
|
-
__TYPE__: "FileLink";
|
|
3824
|
-
} & {
|
|
3825
|
-
kind: "file";
|
|
3826
|
-
id: string;
|
|
3827
|
-
url: string;
|
|
3828
|
-
name: string;
|
|
3829
|
-
size: string;
|
|
3830
|
-
} & {
|
|
3831
|
-
date?: string | null | undefined;
|
|
3832
|
-
}) | ({
|
|
3833
|
-
__TYPE__: "DocumentLink";
|
|
3834
|
-
} & {
|
|
3835
|
-
id: string;
|
|
3836
|
-
}) | ({
|
|
3837
|
-
__TYPE__: "ExternalLink";
|
|
3838
|
-
} & {
|
|
3839
|
-
url: string;
|
|
3840
|
-
} & {
|
|
3841
|
-
kind?: "web";
|
|
3842
|
-
target?: string | null | undefined;
|
|
3843
|
-
preview?: {
|
|
3844
|
-
title?: string;
|
|
3845
|
-
} | null | undefined;
|
|
3846
|
-
});
|
|
3847
|
-
start: number;
|
|
3848
|
-
end: number;
|
|
3849
|
-
type: "hyperlink";
|
|
3850
|
-
} | {
|
|
3851
|
-
data: string;
|
|
3852
|
-
start: number;
|
|
3853
|
-
end: number;
|
|
3854
|
-
type: "label";
|
|
3855
|
-
} | {
|
|
3856
|
-
start: number;
|
|
3857
|
-
end: number;
|
|
3858
|
-
type: "strong" | "em" | "list-item";
|
|
3859
|
-
})[], ({
|
|
3860
|
-
data: ({
|
|
3861
|
-
__TYPE__: "ImageLink";
|
|
3862
|
-
} & {
|
|
3863
|
-
kind: "image";
|
|
3864
|
-
id: string;
|
|
3865
|
-
url: string;
|
|
3866
|
-
height: string;
|
|
3867
|
-
width: string;
|
|
3868
|
-
size: string;
|
|
3869
|
-
name: string;
|
|
3870
|
-
} & {
|
|
3871
|
-
date?: string | null | undefined;
|
|
3872
|
-
}) | ({
|
|
3873
|
-
__TYPE__: "FileLink";
|
|
3874
|
-
} & {
|
|
3875
|
-
kind: "file";
|
|
3876
|
-
id: string;
|
|
3877
|
-
url: string;
|
|
3878
|
-
name: string;
|
|
3879
|
-
size: string;
|
|
3880
|
-
} & {
|
|
3881
|
-
date?: string | null | undefined;
|
|
3882
|
-
}) | ({
|
|
3883
|
-
__TYPE__: "DocumentLink";
|
|
3884
|
-
} & {
|
|
3885
|
-
id: string;
|
|
3886
|
-
}) | ({
|
|
3887
|
-
__TYPE__: "ExternalLink";
|
|
3888
|
-
} & {
|
|
3889
|
-
url: string;
|
|
3890
|
-
} & {
|
|
3891
|
-
kind?: "web";
|
|
3892
|
-
target?: string | null | undefined;
|
|
3893
|
-
preview?: {
|
|
3894
|
-
title?: string;
|
|
3895
|
-
} | null | undefined;
|
|
3896
|
-
});
|
|
3897
|
-
start: number;
|
|
3898
|
-
end: number;
|
|
3899
|
-
type: "hyperlink";
|
|
3900
|
-
} | {
|
|
3901
|
-
data: string;
|
|
3902
|
-
start: number;
|
|
3903
|
-
end: number;
|
|
3904
|
-
type: "label";
|
|
3905
|
-
} | {
|
|
3906
|
-
start: number;
|
|
3907
|
-
end: number;
|
|
3908
|
-
type: "strong" | "em" | "list-item";
|
|
3909
|
-
})[], unknown>;
|
|
3910
|
-
}>]>;
|
|
3911
|
-
}>, t.PartialC<{
|
|
3912
|
-
label: t.StringC;
|
|
3913
|
-
direction: t.StringC;
|
|
3914
|
-
}>]>>>;
|
|
3915
|
-
}>>]>>;
|
|
3916
|
-
}>>>;
|
|
3917
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3918
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
3919
|
-
}>>]>]>, t.Type<GroupContent, GroupContent, unknown>]>>;
|
|
3015
|
+
}>>]>, t.Type<GroupContent, GroupContent, unknown>]>>;
|
|
3920
3016
|
items: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3921
3017
|
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
3922
3018
|
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -4235,7 +3331,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
4235
3331
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4236
3332
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4237
3333
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4238
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
3334
|
+
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>;
|
|
4239
3335
|
content: t.IntersectionC<[t.TypeC<{
|
|
4240
3336
|
text: t.StringC;
|
|
4241
3337
|
}>, t.PartialC<{
|
|
@@ -4344,16 +3440,20 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
4344
3440
|
}>, t.PartialC<{
|
|
4345
3441
|
label: t.StringC;
|
|
4346
3442
|
direction: t.StringC;
|
|
4347
|
-
}>]
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
3443
|
+
}>]>>]>>;
|
|
3444
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3445
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3446
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3447
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3448
|
+
type: t.LiteralC<"tableRow">;
|
|
3449
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
3450
|
+
type: t.LiteralC<"tableHeader">;
|
|
3451
|
+
content: t.ExactC<t.TypeC<{
|
|
3452
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
3453
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3454
|
+
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>;
|
|
3455
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
3456
|
+
text: t.StringC;
|
|
4357
3457
|
}>, t.PartialC<{
|
|
4358
3458
|
spans: t.Type<({
|
|
4359
3459
|
data: ({
|
|
@@ -4461,10 +3561,13 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
4461
3561
|
label: t.StringC;
|
|
4462
3562
|
direction: t.StringC;
|
|
4463
3563
|
}>]>>>;
|
|
4464
|
-
}
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
3564
|
+
}>>;
|
|
3565
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3566
|
+
type: t.LiteralC<"tableCell">;
|
|
3567
|
+
content: t.ExactC<t.TypeC<{
|
|
3568
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
3569
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3570
|
+
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>;
|
|
4468
3571
|
content: t.IntersectionC<[t.TypeC<{
|
|
4469
3572
|
text: t.StringC;
|
|
4470
3573
|
}>, t.PartialC<{
|
|
@@ -4574,12 +3677,12 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
4574
3677
|
label: t.StringC;
|
|
4575
3678
|
direction: t.StringC;
|
|
4576
3679
|
}>]>>>;
|
|
4577
|
-
}
|
|
4578
|
-
}
|
|
4579
|
-
}
|
|
4580
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4581
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3680
|
+
}>>;
|
|
3681
|
+
}>>]>>;
|
|
3682
|
+
}>>>;
|
|
4582
3683
|
}>>, t.ExactC<t.TypeC<{
|
|
3684
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
3685
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
4583
3686
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
4584
3687
|
type: t.LiteralC<"Link">;
|
|
4585
3688
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -4660,240 +3763,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
4660
3763
|
variant: t.StringC;
|
|
4661
3764
|
}>]>>]>]>;
|
|
4662
3765
|
}>>]>>;
|
|
4663
|
-
}
|
|
4664
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
4665
|
-
type: t.LiteralC<"tableRow">;
|
|
4666
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
4667
|
-
type: t.LiteralC<"tableHeader">;
|
|
4668
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4669
|
-
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>;
|
|
4670
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
4671
|
-
text: t.StringC;
|
|
4672
|
-
}>, t.PartialC<{
|
|
4673
|
-
spans: t.Type<({
|
|
4674
|
-
data: ({
|
|
4675
|
-
__TYPE__: "ImageLink";
|
|
4676
|
-
} & {
|
|
4677
|
-
kind: "image";
|
|
4678
|
-
id: string;
|
|
4679
|
-
url: string;
|
|
4680
|
-
height: string;
|
|
4681
|
-
width: string;
|
|
4682
|
-
size: string;
|
|
4683
|
-
name: string;
|
|
4684
|
-
} & {
|
|
4685
|
-
date?: string | null | undefined;
|
|
4686
|
-
}) | ({
|
|
4687
|
-
__TYPE__: "FileLink";
|
|
4688
|
-
} & {
|
|
4689
|
-
kind: "file";
|
|
4690
|
-
id: string;
|
|
4691
|
-
url: string;
|
|
4692
|
-
name: string;
|
|
4693
|
-
size: string;
|
|
4694
|
-
} & {
|
|
4695
|
-
date?: string | null | undefined;
|
|
4696
|
-
}) | ({
|
|
4697
|
-
__TYPE__: "DocumentLink";
|
|
4698
|
-
} & {
|
|
4699
|
-
id: string;
|
|
4700
|
-
}) | ({
|
|
4701
|
-
__TYPE__: "ExternalLink";
|
|
4702
|
-
} & {
|
|
4703
|
-
url: string;
|
|
4704
|
-
} & {
|
|
4705
|
-
kind?: "web";
|
|
4706
|
-
target?: string | null | undefined;
|
|
4707
|
-
preview?: {
|
|
4708
|
-
title?: string;
|
|
4709
|
-
} | null | undefined;
|
|
4710
|
-
});
|
|
4711
|
-
start: number;
|
|
4712
|
-
end: number;
|
|
4713
|
-
type: "hyperlink";
|
|
4714
|
-
} | {
|
|
4715
|
-
data: string;
|
|
4716
|
-
start: number;
|
|
4717
|
-
end: number;
|
|
4718
|
-
type: "label";
|
|
4719
|
-
} | {
|
|
4720
|
-
start: number;
|
|
4721
|
-
end: number;
|
|
4722
|
-
type: "strong" | "em" | "list-item";
|
|
4723
|
-
})[], ({
|
|
4724
|
-
data: ({
|
|
4725
|
-
__TYPE__: "ImageLink";
|
|
4726
|
-
} & {
|
|
4727
|
-
kind: "image";
|
|
4728
|
-
id: string;
|
|
4729
|
-
url: string;
|
|
4730
|
-
height: string;
|
|
4731
|
-
width: string;
|
|
4732
|
-
size: string;
|
|
4733
|
-
name: string;
|
|
4734
|
-
} & {
|
|
4735
|
-
date?: string | null | undefined;
|
|
4736
|
-
}) | ({
|
|
4737
|
-
__TYPE__: "FileLink";
|
|
4738
|
-
} & {
|
|
4739
|
-
kind: "file";
|
|
4740
|
-
id: string;
|
|
4741
|
-
url: string;
|
|
4742
|
-
name: string;
|
|
4743
|
-
size: string;
|
|
4744
|
-
} & {
|
|
4745
|
-
date?: string | null | undefined;
|
|
4746
|
-
}) | ({
|
|
4747
|
-
__TYPE__: "DocumentLink";
|
|
4748
|
-
} & {
|
|
4749
|
-
id: string;
|
|
4750
|
-
}) | ({
|
|
4751
|
-
__TYPE__: "ExternalLink";
|
|
4752
|
-
} & {
|
|
4753
|
-
url: string;
|
|
4754
|
-
} & {
|
|
4755
|
-
kind?: "web";
|
|
4756
|
-
target?: string | null | undefined;
|
|
4757
|
-
preview?: {
|
|
4758
|
-
title?: string;
|
|
4759
|
-
} | null | undefined;
|
|
4760
|
-
});
|
|
4761
|
-
start: number;
|
|
4762
|
-
end: number;
|
|
4763
|
-
type: "hyperlink";
|
|
4764
|
-
} | {
|
|
4765
|
-
data: string;
|
|
4766
|
-
start: number;
|
|
4767
|
-
end: number;
|
|
4768
|
-
type: "label";
|
|
4769
|
-
} | {
|
|
4770
|
-
start: number;
|
|
4771
|
-
end: number;
|
|
4772
|
-
type: "strong" | "em" | "list-item";
|
|
4773
|
-
})[], unknown>;
|
|
4774
|
-
}>]>;
|
|
4775
|
-
}>, t.PartialC<{
|
|
4776
|
-
label: t.StringC;
|
|
4777
|
-
direction: t.StringC;
|
|
4778
|
-
}>]>>>;
|
|
4779
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4780
|
-
type: t.LiteralC<"tableCell">;
|
|
4781
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4782
|
-
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>;
|
|
4783
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
4784
|
-
text: t.StringC;
|
|
4785
|
-
}>, t.PartialC<{
|
|
4786
|
-
spans: t.Type<({
|
|
4787
|
-
data: ({
|
|
4788
|
-
__TYPE__: "ImageLink";
|
|
4789
|
-
} & {
|
|
4790
|
-
kind: "image";
|
|
4791
|
-
id: string;
|
|
4792
|
-
url: string;
|
|
4793
|
-
height: string;
|
|
4794
|
-
width: string;
|
|
4795
|
-
size: string;
|
|
4796
|
-
name: string;
|
|
4797
|
-
} & {
|
|
4798
|
-
date?: string | null | undefined;
|
|
4799
|
-
}) | ({
|
|
4800
|
-
__TYPE__: "FileLink";
|
|
4801
|
-
} & {
|
|
4802
|
-
kind: "file";
|
|
4803
|
-
id: string;
|
|
4804
|
-
url: string;
|
|
4805
|
-
name: string;
|
|
4806
|
-
size: string;
|
|
4807
|
-
} & {
|
|
4808
|
-
date?: string | null | undefined;
|
|
4809
|
-
}) | ({
|
|
4810
|
-
__TYPE__: "DocumentLink";
|
|
4811
|
-
} & {
|
|
4812
|
-
id: string;
|
|
4813
|
-
}) | ({
|
|
4814
|
-
__TYPE__: "ExternalLink";
|
|
4815
|
-
} & {
|
|
4816
|
-
url: string;
|
|
4817
|
-
} & {
|
|
4818
|
-
kind?: "web";
|
|
4819
|
-
target?: string | null | undefined;
|
|
4820
|
-
preview?: {
|
|
4821
|
-
title?: string;
|
|
4822
|
-
} | null | undefined;
|
|
4823
|
-
});
|
|
4824
|
-
start: number;
|
|
4825
|
-
end: number;
|
|
4826
|
-
type: "hyperlink";
|
|
4827
|
-
} | {
|
|
4828
|
-
data: string;
|
|
4829
|
-
start: number;
|
|
4830
|
-
end: number;
|
|
4831
|
-
type: "label";
|
|
4832
|
-
} | {
|
|
4833
|
-
start: number;
|
|
4834
|
-
end: number;
|
|
4835
|
-
type: "strong" | "em" | "list-item";
|
|
4836
|
-
})[], ({
|
|
4837
|
-
data: ({
|
|
4838
|
-
__TYPE__: "ImageLink";
|
|
4839
|
-
} & {
|
|
4840
|
-
kind: "image";
|
|
4841
|
-
id: string;
|
|
4842
|
-
url: string;
|
|
4843
|
-
height: string;
|
|
4844
|
-
width: string;
|
|
4845
|
-
size: string;
|
|
4846
|
-
name: string;
|
|
4847
|
-
} & {
|
|
4848
|
-
date?: string | null | undefined;
|
|
4849
|
-
}) | ({
|
|
4850
|
-
__TYPE__: "FileLink";
|
|
4851
|
-
} & {
|
|
4852
|
-
kind: "file";
|
|
4853
|
-
id: string;
|
|
4854
|
-
url: string;
|
|
4855
|
-
name: string;
|
|
4856
|
-
size: string;
|
|
4857
|
-
} & {
|
|
4858
|
-
date?: string | null | undefined;
|
|
4859
|
-
}) | ({
|
|
4860
|
-
__TYPE__: "DocumentLink";
|
|
4861
|
-
} & {
|
|
4862
|
-
id: string;
|
|
4863
|
-
}) | ({
|
|
4864
|
-
__TYPE__: "ExternalLink";
|
|
4865
|
-
} & {
|
|
4866
|
-
url: string;
|
|
4867
|
-
} & {
|
|
4868
|
-
kind?: "web";
|
|
4869
|
-
target?: string | null | undefined;
|
|
4870
|
-
preview?: {
|
|
4871
|
-
title?: string;
|
|
4872
|
-
} | null | undefined;
|
|
4873
|
-
});
|
|
4874
|
-
start: number;
|
|
4875
|
-
end: number;
|
|
4876
|
-
type: "hyperlink";
|
|
4877
|
-
} | {
|
|
4878
|
-
data: string;
|
|
4879
|
-
start: number;
|
|
4880
|
-
end: number;
|
|
4881
|
-
type: "label";
|
|
4882
|
-
} | {
|
|
4883
|
-
start: number;
|
|
4884
|
-
end: number;
|
|
4885
|
-
type: "strong" | "em" | "list-item";
|
|
4886
|
-
})[], unknown>;
|
|
4887
|
-
}>]>;
|
|
4888
|
-
}>, t.PartialC<{
|
|
4889
|
-
label: t.StringC;
|
|
4890
|
-
direction: t.StringC;
|
|
4891
|
-
}>]>>>;
|
|
4892
|
-
}>>]>>;
|
|
4893
|
-
}>>>;
|
|
4894
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4895
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
4896
|
-
}>>]>]>, t.Type<GroupContent, GroupContent, unknown>]>]>>;
|
|
3766
|
+
}>>]>, t.Type<GroupContent, GroupContent, unknown>]>]>>;
|
|
4897
3767
|
}>>>;
|
|
4898
3768
|
}>>, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
4899
3769
|
type: t.StringC;
|
|
@@ -5211,7 +4081,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
5211
4081
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5212
4082
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5213
4083
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5214
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
4084
|
+
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>;
|
|
5215
4085
|
content: t.IntersectionC<[t.TypeC<{
|
|
5216
4086
|
text: t.StringC;
|
|
5217
4087
|
}>, t.PartialC<{
|
|
@@ -5320,16 +4190,20 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
5320
4190
|
}>, t.PartialC<{
|
|
5321
4191
|
label: t.StringC;
|
|
5322
4192
|
direction: t.StringC;
|
|
5323
|
-
}>]
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
4193
|
+
}>]>>]>>;
|
|
4194
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4195
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4196
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4197
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
4198
|
+
type: t.LiteralC<"tableRow">;
|
|
4199
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
4200
|
+
type: t.LiteralC<"tableHeader">;
|
|
4201
|
+
content: t.ExactC<t.TypeC<{
|
|
4202
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4203
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4204
|
+
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>;
|
|
4205
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
4206
|
+
text: t.StringC;
|
|
5333
4207
|
}>, t.PartialC<{
|
|
5334
4208
|
spans: t.Type<({
|
|
5335
4209
|
data: ({
|
|
@@ -5437,10 +4311,13 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
5437
4311
|
label: t.StringC;
|
|
5438
4312
|
direction: t.StringC;
|
|
5439
4313
|
}>]>>>;
|
|
5440
|
-
}
|
|
5441
|
-
|
|
5442
|
-
|
|
5443
|
-
|
|
4314
|
+
}>>;
|
|
4315
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4316
|
+
type: t.LiteralC<"tableCell">;
|
|
4317
|
+
content: t.ExactC<t.TypeC<{
|
|
4318
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4319
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4320
|
+
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>;
|
|
5444
4321
|
content: t.IntersectionC<[t.TypeC<{
|
|
5445
4322
|
text: t.StringC;
|
|
5446
4323
|
}>, t.PartialC<{
|
|
@@ -5550,12 +4427,12 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
5550
4427
|
label: t.StringC;
|
|
5551
4428
|
direction: t.StringC;
|
|
5552
4429
|
}>]>>>;
|
|
5553
|
-
}
|
|
5554
|
-
}
|
|
5555
|
-
}
|
|
5556
|
-
}>>, t.ExactC<t.TypeC<{
|
|
5557
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4430
|
+
}>>;
|
|
4431
|
+
}>>]>>;
|
|
4432
|
+
}>>>;
|
|
5558
4433
|
}>>, t.ExactC<t.TypeC<{
|
|
4434
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
4435
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
5559
4436
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
5560
4437
|
type: t.LiteralC<"Link">;
|
|
5561
4438
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -5636,240 +4513,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
5636
4513
|
variant: t.StringC;
|
|
5637
4514
|
}>]>>]>]>;
|
|
5638
4515
|
}>>]>>;
|
|
5639
|
-
}
|
|
5640
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
5641
|
-
type: t.LiteralC<"tableRow">;
|
|
5642
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
5643
|
-
type: t.LiteralC<"tableHeader">;
|
|
5644
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5645
|
-
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>;
|
|
5646
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
5647
|
-
text: t.StringC;
|
|
5648
|
-
}>, t.PartialC<{
|
|
5649
|
-
spans: t.Type<({
|
|
5650
|
-
data: ({
|
|
5651
|
-
__TYPE__: "ImageLink";
|
|
5652
|
-
} & {
|
|
5653
|
-
kind: "image";
|
|
5654
|
-
id: string;
|
|
5655
|
-
url: string;
|
|
5656
|
-
height: string;
|
|
5657
|
-
width: string;
|
|
5658
|
-
size: string;
|
|
5659
|
-
name: string;
|
|
5660
|
-
} & {
|
|
5661
|
-
date?: string | null | undefined;
|
|
5662
|
-
}) | ({
|
|
5663
|
-
__TYPE__: "FileLink";
|
|
5664
|
-
} & {
|
|
5665
|
-
kind: "file";
|
|
5666
|
-
id: string;
|
|
5667
|
-
url: string;
|
|
5668
|
-
name: string;
|
|
5669
|
-
size: string;
|
|
5670
|
-
} & {
|
|
5671
|
-
date?: string | null | undefined;
|
|
5672
|
-
}) | ({
|
|
5673
|
-
__TYPE__: "DocumentLink";
|
|
5674
|
-
} & {
|
|
5675
|
-
id: string;
|
|
5676
|
-
}) | ({
|
|
5677
|
-
__TYPE__: "ExternalLink";
|
|
5678
|
-
} & {
|
|
5679
|
-
url: string;
|
|
5680
|
-
} & {
|
|
5681
|
-
kind?: "web";
|
|
5682
|
-
target?: string | null | undefined;
|
|
5683
|
-
preview?: {
|
|
5684
|
-
title?: string;
|
|
5685
|
-
} | null | undefined;
|
|
5686
|
-
});
|
|
5687
|
-
start: number;
|
|
5688
|
-
end: number;
|
|
5689
|
-
type: "hyperlink";
|
|
5690
|
-
} | {
|
|
5691
|
-
data: string;
|
|
5692
|
-
start: number;
|
|
5693
|
-
end: number;
|
|
5694
|
-
type: "label";
|
|
5695
|
-
} | {
|
|
5696
|
-
start: number;
|
|
5697
|
-
end: number;
|
|
5698
|
-
type: "strong" | "em" | "list-item";
|
|
5699
|
-
})[], ({
|
|
5700
|
-
data: ({
|
|
5701
|
-
__TYPE__: "ImageLink";
|
|
5702
|
-
} & {
|
|
5703
|
-
kind: "image";
|
|
5704
|
-
id: string;
|
|
5705
|
-
url: string;
|
|
5706
|
-
height: string;
|
|
5707
|
-
width: string;
|
|
5708
|
-
size: string;
|
|
5709
|
-
name: string;
|
|
5710
|
-
} & {
|
|
5711
|
-
date?: string | null | undefined;
|
|
5712
|
-
}) | ({
|
|
5713
|
-
__TYPE__: "FileLink";
|
|
5714
|
-
} & {
|
|
5715
|
-
kind: "file";
|
|
5716
|
-
id: string;
|
|
5717
|
-
url: string;
|
|
5718
|
-
name: string;
|
|
5719
|
-
size: string;
|
|
5720
|
-
} & {
|
|
5721
|
-
date?: string | null | undefined;
|
|
5722
|
-
}) | ({
|
|
5723
|
-
__TYPE__: "DocumentLink";
|
|
5724
|
-
} & {
|
|
5725
|
-
id: string;
|
|
5726
|
-
}) | ({
|
|
5727
|
-
__TYPE__: "ExternalLink";
|
|
5728
|
-
} & {
|
|
5729
|
-
url: string;
|
|
5730
|
-
} & {
|
|
5731
|
-
kind?: "web";
|
|
5732
|
-
target?: string | null | undefined;
|
|
5733
|
-
preview?: {
|
|
5734
|
-
title?: string;
|
|
5735
|
-
} | null | undefined;
|
|
5736
|
-
});
|
|
5737
|
-
start: number;
|
|
5738
|
-
end: number;
|
|
5739
|
-
type: "hyperlink";
|
|
5740
|
-
} | {
|
|
5741
|
-
data: string;
|
|
5742
|
-
start: number;
|
|
5743
|
-
end: number;
|
|
5744
|
-
type: "label";
|
|
5745
|
-
} | {
|
|
5746
|
-
start: number;
|
|
5747
|
-
end: number;
|
|
5748
|
-
type: "strong" | "em" | "list-item";
|
|
5749
|
-
})[], unknown>;
|
|
5750
|
-
}>]>;
|
|
5751
|
-
}>, t.PartialC<{
|
|
5752
|
-
label: t.StringC;
|
|
5753
|
-
direction: t.StringC;
|
|
5754
|
-
}>]>>>;
|
|
5755
|
-
}>>, t.ExactC<t.TypeC<{
|
|
5756
|
-
type: t.LiteralC<"tableCell">;
|
|
5757
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5758
|
-
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>;
|
|
5759
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
5760
|
-
text: t.StringC;
|
|
5761
|
-
}>, t.PartialC<{
|
|
5762
|
-
spans: t.Type<({
|
|
5763
|
-
data: ({
|
|
5764
|
-
__TYPE__: "ImageLink";
|
|
5765
|
-
} & {
|
|
5766
|
-
kind: "image";
|
|
5767
|
-
id: string;
|
|
5768
|
-
url: string;
|
|
5769
|
-
height: string;
|
|
5770
|
-
width: string;
|
|
5771
|
-
size: string;
|
|
5772
|
-
name: string;
|
|
5773
|
-
} & {
|
|
5774
|
-
date?: string | null | undefined;
|
|
5775
|
-
}) | ({
|
|
5776
|
-
__TYPE__: "FileLink";
|
|
5777
|
-
} & {
|
|
5778
|
-
kind: "file";
|
|
5779
|
-
id: string;
|
|
5780
|
-
url: string;
|
|
5781
|
-
name: string;
|
|
5782
|
-
size: string;
|
|
5783
|
-
} & {
|
|
5784
|
-
date?: string | null | undefined;
|
|
5785
|
-
}) | ({
|
|
5786
|
-
__TYPE__: "DocumentLink";
|
|
5787
|
-
} & {
|
|
5788
|
-
id: string;
|
|
5789
|
-
}) | ({
|
|
5790
|
-
__TYPE__: "ExternalLink";
|
|
5791
|
-
} & {
|
|
5792
|
-
url: string;
|
|
5793
|
-
} & {
|
|
5794
|
-
kind?: "web";
|
|
5795
|
-
target?: string | null | undefined;
|
|
5796
|
-
preview?: {
|
|
5797
|
-
title?: string;
|
|
5798
|
-
} | null | undefined;
|
|
5799
|
-
});
|
|
5800
|
-
start: number;
|
|
5801
|
-
end: number;
|
|
5802
|
-
type: "hyperlink";
|
|
5803
|
-
} | {
|
|
5804
|
-
data: string;
|
|
5805
|
-
start: number;
|
|
5806
|
-
end: number;
|
|
5807
|
-
type: "label";
|
|
5808
|
-
} | {
|
|
5809
|
-
start: number;
|
|
5810
|
-
end: number;
|
|
5811
|
-
type: "strong" | "em" | "list-item";
|
|
5812
|
-
})[], ({
|
|
5813
|
-
data: ({
|
|
5814
|
-
__TYPE__: "ImageLink";
|
|
5815
|
-
} & {
|
|
5816
|
-
kind: "image";
|
|
5817
|
-
id: string;
|
|
5818
|
-
url: string;
|
|
5819
|
-
height: string;
|
|
5820
|
-
width: string;
|
|
5821
|
-
size: string;
|
|
5822
|
-
name: string;
|
|
5823
|
-
} & {
|
|
5824
|
-
date?: string | null | undefined;
|
|
5825
|
-
}) | ({
|
|
5826
|
-
__TYPE__: "FileLink";
|
|
5827
|
-
} & {
|
|
5828
|
-
kind: "file";
|
|
5829
|
-
id: string;
|
|
5830
|
-
url: string;
|
|
5831
|
-
name: string;
|
|
5832
|
-
size: string;
|
|
5833
|
-
} & {
|
|
5834
|
-
date?: string | null | undefined;
|
|
5835
|
-
}) | ({
|
|
5836
|
-
__TYPE__: "DocumentLink";
|
|
5837
|
-
} & {
|
|
5838
|
-
id: string;
|
|
5839
|
-
}) | ({
|
|
5840
|
-
__TYPE__: "ExternalLink";
|
|
5841
|
-
} & {
|
|
5842
|
-
url: string;
|
|
5843
|
-
} & {
|
|
5844
|
-
kind?: "web";
|
|
5845
|
-
target?: string | null | undefined;
|
|
5846
|
-
preview?: {
|
|
5847
|
-
title?: string;
|
|
5848
|
-
} | null | undefined;
|
|
5849
|
-
});
|
|
5850
|
-
start: number;
|
|
5851
|
-
end: number;
|
|
5852
|
-
type: "hyperlink";
|
|
5853
|
-
} | {
|
|
5854
|
-
data: string;
|
|
5855
|
-
start: number;
|
|
5856
|
-
end: number;
|
|
5857
|
-
type: "label";
|
|
5858
|
-
} | {
|
|
5859
|
-
start: number;
|
|
5860
|
-
end: number;
|
|
5861
|
-
type: "strong" | "em" | "list-item";
|
|
5862
|
-
})[], unknown>;
|
|
5863
|
-
}>]>;
|
|
5864
|
-
}>, t.PartialC<{
|
|
5865
|
-
label: t.StringC;
|
|
5866
|
-
direction: t.StringC;
|
|
5867
|
-
}>]>>>;
|
|
5868
|
-
}>>]>>;
|
|
5869
|
-
}>>>;
|
|
5870
|
-
}>>, t.ExactC<t.TypeC<{
|
|
5871
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
5872
|
-
}>>]>]>, t.Type<GroupContent, GroupContent, unknown>]>]>;
|
|
4516
|
+
}>>]>, t.Type<GroupContent, GroupContent, unknown>]>]>;
|
|
5873
4517
|
}>>;
|
|
5874
4518
|
}>]>;
|
|
5875
4519
|
export declare const isWidgetContent: (u: unknown) => u is {
|
|
@@ -6231,7 +4875,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
6231
4875
|
label?: string | null | undefined;
|
|
6232
4876
|
direction?: string | null | undefined;
|
|
6233
4877
|
}) | ({
|
|
6234
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
4878
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6235
4879
|
content: {
|
|
6236
4880
|
text: string;
|
|
6237
4881
|
} & {
|
|
@@ -6290,14 +4934,18 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
6290
4934
|
} & {
|
|
6291
4935
|
label?: string;
|
|
6292
4936
|
direction?: string;
|
|
6293
|
-
})
|
|
6294
|
-
|
|
6295
|
-
|
|
6296
|
-
|
|
6297
|
-
|
|
6298
|
-
|
|
6299
|
-
|
|
6300
|
-
|
|
4937
|
+
}))[];
|
|
4938
|
+
} | {
|
|
4939
|
+
__TYPE__: "SeparatorContent";
|
|
4940
|
+
} | ({
|
|
4941
|
+
content: {
|
|
4942
|
+
type: "tableRow";
|
|
4943
|
+
content: ({
|
|
4944
|
+
type: "tableHeader";
|
|
4945
|
+
content: {
|
|
4946
|
+
__TYPE__: "StructuredTextContent";
|
|
4947
|
+
value: ({
|
|
4948
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6301
4949
|
content: {
|
|
6302
4950
|
text: string;
|
|
6303
4951
|
} & {
|
|
@@ -6357,10 +5005,13 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
6357
5005
|
label?: string;
|
|
6358
5006
|
direction?: string;
|
|
6359
5007
|
})[];
|
|
6360
|
-
}
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
|
|
5008
|
+
};
|
|
5009
|
+
} | {
|
|
5010
|
+
type: "tableCell";
|
|
5011
|
+
content: {
|
|
5012
|
+
__TYPE__: "StructuredTextContent";
|
|
5013
|
+
value: ({
|
|
5014
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6364
5015
|
content: {
|
|
6365
5016
|
text: string;
|
|
6366
5017
|
} & {
|
|
@@ -6420,140 +5071,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
6420
5071
|
label?: string;
|
|
6421
5072
|
direction?: string;
|
|
6422
5073
|
})[];
|
|
6423
|
-
}
|
|
6424
|
-
}[];
|
|
6425
|
-
})[];
|
|
6426
|
-
} | {
|
|
6427
|
-
__TYPE__: "SeparatorContent";
|
|
6428
|
-
} | ({
|
|
6429
|
-
content: {
|
|
6430
|
-
type: "tableRow";
|
|
6431
|
-
content: ({
|
|
6432
|
-
type: "tableHeader";
|
|
6433
|
-
content: ({
|
|
6434
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6435
|
-
content: {
|
|
6436
|
-
text: string;
|
|
6437
|
-
} & {
|
|
6438
|
-
spans?: ({
|
|
6439
|
-
data: ({
|
|
6440
|
-
__TYPE__: "ImageLink";
|
|
6441
|
-
} & {
|
|
6442
|
-
kind: "image";
|
|
6443
|
-
id: string;
|
|
6444
|
-
url: string;
|
|
6445
|
-
height: string;
|
|
6446
|
-
width: string;
|
|
6447
|
-
size: string;
|
|
6448
|
-
name: string;
|
|
6449
|
-
} & {
|
|
6450
|
-
date?: string | null | undefined;
|
|
6451
|
-
}) | ({
|
|
6452
|
-
__TYPE__: "FileLink";
|
|
6453
|
-
} & {
|
|
6454
|
-
kind: "file";
|
|
6455
|
-
id: string;
|
|
6456
|
-
url: string;
|
|
6457
|
-
name: string;
|
|
6458
|
-
size: string;
|
|
6459
|
-
} & {
|
|
6460
|
-
date?: string | null | undefined;
|
|
6461
|
-
}) | ({
|
|
6462
|
-
__TYPE__: "DocumentLink";
|
|
6463
|
-
} & {
|
|
6464
|
-
id: string;
|
|
6465
|
-
}) | ({
|
|
6466
|
-
__TYPE__: "ExternalLink";
|
|
6467
|
-
} & {
|
|
6468
|
-
url: string;
|
|
6469
|
-
} & {
|
|
6470
|
-
kind?: "web";
|
|
6471
|
-
target?: string | null | undefined;
|
|
6472
|
-
preview?: {
|
|
6473
|
-
title?: string;
|
|
6474
|
-
} | null | undefined;
|
|
6475
|
-
});
|
|
6476
|
-
start: number;
|
|
6477
|
-
end: number;
|
|
6478
|
-
type: "hyperlink";
|
|
6479
|
-
} | {
|
|
6480
|
-
data: string;
|
|
6481
|
-
start: number;
|
|
6482
|
-
end: number;
|
|
6483
|
-
type: "label";
|
|
6484
|
-
} | {
|
|
6485
|
-
start: number;
|
|
6486
|
-
end: number;
|
|
6487
|
-
type: "strong" | "em" | "list-item";
|
|
6488
|
-
})[];
|
|
6489
|
-
};
|
|
6490
|
-
} & {
|
|
6491
|
-
label?: string;
|
|
6492
|
-
direction?: string;
|
|
6493
|
-
})[];
|
|
6494
|
-
} | {
|
|
6495
|
-
type: "tableCell";
|
|
6496
|
-
content: ({
|
|
6497
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6498
|
-
content: {
|
|
6499
|
-
text: string;
|
|
6500
|
-
} & {
|
|
6501
|
-
spans?: ({
|
|
6502
|
-
data: ({
|
|
6503
|
-
__TYPE__: "ImageLink";
|
|
6504
|
-
} & {
|
|
6505
|
-
kind: "image";
|
|
6506
|
-
id: string;
|
|
6507
|
-
url: string;
|
|
6508
|
-
height: string;
|
|
6509
|
-
width: string;
|
|
6510
|
-
size: string;
|
|
6511
|
-
name: string;
|
|
6512
|
-
} & {
|
|
6513
|
-
date?: string | null | undefined;
|
|
6514
|
-
}) | ({
|
|
6515
|
-
__TYPE__: "FileLink";
|
|
6516
|
-
} & {
|
|
6517
|
-
kind: "file";
|
|
6518
|
-
id: string;
|
|
6519
|
-
url: string;
|
|
6520
|
-
name: string;
|
|
6521
|
-
size: string;
|
|
6522
|
-
} & {
|
|
6523
|
-
date?: string | null | undefined;
|
|
6524
|
-
}) | ({
|
|
6525
|
-
__TYPE__: "DocumentLink";
|
|
6526
|
-
} & {
|
|
6527
|
-
id: string;
|
|
6528
|
-
}) | ({
|
|
6529
|
-
__TYPE__: "ExternalLink";
|
|
6530
|
-
} & {
|
|
6531
|
-
url: string;
|
|
6532
|
-
} & {
|
|
6533
|
-
kind?: "web";
|
|
6534
|
-
target?: string | null | undefined;
|
|
6535
|
-
preview?: {
|
|
6536
|
-
title?: string;
|
|
6537
|
-
} | null | undefined;
|
|
6538
|
-
});
|
|
6539
|
-
start: number;
|
|
6540
|
-
end: number;
|
|
6541
|
-
type: "hyperlink";
|
|
6542
|
-
} | {
|
|
6543
|
-
data: string;
|
|
6544
|
-
start: number;
|
|
6545
|
-
end: number;
|
|
6546
|
-
type: "label";
|
|
6547
|
-
} | {
|
|
6548
|
-
start: number;
|
|
6549
|
-
end: number;
|
|
6550
|
-
type: "strong" | "em" | "list-item";
|
|
6551
|
-
})[];
|
|
6552
|
-
};
|
|
6553
|
-
} & {
|
|
6554
|
-
label?: string;
|
|
6555
|
-
direction?: string;
|
|
6556
|
-
})[];
|
|
5074
|
+
};
|
|
6557
5075
|
})[];
|
|
6558
5076
|
}[];
|
|
6559
5077
|
} & {
|
|
@@ -6926,7 +5444,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
6926
5444
|
label?: string | null | undefined;
|
|
6927
5445
|
direction?: string | null | undefined;
|
|
6928
5446
|
}) | ({
|
|
6929
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
5447
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6930
5448
|
content: {
|
|
6931
5449
|
text: string;
|
|
6932
5450
|
} & {
|
|
@@ -6985,14 +5503,18 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
6985
5503
|
} & {
|
|
6986
5504
|
label?: string;
|
|
6987
5505
|
direction?: string;
|
|
6988
|
-
})
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
|
|
6994
|
-
|
|
6995
|
-
|
|
5506
|
+
}))[];
|
|
5507
|
+
} | {
|
|
5508
|
+
__TYPE__: "SeparatorContent";
|
|
5509
|
+
} | ({
|
|
5510
|
+
content: {
|
|
5511
|
+
type: "tableRow";
|
|
5512
|
+
content: ({
|
|
5513
|
+
type: "tableHeader";
|
|
5514
|
+
content: {
|
|
5515
|
+
__TYPE__: "StructuredTextContent";
|
|
5516
|
+
value: ({
|
|
5517
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6996
5518
|
content: {
|
|
6997
5519
|
text: string;
|
|
6998
5520
|
} & {
|
|
@@ -7052,10 +5574,13 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
7052
5574
|
label?: string;
|
|
7053
5575
|
direction?: string;
|
|
7054
5576
|
})[];
|
|
7055
|
-
}
|
|
7056
|
-
|
|
7057
|
-
|
|
7058
|
-
|
|
5577
|
+
};
|
|
5578
|
+
} | {
|
|
5579
|
+
type: "tableCell";
|
|
5580
|
+
content: {
|
|
5581
|
+
__TYPE__: "StructuredTextContent";
|
|
5582
|
+
value: ({
|
|
5583
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7059
5584
|
content: {
|
|
7060
5585
|
text: string;
|
|
7061
5586
|
} & {
|
|
@@ -7115,140 +5640,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
7115
5640
|
label?: string;
|
|
7116
5641
|
direction?: string;
|
|
7117
5642
|
})[];
|
|
7118
|
-
}
|
|
7119
|
-
}[];
|
|
7120
|
-
})[];
|
|
7121
|
-
} | {
|
|
7122
|
-
__TYPE__: "SeparatorContent";
|
|
7123
|
-
} | ({
|
|
7124
|
-
content: {
|
|
7125
|
-
type: "tableRow";
|
|
7126
|
-
content: ({
|
|
7127
|
-
type: "tableHeader";
|
|
7128
|
-
content: ({
|
|
7129
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
7130
|
-
content: {
|
|
7131
|
-
text: string;
|
|
7132
|
-
} & {
|
|
7133
|
-
spans?: ({
|
|
7134
|
-
data: ({
|
|
7135
|
-
__TYPE__: "ImageLink";
|
|
7136
|
-
} & {
|
|
7137
|
-
kind: "image";
|
|
7138
|
-
id: string;
|
|
7139
|
-
url: string;
|
|
7140
|
-
height: string;
|
|
7141
|
-
width: string;
|
|
7142
|
-
size: string;
|
|
7143
|
-
name: string;
|
|
7144
|
-
} & {
|
|
7145
|
-
date?: string | null | undefined;
|
|
7146
|
-
}) | ({
|
|
7147
|
-
__TYPE__: "FileLink";
|
|
7148
|
-
} & {
|
|
7149
|
-
kind: "file";
|
|
7150
|
-
id: string;
|
|
7151
|
-
url: string;
|
|
7152
|
-
name: string;
|
|
7153
|
-
size: string;
|
|
7154
|
-
} & {
|
|
7155
|
-
date?: string | null | undefined;
|
|
7156
|
-
}) | ({
|
|
7157
|
-
__TYPE__: "DocumentLink";
|
|
7158
|
-
} & {
|
|
7159
|
-
id: string;
|
|
7160
|
-
}) | ({
|
|
7161
|
-
__TYPE__: "ExternalLink";
|
|
7162
|
-
} & {
|
|
7163
|
-
url: string;
|
|
7164
|
-
} & {
|
|
7165
|
-
kind?: "web";
|
|
7166
|
-
target?: string | null | undefined;
|
|
7167
|
-
preview?: {
|
|
7168
|
-
title?: string;
|
|
7169
|
-
} | null | undefined;
|
|
7170
|
-
});
|
|
7171
|
-
start: number;
|
|
7172
|
-
end: number;
|
|
7173
|
-
type: "hyperlink";
|
|
7174
|
-
} | {
|
|
7175
|
-
data: string;
|
|
7176
|
-
start: number;
|
|
7177
|
-
end: number;
|
|
7178
|
-
type: "label";
|
|
7179
|
-
} | {
|
|
7180
|
-
start: number;
|
|
7181
|
-
end: number;
|
|
7182
|
-
type: "strong" | "em" | "list-item";
|
|
7183
|
-
})[];
|
|
7184
|
-
};
|
|
7185
|
-
} & {
|
|
7186
|
-
label?: string;
|
|
7187
|
-
direction?: string;
|
|
7188
|
-
})[];
|
|
7189
|
-
} | {
|
|
7190
|
-
type: "tableCell";
|
|
7191
|
-
content: ({
|
|
7192
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
7193
|
-
content: {
|
|
7194
|
-
text: string;
|
|
7195
|
-
} & {
|
|
7196
|
-
spans?: ({
|
|
7197
|
-
data: ({
|
|
7198
|
-
__TYPE__: "ImageLink";
|
|
7199
|
-
} & {
|
|
7200
|
-
kind: "image";
|
|
7201
|
-
id: string;
|
|
7202
|
-
url: string;
|
|
7203
|
-
height: string;
|
|
7204
|
-
width: string;
|
|
7205
|
-
size: string;
|
|
7206
|
-
name: string;
|
|
7207
|
-
} & {
|
|
7208
|
-
date?: string | null | undefined;
|
|
7209
|
-
}) | ({
|
|
7210
|
-
__TYPE__: "FileLink";
|
|
7211
|
-
} & {
|
|
7212
|
-
kind: "file";
|
|
7213
|
-
id: string;
|
|
7214
|
-
url: string;
|
|
7215
|
-
name: string;
|
|
7216
|
-
size: string;
|
|
7217
|
-
} & {
|
|
7218
|
-
date?: string | null | undefined;
|
|
7219
|
-
}) | ({
|
|
7220
|
-
__TYPE__: "DocumentLink";
|
|
7221
|
-
} & {
|
|
7222
|
-
id: string;
|
|
7223
|
-
}) | ({
|
|
7224
|
-
__TYPE__: "ExternalLink";
|
|
7225
|
-
} & {
|
|
7226
|
-
url: string;
|
|
7227
|
-
} & {
|
|
7228
|
-
kind?: "web";
|
|
7229
|
-
target?: string | null | undefined;
|
|
7230
|
-
preview?: {
|
|
7231
|
-
title?: string;
|
|
7232
|
-
} | null | undefined;
|
|
7233
|
-
});
|
|
7234
|
-
start: number;
|
|
7235
|
-
end: number;
|
|
7236
|
-
type: "hyperlink";
|
|
7237
|
-
} | {
|
|
7238
|
-
data: string;
|
|
7239
|
-
start: number;
|
|
7240
|
-
end: number;
|
|
7241
|
-
type: "label";
|
|
7242
|
-
} | {
|
|
7243
|
-
start: number;
|
|
7244
|
-
end: number;
|
|
7245
|
-
type: "strong" | "em" | "list-item";
|
|
7246
|
-
})[];
|
|
7247
|
-
};
|
|
7248
|
-
} & {
|
|
7249
|
-
label?: string;
|
|
7250
|
-
direction?: string;
|
|
7251
|
-
})[];
|
|
5643
|
+
};
|
|
7252
5644
|
})[];
|
|
7253
5645
|
}[];
|
|
7254
5646
|
} & {
|
|
@@ -7615,7 +6007,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
7615
6007
|
label?: string | null | undefined;
|
|
7616
6008
|
direction?: string | null | undefined;
|
|
7617
6009
|
}) | ({
|
|
7618
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
6010
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7619
6011
|
content: {
|
|
7620
6012
|
text: string;
|
|
7621
6013
|
} & {
|
|
@@ -7674,14 +6066,18 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
7674
6066
|
} & {
|
|
7675
6067
|
label?: string;
|
|
7676
6068
|
direction?: string;
|
|
7677
|
-
})
|
|
7678
|
-
|
|
7679
|
-
|
|
7680
|
-
|
|
7681
|
-
|
|
7682
|
-
|
|
7683
|
-
|
|
7684
|
-
|
|
6069
|
+
}))[];
|
|
6070
|
+
} | {
|
|
6071
|
+
__TYPE__: "SeparatorContent";
|
|
6072
|
+
} | ({
|
|
6073
|
+
content: {
|
|
6074
|
+
type: "tableRow";
|
|
6075
|
+
content: ({
|
|
6076
|
+
type: "tableHeader";
|
|
6077
|
+
content: {
|
|
6078
|
+
__TYPE__: "StructuredTextContent";
|
|
6079
|
+
value: ({
|
|
6080
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7685
6081
|
content: {
|
|
7686
6082
|
text: string;
|
|
7687
6083
|
} & {
|
|
@@ -7741,10 +6137,13 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
7741
6137
|
label?: string;
|
|
7742
6138
|
direction?: string;
|
|
7743
6139
|
})[];
|
|
7744
|
-
}
|
|
7745
|
-
|
|
7746
|
-
|
|
7747
|
-
|
|
6140
|
+
};
|
|
6141
|
+
} | {
|
|
6142
|
+
type: "tableCell";
|
|
6143
|
+
content: {
|
|
6144
|
+
__TYPE__: "StructuredTextContent";
|
|
6145
|
+
value: ({
|
|
6146
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
7748
6147
|
content: {
|
|
7749
6148
|
text: string;
|
|
7750
6149
|
} & {
|
|
@@ -7804,140 +6203,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
7804
6203
|
label?: string;
|
|
7805
6204
|
direction?: string;
|
|
7806
6205
|
})[];
|
|
7807
|
-
}
|
|
7808
|
-
}[];
|
|
7809
|
-
})[];
|
|
7810
|
-
} | {
|
|
7811
|
-
__TYPE__: "SeparatorContent";
|
|
7812
|
-
} | ({
|
|
7813
|
-
content: {
|
|
7814
|
-
type: "tableRow";
|
|
7815
|
-
content: ({
|
|
7816
|
-
type: "tableHeader";
|
|
7817
|
-
content: ({
|
|
7818
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
7819
|
-
content: {
|
|
7820
|
-
text: string;
|
|
7821
|
-
} & {
|
|
7822
|
-
spans?: ({
|
|
7823
|
-
data: ({
|
|
7824
|
-
__TYPE__: "ImageLink";
|
|
7825
|
-
} & {
|
|
7826
|
-
kind: "image";
|
|
7827
|
-
id: string;
|
|
7828
|
-
url: string;
|
|
7829
|
-
height: string;
|
|
7830
|
-
width: string;
|
|
7831
|
-
size: string;
|
|
7832
|
-
name: string;
|
|
7833
|
-
} & {
|
|
7834
|
-
date?: string | null | undefined;
|
|
7835
|
-
}) | ({
|
|
7836
|
-
__TYPE__: "FileLink";
|
|
7837
|
-
} & {
|
|
7838
|
-
kind: "file";
|
|
7839
|
-
id: string;
|
|
7840
|
-
url: string;
|
|
7841
|
-
name: string;
|
|
7842
|
-
size: string;
|
|
7843
|
-
} & {
|
|
7844
|
-
date?: string | null | undefined;
|
|
7845
|
-
}) | ({
|
|
7846
|
-
__TYPE__: "DocumentLink";
|
|
7847
|
-
} & {
|
|
7848
|
-
id: string;
|
|
7849
|
-
}) | ({
|
|
7850
|
-
__TYPE__: "ExternalLink";
|
|
7851
|
-
} & {
|
|
7852
|
-
url: string;
|
|
7853
|
-
} & {
|
|
7854
|
-
kind?: "web";
|
|
7855
|
-
target?: string | null | undefined;
|
|
7856
|
-
preview?: {
|
|
7857
|
-
title?: string;
|
|
7858
|
-
} | null | undefined;
|
|
7859
|
-
});
|
|
7860
|
-
start: number;
|
|
7861
|
-
end: number;
|
|
7862
|
-
type: "hyperlink";
|
|
7863
|
-
} | {
|
|
7864
|
-
data: string;
|
|
7865
|
-
start: number;
|
|
7866
|
-
end: number;
|
|
7867
|
-
type: "label";
|
|
7868
|
-
} | {
|
|
7869
|
-
start: number;
|
|
7870
|
-
end: number;
|
|
7871
|
-
type: "strong" | "em" | "list-item";
|
|
7872
|
-
})[];
|
|
7873
|
-
};
|
|
7874
|
-
} & {
|
|
7875
|
-
label?: string;
|
|
7876
|
-
direction?: string;
|
|
7877
|
-
})[];
|
|
7878
|
-
} | {
|
|
7879
|
-
type: "tableCell";
|
|
7880
|
-
content: ({
|
|
7881
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
7882
|
-
content: {
|
|
7883
|
-
text: string;
|
|
7884
|
-
} & {
|
|
7885
|
-
spans?: ({
|
|
7886
|
-
data: ({
|
|
7887
|
-
__TYPE__: "ImageLink";
|
|
7888
|
-
} & {
|
|
7889
|
-
kind: "image";
|
|
7890
|
-
id: string;
|
|
7891
|
-
url: string;
|
|
7892
|
-
height: string;
|
|
7893
|
-
width: string;
|
|
7894
|
-
size: string;
|
|
7895
|
-
name: string;
|
|
7896
|
-
} & {
|
|
7897
|
-
date?: string | null | undefined;
|
|
7898
|
-
}) | ({
|
|
7899
|
-
__TYPE__: "FileLink";
|
|
7900
|
-
} & {
|
|
7901
|
-
kind: "file";
|
|
7902
|
-
id: string;
|
|
7903
|
-
url: string;
|
|
7904
|
-
name: string;
|
|
7905
|
-
size: string;
|
|
7906
|
-
} & {
|
|
7907
|
-
date?: string | null | undefined;
|
|
7908
|
-
}) | ({
|
|
7909
|
-
__TYPE__: "DocumentLink";
|
|
7910
|
-
} & {
|
|
7911
|
-
id: string;
|
|
7912
|
-
}) | ({
|
|
7913
|
-
__TYPE__: "ExternalLink";
|
|
7914
|
-
} & {
|
|
7915
|
-
url: string;
|
|
7916
|
-
} & {
|
|
7917
|
-
kind?: "web";
|
|
7918
|
-
target?: string | null | undefined;
|
|
7919
|
-
preview?: {
|
|
7920
|
-
title?: string;
|
|
7921
|
-
} | null | undefined;
|
|
7922
|
-
});
|
|
7923
|
-
start: number;
|
|
7924
|
-
end: number;
|
|
7925
|
-
type: "hyperlink";
|
|
7926
|
-
} | {
|
|
7927
|
-
data: string;
|
|
7928
|
-
start: number;
|
|
7929
|
-
end: number;
|
|
7930
|
-
type: "label";
|
|
7931
|
-
} | {
|
|
7932
|
-
start: number;
|
|
7933
|
-
end: number;
|
|
7934
|
-
type: "strong" | "em" | "list-item";
|
|
7935
|
-
})[];
|
|
7936
|
-
};
|
|
7937
|
-
} & {
|
|
7938
|
-
label?: string;
|
|
7939
|
-
direction?: string;
|
|
7940
|
-
})[];
|
|
6206
|
+
};
|
|
7941
6207
|
})[];
|
|
7942
6208
|
}[];
|
|
7943
6209
|
} & {
|
|
@@ -8305,7 +6571,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
8305
6571
|
label?: string | null | undefined;
|
|
8306
6572
|
direction?: string | null | undefined;
|
|
8307
6573
|
}) | ({
|
|
8308
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
6574
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
8309
6575
|
content: {
|
|
8310
6576
|
text: string;
|
|
8311
6577
|
} & {
|
|
@@ -8364,14 +6630,18 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
8364
6630
|
} & {
|
|
8365
6631
|
label?: string;
|
|
8366
6632
|
direction?: string;
|
|
8367
|
-
})
|
|
8368
|
-
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
6633
|
+
}))[];
|
|
6634
|
+
} | {
|
|
6635
|
+
__TYPE__: "SeparatorContent";
|
|
6636
|
+
} | ({
|
|
6637
|
+
content: {
|
|
6638
|
+
type: "tableRow";
|
|
6639
|
+
content: ({
|
|
6640
|
+
type: "tableHeader";
|
|
6641
|
+
content: {
|
|
6642
|
+
__TYPE__: "StructuredTextContent";
|
|
6643
|
+
value: ({
|
|
6644
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
8375
6645
|
content: {
|
|
8376
6646
|
text: string;
|
|
8377
6647
|
} & {
|
|
@@ -8431,10 +6701,13 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
8431
6701
|
label?: string;
|
|
8432
6702
|
direction?: string;
|
|
8433
6703
|
})[];
|
|
8434
|
-
}
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
6704
|
+
};
|
|
6705
|
+
} | {
|
|
6706
|
+
type: "tableCell";
|
|
6707
|
+
content: {
|
|
6708
|
+
__TYPE__: "StructuredTextContent";
|
|
6709
|
+
value: ({
|
|
6710
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
8438
6711
|
content: {
|
|
8439
6712
|
text: string;
|
|
8440
6713
|
} & {
|
|
@@ -8494,156 +6767,23 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
8494
6767
|
label?: string;
|
|
8495
6768
|
direction?: string;
|
|
8496
6769
|
})[];
|
|
8497
|
-
}
|
|
8498
|
-
}[];
|
|
8499
|
-
}
|
|
6770
|
+
};
|
|
6771
|
+
})[];
|
|
6772
|
+
}[];
|
|
6773
|
+
} & {
|
|
6774
|
+
__TYPE__: "TableContent";
|
|
6775
|
+
})][];
|
|
6776
|
+
}[];
|
|
6777
|
+
} | {
|
|
6778
|
+
__TYPE__: "SharedSliceContent";
|
|
6779
|
+
variation: string;
|
|
6780
|
+
primary: {
|
|
6781
|
+
[x: string]: {
|
|
6782
|
+
type: string;
|
|
6783
|
+
__TYPE__: "EmptyContent";
|
|
8500
6784
|
} | {
|
|
8501
|
-
__TYPE__: "
|
|
8502
|
-
|
|
8503
|
-
content: {
|
|
8504
|
-
type: "tableRow";
|
|
8505
|
-
content: ({
|
|
8506
|
-
type: "tableHeader";
|
|
8507
|
-
content: ({
|
|
8508
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
8509
|
-
content: {
|
|
8510
|
-
text: string;
|
|
8511
|
-
} & {
|
|
8512
|
-
spans?: ({
|
|
8513
|
-
data: ({
|
|
8514
|
-
__TYPE__: "ImageLink";
|
|
8515
|
-
} & {
|
|
8516
|
-
kind: "image";
|
|
8517
|
-
id: string;
|
|
8518
|
-
url: string;
|
|
8519
|
-
height: string;
|
|
8520
|
-
width: string;
|
|
8521
|
-
size: string;
|
|
8522
|
-
name: string;
|
|
8523
|
-
} & {
|
|
8524
|
-
date?: string | null | undefined;
|
|
8525
|
-
}) | ({
|
|
8526
|
-
__TYPE__: "FileLink";
|
|
8527
|
-
} & {
|
|
8528
|
-
kind: "file";
|
|
8529
|
-
id: string;
|
|
8530
|
-
url: string;
|
|
8531
|
-
name: string;
|
|
8532
|
-
size: string;
|
|
8533
|
-
} & {
|
|
8534
|
-
date?: string | null | undefined;
|
|
8535
|
-
}) | ({
|
|
8536
|
-
__TYPE__: "DocumentLink";
|
|
8537
|
-
} & {
|
|
8538
|
-
id: string;
|
|
8539
|
-
}) | ({
|
|
8540
|
-
__TYPE__: "ExternalLink";
|
|
8541
|
-
} & {
|
|
8542
|
-
url: string;
|
|
8543
|
-
} & {
|
|
8544
|
-
kind?: "web";
|
|
8545
|
-
target?: string | null | undefined;
|
|
8546
|
-
preview?: {
|
|
8547
|
-
title?: string;
|
|
8548
|
-
} | null | undefined;
|
|
8549
|
-
});
|
|
8550
|
-
start: number;
|
|
8551
|
-
end: number;
|
|
8552
|
-
type: "hyperlink";
|
|
8553
|
-
} | {
|
|
8554
|
-
data: string;
|
|
8555
|
-
start: number;
|
|
8556
|
-
end: number;
|
|
8557
|
-
type: "label";
|
|
8558
|
-
} | {
|
|
8559
|
-
start: number;
|
|
8560
|
-
end: number;
|
|
8561
|
-
type: "strong" | "em" | "list-item";
|
|
8562
|
-
})[];
|
|
8563
|
-
};
|
|
8564
|
-
} & {
|
|
8565
|
-
label?: string;
|
|
8566
|
-
direction?: string;
|
|
8567
|
-
})[];
|
|
8568
|
-
} | {
|
|
8569
|
-
type: "tableCell";
|
|
8570
|
-
content: ({
|
|
8571
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
8572
|
-
content: {
|
|
8573
|
-
text: string;
|
|
8574
|
-
} & {
|
|
8575
|
-
spans?: ({
|
|
8576
|
-
data: ({
|
|
8577
|
-
__TYPE__: "ImageLink";
|
|
8578
|
-
} & {
|
|
8579
|
-
kind: "image";
|
|
8580
|
-
id: string;
|
|
8581
|
-
url: string;
|
|
8582
|
-
height: string;
|
|
8583
|
-
width: string;
|
|
8584
|
-
size: string;
|
|
8585
|
-
name: string;
|
|
8586
|
-
} & {
|
|
8587
|
-
date?: string | null | undefined;
|
|
8588
|
-
}) | ({
|
|
8589
|
-
__TYPE__: "FileLink";
|
|
8590
|
-
} & {
|
|
8591
|
-
kind: "file";
|
|
8592
|
-
id: string;
|
|
8593
|
-
url: string;
|
|
8594
|
-
name: string;
|
|
8595
|
-
size: string;
|
|
8596
|
-
} & {
|
|
8597
|
-
date?: string | null | undefined;
|
|
8598
|
-
}) | ({
|
|
8599
|
-
__TYPE__: "DocumentLink";
|
|
8600
|
-
} & {
|
|
8601
|
-
id: string;
|
|
8602
|
-
}) | ({
|
|
8603
|
-
__TYPE__: "ExternalLink";
|
|
8604
|
-
} & {
|
|
8605
|
-
url: string;
|
|
8606
|
-
} & {
|
|
8607
|
-
kind?: "web";
|
|
8608
|
-
target?: string | null | undefined;
|
|
8609
|
-
preview?: {
|
|
8610
|
-
title?: string;
|
|
8611
|
-
} | null | undefined;
|
|
8612
|
-
});
|
|
8613
|
-
start: number;
|
|
8614
|
-
end: number;
|
|
8615
|
-
type: "hyperlink";
|
|
8616
|
-
} | {
|
|
8617
|
-
data: string;
|
|
8618
|
-
start: number;
|
|
8619
|
-
end: number;
|
|
8620
|
-
type: "label";
|
|
8621
|
-
} | {
|
|
8622
|
-
start: number;
|
|
8623
|
-
end: number;
|
|
8624
|
-
type: "strong" | "em" | "list-item";
|
|
8625
|
-
})[];
|
|
8626
|
-
};
|
|
8627
|
-
} & {
|
|
8628
|
-
label?: string;
|
|
8629
|
-
direction?: string;
|
|
8630
|
-
})[];
|
|
8631
|
-
})[];
|
|
8632
|
-
}[];
|
|
8633
|
-
} & {
|
|
8634
|
-
__TYPE__: "TableContent";
|
|
8635
|
-
})][];
|
|
8636
|
-
}[];
|
|
8637
|
-
} | {
|
|
8638
|
-
__TYPE__: "SharedSliceContent";
|
|
8639
|
-
variation: string;
|
|
8640
|
-
primary: {
|
|
8641
|
-
[x: string]: {
|
|
8642
|
-
type: string;
|
|
8643
|
-
__TYPE__: "EmptyContent";
|
|
8644
|
-
} | {
|
|
8645
|
-
__TYPE__: "BooleanContent";
|
|
8646
|
-
value: boolean;
|
|
6785
|
+
__TYPE__: "BooleanContent";
|
|
6786
|
+
value: boolean;
|
|
8647
6787
|
} | ({
|
|
8648
6788
|
embed_url: string;
|
|
8649
6789
|
type: string;
|
|
@@ -8997,7 +7137,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
8997
7137
|
label?: string | null | undefined;
|
|
8998
7138
|
direction?: string | null | undefined;
|
|
8999
7139
|
}) | ({
|
|
9000
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
7140
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9001
7141
|
content: {
|
|
9002
7142
|
text: string;
|
|
9003
7143
|
} & {
|
|
@@ -9056,14 +7196,18 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
9056
7196
|
} & {
|
|
9057
7197
|
label?: string;
|
|
9058
7198
|
direction?: string;
|
|
9059
|
-
})
|
|
9060
|
-
|
|
9061
|
-
|
|
9062
|
-
|
|
9063
|
-
|
|
9064
|
-
|
|
9065
|
-
|
|
9066
|
-
|
|
7199
|
+
}))[];
|
|
7200
|
+
} | {
|
|
7201
|
+
__TYPE__: "SeparatorContent";
|
|
7202
|
+
} | ({
|
|
7203
|
+
content: {
|
|
7204
|
+
type: "tableRow";
|
|
7205
|
+
content: ({
|
|
7206
|
+
type: "tableHeader";
|
|
7207
|
+
content: {
|
|
7208
|
+
__TYPE__: "StructuredTextContent";
|
|
7209
|
+
value: ({
|
|
7210
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9067
7211
|
content: {
|
|
9068
7212
|
text: string;
|
|
9069
7213
|
} & {
|
|
@@ -9123,10 +7267,13 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
9123
7267
|
label?: string;
|
|
9124
7268
|
direction?: string;
|
|
9125
7269
|
})[];
|
|
9126
|
-
}
|
|
9127
|
-
|
|
9128
|
-
|
|
9129
|
-
|
|
7270
|
+
};
|
|
7271
|
+
} | {
|
|
7272
|
+
type: "tableCell";
|
|
7273
|
+
content: {
|
|
7274
|
+
__TYPE__: "StructuredTextContent";
|
|
7275
|
+
value: ({
|
|
7276
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9130
7277
|
content: {
|
|
9131
7278
|
text: string;
|
|
9132
7279
|
} & {
|
|
@@ -9186,154 +7333,21 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
9186
7333
|
label?: string;
|
|
9187
7334
|
direction?: string;
|
|
9188
7335
|
})[];
|
|
9189
|
-
}
|
|
9190
|
-
}[];
|
|
9191
|
-
}
|
|
7336
|
+
};
|
|
7337
|
+
})[];
|
|
7338
|
+
}[];
|
|
7339
|
+
} & {
|
|
7340
|
+
__TYPE__: "TableContent";
|
|
7341
|
+
});
|
|
7342
|
+
};
|
|
7343
|
+
items: {
|
|
7344
|
+
__TYPE__: "GroupItemContent";
|
|
7345
|
+
value: [string, {
|
|
7346
|
+
type: string;
|
|
7347
|
+
__TYPE__: "EmptyContent";
|
|
9192
7348
|
} | {
|
|
9193
|
-
__TYPE__: "
|
|
9194
|
-
|
|
9195
|
-
content: {
|
|
9196
|
-
type: "tableRow";
|
|
9197
|
-
content: ({
|
|
9198
|
-
type: "tableHeader";
|
|
9199
|
-
content: ({
|
|
9200
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
9201
|
-
content: {
|
|
9202
|
-
text: string;
|
|
9203
|
-
} & {
|
|
9204
|
-
spans?: ({
|
|
9205
|
-
data: ({
|
|
9206
|
-
__TYPE__: "ImageLink";
|
|
9207
|
-
} & {
|
|
9208
|
-
kind: "image";
|
|
9209
|
-
id: string;
|
|
9210
|
-
url: string;
|
|
9211
|
-
height: string;
|
|
9212
|
-
width: string;
|
|
9213
|
-
size: string;
|
|
9214
|
-
name: string;
|
|
9215
|
-
} & {
|
|
9216
|
-
date?: string | null | undefined;
|
|
9217
|
-
}) | ({
|
|
9218
|
-
__TYPE__: "FileLink";
|
|
9219
|
-
} & {
|
|
9220
|
-
kind: "file";
|
|
9221
|
-
id: string;
|
|
9222
|
-
url: string;
|
|
9223
|
-
name: string;
|
|
9224
|
-
size: string;
|
|
9225
|
-
} & {
|
|
9226
|
-
date?: string | null | undefined;
|
|
9227
|
-
}) | ({
|
|
9228
|
-
__TYPE__: "DocumentLink";
|
|
9229
|
-
} & {
|
|
9230
|
-
id: string;
|
|
9231
|
-
}) | ({
|
|
9232
|
-
__TYPE__: "ExternalLink";
|
|
9233
|
-
} & {
|
|
9234
|
-
url: string;
|
|
9235
|
-
} & {
|
|
9236
|
-
kind?: "web";
|
|
9237
|
-
target?: string | null | undefined;
|
|
9238
|
-
preview?: {
|
|
9239
|
-
title?: string;
|
|
9240
|
-
} | null | undefined;
|
|
9241
|
-
});
|
|
9242
|
-
start: number;
|
|
9243
|
-
end: number;
|
|
9244
|
-
type: "hyperlink";
|
|
9245
|
-
} | {
|
|
9246
|
-
data: string;
|
|
9247
|
-
start: number;
|
|
9248
|
-
end: number;
|
|
9249
|
-
type: "label";
|
|
9250
|
-
} | {
|
|
9251
|
-
start: number;
|
|
9252
|
-
end: number;
|
|
9253
|
-
type: "strong" | "em" | "list-item";
|
|
9254
|
-
})[];
|
|
9255
|
-
};
|
|
9256
|
-
} & {
|
|
9257
|
-
label?: string;
|
|
9258
|
-
direction?: string;
|
|
9259
|
-
})[];
|
|
9260
|
-
} | {
|
|
9261
|
-
type: "tableCell";
|
|
9262
|
-
content: ({
|
|
9263
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
9264
|
-
content: {
|
|
9265
|
-
text: string;
|
|
9266
|
-
} & {
|
|
9267
|
-
spans?: ({
|
|
9268
|
-
data: ({
|
|
9269
|
-
__TYPE__: "ImageLink";
|
|
9270
|
-
} & {
|
|
9271
|
-
kind: "image";
|
|
9272
|
-
id: string;
|
|
9273
|
-
url: string;
|
|
9274
|
-
height: string;
|
|
9275
|
-
width: string;
|
|
9276
|
-
size: string;
|
|
9277
|
-
name: string;
|
|
9278
|
-
} & {
|
|
9279
|
-
date?: string | null | undefined;
|
|
9280
|
-
}) | ({
|
|
9281
|
-
__TYPE__: "FileLink";
|
|
9282
|
-
} & {
|
|
9283
|
-
kind: "file";
|
|
9284
|
-
id: string;
|
|
9285
|
-
url: string;
|
|
9286
|
-
name: string;
|
|
9287
|
-
size: string;
|
|
9288
|
-
} & {
|
|
9289
|
-
date?: string | null | undefined;
|
|
9290
|
-
}) | ({
|
|
9291
|
-
__TYPE__: "DocumentLink";
|
|
9292
|
-
} & {
|
|
9293
|
-
id: string;
|
|
9294
|
-
}) | ({
|
|
9295
|
-
__TYPE__: "ExternalLink";
|
|
9296
|
-
} & {
|
|
9297
|
-
url: string;
|
|
9298
|
-
} & {
|
|
9299
|
-
kind?: "web";
|
|
9300
|
-
target?: string | null | undefined;
|
|
9301
|
-
preview?: {
|
|
9302
|
-
title?: string;
|
|
9303
|
-
} | null | undefined;
|
|
9304
|
-
});
|
|
9305
|
-
start: number;
|
|
9306
|
-
end: number;
|
|
9307
|
-
type: "hyperlink";
|
|
9308
|
-
} | {
|
|
9309
|
-
data: string;
|
|
9310
|
-
start: number;
|
|
9311
|
-
end: number;
|
|
9312
|
-
type: "label";
|
|
9313
|
-
} | {
|
|
9314
|
-
start: number;
|
|
9315
|
-
end: number;
|
|
9316
|
-
type: "strong" | "em" | "list-item";
|
|
9317
|
-
})[];
|
|
9318
|
-
};
|
|
9319
|
-
} & {
|
|
9320
|
-
label?: string;
|
|
9321
|
-
direction?: string;
|
|
9322
|
-
})[];
|
|
9323
|
-
})[];
|
|
9324
|
-
}[];
|
|
9325
|
-
} & {
|
|
9326
|
-
__TYPE__: "TableContent";
|
|
9327
|
-
});
|
|
9328
|
-
};
|
|
9329
|
-
items: {
|
|
9330
|
-
__TYPE__: "GroupItemContent";
|
|
9331
|
-
value: [string, {
|
|
9332
|
-
type: string;
|
|
9333
|
-
__TYPE__: "EmptyContent";
|
|
9334
|
-
} | {
|
|
9335
|
-
__TYPE__: "BooleanContent";
|
|
9336
|
-
value: boolean;
|
|
7349
|
+
__TYPE__: "BooleanContent";
|
|
7350
|
+
value: boolean;
|
|
9337
7351
|
} | ({
|
|
9338
7352
|
embed_url: string;
|
|
9339
7353
|
type: string;
|
|
@@ -9687,7 +7701,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
9687
7701
|
label?: string | null | undefined;
|
|
9688
7702
|
direction?: string | null | undefined;
|
|
9689
7703
|
}) | ({
|
|
9690
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
7704
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9691
7705
|
content: {
|
|
9692
7706
|
text: string;
|
|
9693
7707
|
} & {
|
|
@@ -9746,14 +7760,18 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
9746
7760
|
} & {
|
|
9747
7761
|
label?: string;
|
|
9748
7762
|
direction?: string;
|
|
9749
|
-
})
|
|
9750
|
-
|
|
9751
|
-
|
|
9752
|
-
|
|
9753
|
-
|
|
9754
|
-
|
|
9755
|
-
|
|
9756
|
-
|
|
7763
|
+
}))[];
|
|
7764
|
+
} | {
|
|
7765
|
+
__TYPE__: "SeparatorContent";
|
|
7766
|
+
} | ({
|
|
7767
|
+
content: {
|
|
7768
|
+
type: "tableRow";
|
|
7769
|
+
content: ({
|
|
7770
|
+
type: "tableHeader";
|
|
7771
|
+
content: {
|
|
7772
|
+
__TYPE__: "StructuredTextContent";
|
|
7773
|
+
value: ({
|
|
7774
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9757
7775
|
content: {
|
|
9758
7776
|
text: string;
|
|
9759
7777
|
} & {
|
|
@@ -9813,10 +7831,13 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
9813
7831
|
label?: string;
|
|
9814
7832
|
direction?: string;
|
|
9815
7833
|
})[];
|
|
9816
|
-
}
|
|
9817
|
-
|
|
9818
|
-
|
|
9819
|
-
|
|
7834
|
+
};
|
|
7835
|
+
} | {
|
|
7836
|
+
type: "tableCell";
|
|
7837
|
+
content: {
|
|
7838
|
+
__TYPE__: "StructuredTextContent";
|
|
7839
|
+
value: ({
|
|
7840
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
9820
7841
|
content: {
|
|
9821
7842
|
text: string;
|
|
9822
7843
|
} & {
|
|
@@ -9876,140 +7897,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
9876
7897
|
label?: string;
|
|
9877
7898
|
direction?: string;
|
|
9878
7899
|
})[];
|
|
9879
|
-
}
|
|
9880
|
-
}[];
|
|
9881
|
-
})[];
|
|
9882
|
-
} | {
|
|
9883
|
-
__TYPE__: "SeparatorContent";
|
|
9884
|
-
} | ({
|
|
9885
|
-
content: {
|
|
9886
|
-
type: "tableRow";
|
|
9887
|
-
content: ({
|
|
9888
|
-
type: "tableHeader";
|
|
9889
|
-
content: ({
|
|
9890
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
9891
|
-
content: {
|
|
9892
|
-
text: string;
|
|
9893
|
-
} & {
|
|
9894
|
-
spans?: ({
|
|
9895
|
-
data: ({
|
|
9896
|
-
__TYPE__: "ImageLink";
|
|
9897
|
-
} & {
|
|
9898
|
-
kind: "image";
|
|
9899
|
-
id: string;
|
|
9900
|
-
url: string;
|
|
9901
|
-
height: string;
|
|
9902
|
-
width: string;
|
|
9903
|
-
size: string;
|
|
9904
|
-
name: string;
|
|
9905
|
-
} & {
|
|
9906
|
-
date?: string | null | undefined;
|
|
9907
|
-
}) | ({
|
|
9908
|
-
__TYPE__: "FileLink";
|
|
9909
|
-
} & {
|
|
9910
|
-
kind: "file";
|
|
9911
|
-
id: string;
|
|
9912
|
-
url: string;
|
|
9913
|
-
name: string;
|
|
9914
|
-
size: string;
|
|
9915
|
-
} & {
|
|
9916
|
-
date?: string | null | undefined;
|
|
9917
|
-
}) | ({
|
|
9918
|
-
__TYPE__: "DocumentLink";
|
|
9919
|
-
} & {
|
|
9920
|
-
id: string;
|
|
9921
|
-
}) | ({
|
|
9922
|
-
__TYPE__: "ExternalLink";
|
|
9923
|
-
} & {
|
|
9924
|
-
url: string;
|
|
9925
|
-
} & {
|
|
9926
|
-
kind?: "web";
|
|
9927
|
-
target?: string | null | undefined;
|
|
9928
|
-
preview?: {
|
|
9929
|
-
title?: string;
|
|
9930
|
-
} | null | undefined;
|
|
9931
|
-
});
|
|
9932
|
-
start: number;
|
|
9933
|
-
end: number;
|
|
9934
|
-
type: "hyperlink";
|
|
9935
|
-
} | {
|
|
9936
|
-
data: string;
|
|
9937
|
-
start: number;
|
|
9938
|
-
end: number;
|
|
9939
|
-
type: "label";
|
|
9940
|
-
} | {
|
|
9941
|
-
start: number;
|
|
9942
|
-
end: number;
|
|
9943
|
-
type: "strong" | "em" | "list-item";
|
|
9944
|
-
})[];
|
|
9945
|
-
};
|
|
9946
|
-
} & {
|
|
9947
|
-
label?: string;
|
|
9948
|
-
direction?: string;
|
|
9949
|
-
})[];
|
|
9950
|
-
} | {
|
|
9951
|
-
type: "tableCell";
|
|
9952
|
-
content: ({
|
|
9953
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
9954
|
-
content: {
|
|
9955
|
-
text: string;
|
|
9956
|
-
} & {
|
|
9957
|
-
spans?: ({
|
|
9958
|
-
data: ({
|
|
9959
|
-
__TYPE__: "ImageLink";
|
|
9960
|
-
} & {
|
|
9961
|
-
kind: "image";
|
|
9962
|
-
id: string;
|
|
9963
|
-
url: string;
|
|
9964
|
-
height: string;
|
|
9965
|
-
width: string;
|
|
9966
|
-
size: string;
|
|
9967
|
-
name: string;
|
|
9968
|
-
} & {
|
|
9969
|
-
date?: string | null | undefined;
|
|
9970
|
-
}) | ({
|
|
9971
|
-
__TYPE__: "FileLink";
|
|
9972
|
-
} & {
|
|
9973
|
-
kind: "file";
|
|
9974
|
-
id: string;
|
|
9975
|
-
url: string;
|
|
9976
|
-
name: string;
|
|
9977
|
-
size: string;
|
|
9978
|
-
} & {
|
|
9979
|
-
date?: string | null | undefined;
|
|
9980
|
-
}) | ({
|
|
9981
|
-
__TYPE__: "DocumentLink";
|
|
9982
|
-
} & {
|
|
9983
|
-
id: string;
|
|
9984
|
-
}) | ({
|
|
9985
|
-
__TYPE__: "ExternalLink";
|
|
9986
|
-
} & {
|
|
9987
|
-
url: string;
|
|
9988
|
-
} & {
|
|
9989
|
-
kind?: "web";
|
|
9990
|
-
target?: string | null | undefined;
|
|
9991
|
-
preview?: {
|
|
9992
|
-
title?: string;
|
|
9993
|
-
} | null | undefined;
|
|
9994
|
-
});
|
|
9995
|
-
start: number;
|
|
9996
|
-
end: number;
|
|
9997
|
-
type: "hyperlink";
|
|
9998
|
-
} | {
|
|
9999
|
-
data: string;
|
|
10000
|
-
start: number;
|
|
10001
|
-
end: number;
|
|
10002
|
-
type: "label";
|
|
10003
|
-
} | {
|
|
10004
|
-
start: number;
|
|
10005
|
-
end: number;
|
|
10006
|
-
type: "strong" | "em" | "list-item";
|
|
10007
|
-
})[];
|
|
10008
|
-
};
|
|
10009
|
-
} & {
|
|
10010
|
-
label?: string;
|
|
10011
|
-
direction?: string;
|
|
10012
|
-
})[];
|
|
7900
|
+
};
|
|
10013
7901
|
})[];
|
|
10014
7902
|
}[];
|
|
10015
7903
|
} & {
|
|
@@ -10381,7 +8269,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
10381
8269
|
label?: string | null | undefined;
|
|
10382
8270
|
direction?: string | null | undefined;
|
|
10383
8271
|
}) | ({
|
|
10384
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
8272
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
10385
8273
|
content: {
|
|
10386
8274
|
text: string;
|
|
10387
8275
|
} & {
|
|
@@ -10440,14 +8328,18 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
10440
8328
|
} & {
|
|
10441
8329
|
label?: string;
|
|
10442
8330
|
direction?: string;
|
|
10443
|
-
})
|
|
10444
|
-
|
|
10445
|
-
|
|
10446
|
-
|
|
10447
|
-
|
|
10448
|
-
|
|
10449
|
-
|
|
10450
|
-
|
|
8331
|
+
}))[];
|
|
8332
|
+
}> | import("fp-ts/lib/Either").Right<{
|
|
8333
|
+
__TYPE__: "SeparatorContent";
|
|
8334
|
+
}> | import("fp-ts/lib/Either").Right<{
|
|
8335
|
+
content: {
|
|
8336
|
+
type: "tableRow";
|
|
8337
|
+
content: ({
|
|
8338
|
+
type: "tableHeader";
|
|
8339
|
+
content: {
|
|
8340
|
+
__TYPE__: "StructuredTextContent";
|
|
8341
|
+
value: ({
|
|
8342
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
10451
8343
|
content: {
|
|
10452
8344
|
text: string;
|
|
10453
8345
|
} & {
|
|
@@ -10507,10 +8399,13 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
10507
8399
|
label?: string;
|
|
10508
8400
|
direction?: string;
|
|
10509
8401
|
})[];
|
|
10510
|
-
}
|
|
10511
|
-
|
|
10512
|
-
|
|
10513
|
-
|
|
8402
|
+
};
|
|
8403
|
+
} | {
|
|
8404
|
+
type: "tableCell";
|
|
8405
|
+
content: {
|
|
8406
|
+
__TYPE__: "StructuredTextContent";
|
|
8407
|
+
value: ({
|
|
8408
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
10514
8409
|
content: {
|
|
10515
8410
|
text: string;
|
|
10516
8411
|
} & {
|
|
@@ -10570,147 +8465,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
10570
8465
|
label?: string;
|
|
10571
8466
|
direction?: string;
|
|
10572
8467
|
})[];
|
|
10573
|
-
}
|
|
10574
|
-
}[];
|
|
10575
|
-
}
|
|
8468
|
+
};
|
|
8469
|
+
})[];
|
|
8470
|
+
}[];
|
|
8471
|
+
} & {
|
|
8472
|
+
__TYPE__: "TableContent";
|
|
10576
8473
|
}> | import("fp-ts/lib/Either").Right<{
|
|
10577
|
-
__TYPE__: "
|
|
10578
|
-
|
|
10579
|
-
content: {
|
|
10580
|
-
type: "tableRow";
|
|
10581
|
-
content: ({
|
|
10582
|
-
type: "tableHeader";
|
|
10583
|
-
content: ({
|
|
10584
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
10585
|
-
content: {
|
|
10586
|
-
text: string;
|
|
10587
|
-
} & {
|
|
10588
|
-
spans?: ({
|
|
10589
|
-
data: ({
|
|
10590
|
-
__TYPE__: "ImageLink";
|
|
10591
|
-
} & {
|
|
10592
|
-
kind: "image";
|
|
10593
|
-
id: string;
|
|
10594
|
-
url: string;
|
|
10595
|
-
height: string;
|
|
10596
|
-
width: string;
|
|
10597
|
-
size: string;
|
|
10598
|
-
name: string;
|
|
10599
|
-
} & {
|
|
10600
|
-
date?: string | null | undefined;
|
|
10601
|
-
}) | ({
|
|
10602
|
-
__TYPE__: "FileLink";
|
|
10603
|
-
} & {
|
|
10604
|
-
kind: "file";
|
|
10605
|
-
id: string;
|
|
10606
|
-
url: string;
|
|
10607
|
-
name: string;
|
|
10608
|
-
size: string;
|
|
10609
|
-
} & {
|
|
10610
|
-
date?: string | null | undefined;
|
|
10611
|
-
}) | ({
|
|
10612
|
-
__TYPE__: "DocumentLink";
|
|
10613
|
-
} & {
|
|
10614
|
-
id: string;
|
|
10615
|
-
}) | ({
|
|
10616
|
-
__TYPE__: "ExternalLink";
|
|
10617
|
-
} & {
|
|
10618
|
-
url: string;
|
|
10619
|
-
} & {
|
|
10620
|
-
kind?: "web";
|
|
10621
|
-
target?: string | null | undefined;
|
|
10622
|
-
preview?: {
|
|
10623
|
-
title?: string;
|
|
10624
|
-
} | null | undefined;
|
|
10625
|
-
});
|
|
10626
|
-
start: number;
|
|
10627
|
-
end: number;
|
|
10628
|
-
type: "hyperlink";
|
|
10629
|
-
} | {
|
|
10630
|
-
data: string;
|
|
10631
|
-
start: number;
|
|
10632
|
-
end: number;
|
|
10633
|
-
type: "label";
|
|
10634
|
-
} | {
|
|
10635
|
-
start: number;
|
|
10636
|
-
end: number;
|
|
10637
|
-
type: "strong" | "em" | "list-item";
|
|
10638
|
-
})[];
|
|
10639
|
-
};
|
|
10640
|
-
} & {
|
|
10641
|
-
label?: string;
|
|
10642
|
-
direction?: string;
|
|
10643
|
-
})[];
|
|
10644
|
-
} | {
|
|
10645
|
-
type: "tableCell";
|
|
10646
|
-
content: ({
|
|
10647
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
10648
|
-
content: {
|
|
10649
|
-
text: string;
|
|
10650
|
-
} & {
|
|
10651
|
-
spans?: ({
|
|
10652
|
-
data: ({
|
|
10653
|
-
__TYPE__: "ImageLink";
|
|
10654
|
-
} & {
|
|
10655
|
-
kind: "image";
|
|
10656
|
-
id: string;
|
|
10657
|
-
url: string;
|
|
10658
|
-
height: string;
|
|
10659
|
-
width: string;
|
|
10660
|
-
size: string;
|
|
10661
|
-
name: string;
|
|
10662
|
-
} & {
|
|
10663
|
-
date?: string | null | undefined;
|
|
10664
|
-
}) | ({
|
|
10665
|
-
__TYPE__: "FileLink";
|
|
10666
|
-
} & {
|
|
10667
|
-
kind: "file";
|
|
10668
|
-
id: string;
|
|
10669
|
-
url: string;
|
|
10670
|
-
name: string;
|
|
10671
|
-
size: string;
|
|
10672
|
-
} & {
|
|
10673
|
-
date?: string | null | undefined;
|
|
10674
|
-
}) | ({
|
|
10675
|
-
__TYPE__: "DocumentLink";
|
|
10676
|
-
} & {
|
|
10677
|
-
id: string;
|
|
10678
|
-
}) | ({
|
|
10679
|
-
__TYPE__: "ExternalLink";
|
|
10680
|
-
} & {
|
|
10681
|
-
url: string;
|
|
10682
|
-
} & {
|
|
10683
|
-
kind?: "web";
|
|
10684
|
-
target?: string | null | undefined;
|
|
10685
|
-
preview?: {
|
|
10686
|
-
title?: string;
|
|
10687
|
-
} | null | undefined;
|
|
10688
|
-
});
|
|
10689
|
-
start: number;
|
|
10690
|
-
end: number;
|
|
10691
|
-
type: "hyperlink";
|
|
10692
|
-
} | {
|
|
10693
|
-
data: string;
|
|
10694
|
-
start: number;
|
|
10695
|
-
end: number;
|
|
10696
|
-
type: "label";
|
|
10697
|
-
} | {
|
|
10698
|
-
start: number;
|
|
10699
|
-
end: number;
|
|
10700
|
-
type: "strong" | "em" | "list-item";
|
|
10701
|
-
})[];
|
|
10702
|
-
};
|
|
10703
|
-
} & {
|
|
10704
|
-
label?: string;
|
|
10705
|
-
direction?: string;
|
|
10706
|
-
})[];
|
|
10707
|
-
})[];
|
|
10708
|
-
}[];
|
|
10709
|
-
} & {
|
|
10710
|
-
__TYPE__: "TableContent";
|
|
10711
|
-
}> | import("fp-ts/lib/Either").Right<{
|
|
10712
|
-
__TYPE__: "UIDContent";
|
|
10713
|
-
value: string;
|
|
8474
|
+
__TYPE__: "UIDContent";
|
|
8475
|
+
value: string;
|
|
10714
8476
|
}> | import("fp-ts/lib/Either").Right<{
|
|
10715
8477
|
__TYPE__: "SliceContentType";
|
|
10716
8478
|
value: {
|
|
@@ -11076,7 +8838,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
11076
8838
|
label?: string | null | undefined;
|
|
11077
8839
|
direction?: string | null | undefined;
|
|
11078
8840
|
}) | ({
|
|
11079
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
8841
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11080
8842
|
content: {
|
|
11081
8843
|
text: string;
|
|
11082
8844
|
} & {
|
|
@@ -11135,14 +8897,18 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
11135
8897
|
} & {
|
|
11136
8898
|
label?: string;
|
|
11137
8899
|
direction?: string;
|
|
11138
|
-
})
|
|
11139
|
-
|
|
11140
|
-
|
|
11141
|
-
|
|
11142
|
-
|
|
11143
|
-
|
|
11144
|
-
|
|
11145
|
-
|
|
8900
|
+
}))[];
|
|
8901
|
+
} | {
|
|
8902
|
+
__TYPE__: "SeparatorContent";
|
|
8903
|
+
} | ({
|
|
8904
|
+
content: {
|
|
8905
|
+
type: "tableRow";
|
|
8906
|
+
content: ({
|
|
8907
|
+
type: "tableHeader";
|
|
8908
|
+
content: {
|
|
8909
|
+
__TYPE__: "StructuredTextContent";
|
|
8910
|
+
value: ({
|
|
8911
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11146
8912
|
content: {
|
|
11147
8913
|
text: string;
|
|
11148
8914
|
} & {
|
|
@@ -11202,10 +8968,13 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
11202
8968
|
label?: string;
|
|
11203
8969
|
direction?: string;
|
|
11204
8970
|
})[];
|
|
11205
|
-
}
|
|
11206
|
-
|
|
11207
|
-
|
|
11208
|
-
|
|
8971
|
+
};
|
|
8972
|
+
} | {
|
|
8973
|
+
type: "tableCell";
|
|
8974
|
+
content: {
|
|
8975
|
+
__TYPE__: "StructuredTextContent";
|
|
8976
|
+
value: ({
|
|
8977
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11209
8978
|
content: {
|
|
11210
8979
|
text: string;
|
|
11211
8980
|
} & {
|
|
@@ -11265,150 +9034,17 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
11265
9034
|
label?: string;
|
|
11266
9035
|
direction?: string;
|
|
11267
9036
|
})[];
|
|
11268
|
-
}
|
|
11269
|
-
}[];
|
|
11270
|
-
}
|
|
11271
|
-
}
|
|
11272
|
-
__TYPE__: "
|
|
11273
|
-
} |
|
|
11274
|
-
|
|
11275
|
-
|
|
11276
|
-
|
|
11277
|
-
type:
|
|
11278
|
-
|
|
11279
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
11280
|
-
content: {
|
|
11281
|
-
text: string;
|
|
11282
|
-
} & {
|
|
11283
|
-
spans?: ({
|
|
11284
|
-
data: ({
|
|
11285
|
-
__TYPE__: "ImageLink";
|
|
11286
|
-
} & {
|
|
11287
|
-
kind: "image";
|
|
11288
|
-
id: string;
|
|
11289
|
-
url: string;
|
|
11290
|
-
height: string;
|
|
11291
|
-
width: string;
|
|
11292
|
-
size: string;
|
|
11293
|
-
name: string;
|
|
11294
|
-
} & {
|
|
11295
|
-
date?: string | null | undefined;
|
|
11296
|
-
}) | ({
|
|
11297
|
-
__TYPE__: "FileLink";
|
|
11298
|
-
} & {
|
|
11299
|
-
kind: "file";
|
|
11300
|
-
id: string;
|
|
11301
|
-
url: string;
|
|
11302
|
-
name: string;
|
|
11303
|
-
size: string;
|
|
11304
|
-
} & {
|
|
11305
|
-
date?: string | null | undefined;
|
|
11306
|
-
}) | ({
|
|
11307
|
-
__TYPE__: "DocumentLink";
|
|
11308
|
-
} & {
|
|
11309
|
-
id: string;
|
|
11310
|
-
}) | ({
|
|
11311
|
-
__TYPE__: "ExternalLink";
|
|
11312
|
-
} & {
|
|
11313
|
-
url: string;
|
|
11314
|
-
} & {
|
|
11315
|
-
kind?: "web";
|
|
11316
|
-
target?: string | null | undefined;
|
|
11317
|
-
preview?: {
|
|
11318
|
-
title?: string;
|
|
11319
|
-
} | null | undefined;
|
|
11320
|
-
});
|
|
11321
|
-
start: number;
|
|
11322
|
-
end: number;
|
|
11323
|
-
type: "hyperlink";
|
|
11324
|
-
} | {
|
|
11325
|
-
data: string;
|
|
11326
|
-
start: number;
|
|
11327
|
-
end: number;
|
|
11328
|
-
type: "label";
|
|
11329
|
-
} | {
|
|
11330
|
-
start: number;
|
|
11331
|
-
end: number;
|
|
11332
|
-
type: "strong" | "em" | "list-item";
|
|
11333
|
-
})[];
|
|
11334
|
-
};
|
|
11335
|
-
} & {
|
|
11336
|
-
label?: string;
|
|
11337
|
-
direction?: string;
|
|
11338
|
-
})[];
|
|
11339
|
-
} | {
|
|
11340
|
-
type: "tableCell";
|
|
11341
|
-
content: ({
|
|
11342
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
11343
|
-
content: {
|
|
11344
|
-
text: string;
|
|
11345
|
-
} & {
|
|
11346
|
-
spans?: ({
|
|
11347
|
-
data: ({
|
|
11348
|
-
__TYPE__: "ImageLink";
|
|
11349
|
-
} & {
|
|
11350
|
-
kind: "image";
|
|
11351
|
-
id: string;
|
|
11352
|
-
url: string;
|
|
11353
|
-
height: string;
|
|
11354
|
-
width: string;
|
|
11355
|
-
size: string;
|
|
11356
|
-
name: string;
|
|
11357
|
-
} & {
|
|
11358
|
-
date?: string | null | undefined;
|
|
11359
|
-
}) | ({
|
|
11360
|
-
__TYPE__: "FileLink";
|
|
11361
|
-
} & {
|
|
11362
|
-
kind: "file";
|
|
11363
|
-
id: string;
|
|
11364
|
-
url: string;
|
|
11365
|
-
name: string;
|
|
11366
|
-
size: string;
|
|
11367
|
-
} & {
|
|
11368
|
-
date?: string | null | undefined;
|
|
11369
|
-
}) | ({
|
|
11370
|
-
__TYPE__: "DocumentLink";
|
|
11371
|
-
} & {
|
|
11372
|
-
id: string;
|
|
11373
|
-
}) | ({
|
|
11374
|
-
__TYPE__: "ExternalLink";
|
|
11375
|
-
} & {
|
|
11376
|
-
url: string;
|
|
11377
|
-
} & {
|
|
11378
|
-
kind?: "web";
|
|
11379
|
-
target?: string | null | undefined;
|
|
11380
|
-
preview?: {
|
|
11381
|
-
title?: string;
|
|
11382
|
-
} | null | undefined;
|
|
11383
|
-
});
|
|
11384
|
-
start: number;
|
|
11385
|
-
end: number;
|
|
11386
|
-
type: "hyperlink";
|
|
11387
|
-
} | {
|
|
11388
|
-
data: string;
|
|
11389
|
-
start: number;
|
|
11390
|
-
end: number;
|
|
11391
|
-
type: "label";
|
|
11392
|
-
} | {
|
|
11393
|
-
start: number;
|
|
11394
|
-
end: number;
|
|
11395
|
-
type: "strong" | "em" | "list-item";
|
|
11396
|
-
})[];
|
|
11397
|
-
};
|
|
11398
|
-
} & {
|
|
11399
|
-
label?: string;
|
|
11400
|
-
direction?: string;
|
|
11401
|
-
})[];
|
|
11402
|
-
})[];
|
|
11403
|
-
}[];
|
|
11404
|
-
} & {
|
|
11405
|
-
__TYPE__: "TableContent";
|
|
11406
|
-
}) | {
|
|
11407
|
-
__TYPE__: "CompositeSliceContent";
|
|
11408
|
-
nonRepeat: {
|
|
11409
|
-
[x: string]: {
|
|
11410
|
-
type: string;
|
|
11411
|
-
__TYPE__: "EmptyContent";
|
|
9037
|
+
};
|
|
9038
|
+
})[];
|
|
9039
|
+
}[];
|
|
9040
|
+
} & {
|
|
9041
|
+
__TYPE__: "TableContent";
|
|
9042
|
+
}) | {
|
|
9043
|
+
__TYPE__: "CompositeSliceContent";
|
|
9044
|
+
nonRepeat: {
|
|
9045
|
+
[x: string]: {
|
|
9046
|
+
type: string;
|
|
9047
|
+
__TYPE__: "EmptyContent";
|
|
11412
9048
|
} | {
|
|
11413
9049
|
__TYPE__: "BooleanContent";
|
|
11414
9050
|
value: boolean;
|
|
@@ -11765,7 +9401,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
11765
9401
|
label?: string | null | undefined;
|
|
11766
9402
|
direction?: string | null | undefined;
|
|
11767
9403
|
}) | ({
|
|
11768
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
9404
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11769
9405
|
content: {
|
|
11770
9406
|
text: string;
|
|
11771
9407
|
} & {
|
|
@@ -11824,14 +9460,18 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
11824
9460
|
} & {
|
|
11825
9461
|
label?: string;
|
|
11826
9462
|
direction?: string;
|
|
11827
|
-
})
|
|
11828
|
-
|
|
11829
|
-
|
|
11830
|
-
|
|
11831
|
-
|
|
11832
|
-
|
|
11833
|
-
|
|
11834
|
-
|
|
9463
|
+
}))[];
|
|
9464
|
+
} | {
|
|
9465
|
+
__TYPE__: "SeparatorContent";
|
|
9466
|
+
} | ({
|
|
9467
|
+
content: {
|
|
9468
|
+
type: "tableRow";
|
|
9469
|
+
content: ({
|
|
9470
|
+
type: "tableHeader";
|
|
9471
|
+
content: {
|
|
9472
|
+
__TYPE__: "StructuredTextContent";
|
|
9473
|
+
value: ({
|
|
9474
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11835
9475
|
content: {
|
|
11836
9476
|
text: string;
|
|
11837
9477
|
} & {
|
|
@@ -11891,10 +9531,13 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
11891
9531
|
label?: string;
|
|
11892
9532
|
direction?: string;
|
|
11893
9533
|
})[];
|
|
11894
|
-
}
|
|
11895
|
-
|
|
11896
|
-
|
|
11897
|
-
|
|
9534
|
+
};
|
|
9535
|
+
} | {
|
|
9536
|
+
type: "tableCell";
|
|
9537
|
+
content: {
|
|
9538
|
+
__TYPE__: "StructuredTextContent";
|
|
9539
|
+
value: ({
|
|
9540
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
11898
9541
|
content: {
|
|
11899
9542
|
text: string;
|
|
11900
9543
|
} & {
|
|
@@ -11954,140 +9597,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
11954
9597
|
label?: string;
|
|
11955
9598
|
direction?: string;
|
|
11956
9599
|
})[];
|
|
11957
|
-
}
|
|
11958
|
-
}[];
|
|
11959
|
-
})[];
|
|
11960
|
-
} | {
|
|
11961
|
-
__TYPE__: "SeparatorContent";
|
|
11962
|
-
} | ({
|
|
11963
|
-
content: {
|
|
11964
|
-
type: "tableRow";
|
|
11965
|
-
content: ({
|
|
11966
|
-
type: "tableHeader";
|
|
11967
|
-
content: ({
|
|
11968
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
11969
|
-
content: {
|
|
11970
|
-
text: string;
|
|
11971
|
-
} & {
|
|
11972
|
-
spans?: ({
|
|
11973
|
-
data: ({
|
|
11974
|
-
__TYPE__: "ImageLink";
|
|
11975
|
-
} & {
|
|
11976
|
-
kind: "image";
|
|
11977
|
-
id: string;
|
|
11978
|
-
url: string;
|
|
11979
|
-
height: string;
|
|
11980
|
-
width: string;
|
|
11981
|
-
size: string;
|
|
11982
|
-
name: string;
|
|
11983
|
-
} & {
|
|
11984
|
-
date?: string | null | undefined;
|
|
11985
|
-
}) | ({
|
|
11986
|
-
__TYPE__: "FileLink";
|
|
11987
|
-
} & {
|
|
11988
|
-
kind: "file";
|
|
11989
|
-
id: string;
|
|
11990
|
-
url: string;
|
|
11991
|
-
name: string;
|
|
11992
|
-
size: string;
|
|
11993
|
-
} & {
|
|
11994
|
-
date?: string | null | undefined;
|
|
11995
|
-
}) | ({
|
|
11996
|
-
__TYPE__: "DocumentLink";
|
|
11997
|
-
} & {
|
|
11998
|
-
id: string;
|
|
11999
|
-
}) | ({
|
|
12000
|
-
__TYPE__: "ExternalLink";
|
|
12001
|
-
} & {
|
|
12002
|
-
url: string;
|
|
12003
|
-
} & {
|
|
12004
|
-
kind?: "web";
|
|
12005
|
-
target?: string | null | undefined;
|
|
12006
|
-
preview?: {
|
|
12007
|
-
title?: string;
|
|
12008
|
-
} | null | undefined;
|
|
12009
|
-
});
|
|
12010
|
-
start: number;
|
|
12011
|
-
end: number;
|
|
12012
|
-
type: "hyperlink";
|
|
12013
|
-
} | {
|
|
12014
|
-
data: string;
|
|
12015
|
-
start: number;
|
|
12016
|
-
end: number;
|
|
12017
|
-
type: "label";
|
|
12018
|
-
} | {
|
|
12019
|
-
start: number;
|
|
12020
|
-
end: number;
|
|
12021
|
-
type: "strong" | "em" | "list-item";
|
|
12022
|
-
})[];
|
|
12023
|
-
};
|
|
12024
|
-
} & {
|
|
12025
|
-
label?: string;
|
|
12026
|
-
direction?: string;
|
|
12027
|
-
})[];
|
|
12028
|
-
} | {
|
|
12029
|
-
type: "tableCell";
|
|
12030
|
-
content: ({
|
|
12031
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
12032
|
-
content: {
|
|
12033
|
-
text: string;
|
|
12034
|
-
} & {
|
|
12035
|
-
spans?: ({
|
|
12036
|
-
data: ({
|
|
12037
|
-
__TYPE__: "ImageLink";
|
|
12038
|
-
} & {
|
|
12039
|
-
kind: "image";
|
|
12040
|
-
id: string;
|
|
12041
|
-
url: string;
|
|
12042
|
-
height: string;
|
|
12043
|
-
width: string;
|
|
12044
|
-
size: string;
|
|
12045
|
-
name: string;
|
|
12046
|
-
} & {
|
|
12047
|
-
date?: string | null | undefined;
|
|
12048
|
-
}) | ({
|
|
12049
|
-
__TYPE__: "FileLink";
|
|
12050
|
-
} & {
|
|
12051
|
-
kind: "file";
|
|
12052
|
-
id: string;
|
|
12053
|
-
url: string;
|
|
12054
|
-
name: string;
|
|
12055
|
-
size: string;
|
|
12056
|
-
} & {
|
|
12057
|
-
date?: string | null | undefined;
|
|
12058
|
-
}) | ({
|
|
12059
|
-
__TYPE__: "DocumentLink";
|
|
12060
|
-
} & {
|
|
12061
|
-
id: string;
|
|
12062
|
-
}) | ({
|
|
12063
|
-
__TYPE__: "ExternalLink";
|
|
12064
|
-
} & {
|
|
12065
|
-
url: string;
|
|
12066
|
-
} & {
|
|
12067
|
-
kind?: "web";
|
|
12068
|
-
target?: string | null | undefined;
|
|
12069
|
-
preview?: {
|
|
12070
|
-
title?: string;
|
|
12071
|
-
} | null | undefined;
|
|
12072
|
-
});
|
|
12073
|
-
start: number;
|
|
12074
|
-
end: number;
|
|
12075
|
-
type: "hyperlink";
|
|
12076
|
-
} | {
|
|
12077
|
-
data: string;
|
|
12078
|
-
start: number;
|
|
12079
|
-
end: number;
|
|
12080
|
-
type: "label";
|
|
12081
|
-
} | {
|
|
12082
|
-
start: number;
|
|
12083
|
-
end: number;
|
|
12084
|
-
type: "strong" | "em" | "list-item";
|
|
12085
|
-
})[];
|
|
12086
|
-
};
|
|
12087
|
-
} & {
|
|
12088
|
-
label?: string;
|
|
12089
|
-
direction?: string;
|
|
12090
|
-
})[];
|
|
9600
|
+
};
|
|
12091
9601
|
})[];
|
|
12092
9602
|
}[];
|
|
12093
9603
|
} & {
|
|
@@ -12455,7 +9965,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
12455
9965
|
label?: string | null | undefined;
|
|
12456
9966
|
direction?: string | null | undefined;
|
|
12457
9967
|
}) | ({
|
|
12458
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
9968
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
12459
9969
|
content: {
|
|
12460
9970
|
text: string;
|
|
12461
9971
|
} & {
|
|
@@ -12514,14 +10024,18 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
12514
10024
|
} & {
|
|
12515
10025
|
label?: string;
|
|
12516
10026
|
direction?: string;
|
|
12517
|
-
})
|
|
12518
|
-
|
|
12519
|
-
|
|
12520
|
-
|
|
12521
|
-
|
|
12522
|
-
|
|
12523
|
-
|
|
12524
|
-
|
|
10027
|
+
}))[];
|
|
10028
|
+
} | {
|
|
10029
|
+
__TYPE__: "SeparatorContent";
|
|
10030
|
+
} | ({
|
|
10031
|
+
content: {
|
|
10032
|
+
type: "tableRow";
|
|
10033
|
+
content: ({
|
|
10034
|
+
type: "tableHeader";
|
|
10035
|
+
content: {
|
|
10036
|
+
__TYPE__: "StructuredTextContent";
|
|
10037
|
+
value: ({
|
|
10038
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
12525
10039
|
content: {
|
|
12526
10040
|
text: string;
|
|
12527
10041
|
} & {
|
|
@@ -12581,10 +10095,13 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
12581
10095
|
label?: string;
|
|
12582
10096
|
direction?: string;
|
|
12583
10097
|
})[];
|
|
12584
|
-
}
|
|
12585
|
-
|
|
12586
|
-
|
|
12587
|
-
|
|
10098
|
+
};
|
|
10099
|
+
} | {
|
|
10100
|
+
type: "tableCell";
|
|
10101
|
+
content: {
|
|
10102
|
+
__TYPE__: "StructuredTextContent";
|
|
10103
|
+
value: ({
|
|
10104
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
12588
10105
|
content: {
|
|
12589
10106
|
text: string;
|
|
12590
10107
|
} & {
|
|
@@ -12644,140 +10161,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
12644
10161
|
label?: string;
|
|
12645
10162
|
direction?: string;
|
|
12646
10163
|
})[];
|
|
12647
|
-
}
|
|
12648
|
-
}[];
|
|
12649
|
-
})[];
|
|
12650
|
-
} | {
|
|
12651
|
-
__TYPE__: "SeparatorContent";
|
|
12652
|
-
} | ({
|
|
12653
|
-
content: {
|
|
12654
|
-
type: "tableRow";
|
|
12655
|
-
content: ({
|
|
12656
|
-
type: "tableHeader";
|
|
12657
|
-
content: ({
|
|
12658
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
12659
|
-
content: {
|
|
12660
|
-
text: string;
|
|
12661
|
-
} & {
|
|
12662
|
-
spans?: ({
|
|
12663
|
-
data: ({
|
|
12664
|
-
__TYPE__: "ImageLink";
|
|
12665
|
-
} & {
|
|
12666
|
-
kind: "image";
|
|
12667
|
-
id: string;
|
|
12668
|
-
url: string;
|
|
12669
|
-
height: string;
|
|
12670
|
-
width: string;
|
|
12671
|
-
size: string;
|
|
12672
|
-
name: string;
|
|
12673
|
-
} & {
|
|
12674
|
-
date?: string | null | undefined;
|
|
12675
|
-
}) | ({
|
|
12676
|
-
__TYPE__: "FileLink";
|
|
12677
|
-
} & {
|
|
12678
|
-
kind: "file";
|
|
12679
|
-
id: string;
|
|
12680
|
-
url: string;
|
|
12681
|
-
name: string;
|
|
12682
|
-
size: string;
|
|
12683
|
-
} & {
|
|
12684
|
-
date?: string | null | undefined;
|
|
12685
|
-
}) | ({
|
|
12686
|
-
__TYPE__: "DocumentLink";
|
|
12687
|
-
} & {
|
|
12688
|
-
id: string;
|
|
12689
|
-
}) | ({
|
|
12690
|
-
__TYPE__: "ExternalLink";
|
|
12691
|
-
} & {
|
|
12692
|
-
url: string;
|
|
12693
|
-
} & {
|
|
12694
|
-
kind?: "web";
|
|
12695
|
-
target?: string | null | undefined;
|
|
12696
|
-
preview?: {
|
|
12697
|
-
title?: string;
|
|
12698
|
-
} | null | undefined;
|
|
12699
|
-
});
|
|
12700
|
-
start: number;
|
|
12701
|
-
end: number;
|
|
12702
|
-
type: "hyperlink";
|
|
12703
|
-
} | {
|
|
12704
|
-
data: string;
|
|
12705
|
-
start: number;
|
|
12706
|
-
end: number;
|
|
12707
|
-
type: "label";
|
|
12708
|
-
} | {
|
|
12709
|
-
start: number;
|
|
12710
|
-
end: number;
|
|
12711
|
-
type: "strong" | "em" | "list-item";
|
|
12712
|
-
})[];
|
|
12713
|
-
};
|
|
12714
|
-
} & {
|
|
12715
|
-
label?: string;
|
|
12716
|
-
direction?: string;
|
|
12717
|
-
})[];
|
|
12718
|
-
} | {
|
|
12719
|
-
type: "tableCell";
|
|
12720
|
-
content: ({
|
|
12721
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
12722
|
-
content: {
|
|
12723
|
-
text: string;
|
|
12724
|
-
} & {
|
|
12725
|
-
spans?: ({
|
|
12726
|
-
data: ({
|
|
12727
|
-
__TYPE__: "ImageLink";
|
|
12728
|
-
} & {
|
|
12729
|
-
kind: "image";
|
|
12730
|
-
id: string;
|
|
12731
|
-
url: string;
|
|
12732
|
-
height: string;
|
|
12733
|
-
width: string;
|
|
12734
|
-
size: string;
|
|
12735
|
-
name: string;
|
|
12736
|
-
} & {
|
|
12737
|
-
date?: string | null | undefined;
|
|
12738
|
-
}) | ({
|
|
12739
|
-
__TYPE__: "FileLink";
|
|
12740
|
-
} & {
|
|
12741
|
-
kind: "file";
|
|
12742
|
-
id: string;
|
|
12743
|
-
url: string;
|
|
12744
|
-
name: string;
|
|
12745
|
-
size: string;
|
|
12746
|
-
} & {
|
|
12747
|
-
date?: string | null | undefined;
|
|
12748
|
-
}) | ({
|
|
12749
|
-
__TYPE__: "DocumentLink";
|
|
12750
|
-
} & {
|
|
12751
|
-
id: string;
|
|
12752
|
-
}) | ({
|
|
12753
|
-
__TYPE__: "ExternalLink";
|
|
12754
|
-
} & {
|
|
12755
|
-
url: string;
|
|
12756
|
-
} & {
|
|
12757
|
-
kind?: "web";
|
|
12758
|
-
target?: string | null | undefined;
|
|
12759
|
-
preview?: {
|
|
12760
|
-
title?: string;
|
|
12761
|
-
} | null | undefined;
|
|
12762
|
-
});
|
|
12763
|
-
start: number;
|
|
12764
|
-
end: number;
|
|
12765
|
-
type: "hyperlink";
|
|
12766
|
-
} | {
|
|
12767
|
-
data: string;
|
|
12768
|
-
start: number;
|
|
12769
|
-
end: number;
|
|
12770
|
-
type: "label";
|
|
12771
|
-
} | {
|
|
12772
|
-
start: number;
|
|
12773
|
-
end: number;
|
|
12774
|
-
type: "strong" | "em" | "list-item";
|
|
12775
|
-
})[];
|
|
12776
|
-
};
|
|
12777
|
-
} & {
|
|
12778
|
-
label?: string;
|
|
12779
|
-
direction?: string;
|
|
12780
|
-
})[];
|
|
10164
|
+
};
|
|
12781
10165
|
})[];
|
|
12782
10166
|
}[];
|
|
12783
10167
|
} & {
|
|
@@ -13147,7 +10531,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
13147
10531
|
label?: string | null | undefined;
|
|
13148
10532
|
direction?: string | null | undefined;
|
|
13149
10533
|
}) | ({
|
|
13150
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
10534
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13151
10535
|
content: {
|
|
13152
10536
|
text: string;
|
|
13153
10537
|
} & {
|
|
@@ -13206,14 +10590,18 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
13206
10590
|
} & {
|
|
13207
10591
|
label?: string;
|
|
13208
10592
|
direction?: string;
|
|
13209
|
-
})
|
|
13210
|
-
|
|
13211
|
-
|
|
13212
|
-
|
|
13213
|
-
|
|
13214
|
-
|
|
13215
|
-
|
|
13216
|
-
|
|
10593
|
+
}))[];
|
|
10594
|
+
} | {
|
|
10595
|
+
__TYPE__: "SeparatorContent";
|
|
10596
|
+
} | ({
|
|
10597
|
+
content: {
|
|
10598
|
+
type: "tableRow";
|
|
10599
|
+
content: ({
|
|
10600
|
+
type: "tableHeader";
|
|
10601
|
+
content: {
|
|
10602
|
+
__TYPE__: "StructuredTextContent";
|
|
10603
|
+
value: ({
|
|
10604
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13217
10605
|
content: {
|
|
13218
10606
|
text: string;
|
|
13219
10607
|
} & {
|
|
@@ -13273,203 +10661,73 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
13273
10661
|
label?: string;
|
|
13274
10662
|
direction?: string;
|
|
13275
10663
|
})[];
|
|
13276
|
-
}
|
|
13277
|
-
|
|
13278
|
-
|
|
13279
|
-
|
|
10664
|
+
};
|
|
10665
|
+
} | {
|
|
10666
|
+
type: "tableCell";
|
|
10667
|
+
content: {
|
|
10668
|
+
__TYPE__: "StructuredTextContent";
|
|
10669
|
+
value: ({
|
|
10670
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13280
10671
|
content: {
|
|
13281
10672
|
text: string;
|
|
13282
10673
|
} & {
|
|
13283
10674
|
spans?: ({
|
|
13284
|
-
data: ({
|
|
13285
|
-
__TYPE__: "ImageLink";
|
|
13286
|
-
} & {
|
|
13287
|
-
kind: "image";
|
|
13288
|
-
id: string;
|
|
13289
|
-
url: string;
|
|
13290
|
-
height: string;
|
|
13291
|
-
width: string;
|
|
13292
|
-
size: string;
|
|
13293
|
-
name: string;
|
|
13294
|
-
} & {
|
|
13295
|
-
date?: string | null | undefined;
|
|
13296
|
-
}) | ({
|
|
13297
|
-
__TYPE__: "FileLink";
|
|
13298
|
-
} & {
|
|
13299
|
-
kind: "file";
|
|
13300
|
-
id: string;
|
|
13301
|
-
url: string;
|
|
13302
|
-
name: string;
|
|
13303
|
-
size: string;
|
|
13304
|
-
} & {
|
|
13305
|
-
date?: string | null | undefined;
|
|
13306
|
-
}) | ({
|
|
13307
|
-
__TYPE__: "DocumentLink";
|
|
13308
|
-
} & {
|
|
13309
|
-
id: string;
|
|
13310
|
-
}) | ({
|
|
13311
|
-
__TYPE__: "ExternalLink";
|
|
13312
|
-
} & {
|
|
13313
|
-
url: string;
|
|
13314
|
-
} & {
|
|
13315
|
-
kind?: "web";
|
|
13316
|
-
target?: string | null | undefined;
|
|
13317
|
-
preview?: {
|
|
13318
|
-
title?: string;
|
|
13319
|
-
} | null | undefined;
|
|
13320
|
-
});
|
|
13321
|
-
start: number;
|
|
13322
|
-
end: number;
|
|
13323
|
-
type: "hyperlink";
|
|
13324
|
-
} | {
|
|
13325
|
-
data: string;
|
|
13326
|
-
start: number;
|
|
13327
|
-
end: number;
|
|
13328
|
-
type: "label";
|
|
13329
|
-
} | {
|
|
13330
|
-
start: number;
|
|
13331
|
-
end: number;
|
|
13332
|
-
type: "strong" | "em" | "list-item";
|
|
13333
|
-
})[];
|
|
13334
|
-
};
|
|
13335
|
-
} & {
|
|
13336
|
-
label?: string;
|
|
13337
|
-
direction?: string;
|
|
13338
|
-
})[];
|
|
13339
|
-
})[];
|
|
13340
|
-
}[];
|
|
13341
|
-
})[];
|
|
13342
|
-
} | {
|
|
13343
|
-
__TYPE__: "SeparatorContent";
|
|
13344
|
-
} | ({
|
|
13345
|
-
content: {
|
|
13346
|
-
type: "tableRow";
|
|
13347
|
-
content: ({
|
|
13348
|
-
type: "tableHeader";
|
|
13349
|
-
content: ({
|
|
13350
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
13351
|
-
content: {
|
|
13352
|
-
text: string;
|
|
13353
|
-
} & {
|
|
13354
|
-
spans?: ({
|
|
13355
|
-
data: ({
|
|
13356
|
-
__TYPE__: "ImageLink";
|
|
13357
|
-
} & {
|
|
13358
|
-
kind: "image";
|
|
13359
|
-
id: string;
|
|
13360
|
-
url: string;
|
|
13361
|
-
height: string;
|
|
13362
|
-
width: string;
|
|
13363
|
-
size: string;
|
|
13364
|
-
name: string;
|
|
13365
|
-
} & {
|
|
13366
|
-
date?: string | null | undefined;
|
|
13367
|
-
}) | ({
|
|
13368
|
-
__TYPE__: "FileLink";
|
|
13369
|
-
} & {
|
|
13370
|
-
kind: "file";
|
|
13371
|
-
id: string;
|
|
13372
|
-
url: string;
|
|
13373
|
-
name: string;
|
|
13374
|
-
size: string;
|
|
13375
|
-
} & {
|
|
13376
|
-
date?: string | null | undefined;
|
|
13377
|
-
}) | ({
|
|
13378
|
-
__TYPE__: "DocumentLink";
|
|
13379
|
-
} & {
|
|
13380
|
-
id: string;
|
|
13381
|
-
}) | ({
|
|
13382
|
-
__TYPE__: "ExternalLink";
|
|
13383
|
-
} & {
|
|
13384
|
-
url: string;
|
|
13385
|
-
} & {
|
|
13386
|
-
kind?: "web";
|
|
13387
|
-
target?: string | null | undefined;
|
|
13388
|
-
preview?: {
|
|
13389
|
-
title?: string;
|
|
13390
|
-
} | null | undefined;
|
|
13391
|
-
});
|
|
13392
|
-
start: number;
|
|
13393
|
-
end: number;
|
|
13394
|
-
type: "hyperlink";
|
|
13395
|
-
} | {
|
|
13396
|
-
data: string;
|
|
13397
|
-
start: number;
|
|
13398
|
-
end: number;
|
|
13399
|
-
type: "label";
|
|
13400
|
-
} | {
|
|
13401
|
-
start: number;
|
|
13402
|
-
end: number;
|
|
13403
|
-
type: "strong" | "em" | "list-item";
|
|
13404
|
-
})[];
|
|
13405
|
-
};
|
|
13406
|
-
} & {
|
|
13407
|
-
label?: string;
|
|
13408
|
-
direction?: string;
|
|
13409
|
-
})[];
|
|
13410
|
-
} | {
|
|
13411
|
-
type: "tableCell";
|
|
13412
|
-
content: ({
|
|
13413
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
13414
|
-
content: {
|
|
13415
|
-
text: string;
|
|
10675
|
+
data: ({
|
|
10676
|
+
__TYPE__: "ImageLink";
|
|
10677
|
+
} & {
|
|
10678
|
+
kind: "image";
|
|
10679
|
+
id: string;
|
|
10680
|
+
url: string;
|
|
10681
|
+
height: string;
|
|
10682
|
+
width: string;
|
|
10683
|
+
size: string;
|
|
10684
|
+
name: string;
|
|
10685
|
+
} & {
|
|
10686
|
+
date?: string | null | undefined;
|
|
10687
|
+
}) | ({
|
|
10688
|
+
__TYPE__: "FileLink";
|
|
10689
|
+
} & {
|
|
10690
|
+
kind: "file";
|
|
10691
|
+
id: string;
|
|
10692
|
+
url: string;
|
|
10693
|
+
name: string;
|
|
10694
|
+
size: string;
|
|
10695
|
+
} & {
|
|
10696
|
+
date?: string | null | undefined;
|
|
10697
|
+
}) | ({
|
|
10698
|
+
__TYPE__: "DocumentLink";
|
|
10699
|
+
} & {
|
|
10700
|
+
id: string;
|
|
10701
|
+
}) | ({
|
|
10702
|
+
__TYPE__: "ExternalLink";
|
|
10703
|
+
} & {
|
|
10704
|
+
url: string;
|
|
10705
|
+
} & {
|
|
10706
|
+
kind?: "web";
|
|
10707
|
+
target?: string | null | undefined;
|
|
10708
|
+
preview?: {
|
|
10709
|
+
title?: string;
|
|
10710
|
+
} | null | undefined;
|
|
10711
|
+
});
|
|
10712
|
+
start: number;
|
|
10713
|
+
end: number;
|
|
10714
|
+
type: "hyperlink";
|
|
10715
|
+
} | {
|
|
10716
|
+
data: string;
|
|
10717
|
+
start: number;
|
|
10718
|
+
end: number;
|
|
10719
|
+
type: "label";
|
|
10720
|
+
} | {
|
|
10721
|
+
start: number;
|
|
10722
|
+
end: number;
|
|
10723
|
+
type: "strong" | "em" | "list-item";
|
|
10724
|
+
})[];
|
|
10725
|
+
};
|
|
13416
10726
|
} & {
|
|
13417
|
-
|
|
13418
|
-
|
|
13419
|
-
|
|
13420
|
-
|
|
13421
|
-
kind: "image";
|
|
13422
|
-
id: string;
|
|
13423
|
-
url: string;
|
|
13424
|
-
height: string;
|
|
13425
|
-
width: string;
|
|
13426
|
-
size: string;
|
|
13427
|
-
name: string;
|
|
13428
|
-
} & {
|
|
13429
|
-
date?: string | null | undefined;
|
|
13430
|
-
}) | ({
|
|
13431
|
-
__TYPE__: "FileLink";
|
|
13432
|
-
} & {
|
|
13433
|
-
kind: "file";
|
|
13434
|
-
id: string;
|
|
13435
|
-
url: string;
|
|
13436
|
-
name: string;
|
|
13437
|
-
size: string;
|
|
13438
|
-
} & {
|
|
13439
|
-
date?: string | null | undefined;
|
|
13440
|
-
}) | ({
|
|
13441
|
-
__TYPE__: "DocumentLink";
|
|
13442
|
-
} & {
|
|
13443
|
-
id: string;
|
|
13444
|
-
}) | ({
|
|
13445
|
-
__TYPE__: "ExternalLink";
|
|
13446
|
-
} & {
|
|
13447
|
-
url: string;
|
|
13448
|
-
} & {
|
|
13449
|
-
kind?: "web";
|
|
13450
|
-
target?: string | null | undefined;
|
|
13451
|
-
preview?: {
|
|
13452
|
-
title?: string;
|
|
13453
|
-
} | null | undefined;
|
|
13454
|
-
});
|
|
13455
|
-
start: number;
|
|
13456
|
-
end: number;
|
|
13457
|
-
type: "hyperlink";
|
|
13458
|
-
} | {
|
|
13459
|
-
data: string;
|
|
13460
|
-
start: number;
|
|
13461
|
-
end: number;
|
|
13462
|
-
type: "label";
|
|
13463
|
-
} | {
|
|
13464
|
-
start: number;
|
|
13465
|
-
end: number;
|
|
13466
|
-
type: "strong" | "em" | "list-item";
|
|
13467
|
-
})[];
|
|
13468
|
-
};
|
|
13469
|
-
} & {
|
|
13470
|
-
label?: string;
|
|
13471
|
-
direction?: string;
|
|
13472
|
-
})[];
|
|
10727
|
+
label?: string;
|
|
10728
|
+
direction?: string;
|
|
10729
|
+
})[];
|
|
10730
|
+
};
|
|
13473
10731
|
})[];
|
|
13474
10732
|
}[];
|
|
13475
10733
|
} & {
|
|
@@ -13837,7 +11095,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
13837
11095
|
label?: string | null | undefined;
|
|
13838
11096
|
direction?: string | null | undefined;
|
|
13839
11097
|
}) | ({
|
|
13840
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
11098
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13841
11099
|
content: {
|
|
13842
11100
|
text: string;
|
|
13843
11101
|
} & {
|
|
@@ -13896,14 +11154,18 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
13896
11154
|
} & {
|
|
13897
11155
|
label?: string;
|
|
13898
11156
|
direction?: string;
|
|
13899
|
-
})
|
|
13900
|
-
|
|
13901
|
-
|
|
13902
|
-
|
|
13903
|
-
|
|
13904
|
-
|
|
13905
|
-
|
|
13906
|
-
|
|
11157
|
+
}))[];
|
|
11158
|
+
} | {
|
|
11159
|
+
__TYPE__: "SeparatorContent";
|
|
11160
|
+
} | ({
|
|
11161
|
+
content: {
|
|
11162
|
+
type: "tableRow";
|
|
11163
|
+
content: ({
|
|
11164
|
+
type: "tableHeader";
|
|
11165
|
+
content: {
|
|
11166
|
+
__TYPE__: "StructuredTextContent";
|
|
11167
|
+
value: ({
|
|
11168
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13907
11169
|
content: {
|
|
13908
11170
|
text: string;
|
|
13909
11171
|
} & {
|
|
@@ -13963,10 +11225,13 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
13963
11225
|
label?: string;
|
|
13964
11226
|
direction?: string;
|
|
13965
11227
|
})[];
|
|
13966
|
-
}
|
|
13967
|
-
|
|
13968
|
-
|
|
13969
|
-
|
|
11228
|
+
};
|
|
11229
|
+
} | {
|
|
11230
|
+
type: "tableCell";
|
|
11231
|
+
content: {
|
|
11232
|
+
__TYPE__: "StructuredTextContent";
|
|
11233
|
+
value: ({
|
|
11234
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
13970
11235
|
content: {
|
|
13971
11236
|
text: string;
|
|
13972
11237
|
} & {
|
|
@@ -14026,140 +11291,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
14026
11291
|
label?: string;
|
|
14027
11292
|
direction?: string;
|
|
14028
11293
|
})[];
|
|
14029
|
-
}
|
|
14030
|
-
}[];
|
|
14031
|
-
})[];
|
|
14032
|
-
} | {
|
|
14033
|
-
__TYPE__: "SeparatorContent";
|
|
14034
|
-
} | ({
|
|
14035
|
-
content: {
|
|
14036
|
-
type: "tableRow";
|
|
14037
|
-
content: ({
|
|
14038
|
-
type: "tableHeader";
|
|
14039
|
-
content: ({
|
|
14040
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
14041
|
-
content: {
|
|
14042
|
-
text: string;
|
|
14043
|
-
} & {
|
|
14044
|
-
spans?: ({
|
|
14045
|
-
data: ({
|
|
14046
|
-
__TYPE__: "ImageLink";
|
|
14047
|
-
} & {
|
|
14048
|
-
kind: "image";
|
|
14049
|
-
id: string;
|
|
14050
|
-
url: string;
|
|
14051
|
-
height: string;
|
|
14052
|
-
width: string;
|
|
14053
|
-
size: string;
|
|
14054
|
-
name: string;
|
|
14055
|
-
} & {
|
|
14056
|
-
date?: string | null | undefined;
|
|
14057
|
-
}) | ({
|
|
14058
|
-
__TYPE__: "FileLink";
|
|
14059
|
-
} & {
|
|
14060
|
-
kind: "file";
|
|
14061
|
-
id: string;
|
|
14062
|
-
url: string;
|
|
14063
|
-
name: string;
|
|
14064
|
-
size: string;
|
|
14065
|
-
} & {
|
|
14066
|
-
date?: string | null | undefined;
|
|
14067
|
-
}) | ({
|
|
14068
|
-
__TYPE__: "DocumentLink";
|
|
14069
|
-
} & {
|
|
14070
|
-
id: string;
|
|
14071
|
-
}) | ({
|
|
14072
|
-
__TYPE__: "ExternalLink";
|
|
14073
|
-
} & {
|
|
14074
|
-
url: string;
|
|
14075
|
-
} & {
|
|
14076
|
-
kind?: "web";
|
|
14077
|
-
target?: string | null | undefined;
|
|
14078
|
-
preview?: {
|
|
14079
|
-
title?: string;
|
|
14080
|
-
} | null | undefined;
|
|
14081
|
-
});
|
|
14082
|
-
start: number;
|
|
14083
|
-
end: number;
|
|
14084
|
-
type: "hyperlink";
|
|
14085
|
-
} | {
|
|
14086
|
-
data: string;
|
|
14087
|
-
start: number;
|
|
14088
|
-
end: number;
|
|
14089
|
-
type: "label";
|
|
14090
|
-
} | {
|
|
14091
|
-
start: number;
|
|
14092
|
-
end: number;
|
|
14093
|
-
type: "strong" | "em" | "list-item";
|
|
14094
|
-
})[];
|
|
14095
|
-
};
|
|
14096
|
-
} & {
|
|
14097
|
-
label?: string;
|
|
14098
|
-
direction?: string;
|
|
14099
|
-
})[];
|
|
14100
|
-
} | {
|
|
14101
|
-
type: "tableCell";
|
|
14102
|
-
content: ({
|
|
14103
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
14104
|
-
content: {
|
|
14105
|
-
text: string;
|
|
14106
|
-
} & {
|
|
14107
|
-
spans?: ({
|
|
14108
|
-
data: ({
|
|
14109
|
-
__TYPE__: "ImageLink";
|
|
14110
|
-
} & {
|
|
14111
|
-
kind: "image";
|
|
14112
|
-
id: string;
|
|
14113
|
-
url: string;
|
|
14114
|
-
height: string;
|
|
14115
|
-
width: string;
|
|
14116
|
-
size: string;
|
|
14117
|
-
name: string;
|
|
14118
|
-
} & {
|
|
14119
|
-
date?: string | null | undefined;
|
|
14120
|
-
}) | ({
|
|
14121
|
-
__TYPE__: "FileLink";
|
|
14122
|
-
} & {
|
|
14123
|
-
kind: "file";
|
|
14124
|
-
id: string;
|
|
14125
|
-
url: string;
|
|
14126
|
-
name: string;
|
|
14127
|
-
size: string;
|
|
14128
|
-
} & {
|
|
14129
|
-
date?: string | null | undefined;
|
|
14130
|
-
}) | ({
|
|
14131
|
-
__TYPE__: "DocumentLink";
|
|
14132
|
-
} & {
|
|
14133
|
-
id: string;
|
|
14134
|
-
}) | ({
|
|
14135
|
-
__TYPE__: "ExternalLink";
|
|
14136
|
-
} & {
|
|
14137
|
-
url: string;
|
|
14138
|
-
} & {
|
|
14139
|
-
kind?: "web";
|
|
14140
|
-
target?: string | null | undefined;
|
|
14141
|
-
preview?: {
|
|
14142
|
-
title?: string;
|
|
14143
|
-
} | null | undefined;
|
|
14144
|
-
});
|
|
14145
|
-
start: number;
|
|
14146
|
-
end: number;
|
|
14147
|
-
type: "hyperlink";
|
|
14148
|
-
} | {
|
|
14149
|
-
data: string;
|
|
14150
|
-
start: number;
|
|
14151
|
-
end: number;
|
|
14152
|
-
type: "label";
|
|
14153
|
-
} | {
|
|
14154
|
-
start: number;
|
|
14155
|
-
end: number;
|
|
14156
|
-
type: "strong" | "em" | "list-item";
|
|
14157
|
-
})[];
|
|
14158
|
-
};
|
|
14159
|
-
} & {
|
|
14160
|
-
label?: string;
|
|
14161
|
-
direction?: string;
|
|
14162
|
-
})[];
|
|
11294
|
+
};
|
|
14163
11295
|
})[];
|
|
14164
11296
|
}[];
|
|
14165
11297
|
} & {
|