@prismicio/types-internal 3.4.0-alpha.8 → 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.
- package/lib/content/Document.d.ts +433 -325
- package/lib/content/Document.js +8 -0
- package/lib/content/fields/GroupContent.d.ts +1 -1
- package/lib/content/fields/GroupContent.js +12 -1
- package/lib/content/fields/RepeatableContent.d.ts +123 -51
- package/lib/content/fields/RepeatableContent.js +14 -10
- package/lib/content/fields/WidgetContent.d.ts +432 -324
- package/lib/content/fields/nestable/NestableContent.d.ts +72 -54
- package/lib/content/fields/nestable/NestableContent.js +7 -0
- package/lib/content/fields/nestable/RepeatableContent.d.ts +2 -2
- package/lib/content/fields/nestable/RepeatableContent.js +5 -2
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +112 -0
- package/lib/content/fields/nestable/RichTextContent/Blocks.js +5 -5
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +9 -641
- package/lib/content/fields/nestable/RichTextContent/index.js +4 -8
- package/lib/content/fields/nestable/TableContent.d.ts +536 -618
- package/lib/content/fields/nestable/TableContent.js +101 -15
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +144 -108
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +24 -18
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +144 -108
- package/lib/content/fields/slices/Slice/SharedSliceContent.js +12 -0
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +72 -54
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +72 -54
- package/lib/content/fields/slices/Slice/index.d.ts +240 -180
- package/lib/content/fields/slices/SliceItem.d.ts +240 -180
- package/lib/content/fields/slices/SlicesContent.d.ts +360 -270
- package/lib/customtypes/CustomType.d.ts +108 -0
- package/lib/customtypes/Section.d.ts +108 -0
- package/lib/customtypes/diff/SharedSlice.d.ts +48 -0
- package/lib/customtypes/diff/Variation.d.ts +48 -0
- package/lib/customtypes/widgets/Group.d.ts +36 -0
- package/lib/customtypes/widgets/Widget.d.ts +126 -0
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +6 -0
- package/lib/customtypes/widgets/nestable/NestableWidget.js +2 -0
- package/lib/customtypes/widgets/nestable/RichText.d.ts +0 -2
- package/lib/customtypes/widgets/nestable/RichText.js +0 -2
- package/lib/customtypes/widgets/nestable/Table.d.ts +6 -0
- package/lib/customtypes/widgets/nestable/Table.js +13 -1
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +12 -0
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +12 -0
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +48 -0
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +36 -0
- package/lib/customtypes/widgets/slices/Slices.d.ts +168 -0
- package/package.json +1 -1
- package/src/content/Document.ts +9 -0
- package/src/content/fields/GroupContent.ts +15 -1
- package/src/content/fields/nestable/NestableContent.ts +12 -0
- package/src/content/fields/nestable/RepeatableContent.ts +6 -2
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +238 -0
- package/src/content/fields/nestable/RichTextContent/index.ts +3 -7
- package/src/content/fields/nestable/TableContent.ts +131 -14
- package/src/content/fields/slices/Slice/SharedSliceContent.ts +13 -0
- package/src/customtypes/widgets/nestable/NestableWidget.ts +2 -0
- package/src/customtypes/widgets/nestable/RichText.ts +0 -2
- package/src/customtypes/widgets/nestable/Table.ts +13 -0
- package/lib/content/fields/nestable/RichTextContent/Block.d.ts +0 -1036
- package/lib/content/fields/nestable/RichTextContent/Block.js +0 -31
- package/lib/content/fields/nestable/RichTextContent/EmbedBlock.d.ts +0 -60
- package/lib/content/fields/nestable/RichTextContent/EmbedBlock.js +0 -53
- package/lib/content/fields/nestable/RichTextContent/ImageBlock.d.ts +0 -203
- package/lib/content/fields/nestable/RichTextContent/ImageBlock.js +0 -36
- package/lib/content/fields/nestable/RichTextContent/TableBlock.d.ts +0 -500
- package/lib/content/fields/nestable/RichTextContent/TableBlock.js +0 -21
- package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +0 -590
- package/lib/content/fields/nestable/RichTextContent/TextBlock.js +0 -80
- package/src/content/fields/nestable/RichTextContent/Block.ts +0 -35
- package/src/content/fields/nestable/RichTextContent/EmbedBlock.ts +0 -81
- package/src/content/fields/nestable/RichTextContent/ImageBlock.ts +0 -42
- package/src/content/fields/nestable/RichTextContent/TableBlock.ts +0 -36
- package/src/content/fields/nestable/RichTextContent/TextBlock.ts +0 -108
|
@@ -360,7 +360,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
360
360
|
label?: string | null | undefined;
|
|
361
361
|
direction?: string | null | undefined;
|
|
362
362
|
}) | ({
|
|
363
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
363
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
364
364
|
content: {
|
|
365
365
|
text: string;
|
|
366
366
|
} & {
|
|
@@ -419,14 +419,19 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
419
419
|
} & {
|
|
420
420
|
label?: string;
|
|
421
421
|
direction?: string;
|
|
422
|
-
})
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
422
|
+
}))[];
|
|
423
|
+
}> | import("fp-ts/lib/Either").Right<{
|
|
424
|
+
__TYPE__: "SeparatorContent";
|
|
425
|
+
}> | import("fp-ts/lib/Either").Right<{
|
|
426
|
+
__TYPE__: "TableContent";
|
|
427
|
+
content: {
|
|
428
|
+
type: "tableRow";
|
|
429
|
+
content: ({
|
|
430
|
+
type: "tableHeader";
|
|
431
|
+
content: {
|
|
432
|
+
__TYPE__: "StructuredTextContent";
|
|
433
|
+
value: ({
|
|
434
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
430
435
|
content: {
|
|
431
436
|
text: string;
|
|
432
437
|
} & {
|
|
@@ -486,10 +491,13 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
486
491
|
label?: string;
|
|
487
492
|
direction?: string;
|
|
488
493
|
})[];
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
494
|
+
};
|
|
495
|
+
} | {
|
|
496
|
+
type: "tableCell";
|
|
497
|
+
content: {
|
|
498
|
+
__TYPE__: "StructuredTextContent";
|
|
499
|
+
value: ({
|
|
500
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
493
501
|
content: {
|
|
494
502
|
text: string;
|
|
495
503
|
} & {
|
|
@@ -549,11 +557,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
549
557
|
label?: string;
|
|
550
558
|
direction?: string;
|
|
551
559
|
})[];
|
|
552
|
-
}
|
|
553
|
-
}[];
|
|
554
|
-
}
|
|
555
|
-
}> | import("fp-ts/lib/Either").Right<{
|
|
556
|
-
__TYPE__: "SeparatorContent";
|
|
560
|
+
};
|
|
561
|
+
})[];
|
|
562
|
+
}[];
|
|
557
563
|
}> | import("fp-ts/lib/Either").Right<{
|
|
558
564
|
__TYPE__: "CompositeSliceContent";
|
|
559
565
|
nonRepeat: {
|
|
@@ -916,7 +922,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
916
922
|
label?: string | null | undefined;
|
|
917
923
|
direction?: string | null | undefined;
|
|
918
924
|
}) | ({
|
|
919
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
925
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
920
926
|
content: {
|
|
921
927
|
text: string;
|
|
922
928
|
} & {
|
|
@@ -975,14 +981,19 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
975
981
|
} & {
|
|
976
982
|
label?: string;
|
|
977
983
|
direction?: string;
|
|
978
|
-
})
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
984
|
+
}))[];
|
|
985
|
+
} | {
|
|
986
|
+
__TYPE__: "SeparatorContent";
|
|
987
|
+
} | {
|
|
988
|
+
__TYPE__: "TableContent";
|
|
989
|
+
content: {
|
|
990
|
+
type: "tableRow";
|
|
991
|
+
content: ({
|
|
992
|
+
type: "tableHeader";
|
|
993
|
+
content: {
|
|
994
|
+
__TYPE__: "StructuredTextContent";
|
|
995
|
+
value: ({
|
|
996
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
986
997
|
content: {
|
|
987
998
|
text: string;
|
|
988
999
|
} & {
|
|
@@ -1042,10 +1053,13 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1042
1053
|
label?: string;
|
|
1043
1054
|
direction?: string;
|
|
1044
1055
|
})[];
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1056
|
+
};
|
|
1057
|
+
} | {
|
|
1058
|
+
type: "tableCell";
|
|
1059
|
+
content: {
|
|
1060
|
+
__TYPE__: "StructuredTextContent";
|
|
1061
|
+
value: ({
|
|
1062
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1049
1063
|
content: {
|
|
1050
1064
|
text: string;
|
|
1051
1065
|
} & {
|
|
@@ -1105,11 +1119,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1105
1119
|
label?: string;
|
|
1106
1120
|
direction?: string;
|
|
1107
1121
|
})[];
|
|
1108
|
-
}
|
|
1109
|
-
}[];
|
|
1110
|
-
}
|
|
1111
|
-
} | {
|
|
1112
|
-
__TYPE__: "SeparatorContent";
|
|
1122
|
+
};
|
|
1123
|
+
})[];
|
|
1124
|
+
}[];
|
|
1113
1125
|
};
|
|
1114
1126
|
};
|
|
1115
1127
|
repeat: {
|
|
@@ -1473,7 +1485,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1473
1485
|
label?: string | null | undefined;
|
|
1474
1486
|
direction?: string | null | undefined;
|
|
1475
1487
|
}) | ({
|
|
1476
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
1488
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1477
1489
|
content: {
|
|
1478
1490
|
text: string;
|
|
1479
1491
|
} & {
|
|
@@ -1532,14 +1544,19 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1532
1544
|
} & {
|
|
1533
1545
|
label?: string;
|
|
1534
1546
|
direction?: string;
|
|
1535
|
-
})
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1547
|
+
}))[];
|
|
1548
|
+
} | {
|
|
1549
|
+
__TYPE__: "SeparatorContent";
|
|
1550
|
+
} | {
|
|
1551
|
+
__TYPE__: "TableContent";
|
|
1552
|
+
content: {
|
|
1553
|
+
type: "tableRow";
|
|
1554
|
+
content: ({
|
|
1555
|
+
type: "tableHeader";
|
|
1556
|
+
content: {
|
|
1557
|
+
__TYPE__: "StructuredTextContent";
|
|
1558
|
+
value: ({
|
|
1559
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1543
1560
|
content: {
|
|
1544
1561
|
text: string;
|
|
1545
1562
|
} & {
|
|
@@ -1599,10 +1616,13 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1599
1616
|
label?: string;
|
|
1600
1617
|
direction?: string;
|
|
1601
1618
|
})[];
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1619
|
+
};
|
|
1620
|
+
} | {
|
|
1621
|
+
type: "tableCell";
|
|
1622
|
+
content: {
|
|
1623
|
+
__TYPE__: "StructuredTextContent";
|
|
1624
|
+
value: ({
|
|
1625
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1606
1626
|
content: {
|
|
1607
1627
|
text: string;
|
|
1608
1628
|
} & {
|
|
@@ -1662,11 +1682,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1662
1682
|
label?: string;
|
|
1663
1683
|
direction?: string;
|
|
1664
1684
|
})[];
|
|
1665
|
-
}
|
|
1666
|
-
}[];
|
|
1667
|
-
}
|
|
1668
|
-
} | {
|
|
1669
|
-
__TYPE__: "SeparatorContent";
|
|
1685
|
+
};
|
|
1686
|
+
})[];
|
|
1687
|
+
}[];
|
|
1670
1688
|
}][];
|
|
1671
1689
|
}[];
|
|
1672
1690
|
}> | import("fp-ts/lib/Either").Right<{
|
|
@@ -2032,7 +2050,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
2032
2050
|
label?: string | null | undefined;
|
|
2033
2051
|
direction?: string | null | undefined;
|
|
2034
2052
|
}) | ({
|
|
2035
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
2053
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2036
2054
|
content: {
|
|
2037
2055
|
text: string;
|
|
2038
2056
|
} & {
|
|
@@ -2091,14 +2109,19 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
2091
2109
|
} & {
|
|
2092
2110
|
label?: string;
|
|
2093
2111
|
direction?: string;
|
|
2094
|
-
})
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2112
|
+
}))[];
|
|
2113
|
+
} | {
|
|
2114
|
+
__TYPE__: "SeparatorContent";
|
|
2115
|
+
} | {
|
|
2116
|
+
__TYPE__: "TableContent";
|
|
2117
|
+
content: {
|
|
2118
|
+
type: "tableRow";
|
|
2119
|
+
content: ({
|
|
2120
|
+
type: "tableHeader";
|
|
2121
|
+
content: {
|
|
2122
|
+
__TYPE__: "StructuredTextContent";
|
|
2123
|
+
value: ({
|
|
2124
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2102
2125
|
content: {
|
|
2103
2126
|
text: string;
|
|
2104
2127
|
} & {
|
|
@@ -2158,10 +2181,13 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
2158
2181
|
label?: string;
|
|
2159
2182
|
direction?: string;
|
|
2160
2183
|
})[];
|
|
2161
|
-
}
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2184
|
+
};
|
|
2185
|
+
} | {
|
|
2186
|
+
type: "tableCell";
|
|
2187
|
+
content: {
|
|
2188
|
+
__TYPE__: "StructuredTextContent";
|
|
2189
|
+
value: ({
|
|
2190
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2165
2191
|
content: {
|
|
2166
2192
|
text: string;
|
|
2167
2193
|
} & {
|
|
@@ -2221,11 +2247,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
2221
2247
|
label?: string;
|
|
2222
2248
|
direction?: string;
|
|
2223
2249
|
})[];
|
|
2224
|
-
}
|
|
2225
|
-
}[];
|
|
2226
|
-
}
|
|
2227
|
-
} | {
|
|
2228
|
-
__TYPE__: "SeparatorContent";
|
|
2250
|
+
};
|
|
2251
|
+
})[];
|
|
2252
|
+
}[];
|
|
2229
2253
|
};
|
|
2230
2254
|
};
|
|
2231
2255
|
items: {
|
|
@@ -2589,7 +2613,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
2589
2613
|
label?: string | null | undefined;
|
|
2590
2614
|
direction?: string | null | undefined;
|
|
2591
2615
|
}) | ({
|
|
2592
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
2616
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2593
2617
|
content: {
|
|
2594
2618
|
text: string;
|
|
2595
2619
|
} & {
|
|
@@ -2648,14 +2672,19 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
2648
2672
|
} & {
|
|
2649
2673
|
label?: string;
|
|
2650
2674
|
direction?: string;
|
|
2651
|
-
})
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2675
|
+
}))[];
|
|
2676
|
+
} | {
|
|
2677
|
+
__TYPE__: "SeparatorContent";
|
|
2678
|
+
} | {
|
|
2679
|
+
__TYPE__: "TableContent";
|
|
2680
|
+
content: {
|
|
2681
|
+
type: "tableRow";
|
|
2682
|
+
content: ({
|
|
2683
|
+
type: "tableHeader";
|
|
2684
|
+
content: {
|
|
2685
|
+
__TYPE__: "StructuredTextContent";
|
|
2686
|
+
value: ({
|
|
2687
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2659
2688
|
content: {
|
|
2660
2689
|
text: string;
|
|
2661
2690
|
} & {
|
|
@@ -2715,10 +2744,13 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
2715
2744
|
label?: string;
|
|
2716
2745
|
direction?: string;
|
|
2717
2746
|
})[];
|
|
2718
|
-
}
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2747
|
+
};
|
|
2748
|
+
} | {
|
|
2749
|
+
type: "tableCell";
|
|
2750
|
+
content: {
|
|
2751
|
+
__TYPE__: "StructuredTextContent";
|
|
2752
|
+
value: ({
|
|
2753
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2722
2754
|
content: {
|
|
2723
2755
|
text: string;
|
|
2724
2756
|
} & {
|
|
@@ -2778,11 +2810,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
2778
2810
|
label?: string;
|
|
2779
2811
|
direction?: string;
|
|
2780
2812
|
})[];
|
|
2781
|
-
}
|
|
2782
|
-
}[];
|
|
2783
|
-
}
|
|
2784
|
-
} | {
|
|
2785
|
-
__TYPE__: "SeparatorContent";
|
|
2813
|
+
};
|
|
2814
|
+
})[];
|
|
2815
|
+
}[];
|
|
2786
2816
|
}][];
|
|
2787
2817
|
}[];
|
|
2788
2818
|
}> | import("fp-ts/lib/Either").Right<import("../..").GroupContent> | undefined;
|
|
@@ -3106,7 +3136,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3106
3136
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3107
3137
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3108
3138
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3109
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
3139
|
+
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>;
|
|
3110
3140
|
content: t.IntersectionC<[t.TypeC<{
|
|
3111
3141
|
text: t.StringC;
|
|
3112
3142
|
}>, t.PartialC<{
|
|
@@ -3215,14 +3245,19 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3215
3245
|
}>, t.PartialC<{
|
|
3216
3246
|
label: t.StringC;
|
|
3217
3247
|
direction: t.StringC;
|
|
3218
|
-
}>]
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3248
|
+
}>]>>]>>;
|
|
3249
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3250
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3251
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3252
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
3253
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3254
|
+
type: t.LiteralC<"tableRow">;
|
|
3255
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
3256
|
+
type: t.LiteralC<"tableHeader">;
|
|
3257
|
+
content: t.ExactC<t.TypeC<{
|
|
3258
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
3259
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3260
|
+
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>;
|
|
3226
3261
|
content: t.IntersectionC<[t.TypeC<{
|
|
3227
3262
|
text: t.StringC;
|
|
3228
3263
|
}>, t.PartialC<{
|
|
@@ -3332,10 +3367,13 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3332
3367
|
label: t.StringC;
|
|
3333
3368
|
direction: t.StringC;
|
|
3334
3369
|
}>]>>>;
|
|
3335
|
-
}
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3370
|
+
}>>;
|
|
3371
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3372
|
+
type: t.LiteralC<"tableCell">;
|
|
3373
|
+
content: t.ExactC<t.TypeC<{
|
|
3374
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
3375
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3376
|
+
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>;
|
|
3339
3377
|
content: t.IntersectionC<[t.TypeC<{
|
|
3340
3378
|
text: t.StringC;
|
|
3341
3379
|
}>, t.PartialC<{
|
|
@@ -3445,11 +3483,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3445
3483
|
label: t.StringC;
|
|
3446
3484
|
direction: t.StringC;
|
|
3447
3485
|
}>]>>>;
|
|
3448
|
-
}
|
|
3449
|
-
}
|
|
3450
|
-
}
|
|
3451
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3452
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3486
|
+
}>>;
|
|
3487
|
+
}>>]>>;
|
|
3488
|
+
}>>>;
|
|
3453
3489
|
}>>, t.ExactC<t.TypeC<{
|
|
3454
3490
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
3455
3491
|
type: t.LiteralC<"Link">;
|
|
@@ -3850,7 +3886,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3850
3886
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3851
3887
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3852
3888
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3853
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
3889
|
+
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>;
|
|
3854
3890
|
content: t.IntersectionC<[t.TypeC<{
|
|
3855
3891
|
text: t.StringC;
|
|
3856
3892
|
}>, t.PartialC<{
|
|
@@ -3959,14 +3995,19 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3959
3995
|
}>, t.PartialC<{
|
|
3960
3996
|
label: t.StringC;
|
|
3961
3997
|
direction: t.StringC;
|
|
3962
|
-
}>]
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3998
|
+
}>]>>]>>;
|
|
3999
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4000
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4001
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4002
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
4003
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
4004
|
+
type: t.LiteralC<"tableRow">;
|
|
4005
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
4006
|
+
type: t.LiteralC<"tableHeader">;
|
|
4007
|
+
content: t.ExactC<t.TypeC<{
|
|
4008
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4009
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4010
|
+
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>;
|
|
3970
4011
|
content: t.IntersectionC<[t.TypeC<{
|
|
3971
4012
|
text: t.StringC;
|
|
3972
4013
|
}>, t.PartialC<{
|
|
@@ -4076,10 +4117,13 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4076
4117
|
label: t.StringC;
|
|
4077
4118
|
direction: t.StringC;
|
|
4078
4119
|
}>]>>>;
|
|
4079
|
-
}
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4120
|
+
}>>;
|
|
4121
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4122
|
+
type: t.LiteralC<"tableCell">;
|
|
4123
|
+
content: t.ExactC<t.TypeC<{
|
|
4124
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4125
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4126
|
+
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>;
|
|
4083
4127
|
content: t.IntersectionC<[t.TypeC<{
|
|
4084
4128
|
text: t.StringC;
|
|
4085
4129
|
}>, t.PartialC<{
|
|
@@ -4189,11 +4233,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4189
4233
|
label: t.StringC;
|
|
4190
4234
|
direction: t.StringC;
|
|
4191
4235
|
}>]>>>;
|
|
4192
|
-
}
|
|
4193
|
-
}
|
|
4194
|
-
}
|
|
4195
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4196
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4236
|
+
}>>;
|
|
4237
|
+
}>>]>>;
|
|
4238
|
+
}>>>;
|
|
4197
4239
|
}>>, t.ExactC<t.TypeC<{
|
|
4198
4240
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
4199
4241
|
type: t.LiteralC<"Link">;
|
|
@@ -4596,7 +4638,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4596
4638
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4597
4639
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4598
4640
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4599
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
4641
|
+
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>;
|
|
4600
4642
|
content: t.IntersectionC<[t.TypeC<{
|
|
4601
4643
|
text: t.StringC;
|
|
4602
4644
|
}>, t.PartialC<{
|
|
@@ -4705,14 +4747,19 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4705
4747
|
}>, t.PartialC<{
|
|
4706
4748
|
label: t.StringC;
|
|
4707
4749
|
direction: t.StringC;
|
|
4708
|
-
}>]
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4750
|
+
}>]>>]>>;
|
|
4751
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4752
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4753
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4754
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
4755
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
4756
|
+
type: t.LiteralC<"tableRow">;
|
|
4757
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
4758
|
+
type: t.LiteralC<"tableHeader">;
|
|
4759
|
+
content: t.ExactC<t.TypeC<{
|
|
4760
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4761
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4762
|
+
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>;
|
|
4716
4763
|
content: t.IntersectionC<[t.TypeC<{
|
|
4717
4764
|
text: t.StringC;
|
|
4718
4765
|
}>, t.PartialC<{
|
|
@@ -4822,10 +4869,13 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4822
4869
|
label: t.StringC;
|
|
4823
4870
|
direction: t.StringC;
|
|
4824
4871
|
}>]>>>;
|
|
4825
|
-
}
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4872
|
+
}>>;
|
|
4873
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4874
|
+
type: t.LiteralC<"tableCell">;
|
|
4875
|
+
content: t.ExactC<t.TypeC<{
|
|
4876
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4877
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4878
|
+
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>;
|
|
4829
4879
|
content: t.IntersectionC<[t.TypeC<{
|
|
4830
4880
|
text: t.StringC;
|
|
4831
4881
|
}>, t.PartialC<{
|
|
@@ -4935,11 +4985,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4935
4985
|
label: t.StringC;
|
|
4936
4986
|
direction: t.StringC;
|
|
4937
4987
|
}>]>>>;
|
|
4938
|
-
}
|
|
4939
|
-
}
|
|
4940
|
-
}
|
|
4941
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4942
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4988
|
+
}>>;
|
|
4989
|
+
}>>]>>;
|
|
4990
|
+
}>>>;
|
|
4943
4991
|
}>>, t.ExactC<t.TypeC<{
|
|
4944
4992
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
4945
4993
|
type: t.LiteralC<"Link">;
|
|
@@ -5340,7 +5388,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
5340
5388
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5341
5389
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5342
5390
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5343
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
5391
|
+
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>;
|
|
5344
5392
|
content: t.IntersectionC<[t.TypeC<{
|
|
5345
5393
|
text: t.StringC;
|
|
5346
5394
|
}>, t.PartialC<{
|
|
@@ -5449,14 +5497,19 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
5449
5497
|
}>, t.PartialC<{
|
|
5450
5498
|
label: t.StringC;
|
|
5451
5499
|
direction: t.StringC;
|
|
5452
|
-
}>]
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
5458
|
-
|
|
5459
|
-
|
|
5500
|
+
}>]>>]>>;
|
|
5501
|
+
}>>, t.ExactC<t.TypeC<{
|
|
5502
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
5503
|
+
}>>, t.ExactC<t.TypeC<{
|
|
5504
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
5505
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
5506
|
+
type: t.LiteralC<"tableRow">;
|
|
5507
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
5508
|
+
type: t.LiteralC<"tableHeader">;
|
|
5509
|
+
content: t.ExactC<t.TypeC<{
|
|
5510
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
5511
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5512
|
+
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>;
|
|
5460
5513
|
content: t.IntersectionC<[t.TypeC<{
|
|
5461
5514
|
text: t.StringC;
|
|
5462
5515
|
}>, t.PartialC<{
|
|
@@ -5566,10 +5619,13 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
5566
5619
|
label: t.StringC;
|
|
5567
5620
|
direction: t.StringC;
|
|
5568
5621
|
}>]>>>;
|
|
5569
|
-
}
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5622
|
+
}>>;
|
|
5623
|
+
}>>, t.ExactC<t.TypeC<{
|
|
5624
|
+
type: t.LiteralC<"tableCell">;
|
|
5625
|
+
content: t.ExactC<t.TypeC<{
|
|
5626
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
5627
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5628
|
+
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>;
|
|
5573
5629
|
content: t.IntersectionC<[t.TypeC<{
|
|
5574
5630
|
text: t.StringC;
|
|
5575
5631
|
}>, t.PartialC<{
|
|
@@ -5679,11 +5735,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
5679
5735
|
label: t.StringC;
|
|
5680
5736
|
direction: t.StringC;
|
|
5681
5737
|
}>]>>>;
|
|
5682
|
-
}
|
|
5683
|
-
}
|
|
5684
|
-
}
|
|
5685
|
-
}>>, t.ExactC<t.TypeC<{
|
|
5686
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
5738
|
+
}>>;
|
|
5739
|
+
}>>]>>;
|
|
5740
|
+
}>>>;
|
|
5687
5741
|
}>>, t.ExactC<t.TypeC<{
|
|
5688
5742
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
5689
5743
|
type: t.LiteralC<"Link">;
|
|
@@ -6083,7 +6137,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
6083
6137
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
6084
6138
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
6085
6139
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
6086
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
6140
|
+
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>;
|
|
6087
6141
|
content: t.IntersectionC<[t.TypeC<{
|
|
6088
6142
|
text: t.StringC;
|
|
6089
6143
|
}>, t.PartialC<{
|
|
@@ -6192,14 +6246,19 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
6192
6246
|
}>, t.PartialC<{
|
|
6193
6247
|
label: t.StringC;
|
|
6194
6248
|
direction: t.StringC;
|
|
6195
|
-
}>]
|
|
6196
|
-
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
|
|
6202
|
-
|
|
6249
|
+
}>]>>]>>;
|
|
6250
|
+
}>>, t.ExactC<t.TypeC<{
|
|
6251
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
6252
|
+
}>>, t.ExactC<t.TypeC<{
|
|
6253
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
6254
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
6255
|
+
type: t.LiteralC<"tableRow">;
|
|
6256
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
6257
|
+
type: t.LiteralC<"tableHeader">;
|
|
6258
|
+
content: t.ExactC<t.TypeC<{
|
|
6259
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
6260
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
6261
|
+
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>;
|
|
6203
6262
|
content: t.IntersectionC<[t.TypeC<{
|
|
6204
6263
|
text: t.StringC;
|
|
6205
6264
|
}>, t.PartialC<{
|
|
@@ -6309,10 +6368,13 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
6309
6368
|
label: t.StringC;
|
|
6310
6369
|
direction: t.StringC;
|
|
6311
6370
|
}>]>>>;
|
|
6312
|
-
}
|
|
6313
|
-
|
|
6314
|
-
|
|
6315
|
-
|
|
6371
|
+
}>>;
|
|
6372
|
+
}>>, t.ExactC<t.TypeC<{
|
|
6373
|
+
type: t.LiteralC<"tableCell">;
|
|
6374
|
+
content: t.ExactC<t.TypeC<{
|
|
6375
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
6376
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
6377
|
+
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>;
|
|
6316
6378
|
content: t.IntersectionC<[t.TypeC<{
|
|
6317
6379
|
text: t.StringC;
|
|
6318
6380
|
}>, t.PartialC<{
|
|
@@ -6422,11 +6484,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
6422
6484
|
label: t.StringC;
|
|
6423
6485
|
direction: t.StringC;
|
|
6424
6486
|
}>]>>>;
|
|
6425
|
-
}
|
|
6426
|
-
}
|
|
6427
|
-
}
|
|
6428
|
-
}>>, t.ExactC<t.TypeC<{
|
|
6429
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
6487
|
+
}>>;
|
|
6488
|
+
}>>]>>;
|
|
6489
|
+
}>>>;
|
|
6430
6490
|
}>>, t.ExactC<t.TypeC<{
|
|
6431
6491
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
6432
6492
|
type: t.LiteralC<"Link">;
|