@prismicio/types-internal 3.4.0-alpha.9 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/lib/content/Document.d.ts +507 -3393
  2. package/lib/content/Document.js +8 -0
  3. package/lib/content/fields/GroupContent.d.ts +1 -1
  4. package/lib/content/fields/GroupContent.js +12 -1
  5. package/lib/content/fields/RepeatableContent.d.ts +123 -51
  6. package/lib/content/fields/RepeatableContent.js +14 -10
  7. package/lib/content/fields/WidgetContent.d.ts +503 -3389
  8. package/lib/content/fields/nestable/NestableContent.d.ts +70 -551
  9. package/lib/content/fields/nestable/NestableContent.js +7 -8
  10. package/lib/content/fields/nestable/RepeatableContent.d.ts +2 -2
  11. package/lib/content/fields/nestable/RepeatableContent.js +5 -2
  12. package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +112 -0
  13. package/lib/content/fields/nestable/RichTextContent/Blocks.js +5 -5
  14. package/lib/content/fields/nestable/RichTextContent/index.d.ts +9 -641
  15. package/lib/content/fields/nestable/RichTextContent/index.js +4 -8
  16. package/lib/content/fields/nestable/TableContent.d.ts +536 -618
  17. package/lib/content/fields/nestable/TableContent.js +101 -15
  18. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +192 -1154
  19. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +25 -252
  20. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +192 -1154
  21. package/lib/content/fields/slices/Slice/SharedSliceContent.js +12 -0
  22. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +70 -551
  23. package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +70 -551
  24. package/lib/content/fields/slices/Slice/index.d.ts +268 -2038
  25. package/lib/content/fields/slices/SliceItem.d.ts +259 -2029
  26. package/lib/content/fields/slices/SlicesContent.d.ts +405 -2810
  27. package/lib/customtypes/CustomType.d.ts +108 -0
  28. package/lib/customtypes/Section.d.ts +108 -0
  29. package/lib/customtypes/diff/SharedSlice.d.ts +48 -0
  30. package/lib/customtypes/diff/Variation.d.ts +48 -0
  31. package/lib/customtypes/widgets/Group.d.ts +36 -0
  32. package/lib/customtypes/widgets/Widget.d.ts +126 -0
  33. package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +6 -0
  34. package/lib/customtypes/widgets/nestable/NestableWidget.js +2 -0
  35. package/lib/customtypes/widgets/nestable/RichText.d.ts +0 -2
  36. package/lib/customtypes/widgets/nestable/RichText.js +0 -2
  37. package/lib/customtypes/widgets/nestable/Table.d.ts +6 -0
  38. package/lib/customtypes/widgets/nestable/Table.js +13 -1
  39. package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +12 -0
  40. package/lib/customtypes/widgets/slices/LegacySlice.d.ts +12 -0
  41. package/lib/customtypes/widgets/slices/SharedSlice.d.ts +48 -0
  42. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +36 -0
  43. package/lib/customtypes/widgets/slices/Slices.d.ts +168 -0
  44. package/package.json +1 -1
  45. package/src/content/Document.ts +9 -0
  46. package/src/content/fields/GroupContent.ts +15 -1
  47. package/src/content/fields/nestable/NestableContent.ts +13 -9
  48. package/src/content/fields/nestable/RepeatableContent.ts +6 -2
  49. package/src/content/fields/nestable/RichTextContent/Blocks.ts +238 -0
  50. package/src/content/fields/nestable/RichTextContent/index.ts +3 -7
  51. package/src/content/fields/nestable/TableContent.ts +131 -14
  52. package/src/content/fields/slices/Slice/SharedSliceContent.ts +13 -0
  53. package/src/customtypes/widgets/nestable/NestableWidget.ts +2 -0
  54. package/src/customtypes/widgets/nestable/RichText.ts +0 -2
  55. package/src/customtypes/widgets/nestable/Table.ts +13 -0
  56. package/lib/content/fields/nestable/RichTextContent/Block.d.ts +0 -1036
  57. package/lib/content/fields/nestable/RichTextContent/Block.js +0 -31
  58. package/lib/content/fields/nestable/RichTextContent/EmbedBlock.d.ts +0 -60
  59. package/lib/content/fields/nestable/RichTextContent/EmbedBlock.js +0 -53
  60. package/lib/content/fields/nestable/RichTextContent/ImageBlock.d.ts +0 -203
  61. package/lib/content/fields/nestable/RichTextContent/ImageBlock.js +0 -36
  62. package/lib/content/fields/nestable/RichTextContent/TableBlock.d.ts +0 -500
  63. package/lib/content/fields/nestable/RichTextContent/TableBlock.js +0 -21
  64. package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +0 -590
  65. package/lib/content/fields/nestable/RichTextContent/TextBlock.js +0 -80
  66. package/src/content/fields/nestable/RichTextContent/Block.ts +0 -35
  67. package/src/content/fields/nestable/RichTextContent/EmbedBlock.ts +0 -81
  68. package/src/content/fields/nestable/RichTextContent/ImageBlock.ts +0 -42
  69. package/src/content/fields/nestable/RichTextContent/TableBlock.ts +0 -36
  70. package/src/content/fields/nestable/RichTextContent/TextBlock.ts +0 -108
@@ -328,7 +328,7 @@ export declare const SliceItemContent: t.TypeC<{
328
328
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
329
329
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
330
330
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
331
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
331
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
332
332
  content: t.IntersectionC<[t.TypeC<{
333
333
  text: t.StringC;
334
334
  }>, t.PartialC<{
@@ -437,14 +437,19 @@ export declare const SliceItemContent: t.TypeC<{
437
437
  }>, t.PartialC<{
438
438
  label: t.StringC;
439
439
  direction: t.StringC;
440
- }>]>>, t.ExactC<t.TypeC<{
441
- type: t.LiteralC<"table">;
442
- content: t.ArrayC<t.ExactC<t.TypeC<{
443
- type: t.LiteralC<"tableRow">;
444
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
445
- type: t.LiteralC<"tableHeader">;
446
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
447
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
440
+ }>]>>]>>;
441
+ }>>, t.ExactC<t.TypeC<{
442
+ __TYPE__: t.LiteralC<"SeparatorContent">;
443
+ }>>, t.ExactC<t.TypeC<{
444
+ __TYPE__: t.LiteralC<"TableContent">;
445
+ content: t.ArrayC<t.ExactC<t.TypeC<{
446
+ type: t.LiteralC<"tableRow">;
447
+ content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
448
+ type: t.LiteralC<"tableHeader">;
449
+ content: t.ExactC<t.TypeC<{
450
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
451
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
452
+ 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>;
448
453
  content: t.IntersectionC<[t.TypeC<{
449
454
  text: t.StringC;
450
455
  }>, t.PartialC<{
@@ -554,10 +559,13 @@ export declare const SliceItemContent: t.TypeC<{
554
559
  label: t.StringC;
555
560
  direction: t.StringC;
556
561
  }>]>>>;
557
- }>>, t.ExactC<t.TypeC<{
558
- type: t.LiteralC<"tableCell">;
559
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
560
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
562
+ }>>;
563
+ }>>, t.ExactC<t.TypeC<{
564
+ type: t.LiteralC<"tableCell">;
565
+ content: t.ExactC<t.TypeC<{
566
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
567
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
568
+ 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>;
561
569
  content: t.IntersectionC<[t.TypeC<{
562
570
  text: t.StringC;
563
571
  }>, t.PartialC<{
@@ -667,11 +675,9 @@ export declare const SliceItemContent: t.TypeC<{
667
675
  label: t.StringC;
668
676
  direction: t.StringC;
669
677
  }>]>>>;
670
- }>>]>>;
671
- }>>>;
672
- }>>]>>;
673
- }>>, t.ExactC<t.TypeC<{
674
- __TYPE__: t.LiteralC<"SeparatorContent">;
678
+ }>>;
679
+ }>>]>>;
680
+ }>>>;
675
681
  }>>, t.ExactC<t.TypeC<{
676
682
  __TYPE__: t.LiteralC<"RepeatableContent">;
677
683
  type: t.LiteralC<"Link">;
@@ -753,240 +759,7 @@ export declare const SliceItemContent: t.TypeC<{
753
759
  variant: t.StringC;
754
760
  }>]>>]>]>;
755
761
  }>>]>>;
756
- }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
757
- content: t.ArrayC<t.ExactC<t.TypeC<{
758
- type: t.LiteralC<"tableRow">;
759
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
760
- type: t.LiteralC<"tableHeader">;
761
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
762
- 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>;
763
- content: t.IntersectionC<[t.TypeC<{
764
- text: t.StringC;
765
- }>, t.PartialC<{
766
- spans: t.Type<({
767
- data: ({
768
- __TYPE__: "ImageLink";
769
- } & {
770
- kind: "image";
771
- id: string;
772
- url: string;
773
- height: string;
774
- width: string;
775
- size: string;
776
- name: string;
777
- } & {
778
- date?: string | null | undefined;
779
- }) | ({
780
- __TYPE__: "FileLink";
781
- } & {
782
- kind: "file";
783
- id: string;
784
- url: string;
785
- name: string;
786
- size: string;
787
- } & {
788
- date?: string | null | undefined;
789
- }) | ({
790
- __TYPE__: "DocumentLink";
791
- } & {
792
- id: string;
793
- }) | ({
794
- __TYPE__: "ExternalLink";
795
- } & {
796
- url: string;
797
- } & {
798
- kind?: "web";
799
- target?: string | null | undefined;
800
- preview?: {
801
- title?: string;
802
- } | null | undefined;
803
- });
804
- start: number;
805
- end: number;
806
- type: "hyperlink";
807
- } | {
808
- data: string;
809
- start: number;
810
- end: number;
811
- type: "label";
812
- } | {
813
- start: number;
814
- end: number;
815
- type: "strong" | "em" | "list-item";
816
- })[], ({
817
- data: ({
818
- __TYPE__: "ImageLink";
819
- } & {
820
- kind: "image";
821
- id: string;
822
- url: string;
823
- height: string;
824
- width: string;
825
- size: string;
826
- name: string;
827
- } & {
828
- date?: string | null | undefined;
829
- }) | ({
830
- __TYPE__: "FileLink";
831
- } & {
832
- kind: "file";
833
- id: string;
834
- url: string;
835
- name: string;
836
- size: string;
837
- } & {
838
- date?: string | null | undefined;
839
- }) | ({
840
- __TYPE__: "DocumentLink";
841
- } & {
842
- id: string;
843
- }) | ({
844
- __TYPE__: "ExternalLink";
845
- } & {
846
- url: string;
847
- } & {
848
- kind?: "web";
849
- target?: string | null | undefined;
850
- preview?: {
851
- title?: string;
852
- } | null | undefined;
853
- });
854
- start: number;
855
- end: number;
856
- type: "hyperlink";
857
- } | {
858
- data: string;
859
- start: number;
860
- end: number;
861
- type: "label";
862
- } | {
863
- start: number;
864
- end: number;
865
- type: "strong" | "em" | "list-item";
866
- })[], unknown>;
867
- }>]>;
868
- }>, t.PartialC<{
869
- label: t.StringC;
870
- direction: t.StringC;
871
- }>]>>>;
872
- }>>, t.ExactC<t.TypeC<{
873
- type: t.LiteralC<"tableCell">;
874
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
875
- 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>;
876
- content: t.IntersectionC<[t.TypeC<{
877
- text: t.StringC;
878
- }>, t.PartialC<{
879
- spans: t.Type<({
880
- data: ({
881
- __TYPE__: "ImageLink";
882
- } & {
883
- kind: "image";
884
- id: string;
885
- url: string;
886
- height: string;
887
- width: string;
888
- size: string;
889
- name: string;
890
- } & {
891
- date?: string | null | undefined;
892
- }) | ({
893
- __TYPE__: "FileLink";
894
- } & {
895
- kind: "file";
896
- id: string;
897
- url: string;
898
- name: string;
899
- size: string;
900
- } & {
901
- date?: string | null | undefined;
902
- }) | ({
903
- __TYPE__: "DocumentLink";
904
- } & {
905
- id: string;
906
- }) | ({
907
- __TYPE__: "ExternalLink";
908
- } & {
909
- url: string;
910
- } & {
911
- kind?: "web";
912
- target?: string | null | undefined;
913
- preview?: {
914
- title?: string;
915
- } | null | undefined;
916
- });
917
- start: number;
918
- end: number;
919
- type: "hyperlink";
920
- } | {
921
- data: string;
922
- start: number;
923
- end: number;
924
- type: "label";
925
- } | {
926
- start: number;
927
- end: number;
928
- type: "strong" | "em" | "list-item";
929
- })[], ({
930
- data: ({
931
- __TYPE__: "ImageLink";
932
- } & {
933
- kind: "image";
934
- id: string;
935
- url: string;
936
- height: string;
937
- width: string;
938
- size: string;
939
- name: string;
940
- } & {
941
- date?: string | null | undefined;
942
- }) | ({
943
- __TYPE__: "FileLink";
944
- } & {
945
- kind: "file";
946
- id: string;
947
- url: string;
948
- name: string;
949
- size: string;
950
- } & {
951
- date?: string | null | undefined;
952
- }) | ({
953
- __TYPE__: "DocumentLink";
954
- } & {
955
- id: string;
956
- }) | ({
957
- __TYPE__: "ExternalLink";
958
- } & {
959
- url: string;
960
- } & {
961
- kind?: "web";
962
- target?: string | null | undefined;
963
- preview?: {
964
- title?: string;
965
- } | null | undefined;
966
- });
967
- start: number;
968
- end: number;
969
- type: "hyperlink";
970
- } | {
971
- data: string;
972
- start: number;
973
- end: number;
974
- type: "label";
975
- } | {
976
- start: number;
977
- end: number;
978
- type: "strong" | "em" | "list-item";
979
- })[], unknown>;
980
- }>]>;
981
- }>, t.PartialC<{
982
- label: t.StringC;
983
- direction: t.StringC;
984
- }>]>>>;
985
- }>>]>>;
986
- }>>>;
987
- }>>, t.ExactC<t.TypeC<{
988
- __TYPE__: t.LiteralC<"TableContent">;
989
- }>>]>]>>;
762
+ }>>]>>;
990
763
  repeat: t.ArrayC<t.ExactC<t.TypeC<{
991
764
  __TYPE__: t.LiteralC<"GroupItemContent">;
992
765
  value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -1305,7 +1078,7 @@ export declare const SliceItemContent: t.TypeC<{
1305
1078
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1306
1079
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1307
1080
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1308
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
1081
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1309
1082
  content: t.IntersectionC<[t.TypeC<{
1310
1083
  text: t.StringC;
1311
1084
  }>, t.PartialC<{
@@ -1414,14 +1187,19 @@ export declare const SliceItemContent: t.TypeC<{
1414
1187
  }>, t.PartialC<{
1415
1188
  label: t.StringC;
1416
1189
  direction: t.StringC;
1417
- }>]>>, t.ExactC<t.TypeC<{
1418
- type: t.LiteralC<"table">;
1419
- content: t.ArrayC<t.ExactC<t.TypeC<{
1420
- type: t.LiteralC<"tableRow">;
1421
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
1422
- type: t.LiteralC<"tableHeader">;
1423
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
1424
- 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>;
1190
+ }>]>>]>>;
1191
+ }>>, t.ExactC<t.TypeC<{
1192
+ __TYPE__: t.LiteralC<"SeparatorContent">;
1193
+ }>>, t.ExactC<t.TypeC<{
1194
+ __TYPE__: t.LiteralC<"TableContent">;
1195
+ content: t.ArrayC<t.ExactC<t.TypeC<{
1196
+ type: t.LiteralC<"tableRow">;
1197
+ content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
1198
+ type: t.LiteralC<"tableHeader">;
1199
+ content: t.ExactC<t.TypeC<{
1200
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
1201
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
1202
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1425
1203
  content: t.IntersectionC<[t.TypeC<{
1426
1204
  text: t.StringC;
1427
1205
  }>, t.PartialC<{
@@ -1531,10 +1309,13 @@ export declare const SliceItemContent: t.TypeC<{
1531
1309
  label: t.StringC;
1532
1310
  direction: t.StringC;
1533
1311
  }>]>>>;
1534
- }>>, t.ExactC<t.TypeC<{
1535
- type: t.LiteralC<"tableCell">;
1536
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
1537
- 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>;
1312
+ }>>;
1313
+ }>>, t.ExactC<t.TypeC<{
1314
+ type: t.LiteralC<"tableCell">;
1315
+ content: t.ExactC<t.TypeC<{
1316
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
1317
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
1318
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1538
1319
  content: t.IntersectionC<[t.TypeC<{
1539
1320
  text: t.StringC;
1540
1321
  }>, t.PartialC<{
@@ -1644,11 +1425,9 @@ export declare const SliceItemContent: t.TypeC<{
1644
1425
  label: t.StringC;
1645
1426
  direction: t.StringC;
1646
1427
  }>]>>>;
1647
- }>>]>>;
1648
- }>>>;
1649
- }>>]>>;
1650
- }>>, t.ExactC<t.TypeC<{
1651
- __TYPE__: t.LiteralC<"SeparatorContent">;
1428
+ }>>;
1429
+ }>>]>>;
1430
+ }>>>;
1652
1431
  }>>, t.ExactC<t.TypeC<{
1653
1432
  __TYPE__: t.LiteralC<"RepeatableContent">;
1654
1433
  type: t.LiteralC<"Link">;
@@ -1730,240 +1509,7 @@ export declare const SliceItemContent: t.TypeC<{
1730
1509
  variant: t.StringC;
1731
1510
  }>]>>]>]>;
1732
1511
  }>>]>>;
1733
- }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
1734
- content: t.ArrayC<t.ExactC<t.TypeC<{
1735
- type: t.LiteralC<"tableRow">;
1736
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
1737
- type: t.LiteralC<"tableHeader">;
1738
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
1739
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
1740
- content: t.IntersectionC<[t.TypeC<{
1741
- text: t.StringC;
1742
- }>, t.PartialC<{
1743
- spans: t.Type<({
1744
- data: ({
1745
- __TYPE__: "ImageLink";
1746
- } & {
1747
- kind: "image";
1748
- id: string;
1749
- url: string;
1750
- height: string;
1751
- width: string;
1752
- size: string;
1753
- name: string;
1754
- } & {
1755
- date?: string | null | undefined;
1756
- }) | ({
1757
- __TYPE__: "FileLink";
1758
- } & {
1759
- kind: "file";
1760
- id: string;
1761
- url: string;
1762
- name: string;
1763
- size: string;
1764
- } & {
1765
- date?: string | null | undefined;
1766
- }) | ({
1767
- __TYPE__: "DocumentLink";
1768
- } & {
1769
- id: string;
1770
- }) | ({
1771
- __TYPE__: "ExternalLink";
1772
- } & {
1773
- url: string;
1774
- } & {
1775
- kind?: "web";
1776
- target?: string | null | undefined;
1777
- preview?: {
1778
- title?: string;
1779
- } | null | undefined;
1780
- });
1781
- start: number;
1782
- end: number;
1783
- type: "hyperlink";
1784
- } | {
1785
- data: string;
1786
- start: number;
1787
- end: number;
1788
- type: "label";
1789
- } | {
1790
- start: number;
1791
- end: number;
1792
- type: "strong" | "em" | "list-item";
1793
- })[], ({
1794
- data: ({
1795
- __TYPE__: "ImageLink";
1796
- } & {
1797
- kind: "image";
1798
- id: string;
1799
- url: string;
1800
- height: string;
1801
- width: string;
1802
- size: string;
1803
- name: string;
1804
- } & {
1805
- date?: string | null | undefined;
1806
- }) | ({
1807
- __TYPE__: "FileLink";
1808
- } & {
1809
- kind: "file";
1810
- id: string;
1811
- url: string;
1812
- name: string;
1813
- size: string;
1814
- } & {
1815
- date?: string | null | undefined;
1816
- }) | ({
1817
- __TYPE__: "DocumentLink";
1818
- } & {
1819
- id: string;
1820
- }) | ({
1821
- __TYPE__: "ExternalLink";
1822
- } & {
1823
- url: string;
1824
- } & {
1825
- kind?: "web";
1826
- target?: string | null | undefined;
1827
- preview?: {
1828
- title?: string;
1829
- } | null | undefined;
1830
- });
1831
- start: number;
1832
- end: number;
1833
- type: "hyperlink";
1834
- } | {
1835
- data: string;
1836
- start: number;
1837
- end: number;
1838
- type: "label";
1839
- } | {
1840
- start: number;
1841
- end: number;
1842
- type: "strong" | "em" | "list-item";
1843
- })[], unknown>;
1844
- }>]>;
1845
- }>, t.PartialC<{
1846
- label: t.StringC;
1847
- direction: t.StringC;
1848
- }>]>>>;
1849
- }>>, t.ExactC<t.TypeC<{
1850
- type: t.LiteralC<"tableCell">;
1851
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
1852
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
1853
- content: t.IntersectionC<[t.TypeC<{
1854
- text: t.StringC;
1855
- }>, t.PartialC<{
1856
- spans: t.Type<({
1857
- data: ({
1858
- __TYPE__: "ImageLink";
1859
- } & {
1860
- kind: "image";
1861
- id: string;
1862
- url: string;
1863
- height: string;
1864
- width: string;
1865
- size: string;
1866
- name: string;
1867
- } & {
1868
- date?: string | null | undefined;
1869
- }) | ({
1870
- __TYPE__: "FileLink";
1871
- } & {
1872
- kind: "file";
1873
- id: string;
1874
- url: string;
1875
- name: string;
1876
- size: string;
1877
- } & {
1878
- date?: string | null | undefined;
1879
- }) | ({
1880
- __TYPE__: "DocumentLink";
1881
- } & {
1882
- id: string;
1883
- }) | ({
1884
- __TYPE__: "ExternalLink";
1885
- } & {
1886
- url: string;
1887
- } & {
1888
- kind?: "web";
1889
- target?: string | null | undefined;
1890
- preview?: {
1891
- title?: string;
1892
- } | null | undefined;
1893
- });
1894
- start: number;
1895
- end: number;
1896
- type: "hyperlink";
1897
- } | {
1898
- data: string;
1899
- start: number;
1900
- end: number;
1901
- type: "label";
1902
- } | {
1903
- start: number;
1904
- end: number;
1905
- type: "strong" | "em" | "list-item";
1906
- })[], ({
1907
- data: ({
1908
- __TYPE__: "ImageLink";
1909
- } & {
1910
- kind: "image";
1911
- id: string;
1912
- url: string;
1913
- height: string;
1914
- width: string;
1915
- size: string;
1916
- name: string;
1917
- } & {
1918
- date?: string | null | undefined;
1919
- }) | ({
1920
- __TYPE__: "FileLink";
1921
- } & {
1922
- kind: "file";
1923
- id: string;
1924
- url: string;
1925
- name: string;
1926
- size: string;
1927
- } & {
1928
- date?: string | null | undefined;
1929
- }) | ({
1930
- __TYPE__: "DocumentLink";
1931
- } & {
1932
- id: string;
1933
- }) | ({
1934
- __TYPE__: "ExternalLink";
1935
- } & {
1936
- url: string;
1937
- } & {
1938
- kind?: "web";
1939
- target?: string | null | undefined;
1940
- preview?: {
1941
- title?: string;
1942
- } | null | undefined;
1943
- });
1944
- start: number;
1945
- end: number;
1946
- type: "hyperlink";
1947
- } | {
1948
- data: string;
1949
- start: number;
1950
- end: number;
1951
- type: "label";
1952
- } | {
1953
- start: number;
1954
- end: number;
1955
- type: "strong" | "em" | "list-item";
1956
- })[], unknown>;
1957
- }>]>;
1958
- }>, t.PartialC<{
1959
- label: t.StringC;
1960
- direction: t.StringC;
1961
- }>]>>>;
1962
- }>>]>>;
1963
- }>>>;
1964
- }>>, t.ExactC<t.TypeC<{
1965
- __TYPE__: t.LiteralC<"TableContent">;
1966
- }>>]>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>>;
1512
+ }>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>>;
1967
1513
  }>>>;
1968
1514
  }>>, t.ExactC<t.TypeC<{
1969
1515
  __TYPE__: t.LiteralC<"SharedSliceContent">;
@@ -2284,7 +1830,7 @@ export declare const SliceItemContent: t.TypeC<{
2284
1830
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2285
1831
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2286
1832
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2287
- 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>;
1833
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
2288
1834
  content: t.IntersectionC<[t.TypeC<{
2289
1835
  text: t.StringC;
2290
1836
  }>, t.PartialC<{
@@ -2393,18 +1939,23 @@ export declare const SliceItemContent: t.TypeC<{
2393
1939
  }>, t.PartialC<{
2394
1940
  label: t.StringC;
2395
1941
  direction: t.StringC;
2396
- }>]>>, t.ExactC<t.TypeC<{
2397
- type: t.LiteralC<"table">;
2398
- content: t.ArrayC<t.ExactC<t.TypeC<{
2399
- type: t.LiteralC<"tableRow">;
2400
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
2401
- type: t.LiteralC<"tableHeader">;
2402
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
2403
- 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>;
2404
- content: t.IntersectionC<[t.TypeC<{
2405
- text: t.StringC;
2406
- }>, t.PartialC<{
2407
- spans: t.Type<({
1942
+ }>]>>]>>;
1943
+ }>>, t.ExactC<t.TypeC<{
1944
+ __TYPE__: t.LiteralC<"SeparatorContent">;
1945
+ }>>, t.ExactC<t.TypeC<{
1946
+ __TYPE__: t.LiteralC<"TableContent">;
1947
+ content: t.ArrayC<t.ExactC<t.TypeC<{
1948
+ type: t.LiteralC<"tableRow">;
1949
+ content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
1950
+ type: t.LiteralC<"tableHeader">;
1951
+ content: t.ExactC<t.TypeC<{
1952
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
1953
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
1954
+ 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>;
1955
+ content: t.IntersectionC<[t.TypeC<{
1956
+ text: t.StringC;
1957
+ }>, t.PartialC<{
1958
+ spans: t.Type<({
2408
1959
  data: ({
2409
1960
  __TYPE__: "ImageLink";
2410
1961
  } & {
@@ -2510,10 +2061,13 @@ export declare const SliceItemContent: t.TypeC<{
2510
2061
  label: t.StringC;
2511
2062
  direction: t.StringC;
2512
2063
  }>]>>>;
2513
- }>>, t.ExactC<t.TypeC<{
2514
- type: t.LiteralC<"tableCell">;
2515
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
2516
- 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>;
2064
+ }>>;
2065
+ }>>, t.ExactC<t.TypeC<{
2066
+ type: t.LiteralC<"tableCell">;
2067
+ content: t.ExactC<t.TypeC<{
2068
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
2069
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
2070
+ 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>;
2517
2071
  content: t.IntersectionC<[t.TypeC<{
2518
2072
  text: t.StringC;
2519
2073
  }>, t.PartialC<{
@@ -2623,11 +2177,9 @@ export declare const SliceItemContent: t.TypeC<{
2623
2177
  label: t.StringC;
2624
2178
  direction: t.StringC;
2625
2179
  }>]>>>;
2626
- }>>]>>;
2627
- }>>>;
2628
- }>>]>>;
2629
- }>>, t.ExactC<t.TypeC<{
2630
- __TYPE__: t.LiteralC<"SeparatorContent">;
2180
+ }>>;
2181
+ }>>]>>;
2182
+ }>>>;
2631
2183
  }>>, t.ExactC<t.TypeC<{
2632
2184
  __TYPE__: t.LiteralC<"RepeatableContent">;
2633
2185
  type: t.LiteralC<"Link">;
@@ -2709,240 +2261,7 @@ export declare const SliceItemContent: t.TypeC<{
2709
2261
  variant: t.StringC;
2710
2262
  }>]>>]>]>;
2711
2263
  }>>]>>;
2712
- }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
2713
- content: t.ArrayC<t.ExactC<t.TypeC<{
2714
- type: t.LiteralC<"tableRow">;
2715
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
2716
- type: t.LiteralC<"tableHeader">;
2717
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
2718
- 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>;
2719
- content: t.IntersectionC<[t.TypeC<{
2720
- text: t.StringC;
2721
- }>, t.PartialC<{
2722
- spans: t.Type<({
2723
- data: ({
2724
- __TYPE__: "ImageLink";
2725
- } & {
2726
- kind: "image";
2727
- id: string;
2728
- url: string;
2729
- height: string;
2730
- width: string;
2731
- size: string;
2732
- name: string;
2733
- } & {
2734
- date?: string | null | undefined;
2735
- }) | ({
2736
- __TYPE__: "FileLink";
2737
- } & {
2738
- kind: "file";
2739
- id: string;
2740
- url: string;
2741
- name: string;
2742
- size: string;
2743
- } & {
2744
- date?: string | null | undefined;
2745
- }) | ({
2746
- __TYPE__: "DocumentLink";
2747
- } & {
2748
- id: string;
2749
- }) | ({
2750
- __TYPE__: "ExternalLink";
2751
- } & {
2752
- url: string;
2753
- } & {
2754
- kind?: "web";
2755
- target?: string | null | undefined;
2756
- preview?: {
2757
- title?: string;
2758
- } | null | undefined;
2759
- });
2760
- start: number;
2761
- end: number;
2762
- type: "hyperlink";
2763
- } | {
2764
- data: string;
2765
- start: number;
2766
- end: number;
2767
- type: "label";
2768
- } | {
2769
- start: number;
2770
- end: number;
2771
- type: "strong" | "em" | "list-item";
2772
- })[], ({
2773
- data: ({
2774
- __TYPE__: "ImageLink";
2775
- } & {
2776
- kind: "image";
2777
- id: string;
2778
- url: string;
2779
- height: string;
2780
- width: string;
2781
- size: string;
2782
- name: string;
2783
- } & {
2784
- date?: string | null | undefined;
2785
- }) | ({
2786
- __TYPE__: "FileLink";
2787
- } & {
2788
- kind: "file";
2789
- id: string;
2790
- url: string;
2791
- name: string;
2792
- size: string;
2793
- } & {
2794
- date?: string | null | undefined;
2795
- }) | ({
2796
- __TYPE__: "DocumentLink";
2797
- } & {
2798
- id: string;
2799
- }) | ({
2800
- __TYPE__: "ExternalLink";
2801
- } & {
2802
- url: string;
2803
- } & {
2804
- kind?: "web";
2805
- target?: string | null | undefined;
2806
- preview?: {
2807
- title?: string;
2808
- } | null | undefined;
2809
- });
2810
- start: number;
2811
- end: number;
2812
- type: "hyperlink";
2813
- } | {
2814
- data: string;
2815
- start: number;
2816
- end: number;
2817
- type: "label";
2818
- } | {
2819
- start: number;
2820
- end: number;
2821
- type: "strong" | "em" | "list-item";
2822
- })[], unknown>;
2823
- }>]>;
2824
- }>, t.PartialC<{
2825
- label: t.StringC;
2826
- direction: t.StringC;
2827
- }>]>>>;
2828
- }>>, t.ExactC<t.TypeC<{
2829
- type: t.LiteralC<"tableCell">;
2830
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
2831
- 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>;
2832
- content: t.IntersectionC<[t.TypeC<{
2833
- text: t.StringC;
2834
- }>, t.PartialC<{
2835
- spans: t.Type<({
2836
- data: ({
2837
- __TYPE__: "ImageLink";
2838
- } & {
2839
- kind: "image";
2840
- id: string;
2841
- url: string;
2842
- height: string;
2843
- width: string;
2844
- size: string;
2845
- name: string;
2846
- } & {
2847
- date?: string | null | undefined;
2848
- }) | ({
2849
- __TYPE__: "FileLink";
2850
- } & {
2851
- kind: "file";
2852
- id: string;
2853
- url: string;
2854
- name: string;
2855
- size: string;
2856
- } & {
2857
- date?: string | null | undefined;
2858
- }) | ({
2859
- __TYPE__: "DocumentLink";
2860
- } & {
2861
- id: string;
2862
- }) | ({
2863
- __TYPE__: "ExternalLink";
2864
- } & {
2865
- url: string;
2866
- } & {
2867
- kind?: "web";
2868
- target?: string | null | undefined;
2869
- preview?: {
2870
- title?: string;
2871
- } | null | undefined;
2872
- });
2873
- start: number;
2874
- end: number;
2875
- type: "hyperlink";
2876
- } | {
2877
- data: string;
2878
- start: number;
2879
- end: number;
2880
- type: "label";
2881
- } | {
2882
- start: number;
2883
- end: number;
2884
- type: "strong" | "em" | "list-item";
2885
- })[], ({
2886
- data: ({
2887
- __TYPE__: "ImageLink";
2888
- } & {
2889
- kind: "image";
2890
- id: string;
2891
- url: string;
2892
- height: string;
2893
- width: string;
2894
- size: string;
2895
- name: string;
2896
- } & {
2897
- date?: string | null | undefined;
2898
- }) | ({
2899
- __TYPE__: "FileLink";
2900
- } & {
2901
- kind: "file";
2902
- id: string;
2903
- url: string;
2904
- name: string;
2905
- size: string;
2906
- } & {
2907
- date?: string | null | undefined;
2908
- }) | ({
2909
- __TYPE__: "DocumentLink";
2910
- } & {
2911
- id: string;
2912
- }) | ({
2913
- __TYPE__: "ExternalLink";
2914
- } & {
2915
- url: string;
2916
- } & {
2917
- kind?: "web";
2918
- target?: string | null | undefined;
2919
- preview?: {
2920
- title?: string;
2921
- } | null | undefined;
2922
- });
2923
- start: number;
2924
- end: number;
2925
- type: "hyperlink";
2926
- } | {
2927
- data: string;
2928
- start: number;
2929
- end: number;
2930
- type: "label";
2931
- } | {
2932
- start: number;
2933
- end: number;
2934
- type: "strong" | "em" | "list-item";
2935
- })[], unknown>;
2936
- }>]>;
2937
- }>, t.PartialC<{
2938
- label: t.StringC;
2939
- direction: t.StringC;
2940
- }>]>>>;
2941
- }>>]>>;
2942
- }>>>;
2943
- }>>, t.ExactC<t.TypeC<{
2944
- __TYPE__: t.LiteralC<"TableContent">;
2945
- }>>]>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>>;
2264
+ }>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>>;
2946
2265
  items: t.ArrayC<t.ExactC<t.TypeC<{
2947
2266
  __TYPE__: t.LiteralC<"GroupItemContent">;
2948
2267
  value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -3261,7 +2580,7 @@ export declare const SliceItemContent: t.TypeC<{
3261
2580
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3262
2581
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3263
2582
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
3264
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
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>;
3265
2584
  content: t.IntersectionC<[t.TypeC<{
3266
2585
  text: t.StringC;
3267
2586
  }>, t.PartialC<{
@@ -3370,15 +2689,20 @@ export declare const SliceItemContent: t.TypeC<{
3370
2689
  }>, t.PartialC<{
3371
2690
  label: t.StringC;
3372
2691
  direction: t.StringC;
3373
- }>]>>, t.ExactC<t.TypeC<{
3374
- type: t.LiteralC<"table">;
3375
- content: t.ArrayC<t.ExactC<t.TypeC<{
3376
- type: t.LiteralC<"tableRow">;
3377
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
3378
- type: t.LiteralC<"tableHeader">;
3379
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
3380
- 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>;
3381
- content: t.IntersectionC<[t.TypeC<{
2692
+ }>]>>]>>;
2693
+ }>>, t.ExactC<t.TypeC<{
2694
+ __TYPE__: t.LiteralC<"SeparatorContent">;
2695
+ }>>, t.ExactC<t.TypeC<{
2696
+ __TYPE__: t.LiteralC<"TableContent">;
2697
+ content: t.ArrayC<t.ExactC<t.TypeC<{
2698
+ type: t.LiteralC<"tableRow">;
2699
+ content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
2700
+ type: t.LiteralC<"tableHeader">;
2701
+ content: t.ExactC<t.TypeC<{
2702
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
2703
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
2704
+ 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>;
2705
+ content: t.IntersectionC<[t.TypeC<{
3382
2706
  text: t.StringC;
3383
2707
  }>, t.PartialC<{
3384
2708
  spans: t.Type<({
@@ -3487,10 +2811,13 @@ export declare const SliceItemContent: t.TypeC<{
3487
2811
  label: t.StringC;
3488
2812
  direction: t.StringC;
3489
2813
  }>]>>>;
3490
- }>>, t.ExactC<t.TypeC<{
3491
- type: t.LiteralC<"tableCell">;
3492
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
3493
- 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>;
2814
+ }>>;
2815
+ }>>, t.ExactC<t.TypeC<{
2816
+ type: t.LiteralC<"tableCell">;
2817
+ content: t.ExactC<t.TypeC<{
2818
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
2819
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
2820
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
3494
2821
  content: t.IntersectionC<[t.TypeC<{
3495
2822
  text: t.StringC;
3496
2823
  }>, t.PartialC<{
@@ -3600,11 +2927,9 @@ export declare const SliceItemContent: t.TypeC<{
3600
2927
  label: t.StringC;
3601
2928
  direction: t.StringC;
3602
2929
  }>]>>>;
3603
- }>>]>>;
3604
- }>>>;
3605
- }>>]>>;
3606
- }>>, t.ExactC<t.TypeC<{
3607
- __TYPE__: t.LiteralC<"SeparatorContent">;
2930
+ }>>;
2931
+ }>>]>>;
2932
+ }>>>;
3608
2933
  }>>, t.ExactC<t.TypeC<{
3609
2934
  __TYPE__: t.LiteralC<"RepeatableContent">;
3610
2935
  type: t.LiteralC<"Link">;
@@ -3686,240 +3011,7 @@ export declare const SliceItemContent: t.TypeC<{
3686
3011
  variant: t.StringC;
3687
3012
  }>]>>]>]>;
3688
3013
  }>>]>>;
3689
- }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
3690
- content: t.ArrayC<t.ExactC<t.TypeC<{
3691
- type: t.LiteralC<"tableRow">;
3692
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
3693
- type: t.LiteralC<"tableHeader">;
3694
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
3695
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
3696
- content: t.IntersectionC<[t.TypeC<{
3697
- text: t.StringC;
3698
- }>, t.PartialC<{
3699
- spans: t.Type<({
3700
- data: ({
3701
- __TYPE__: "ImageLink";
3702
- } & {
3703
- kind: "image";
3704
- id: string;
3705
- url: string;
3706
- height: string;
3707
- width: string;
3708
- size: string;
3709
- name: string;
3710
- } & {
3711
- date?: string | null | undefined;
3712
- }) | ({
3713
- __TYPE__: "FileLink";
3714
- } & {
3715
- kind: "file";
3716
- id: string;
3717
- url: string;
3718
- name: string;
3719
- size: string;
3720
- } & {
3721
- date?: string | null | undefined;
3722
- }) | ({
3723
- __TYPE__: "DocumentLink";
3724
- } & {
3725
- id: string;
3726
- }) | ({
3727
- __TYPE__: "ExternalLink";
3728
- } & {
3729
- url: string;
3730
- } & {
3731
- kind?: "web";
3732
- target?: string | null | undefined;
3733
- preview?: {
3734
- title?: string;
3735
- } | null | undefined;
3736
- });
3737
- start: number;
3738
- end: number;
3739
- type: "hyperlink";
3740
- } | {
3741
- data: string;
3742
- start: number;
3743
- end: number;
3744
- type: "label";
3745
- } | {
3746
- start: number;
3747
- end: number;
3748
- type: "strong" | "em" | "list-item";
3749
- })[], ({
3750
- data: ({
3751
- __TYPE__: "ImageLink";
3752
- } & {
3753
- kind: "image";
3754
- id: string;
3755
- url: string;
3756
- height: string;
3757
- width: string;
3758
- size: string;
3759
- name: string;
3760
- } & {
3761
- date?: string | null | undefined;
3762
- }) | ({
3763
- __TYPE__: "FileLink";
3764
- } & {
3765
- kind: "file";
3766
- id: string;
3767
- url: string;
3768
- name: string;
3769
- size: string;
3770
- } & {
3771
- date?: string | null | undefined;
3772
- }) | ({
3773
- __TYPE__: "DocumentLink";
3774
- } & {
3775
- id: string;
3776
- }) | ({
3777
- __TYPE__: "ExternalLink";
3778
- } & {
3779
- url: string;
3780
- } & {
3781
- kind?: "web";
3782
- target?: string | null | undefined;
3783
- preview?: {
3784
- title?: string;
3785
- } | null | undefined;
3786
- });
3787
- start: number;
3788
- end: number;
3789
- type: "hyperlink";
3790
- } | {
3791
- data: string;
3792
- start: number;
3793
- end: number;
3794
- type: "label";
3795
- } | {
3796
- start: number;
3797
- end: number;
3798
- type: "strong" | "em" | "list-item";
3799
- })[], unknown>;
3800
- }>]>;
3801
- }>, t.PartialC<{
3802
- label: t.StringC;
3803
- direction: t.StringC;
3804
- }>]>>>;
3805
- }>>, t.ExactC<t.TypeC<{
3806
- type: t.LiteralC<"tableCell">;
3807
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
3808
- type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table", unknown>;
3809
- content: t.IntersectionC<[t.TypeC<{
3810
- text: t.StringC;
3811
- }>, t.PartialC<{
3812
- spans: t.Type<({
3813
- data: ({
3814
- __TYPE__: "ImageLink";
3815
- } & {
3816
- kind: "image";
3817
- id: string;
3818
- url: string;
3819
- height: string;
3820
- width: string;
3821
- size: string;
3822
- name: string;
3823
- } & {
3824
- date?: string | null | undefined;
3825
- }) | ({
3826
- __TYPE__: "FileLink";
3827
- } & {
3828
- kind: "file";
3829
- id: string;
3830
- url: string;
3831
- name: string;
3832
- size: string;
3833
- } & {
3834
- date?: string | null | undefined;
3835
- }) | ({
3836
- __TYPE__: "DocumentLink";
3837
- } & {
3838
- id: string;
3839
- }) | ({
3840
- __TYPE__: "ExternalLink";
3841
- } & {
3842
- url: string;
3843
- } & {
3844
- kind?: "web";
3845
- target?: string | null | undefined;
3846
- preview?: {
3847
- title?: string;
3848
- } | null | undefined;
3849
- });
3850
- start: number;
3851
- end: number;
3852
- type: "hyperlink";
3853
- } | {
3854
- data: string;
3855
- start: number;
3856
- end: number;
3857
- type: "label";
3858
- } | {
3859
- start: number;
3860
- end: number;
3861
- type: "strong" | "em" | "list-item";
3862
- })[], ({
3863
- data: ({
3864
- __TYPE__: "ImageLink";
3865
- } & {
3866
- kind: "image";
3867
- id: string;
3868
- url: string;
3869
- height: string;
3870
- width: string;
3871
- size: string;
3872
- name: string;
3873
- } & {
3874
- date?: string | null | undefined;
3875
- }) | ({
3876
- __TYPE__: "FileLink";
3877
- } & {
3878
- kind: "file";
3879
- id: string;
3880
- url: string;
3881
- name: string;
3882
- size: string;
3883
- } & {
3884
- date?: string | null | undefined;
3885
- }) | ({
3886
- __TYPE__: "DocumentLink";
3887
- } & {
3888
- id: string;
3889
- }) | ({
3890
- __TYPE__: "ExternalLink";
3891
- } & {
3892
- url: string;
3893
- } & {
3894
- kind?: "web";
3895
- target?: string | null | undefined;
3896
- preview?: {
3897
- title?: string;
3898
- } | null | undefined;
3899
- });
3900
- start: number;
3901
- end: number;
3902
- type: "hyperlink";
3903
- } | {
3904
- data: string;
3905
- start: number;
3906
- end: number;
3907
- type: "label";
3908
- } | {
3909
- start: number;
3910
- end: number;
3911
- type: "strong" | "em" | "list-item";
3912
- })[], unknown>;
3913
- }>]>;
3914
- }>, t.PartialC<{
3915
- label: t.StringC;
3916
- direction: t.StringC;
3917
- }>]>>>;
3918
- }>>]>>;
3919
- }>>>;
3920
- }>>, t.ExactC<t.TypeC<{
3921
- __TYPE__: t.LiteralC<"TableContent">;
3922
- }>>]>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>>;
3014
+ }>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>>;
3923
3015
  }>>>;
3924
3016
  }>>, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
3925
3017
  type: t.StringC;
@@ -4237,7 +3329,7 @@ export declare const SliceItemContent: t.TypeC<{
4237
3329
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4238
3330
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4239
3331
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
4240
- 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>;
3332
+ 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>;
4241
3333
  content: t.IntersectionC<[t.TypeC<{
4242
3334
  text: t.StringC;
4243
3335
  }>, t.PartialC<{
@@ -4346,18 +3438,23 @@ export declare const SliceItemContent: t.TypeC<{
4346
3438
  }>, t.PartialC<{
4347
3439
  label: t.StringC;
4348
3440
  direction: t.StringC;
4349
- }>]>>, t.ExactC<t.TypeC<{
4350
- type: t.LiteralC<"table">;
4351
- content: t.ArrayC<t.ExactC<t.TypeC<{
4352
- type: t.LiteralC<"tableRow">;
4353
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
4354
- type: t.LiteralC<"tableHeader">;
4355
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
4356
- 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>;
4357
- content: t.IntersectionC<[t.TypeC<{
4358
- text: t.StringC;
4359
- }>, t.PartialC<{
4360
- spans: t.Type<({
3441
+ }>]>>]>>;
3442
+ }>>, t.ExactC<t.TypeC<{
3443
+ __TYPE__: t.LiteralC<"SeparatorContent">;
3444
+ }>>, t.ExactC<t.TypeC<{
3445
+ __TYPE__: t.LiteralC<"TableContent">;
3446
+ content: t.ArrayC<t.ExactC<t.TypeC<{
3447
+ type: t.LiteralC<"tableRow">;
3448
+ content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
3449
+ type: t.LiteralC<"tableHeader">;
3450
+ content: t.ExactC<t.TypeC<{
3451
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
3452
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
3453
+ 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>;
3454
+ content: t.IntersectionC<[t.TypeC<{
3455
+ text: t.StringC;
3456
+ }>, t.PartialC<{
3457
+ spans: t.Type<({
4361
3458
  data: ({
4362
3459
  __TYPE__: "ImageLink";
4363
3460
  } & {
@@ -4463,10 +3560,13 @@ export declare const SliceItemContent: t.TypeC<{
4463
3560
  label: t.StringC;
4464
3561
  direction: t.StringC;
4465
3562
  }>]>>>;
4466
- }>>, t.ExactC<t.TypeC<{
4467
- type: t.LiteralC<"tableCell">;
4468
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
4469
- 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>;
3563
+ }>>;
3564
+ }>>, t.ExactC<t.TypeC<{
3565
+ type: t.LiteralC<"tableCell">;
3566
+ content: t.ExactC<t.TypeC<{
3567
+ __TYPE__: t.LiteralC<"StructuredTextContent">;
3568
+ value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
3569
+ 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>;
4470
3570
  content: t.IntersectionC<[t.TypeC<{
4471
3571
  text: t.StringC;
4472
3572
  }>, t.PartialC<{
@@ -4576,11 +3676,9 @@ export declare const SliceItemContent: t.TypeC<{
4576
3676
  label: t.StringC;
4577
3677
  direction: t.StringC;
4578
3678
  }>]>>>;
4579
- }>>]>>;
4580
- }>>>;
4581
- }>>]>>;
4582
- }>>, t.ExactC<t.TypeC<{
4583
- __TYPE__: t.LiteralC<"SeparatorContent">;
3679
+ }>>;
3680
+ }>>]>>;
3681
+ }>>>;
4584
3682
  }>>, t.ExactC<t.TypeC<{
4585
3683
  __TYPE__: t.LiteralC<"RepeatableContent">;
4586
3684
  type: t.LiteralC<"Link">;
@@ -4662,240 +3760,7 @@ export declare const SliceItemContent: t.TypeC<{
4662
3760
  variant: t.StringC;
4663
3761
  }>]>>]>]>;
4664
3762
  }>>]>>;
4665
- }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
4666
- content: t.ArrayC<t.ExactC<t.TypeC<{
4667
- type: t.LiteralC<"tableRow">;
4668
- content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
4669
- type: t.LiteralC<"tableHeader">;
4670
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
4671
- 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>;
4672
- content: t.IntersectionC<[t.TypeC<{
4673
- text: t.StringC;
4674
- }>, t.PartialC<{
4675
- spans: t.Type<({
4676
- data: ({
4677
- __TYPE__: "ImageLink";
4678
- } & {
4679
- kind: "image";
4680
- id: string;
4681
- url: string;
4682
- height: string;
4683
- width: string;
4684
- size: string;
4685
- name: string;
4686
- } & {
4687
- date?: string | null | undefined;
4688
- }) | ({
4689
- __TYPE__: "FileLink";
4690
- } & {
4691
- kind: "file";
4692
- id: string;
4693
- url: string;
4694
- name: string;
4695
- size: string;
4696
- } & {
4697
- date?: string | null | undefined;
4698
- }) | ({
4699
- __TYPE__: "DocumentLink";
4700
- } & {
4701
- id: string;
4702
- }) | ({
4703
- __TYPE__: "ExternalLink";
4704
- } & {
4705
- url: string;
4706
- } & {
4707
- kind?: "web";
4708
- target?: string | null | undefined;
4709
- preview?: {
4710
- title?: string;
4711
- } | null | undefined;
4712
- });
4713
- start: number;
4714
- end: number;
4715
- type: "hyperlink";
4716
- } | {
4717
- data: string;
4718
- start: number;
4719
- end: number;
4720
- type: "label";
4721
- } | {
4722
- start: number;
4723
- end: number;
4724
- type: "strong" | "em" | "list-item";
4725
- })[], ({
4726
- data: ({
4727
- __TYPE__: "ImageLink";
4728
- } & {
4729
- kind: "image";
4730
- id: string;
4731
- url: string;
4732
- height: string;
4733
- width: string;
4734
- size: string;
4735
- name: string;
4736
- } & {
4737
- date?: string | null | undefined;
4738
- }) | ({
4739
- __TYPE__: "FileLink";
4740
- } & {
4741
- kind: "file";
4742
- id: string;
4743
- url: string;
4744
- name: string;
4745
- size: string;
4746
- } & {
4747
- date?: string | null | undefined;
4748
- }) | ({
4749
- __TYPE__: "DocumentLink";
4750
- } & {
4751
- id: string;
4752
- }) | ({
4753
- __TYPE__: "ExternalLink";
4754
- } & {
4755
- url: string;
4756
- } & {
4757
- kind?: "web";
4758
- target?: string | null | undefined;
4759
- preview?: {
4760
- title?: string;
4761
- } | null | undefined;
4762
- });
4763
- start: number;
4764
- end: number;
4765
- type: "hyperlink";
4766
- } | {
4767
- data: string;
4768
- start: number;
4769
- end: number;
4770
- type: "label";
4771
- } | {
4772
- start: number;
4773
- end: number;
4774
- type: "strong" | "em" | "list-item";
4775
- })[], unknown>;
4776
- }>]>;
4777
- }>, t.PartialC<{
4778
- label: t.StringC;
4779
- direction: t.StringC;
4780
- }>]>>>;
4781
- }>>, t.ExactC<t.TypeC<{
4782
- type: t.LiteralC<"tableCell">;
4783
- content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
4784
- 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>;
4785
- content: t.IntersectionC<[t.TypeC<{
4786
- text: t.StringC;
4787
- }>, t.PartialC<{
4788
- spans: t.Type<({
4789
- data: ({
4790
- __TYPE__: "ImageLink";
4791
- } & {
4792
- kind: "image";
4793
- id: string;
4794
- url: string;
4795
- height: string;
4796
- width: string;
4797
- size: string;
4798
- name: string;
4799
- } & {
4800
- date?: string | null | undefined;
4801
- }) | ({
4802
- __TYPE__: "FileLink";
4803
- } & {
4804
- kind: "file";
4805
- id: string;
4806
- url: string;
4807
- name: string;
4808
- size: string;
4809
- } & {
4810
- date?: string | null | undefined;
4811
- }) | ({
4812
- __TYPE__: "DocumentLink";
4813
- } & {
4814
- id: string;
4815
- }) | ({
4816
- __TYPE__: "ExternalLink";
4817
- } & {
4818
- url: string;
4819
- } & {
4820
- kind?: "web";
4821
- target?: string | null | undefined;
4822
- preview?: {
4823
- title?: string;
4824
- } | null | undefined;
4825
- });
4826
- start: number;
4827
- end: number;
4828
- type: "hyperlink";
4829
- } | {
4830
- data: string;
4831
- start: number;
4832
- end: number;
4833
- type: "label";
4834
- } | {
4835
- start: number;
4836
- end: number;
4837
- type: "strong" | "em" | "list-item";
4838
- })[], ({
4839
- data: ({
4840
- __TYPE__: "ImageLink";
4841
- } & {
4842
- kind: "image";
4843
- id: string;
4844
- url: string;
4845
- height: string;
4846
- width: string;
4847
- size: string;
4848
- name: string;
4849
- } & {
4850
- date?: string | null | undefined;
4851
- }) | ({
4852
- __TYPE__: "FileLink";
4853
- } & {
4854
- kind: "file";
4855
- id: string;
4856
- url: string;
4857
- name: string;
4858
- size: string;
4859
- } & {
4860
- date?: string | null | undefined;
4861
- }) | ({
4862
- __TYPE__: "DocumentLink";
4863
- } & {
4864
- id: string;
4865
- }) | ({
4866
- __TYPE__: "ExternalLink";
4867
- } & {
4868
- url: string;
4869
- } & {
4870
- kind?: "web";
4871
- target?: string | null | undefined;
4872
- preview?: {
4873
- title?: string;
4874
- } | null | undefined;
4875
- });
4876
- start: number;
4877
- end: number;
4878
- type: "hyperlink";
4879
- } | {
4880
- data: string;
4881
- start: number;
4882
- end: number;
4883
- type: "label";
4884
- } | {
4885
- start: number;
4886
- end: number;
4887
- type: "strong" | "em" | "list-item";
4888
- })[], unknown>;
4889
- }>]>;
4890
- }>, t.PartialC<{
4891
- label: t.StringC;
4892
- direction: t.StringC;
4893
- }>]>>>;
4894
- }>>]>>;
4895
- }>>>;
4896
- }>>, t.ExactC<t.TypeC<{
4897
- __TYPE__: t.LiteralC<"TableContent">;
4898
- }>>]>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>;
3763
+ }>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>;
4899
3764
  }>;
4900
3765
  export declare type SliceItemContent = t.TypeOf<typeof SliceItemContent>;
4901
3766
  export declare type SharedSliceItemContent = Omit<SliceItemContent, "widget"> & {
@@ -5274,7 +4139,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
5274
4139
  label?: string | null | undefined;
5275
4140
  direction?: string | null | undefined;
5276
4141
  }) | ({
5277
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
4142
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
5278
4143
  content: {
5279
4144
  text: string;
5280
4145
  } & {
@@ -5333,14 +4198,19 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
5333
4198
  } & {
5334
4199
  label?: string;
5335
4200
  direction?: string;
5336
- }) | {
5337
- type: "table";
5338
- content: {
5339
- type: "tableRow";
5340
- content: ({
5341
- type: "tableHeader";
5342
- content: ({
5343
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
4201
+ }))[];
4202
+ } | {
4203
+ __TYPE__: "SeparatorContent";
4204
+ } | {
4205
+ __TYPE__: "TableContent";
4206
+ content: {
4207
+ type: "tableRow";
4208
+ content: ({
4209
+ type: "tableHeader";
4210
+ content: {
4211
+ __TYPE__: "StructuredTextContent";
4212
+ value: ({
4213
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
5344
4214
  content: {
5345
4215
  text: string;
5346
4216
  } & {
@@ -5400,10 +4270,13 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
5400
4270
  label?: string;
5401
4271
  direction?: string;
5402
4272
  })[];
5403
- } | {
5404
- type: "tableCell";
5405
- content: ({
5406
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
4273
+ };
4274
+ } | {
4275
+ type: "tableCell";
4276
+ content: {
4277
+ __TYPE__: "StructuredTextContent";
4278
+ value: ({
4279
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
5407
4280
  content: {
5408
4281
  text: string;
5409
4282
  } & {
@@ -5463,145 +4336,10 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
5463
4336
  label?: string;
5464
4337
  direction?: string;
5465
4338
  })[];
5466
- })[];
5467
- }[];
5468
- })[];
5469
- } | {
5470
- __TYPE__: "SeparatorContent";
5471
- } | ({
5472
- content: {
5473
- type: "tableRow";
5474
- content: ({
5475
- type: "tableHeader";
5476
- content: ({
5477
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
5478
- content: {
5479
- text: string;
5480
- } & {
5481
- spans?: ({
5482
- data: ({
5483
- __TYPE__: "ImageLink";
5484
- } & {
5485
- kind: "image";
5486
- id: string;
5487
- url: string;
5488
- height: string;
5489
- width: string;
5490
- size: string;
5491
- name: string;
5492
- } & {
5493
- date?: string | null | undefined;
5494
- }) | ({
5495
- __TYPE__: "FileLink";
5496
- } & {
5497
- kind: "file";
5498
- id: string;
5499
- url: string;
5500
- name: string;
5501
- size: string;
5502
- } & {
5503
- date?: string | null | undefined;
5504
- }) | ({
5505
- __TYPE__: "DocumentLink";
5506
- } & {
5507
- id: string;
5508
- }) | ({
5509
- __TYPE__: "ExternalLink";
5510
- } & {
5511
- url: string;
5512
- } & {
5513
- kind?: "web";
5514
- target?: string | null | undefined;
5515
- preview?: {
5516
- title?: string;
5517
- } | null | undefined;
5518
- });
5519
- start: number;
5520
- end: number;
5521
- type: "hyperlink";
5522
- } | {
5523
- data: string;
5524
- start: number;
5525
- end: number;
5526
- type: "label";
5527
- } | {
5528
- start: number;
5529
- end: number;
5530
- type: "strong" | "em" | "list-item";
5531
- })[];
5532
- };
5533
- } & {
5534
- label?: string;
5535
- direction?: string;
5536
- })[];
5537
- } | {
5538
- type: "tableCell";
5539
- content: ({
5540
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
5541
- content: {
5542
- text: string;
5543
- } & {
5544
- spans?: ({
5545
- data: ({
5546
- __TYPE__: "ImageLink";
5547
- } & {
5548
- kind: "image";
5549
- id: string;
5550
- url: string;
5551
- height: string;
5552
- width: string;
5553
- size: string;
5554
- name: string;
5555
- } & {
5556
- date?: string | null | undefined;
5557
- }) | ({
5558
- __TYPE__: "FileLink";
5559
- } & {
5560
- kind: "file";
5561
- id: string;
5562
- url: string;
5563
- name: string;
5564
- size: string;
5565
- } & {
5566
- date?: string | null | undefined;
5567
- }) | ({
5568
- __TYPE__: "DocumentLink";
5569
- } & {
5570
- id: string;
5571
- }) | ({
5572
- __TYPE__: "ExternalLink";
5573
- } & {
5574
- url: string;
5575
- } & {
5576
- kind?: "web";
5577
- target?: string | null | undefined;
5578
- preview?: {
5579
- title?: string;
5580
- } | null | undefined;
5581
- });
5582
- start: number;
5583
- end: number;
5584
- type: "hyperlink";
5585
- } | {
5586
- data: string;
5587
- start: number;
5588
- end: number;
5589
- type: "label";
5590
- } | {
5591
- start: number;
5592
- end: number;
5593
- type: "strong" | "em" | "list-item";
5594
- })[];
5595
- };
5596
- } & {
5597
- label?: string;
5598
- direction?: string;
5599
- })[];
4339
+ };
5600
4340
  })[];
5601
4341
  }[];
5602
- } & {
5603
- __TYPE__: "TableContent";
5604
- }) | {
4342
+ } | {
5605
4343
  __TYPE__: "CompositeSliceContent";
5606
4344
  nonRepeat: {
5607
4345
  [x: string]: {
@@ -5963,7 +4701,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
5963
4701
  label?: string | null | undefined;
5964
4702
  direction?: string | null | undefined;
5965
4703
  }) | ({
5966
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
4704
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
5967
4705
  content: {
5968
4706
  text: string;
5969
4707
  } & {
@@ -6022,14 +4760,19 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
6022
4760
  } & {
6023
4761
  label?: string;
6024
4762
  direction?: string;
6025
- }) | {
6026
- type: "table";
6027
- content: {
6028
- type: "tableRow";
6029
- content: ({
6030
- type: "tableHeader";
6031
- content: ({
6032
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
4763
+ }))[];
4764
+ } | {
4765
+ __TYPE__: "SeparatorContent";
4766
+ } | {
4767
+ __TYPE__: "TableContent";
4768
+ content: {
4769
+ type: "tableRow";
4770
+ content: ({
4771
+ type: "tableHeader";
4772
+ content: {
4773
+ __TYPE__: "StructuredTextContent";
4774
+ value: ({
4775
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
6033
4776
  content: {
6034
4777
  text: string;
6035
4778
  } & {
@@ -6089,10 +4832,13 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
6089
4832
  label?: string;
6090
4833
  direction?: string;
6091
4834
  })[];
6092
- } | {
6093
- type: "tableCell";
6094
- content: ({
6095
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
4835
+ };
4836
+ } | {
4837
+ type: "tableCell";
4838
+ content: {
4839
+ __TYPE__: "StructuredTextContent";
4840
+ value: ({
4841
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
6096
4842
  content: {
6097
4843
  text: string;
6098
4844
  } & {
@@ -6152,154 +4898,19 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
6152
4898
  label?: string;
6153
4899
  direction?: string;
6154
4900
  })[];
6155
- })[];
6156
- }[];
6157
- })[];
4901
+ };
4902
+ })[];
4903
+ }[];
4904
+ };
4905
+ };
4906
+ repeat: {
4907
+ __TYPE__: "GroupItemContent";
4908
+ value: [string, {
4909
+ type: string;
4910
+ __TYPE__: "EmptyContent";
6158
4911
  } | {
6159
- __TYPE__: "SeparatorContent";
6160
- } | ({
6161
- content: {
6162
- type: "tableRow";
6163
- content: ({
6164
- type: "tableHeader";
6165
- content: ({
6166
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
6167
- content: {
6168
- text: string;
6169
- } & {
6170
- spans?: ({
6171
- data: ({
6172
- __TYPE__: "ImageLink";
6173
- } & {
6174
- kind: "image";
6175
- id: string;
6176
- url: string;
6177
- height: string;
6178
- width: string;
6179
- size: string;
6180
- name: string;
6181
- } & {
6182
- date?: string | null | undefined;
6183
- }) | ({
6184
- __TYPE__: "FileLink";
6185
- } & {
6186
- kind: "file";
6187
- id: string;
6188
- url: string;
6189
- name: string;
6190
- size: string;
6191
- } & {
6192
- date?: string | null | undefined;
6193
- }) | ({
6194
- __TYPE__: "DocumentLink";
6195
- } & {
6196
- id: string;
6197
- }) | ({
6198
- __TYPE__: "ExternalLink";
6199
- } & {
6200
- url: string;
6201
- } & {
6202
- kind?: "web";
6203
- target?: string | null | undefined;
6204
- preview?: {
6205
- title?: string;
6206
- } | null | undefined;
6207
- });
6208
- start: number;
6209
- end: number;
6210
- type: "hyperlink";
6211
- } | {
6212
- data: string;
6213
- start: number;
6214
- end: number;
6215
- type: "label";
6216
- } | {
6217
- start: number;
6218
- end: number;
6219
- type: "strong" | "em" | "list-item";
6220
- })[];
6221
- };
6222
- } & {
6223
- label?: string;
6224
- direction?: string;
6225
- })[];
6226
- } | {
6227
- type: "tableCell";
6228
- content: ({
6229
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
6230
- content: {
6231
- text: string;
6232
- } & {
6233
- spans?: ({
6234
- data: ({
6235
- __TYPE__: "ImageLink";
6236
- } & {
6237
- kind: "image";
6238
- id: string;
6239
- url: string;
6240
- height: string;
6241
- width: string;
6242
- size: string;
6243
- name: string;
6244
- } & {
6245
- date?: string | null | undefined;
6246
- }) | ({
6247
- __TYPE__: "FileLink";
6248
- } & {
6249
- kind: "file";
6250
- id: string;
6251
- url: string;
6252
- name: string;
6253
- size: string;
6254
- } & {
6255
- date?: string | null | undefined;
6256
- }) | ({
6257
- __TYPE__: "DocumentLink";
6258
- } & {
6259
- id: string;
6260
- }) | ({
6261
- __TYPE__: "ExternalLink";
6262
- } & {
6263
- url: string;
6264
- } & {
6265
- kind?: "web";
6266
- target?: string | null | undefined;
6267
- preview?: {
6268
- title?: string;
6269
- } | null | undefined;
6270
- });
6271
- start: number;
6272
- end: number;
6273
- type: "hyperlink";
6274
- } | {
6275
- data: string;
6276
- start: number;
6277
- end: number;
6278
- type: "label";
6279
- } | {
6280
- start: number;
6281
- end: number;
6282
- type: "strong" | "em" | "list-item";
6283
- })[];
6284
- };
6285
- } & {
6286
- label?: string;
6287
- direction?: string;
6288
- })[];
6289
- })[];
6290
- }[];
6291
- } & {
6292
- __TYPE__: "TableContent";
6293
- });
6294
- };
6295
- repeat: {
6296
- __TYPE__: "GroupItemContent";
6297
- value: [string, {
6298
- type: string;
6299
- __TYPE__: "EmptyContent";
6300
- } | {
6301
- __TYPE__: "BooleanContent";
6302
- value: boolean;
4912
+ __TYPE__: "BooleanContent";
4913
+ value: boolean;
6303
4914
  } | ({
6304
4915
  embed_url: string;
6305
4916
  type: string;
@@ -6653,7 +5264,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
6653
5264
  label?: string | null | undefined;
6654
5265
  direction?: string | null | undefined;
6655
5266
  }) | ({
6656
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
5267
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
6657
5268
  content: {
6658
5269
  text: string;
6659
5270
  } & {
@@ -6712,14 +5323,19 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
6712
5323
  } & {
6713
5324
  label?: string;
6714
5325
  direction?: string;
6715
- }) | {
6716
- type: "table";
6717
- content: {
6718
- type: "tableRow";
6719
- content: ({
6720
- type: "tableHeader";
6721
- content: ({
6722
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
5326
+ }))[];
5327
+ } | {
5328
+ __TYPE__: "SeparatorContent";
5329
+ } | {
5330
+ __TYPE__: "TableContent";
5331
+ content: {
5332
+ type: "tableRow";
5333
+ content: ({
5334
+ type: "tableHeader";
5335
+ content: {
5336
+ __TYPE__: "StructuredTextContent";
5337
+ value: ({
5338
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
6723
5339
  content: {
6724
5340
  text: string;
6725
5341
  } & {
@@ -6779,10 +5395,13 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
6779
5395
  label?: string;
6780
5396
  direction?: string;
6781
5397
  })[];
6782
- } | {
6783
- type: "tableCell";
6784
- content: ({
6785
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
5398
+ };
5399
+ } | {
5400
+ type: "tableCell";
5401
+ content: {
5402
+ __TYPE__: "StructuredTextContent";
5403
+ value: ({
5404
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
6786
5405
  content: {
6787
5406
  text: string;
6788
5407
  } & {
@@ -6842,145 +5461,10 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
6842
5461
  label?: string;
6843
5462
  direction?: string;
6844
5463
  })[];
6845
- })[];
6846
- }[];
6847
- })[];
6848
- } | {
6849
- __TYPE__: "SeparatorContent";
6850
- } | ({
6851
- content: {
6852
- type: "tableRow";
6853
- content: ({
6854
- type: "tableHeader";
6855
- content: ({
6856
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
6857
- content: {
6858
- text: string;
6859
- } & {
6860
- spans?: ({
6861
- data: ({
6862
- __TYPE__: "ImageLink";
6863
- } & {
6864
- kind: "image";
6865
- id: string;
6866
- url: string;
6867
- height: string;
6868
- width: string;
6869
- size: string;
6870
- name: string;
6871
- } & {
6872
- date?: string | null | undefined;
6873
- }) | ({
6874
- __TYPE__: "FileLink";
6875
- } & {
6876
- kind: "file";
6877
- id: string;
6878
- url: string;
6879
- name: string;
6880
- size: string;
6881
- } & {
6882
- date?: string | null | undefined;
6883
- }) | ({
6884
- __TYPE__: "DocumentLink";
6885
- } & {
6886
- id: string;
6887
- }) | ({
6888
- __TYPE__: "ExternalLink";
6889
- } & {
6890
- url: string;
6891
- } & {
6892
- kind?: "web";
6893
- target?: string | null | undefined;
6894
- preview?: {
6895
- title?: string;
6896
- } | null | undefined;
6897
- });
6898
- start: number;
6899
- end: number;
6900
- type: "hyperlink";
6901
- } | {
6902
- data: string;
6903
- start: number;
6904
- end: number;
6905
- type: "label";
6906
- } | {
6907
- start: number;
6908
- end: number;
6909
- type: "strong" | "em" | "list-item";
6910
- })[];
6911
- };
6912
- } & {
6913
- label?: string;
6914
- direction?: string;
6915
- })[];
6916
- } | {
6917
- type: "tableCell";
6918
- content: ({
6919
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
6920
- content: {
6921
- text: string;
6922
- } & {
6923
- spans?: ({
6924
- data: ({
6925
- __TYPE__: "ImageLink";
6926
- } & {
6927
- kind: "image";
6928
- id: string;
6929
- url: string;
6930
- height: string;
6931
- width: string;
6932
- size: string;
6933
- name: string;
6934
- } & {
6935
- date?: string | null | undefined;
6936
- }) | ({
6937
- __TYPE__: "FileLink";
6938
- } & {
6939
- kind: "file";
6940
- id: string;
6941
- url: string;
6942
- name: string;
6943
- size: string;
6944
- } & {
6945
- date?: string | null | undefined;
6946
- }) | ({
6947
- __TYPE__: "DocumentLink";
6948
- } & {
6949
- id: string;
6950
- }) | ({
6951
- __TYPE__: "ExternalLink";
6952
- } & {
6953
- url: string;
6954
- } & {
6955
- kind?: "web";
6956
- target?: string | null | undefined;
6957
- preview?: {
6958
- title?: string;
6959
- } | null | undefined;
6960
- });
6961
- start: number;
6962
- end: number;
6963
- type: "hyperlink";
6964
- } | {
6965
- data: string;
6966
- start: number;
6967
- end: number;
6968
- type: "label";
6969
- } | {
6970
- start: number;
6971
- end: number;
6972
- type: "strong" | "em" | "list-item";
6973
- })[];
6974
- };
6975
- } & {
6976
- label?: string;
6977
- direction?: string;
6978
- })[];
5464
+ };
6979
5465
  })[];
6980
5466
  }[];
6981
- } & {
6982
- __TYPE__: "TableContent";
6983
- })][];
5467
+ }][];
6984
5468
  }[];
6985
5469
  } | {
6986
5470
  __TYPE__: "SharedSliceContent";
@@ -7345,7 +5829,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
7345
5829
  label?: string | null | undefined;
7346
5830
  direction?: string | null | undefined;
7347
5831
  }) | ({
7348
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
5832
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
7349
5833
  content: {
7350
5834
  text: string;
7351
5835
  } & {
@@ -7404,14 +5888,19 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
7404
5888
  } & {
7405
5889
  label?: string;
7406
5890
  direction?: string;
7407
- }) | {
7408
- type: "table";
7409
- content: {
7410
- type: "tableRow";
7411
- content: ({
7412
- type: "tableHeader";
7413
- content: ({
7414
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
5891
+ }))[];
5892
+ } | {
5893
+ __TYPE__: "SeparatorContent";
5894
+ } | {
5895
+ __TYPE__: "TableContent";
5896
+ content: {
5897
+ type: "tableRow";
5898
+ content: ({
5899
+ type: "tableHeader";
5900
+ content: {
5901
+ __TYPE__: "StructuredTextContent";
5902
+ value: ({
5903
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
7415
5904
  content: {
7416
5905
  text: string;
7417
5906
  } & {
@@ -7471,10 +5960,13 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
7471
5960
  label?: string;
7472
5961
  direction?: string;
7473
5962
  })[];
7474
- } | {
7475
- type: "tableCell";
7476
- content: ({
7477
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
5963
+ };
5964
+ } | {
5965
+ type: "tableCell";
5966
+ content: {
5967
+ __TYPE__: "StructuredTextContent";
5968
+ value: ({
5969
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
7478
5970
  content: {
7479
5971
  text: string;
7480
5972
  } & {
@@ -7534,145 +6026,10 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
7534
6026
  label?: string;
7535
6027
  direction?: string;
7536
6028
  })[];
7537
- })[];
7538
- }[];
7539
- })[];
7540
- } | {
7541
- __TYPE__: "SeparatorContent";
7542
- } | ({
7543
- content: {
7544
- type: "tableRow";
7545
- content: ({
7546
- type: "tableHeader";
7547
- content: ({
7548
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
7549
- content: {
7550
- text: string;
7551
- } & {
7552
- spans?: ({
7553
- data: ({
7554
- __TYPE__: "ImageLink";
7555
- } & {
7556
- kind: "image";
7557
- id: string;
7558
- url: string;
7559
- height: string;
7560
- width: string;
7561
- size: string;
7562
- name: string;
7563
- } & {
7564
- date?: string | null | undefined;
7565
- }) | ({
7566
- __TYPE__: "FileLink";
7567
- } & {
7568
- kind: "file";
7569
- id: string;
7570
- url: string;
7571
- name: string;
7572
- size: string;
7573
- } & {
7574
- date?: string | null | undefined;
7575
- }) | ({
7576
- __TYPE__: "DocumentLink";
7577
- } & {
7578
- id: string;
7579
- }) | ({
7580
- __TYPE__: "ExternalLink";
7581
- } & {
7582
- url: string;
7583
- } & {
7584
- kind?: "web";
7585
- target?: string | null | undefined;
7586
- preview?: {
7587
- title?: string;
7588
- } | null | undefined;
7589
- });
7590
- start: number;
7591
- end: number;
7592
- type: "hyperlink";
7593
- } | {
7594
- data: string;
7595
- start: number;
7596
- end: number;
7597
- type: "label";
7598
- } | {
7599
- start: number;
7600
- end: number;
7601
- type: "strong" | "em" | "list-item";
7602
- })[];
7603
- };
7604
- } & {
7605
- label?: string;
7606
- direction?: string;
7607
- })[];
7608
- } | {
7609
- type: "tableCell";
7610
- content: ({
7611
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
7612
- content: {
7613
- text: string;
7614
- } & {
7615
- spans?: ({
7616
- data: ({
7617
- __TYPE__: "ImageLink";
7618
- } & {
7619
- kind: "image";
7620
- id: string;
7621
- url: string;
7622
- height: string;
7623
- width: string;
7624
- size: string;
7625
- name: string;
7626
- } & {
7627
- date?: string | null | undefined;
7628
- }) | ({
7629
- __TYPE__: "FileLink";
7630
- } & {
7631
- kind: "file";
7632
- id: string;
7633
- url: string;
7634
- name: string;
7635
- size: string;
7636
- } & {
7637
- date?: string | null | undefined;
7638
- }) | ({
7639
- __TYPE__: "DocumentLink";
7640
- } & {
7641
- id: string;
7642
- }) | ({
7643
- __TYPE__: "ExternalLink";
7644
- } & {
7645
- url: string;
7646
- } & {
7647
- kind?: "web";
7648
- target?: string | null | undefined;
7649
- preview?: {
7650
- title?: string;
7651
- } | null | undefined;
7652
- });
7653
- start: number;
7654
- end: number;
7655
- type: "hyperlink";
7656
- } | {
7657
- data: string;
7658
- start: number;
7659
- end: number;
7660
- type: "label";
7661
- } | {
7662
- start: number;
7663
- end: number;
7664
- type: "strong" | "em" | "list-item";
7665
- })[];
7666
- };
7667
- } & {
7668
- label?: string;
7669
- direction?: string;
7670
- })[];
6029
+ };
7671
6030
  })[];
7672
6031
  }[];
7673
- } & {
7674
- __TYPE__: "TableContent";
7675
- });
6032
+ };
7676
6033
  };
7677
6034
  items: {
7678
6035
  __TYPE__: "GroupItemContent";
@@ -8035,7 +6392,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
8035
6392
  label?: string | null | undefined;
8036
6393
  direction?: string | null | undefined;
8037
6394
  }) | ({
8038
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
6395
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
8039
6396
  content: {
8040
6397
  text: string;
8041
6398
  } & {
@@ -8094,14 +6451,19 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
8094
6451
  } & {
8095
6452
  label?: string;
8096
6453
  direction?: string;
8097
- }) | {
8098
- type: "table";
8099
- content: {
8100
- type: "tableRow";
8101
- content: ({
8102
- type: "tableHeader";
8103
- content: ({
8104
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
6454
+ }))[];
6455
+ } | {
6456
+ __TYPE__: "SeparatorContent";
6457
+ } | {
6458
+ __TYPE__: "TableContent";
6459
+ content: {
6460
+ type: "tableRow";
6461
+ content: ({
6462
+ type: "tableHeader";
6463
+ content: {
6464
+ __TYPE__: "StructuredTextContent";
6465
+ value: ({
6466
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
8105
6467
  content: {
8106
6468
  text: string;
8107
6469
  } & {
@@ -8161,10 +6523,13 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
8161
6523
  label?: string;
8162
6524
  direction?: string;
8163
6525
  })[];
8164
- } | {
8165
- type: "tableCell";
8166
- content: ({
8167
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
6526
+ };
6527
+ } | {
6528
+ type: "tableCell";
6529
+ content: {
6530
+ __TYPE__: "StructuredTextContent";
6531
+ value: ({
6532
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
8168
6533
  content: {
8169
6534
  text: string;
8170
6535
  } & {
@@ -8224,145 +6589,10 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
8224
6589
  label?: string;
8225
6590
  direction?: string;
8226
6591
  })[];
8227
- })[];
8228
- }[];
8229
- })[];
8230
- } | {
8231
- __TYPE__: "SeparatorContent";
8232
- } | ({
8233
- content: {
8234
- type: "tableRow";
8235
- content: ({
8236
- type: "tableHeader";
8237
- content: ({
8238
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
8239
- content: {
8240
- text: string;
8241
- } & {
8242
- spans?: ({
8243
- data: ({
8244
- __TYPE__: "ImageLink";
8245
- } & {
8246
- kind: "image";
8247
- id: string;
8248
- url: string;
8249
- height: string;
8250
- width: string;
8251
- size: string;
8252
- name: string;
8253
- } & {
8254
- date?: string | null | undefined;
8255
- }) | ({
8256
- __TYPE__: "FileLink";
8257
- } & {
8258
- kind: "file";
8259
- id: string;
8260
- url: string;
8261
- name: string;
8262
- size: string;
8263
- } & {
8264
- date?: string | null | undefined;
8265
- }) | ({
8266
- __TYPE__: "DocumentLink";
8267
- } & {
8268
- id: string;
8269
- }) | ({
8270
- __TYPE__: "ExternalLink";
8271
- } & {
8272
- url: string;
8273
- } & {
8274
- kind?: "web";
8275
- target?: string | null | undefined;
8276
- preview?: {
8277
- title?: string;
8278
- } | null | undefined;
8279
- });
8280
- start: number;
8281
- end: number;
8282
- type: "hyperlink";
8283
- } | {
8284
- data: string;
8285
- start: number;
8286
- end: number;
8287
- type: "label";
8288
- } | {
8289
- start: number;
8290
- end: number;
8291
- type: "strong" | "em" | "list-item";
8292
- })[];
8293
- };
8294
- } & {
8295
- label?: string;
8296
- direction?: string;
8297
- })[];
8298
- } | {
8299
- type: "tableCell";
8300
- content: ({
8301
- type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
8302
- content: {
8303
- text: string;
8304
- } & {
8305
- spans?: ({
8306
- data: ({
8307
- __TYPE__: "ImageLink";
8308
- } & {
8309
- kind: "image";
8310
- id: string;
8311
- url: string;
8312
- height: string;
8313
- width: string;
8314
- size: string;
8315
- name: string;
8316
- } & {
8317
- date?: string | null | undefined;
8318
- }) | ({
8319
- __TYPE__: "FileLink";
8320
- } & {
8321
- kind: "file";
8322
- id: string;
8323
- url: string;
8324
- name: string;
8325
- size: string;
8326
- } & {
8327
- date?: string | null | undefined;
8328
- }) | ({
8329
- __TYPE__: "DocumentLink";
8330
- } & {
8331
- id: string;
8332
- }) | ({
8333
- __TYPE__: "ExternalLink";
8334
- } & {
8335
- url: string;
8336
- } & {
8337
- kind?: "web";
8338
- target?: string | null | undefined;
8339
- preview?: {
8340
- title?: string;
8341
- } | null | undefined;
8342
- });
8343
- start: number;
8344
- end: number;
8345
- type: "hyperlink";
8346
- } | {
8347
- data: string;
8348
- start: number;
8349
- end: number;
8350
- type: "label";
8351
- } | {
8352
- start: number;
8353
- end: number;
8354
- type: "strong" | "em" | "list-item";
8355
- })[];
8356
- };
8357
- } & {
8358
- label?: string;
8359
- direction?: string;
8360
- })[];
6592
+ };
8361
6593
  })[];
8362
6594
  }[];
8363
- } & {
8364
- __TYPE__: "TableContent";
8365
- })][];
6595
+ }][];
8366
6596
  }[];
8367
6597
  };
8368
6598
  }, WithTypes<{