@prismicio/types-internal 3.4.0-alpha.13 → 3.4.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/content/Document.d.ts +498 -3366
- package/lib/content/fields/GroupContent.d.ts +1 -1
- package/lib/content/fields/GroupContent.js +2 -1
- package/lib/content/fields/WidgetContent.d.ts +514 -3382
- package/lib/content/fields/nestable/NestableContent.d.ts +68 -546
- package/lib/content/fields/nestable/NestableContent.js +7 -8
- package/lib/content/fields/nestable/RepeatableContent.d.ts +2 -2
- package/lib/content/fields/nestable/RepeatableContent.js +5 -2
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +9 -641
- package/lib/content/fields/nestable/RichTextContent/index.js +4 -8
- package/lib/content/fields/nestable/TableContent.d.ts +637 -834
- package/lib/content/fields/nestable/TableContent.js +10 -7
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +190 -1146
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +26 -252
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +190 -1146
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +68 -546
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +68 -546
- package/lib/content/fields/slices/Slice/index.d.ts +269 -2029
- package/lib/content/fields/slices/SliceItem.d.ts +463 -2223
- package/lib/content/fields/slices/SlicesContent.d.ts +394 -2784
- package/lib/customtypes/widgets/Group.d.ts +36 -36
- package/lib/customtypes/widgets/Widget.d.ts +54 -54
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +6 -6
- package/lib/customtypes/widgets/nestable/NestableWidget.js +1 -1
- package/lib/customtypes/widgets/nestable/RichText.d.ts +0 -2
- package/lib/customtypes/widgets/nestable/RichText.js +0 -2
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +12 -12
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +12 -12
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +48 -48
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +18 -18
- package/lib/customtypes/widgets/slices/Slices.d.ts +72 -72
- package/package.json +1 -1
- package/src/content/fields/GroupContent.ts +2 -1
- package/src/content/fields/nestable/NestableContent.ts +13 -9
- package/src/content/fields/nestable/RepeatableContent.ts +6 -2
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +238 -0
- package/src/content/fields/nestable/RichTextContent/index.ts +3 -7
- package/src/content/fields/nestable/TableContent.ts +10 -7
- package/src/customtypes/widgets/nestable/NestableWidget.ts +1 -1
- package/src/customtypes/widgets/nestable/RichText.ts +0 -2
- package/src/content/fields/nestable/RichTextContent/Block.ts +0 -35
- package/src/content/fields/nestable/RichTextContent/EmbedBlock.ts +0 -81
- package/src/content/fields/nestable/RichTextContent/ImageBlock.ts +0 -42
- package/src/content/fields/nestable/RichTextContent/TableBlock.ts +0 -36
- package/src/content/fields/nestable/RichTextContent/TextBlock.ts +0 -108
|
@@ -368,7 +368,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
368
368
|
label?: string | null | undefined;
|
|
369
369
|
direction?: string | null | undefined;
|
|
370
370
|
}) | ({
|
|
371
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
371
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
372
372
|
content: {
|
|
373
373
|
text: string;
|
|
374
374
|
} & {
|
|
@@ -427,14 +427,18 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
427
427
|
} & {
|
|
428
428
|
label?: string;
|
|
429
429
|
direction?: string;
|
|
430
|
-
})
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
430
|
+
}))[];
|
|
431
|
+
} | {
|
|
432
|
+
__TYPE__: "SeparatorContent";
|
|
433
|
+
} | ({
|
|
434
|
+
content: {
|
|
435
|
+
type: "tableRow";
|
|
436
|
+
content: ({
|
|
437
|
+
type: "tableHeader";
|
|
438
|
+
content: {
|
|
439
|
+
__TYPE__: "StructuredTextContent";
|
|
440
|
+
value: ({
|
|
441
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
438
442
|
content: {
|
|
439
443
|
text: string;
|
|
440
444
|
} & {
|
|
@@ -494,10 +498,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
494
498
|
label?: string;
|
|
495
499
|
direction?: string;
|
|
496
500
|
})[];
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
+
};
|
|
502
|
+
} | {
|
|
503
|
+
type: "tableCell";
|
|
504
|
+
content: {
|
|
505
|
+
__TYPE__: "StructuredTextContent";
|
|
506
|
+
value: ({
|
|
507
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
501
508
|
content: {
|
|
502
509
|
text: string;
|
|
503
510
|
} & {
|
|
@@ -557,140 +564,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
557
564
|
label?: string;
|
|
558
565
|
direction?: string;
|
|
559
566
|
})[];
|
|
560
|
-
}
|
|
561
|
-
}[];
|
|
562
|
-
})[];
|
|
563
|
-
} | {
|
|
564
|
-
__TYPE__: "SeparatorContent";
|
|
565
|
-
} | ({
|
|
566
|
-
content: {
|
|
567
|
-
type: "tableRow";
|
|
568
|
-
content: ({
|
|
569
|
-
type: "tableHeader";
|
|
570
|
-
content: ({
|
|
571
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
572
|
-
content: {
|
|
573
|
-
text: string;
|
|
574
|
-
} & {
|
|
575
|
-
spans?: ({
|
|
576
|
-
data: ({
|
|
577
|
-
__TYPE__: "ImageLink";
|
|
578
|
-
} & {
|
|
579
|
-
kind: "image";
|
|
580
|
-
id: string;
|
|
581
|
-
url: string;
|
|
582
|
-
height: string;
|
|
583
|
-
width: string;
|
|
584
|
-
size: string;
|
|
585
|
-
name: string;
|
|
586
|
-
} & {
|
|
587
|
-
date?: string | null | undefined;
|
|
588
|
-
}) | ({
|
|
589
|
-
__TYPE__: "FileLink";
|
|
590
|
-
} & {
|
|
591
|
-
kind: "file";
|
|
592
|
-
id: string;
|
|
593
|
-
url: string;
|
|
594
|
-
name: string;
|
|
595
|
-
size: string;
|
|
596
|
-
} & {
|
|
597
|
-
date?: string | null | undefined;
|
|
598
|
-
}) | ({
|
|
599
|
-
__TYPE__: "DocumentLink";
|
|
600
|
-
} & {
|
|
601
|
-
id: string;
|
|
602
|
-
}) | ({
|
|
603
|
-
__TYPE__: "ExternalLink";
|
|
604
|
-
} & {
|
|
605
|
-
url: string;
|
|
606
|
-
} & {
|
|
607
|
-
kind?: "web";
|
|
608
|
-
target?: string | null | undefined;
|
|
609
|
-
preview?: {
|
|
610
|
-
title?: string;
|
|
611
|
-
} | null | undefined;
|
|
612
|
-
});
|
|
613
|
-
start: number;
|
|
614
|
-
end: number;
|
|
615
|
-
type: "hyperlink";
|
|
616
|
-
} | {
|
|
617
|
-
data: string;
|
|
618
|
-
start: number;
|
|
619
|
-
end: number;
|
|
620
|
-
type: "label";
|
|
621
|
-
} | {
|
|
622
|
-
start: number;
|
|
623
|
-
end: number;
|
|
624
|
-
type: "strong" | "em" | "list-item";
|
|
625
|
-
})[];
|
|
626
|
-
};
|
|
627
|
-
} & {
|
|
628
|
-
label?: string;
|
|
629
|
-
direction?: string;
|
|
630
|
-
})[];
|
|
631
|
-
} | {
|
|
632
|
-
type: "tableCell";
|
|
633
|
-
content: ({
|
|
634
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
635
|
-
content: {
|
|
636
|
-
text: string;
|
|
637
|
-
} & {
|
|
638
|
-
spans?: ({
|
|
639
|
-
data: ({
|
|
640
|
-
__TYPE__: "ImageLink";
|
|
641
|
-
} & {
|
|
642
|
-
kind: "image";
|
|
643
|
-
id: string;
|
|
644
|
-
url: string;
|
|
645
|
-
height: string;
|
|
646
|
-
width: string;
|
|
647
|
-
size: string;
|
|
648
|
-
name: string;
|
|
649
|
-
} & {
|
|
650
|
-
date?: string | null | undefined;
|
|
651
|
-
}) | ({
|
|
652
|
-
__TYPE__: "FileLink";
|
|
653
|
-
} & {
|
|
654
|
-
kind: "file";
|
|
655
|
-
id: string;
|
|
656
|
-
url: string;
|
|
657
|
-
name: string;
|
|
658
|
-
size: string;
|
|
659
|
-
} & {
|
|
660
|
-
date?: string | null | undefined;
|
|
661
|
-
}) | ({
|
|
662
|
-
__TYPE__: "DocumentLink";
|
|
663
|
-
} & {
|
|
664
|
-
id: string;
|
|
665
|
-
}) | ({
|
|
666
|
-
__TYPE__: "ExternalLink";
|
|
667
|
-
} & {
|
|
668
|
-
url: string;
|
|
669
|
-
} & {
|
|
670
|
-
kind?: "web";
|
|
671
|
-
target?: string | null | undefined;
|
|
672
|
-
preview?: {
|
|
673
|
-
title?: string;
|
|
674
|
-
} | null | undefined;
|
|
675
|
-
});
|
|
676
|
-
start: number;
|
|
677
|
-
end: number;
|
|
678
|
-
type: "hyperlink";
|
|
679
|
-
} | {
|
|
680
|
-
data: string;
|
|
681
|
-
start: number;
|
|
682
|
-
end: number;
|
|
683
|
-
type: "label";
|
|
684
|
-
} | {
|
|
685
|
-
start: number;
|
|
686
|
-
end: number;
|
|
687
|
-
type: "strong" | "em" | "list-item";
|
|
688
|
-
})[];
|
|
689
|
-
};
|
|
690
|
-
} & {
|
|
691
|
-
label?: string;
|
|
692
|
-
direction?: string;
|
|
693
|
-
})[];
|
|
567
|
+
};
|
|
694
568
|
})[];
|
|
695
569
|
}[];
|
|
696
570
|
} & {
|
|
@@ -1057,7 +931,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1057
931
|
label?: string | null | undefined;
|
|
1058
932
|
direction?: string | null | undefined;
|
|
1059
933
|
}) | ({
|
|
1060
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
934
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1061
935
|
content: {
|
|
1062
936
|
text: string;
|
|
1063
937
|
} & {
|
|
@@ -1116,14 +990,18 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1116
990
|
} & {
|
|
1117
991
|
label?: string;
|
|
1118
992
|
direction?: string;
|
|
1119
|
-
})
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
993
|
+
}))[];
|
|
994
|
+
} | {
|
|
995
|
+
__TYPE__: "SeparatorContent";
|
|
996
|
+
} | ({
|
|
997
|
+
content: {
|
|
998
|
+
type: "tableRow";
|
|
999
|
+
content: ({
|
|
1000
|
+
type: "tableHeader";
|
|
1001
|
+
content: {
|
|
1002
|
+
__TYPE__: "StructuredTextContent";
|
|
1003
|
+
value: ({
|
|
1004
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1127
1005
|
content: {
|
|
1128
1006
|
text: string;
|
|
1129
1007
|
} & {
|
|
@@ -1183,10 +1061,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1183
1061
|
label?: string;
|
|
1184
1062
|
direction?: string;
|
|
1185
1063
|
})[];
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1064
|
+
};
|
|
1065
|
+
} | {
|
|
1066
|
+
type: "tableCell";
|
|
1067
|
+
content: {
|
|
1068
|
+
__TYPE__: "StructuredTextContent";
|
|
1069
|
+
value: ({
|
|
1070
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1190
1071
|
content: {
|
|
1191
1072
|
text: string;
|
|
1192
1073
|
} & {
|
|
@@ -1246,154 +1127,21 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1246
1127
|
label?: string;
|
|
1247
1128
|
direction?: string;
|
|
1248
1129
|
})[];
|
|
1249
|
-
}
|
|
1250
|
-
}[];
|
|
1251
|
-
}
|
|
1130
|
+
};
|
|
1131
|
+
})[];
|
|
1132
|
+
}[];
|
|
1133
|
+
} & {
|
|
1134
|
+
__TYPE__: "TableContent";
|
|
1135
|
+
});
|
|
1136
|
+
};
|
|
1137
|
+
repeat: {
|
|
1138
|
+
__TYPE__: "GroupItemContent";
|
|
1139
|
+
value: [string, {
|
|
1140
|
+
type: string;
|
|
1141
|
+
__TYPE__: "EmptyContent";
|
|
1252
1142
|
} | {
|
|
1253
|
-
__TYPE__: "
|
|
1254
|
-
|
|
1255
|
-
content: {
|
|
1256
|
-
type: "tableRow";
|
|
1257
|
-
content: ({
|
|
1258
|
-
type: "tableHeader";
|
|
1259
|
-
content: ({
|
|
1260
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
1261
|
-
content: {
|
|
1262
|
-
text: string;
|
|
1263
|
-
} & {
|
|
1264
|
-
spans?: ({
|
|
1265
|
-
data: ({
|
|
1266
|
-
__TYPE__: "ImageLink";
|
|
1267
|
-
} & {
|
|
1268
|
-
kind: "image";
|
|
1269
|
-
id: string;
|
|
1270
|
-
url: string;
|
|
1271
|
-
height: string;
|
|
1272
|
-
width: string;
|
|
1273
|
-
size: string;
|
|
1274
|
-
name: string;
|
|
1275
|
-
} & {
|
|
1276
|
-
date?: string | null | undefined;
|
|
1277
|
-
}) | ({
|
|
1278
|
-
__TYPE__: "FileLink";
|
|
1279
|
-
} & {
|
|
1280
|
-
kind: "file";
|
|
1281
|
-
id: string;
|
|
1282
|
-
url: string;
|
|
1283
|
-
name: string;
|
|
1284
|
-
size: string;
|
|
1285
|
-
} & {
|
|
1286
|
-
date?: string | null | undefined;
|
|
1287
|
-
}) | ({
|
|
1288
|
-
__TYPE__: "DocumentLink";
|
|
1289
|
-
} & {
|
|
1290
|
-
id: string;
|
|
1291
|
-
}) | ({
|
|
1292
|
-
__TYPE__: "ExternalLink";
|
|
1293
|
-
} & {
|
|
1294
|
-
url: string;
|
|
1295
|
-
} & {
|
|
1296
|
-
kind?: "web";
|
|
1297
|
-
target?: string | null | undefined;
|
|
1298
|
-
preview?: {
|
|
1299
|
-
title?: string;
|
|
1300
|
-
} | null | undefined;
|
|
1301
|
-
});
|
|
1302
|
-
start: number;
|
|
1303
|
-
end: number;
|
|
1304
|
-
type: "hyperlink";
|
|
1305
|
-
} | {
|
|
1306
|
-
data: string;
|
|
1307
|
-
start: number;
|
|
1308
|
-
end: number;
|
|
1309
|
-
type: "label";
|
|
1310
|
-
} | {
|
|
1311
|
-
start: number;
|
|
1312
|
-
end: number;
|
|
1313
|
-
type: "strong" | "em" | "list-item";
|
|
1314
|
-
})[];
|
|
1315
|
-
};
|
|
1316
|
-
} & {
|
|
1317
|
-
label?: string;
|
|
1318
|
-
direction?: string;
|
|
1319
|
-
})[];
|
|
1320
|
-
} | {
|
|
1321
|
-
type: "tableCell";
|
|
1322
|
-
content: ({
|
|
1323
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
1324
|
-
content: {
|
|
1325
|
-
text: string;
|
|
1326
|
-
} & {
|
|
1327
|
-
spans?: ({
|
|
1328
|
-
data: ({
|
|
1329
|
-
__TYPE__: "ImageLink";
|
|
1330
|
-
} & {
|
|
1331
|
-
kind: "image";
|
|
1332
|
-
id: string;
|
|
1333
|
-
url: string;
|
|
1334
|
-
height: string;
|
|
1335
|
-
width: string;
|
|
1336
|
-
size: string;
|
|
1337
|
-
name: string;
|
|
1338
|
-
} & {
|
|
1339
|
-
date?: string | null | undefined;
|
|
1340
|
-
}) | ({
|
|
1341
|
-
__TYPE__: "FileLink";
|
|
1342
|
-
} & {
|
|
1343
|
-
kind: "file";
|
|
1344
|
-
id: string;
|
|
1345
|
-
url: string;
|
|
1346
|
-
name: string;
|
|
1347
|
-
size: string;
|
|
1348
|
-
} & {
|
|
1349
|
-
date?: string | null | undefined;
|
|
1350
|
-
}) | ({
|
|
1351
|
-
__TYPE__: "DocumentLink";
|
|
1352
|
-
} & {
|
|
1353
|
-
id: string;
|
|
1354
|
-
}) | ({
|
|
1355
|
-
__TYPE__: "ExternalLink";
|
|
1356
|
-
} & {
|
|
1357
|
-
url: string;
|
|
1358
|
-
} & {
|
|
1359
|
-
kind?: "web";
|
|
1360
|
-
target?: string | null | undefined;
|
|
1361
|
-
preview?: {
|
|
1362
|
-
title?: string;
|
|
1363
|
-
} | null | undefined;
|
|
1364
|
-
});
|
|
1365
|
-
start: number;
|
|
1366
|
-
end: number;
|
|
1367
|
-
type: "hyperlink";
|
|
1368
|
-
} | {
|
|
1369
|
-
data: string;
|
|
1370
|
-
start: number;
|
|
1371
|
-
end: number;
|
|
1372
|
-
type: "label";
|
|
1373
|
-
} | {
|
|
1374
|
-
start: number;
|
|
1375
|
-
end: number;
|
|
1376
|
-
type: "strong" | "em" | "list-item";
|
|
1377
|
-
})[];
|
|
1378
|
-
};
|
|
1379
|
-
} & {
|
|
1380
|
-
label?: string;
|
|
1381
|
-
direction?: string;
|
|
1382
|
-
})[];
|
|
1383
|
-
})[];
|
|
1384
|
-
}[];
|
|
1385
|
-
} & {
|
|
1386
|
-
__TYPE__: "TableContent";
|
|
1387
|
-
});
|
|
1388
|
-
};
|
|
1389
|
-
repeat: {
|
|
1390
|
-
__TYPE__: "GroupItemContent";
|
|
1391
|
-
value: [string, {
|
|
1392
|
-
type: string;
|
|
1393
|
-
__TYPE__: "EmptyContent";
|
|
1394
|
-
} | {
|
|
1395
|
-
__TYPE__: "BooleanContent";
|
|
1396
|
-
value: boolean;
|
|
1143
|
+
__TYPE__: "BooleanContent";
|
|
1144
|
+
value: boolean;
|
|
1397
1145
|
} | ({
|
|
1398
1146
|
embed_url: string;
|
|
1399
1147
|
type: string;
|
|
@@ -1747,7 +1495,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1747
1495
|
label?: string | null | undefined;
|
|
1748
1496
|
direction?: string | null | undefined;
|
|
1749
1497
|
}) | ({
|
|
1750
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
1498
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1751
1499
|
content: {
|
|
1752
1500
|
text: string;
|
|
1753
1501
|
} & {
|
|
@@ -1806,14 +1554,18 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1806
1554
|
} & {
|
|
1807
1555
|
label?: string;
|
|
1808
1556
|
direction?: string;
|
|
1809
|
-
})
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1557
|
+
}))[];
|
|
1558
|
+
} | {
|
|
1559
|
+
__TYPE__: "SeparatorContent";
|
|
1560
|
+
} | ({
|
|
1561
|
+
content: {
|
|
1562
|
+
type: "tableRow";
|
|
1563
|
+
content: ({
|
|
1564
|
+
type: "tableHeader";
|
|
1565
|
+
content: {
|
|
1566
|
+
__TYPE__: "StructuredTextContent";
|
|
1567
|
+
value: ({
|
|
1568
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1817
1569
|
content: {
|
|
1818
1570
|
text: string;
|
|
1819
1571
|
} & {
|
|
@@ -1873,10 +1625,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1873
1625
|
label?: string;
|
|
1874
1626
|
direction?: string;
|
|
1875
1627
|
})[];
|
|
1876
|
-
}
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1628
|
+
};
|
|
1629
|
+
} | {
|
|
1630
|
+
type: "tableCell";
|
|
1631
|
+
content: {
|
|
1632
|
+
__TYPE__: "StructuredTextContent";
|
|
1633
|
+
value: ({
|
|
1634
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1880
1635
|
content: {
|
|
1881
1636
|
text: string;
|
|
1882
1637
|
} & {
|
|
@@ -1936,140 +1691,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1936
1691
|
label?: string;
|
|
1937
1692
|
direction?: string;
|
|
1938
1693
|
})[];
|
|
1939
|
-
}
|
|
1940
|
-
}[];
|
|
1941
|
-
})[];
|
|
1942
|
-
} | {
|
|
1943
|
-
__TYPE__: "SeparatorContent";
|
|
1944
|
-
} | ({
|
|
1945
|
-
content: {
|
|
1946
|
-
type: "tableRow";
|
|
1947
|
-
content: ({
|
|
1948
|
-
type: "tableHeader";
|
|
1949
|
-
content: ({
|
|
1950
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
1951
|
-
content: {
|
|
1952
|
-
text: string;
|
|
1953
|
-
} & {
|
|
1954
|
-
spans?: ({
|
|
1955
|
-
data: ({
|
|
1956
|
-
__TYPE__: "ImageLink";
|
|
1957
|
-
} & {
|
|
1958
|
-
kind: "image";
|
|
1959
|
-
id: string;
|
|
1960
|
-
url: string;
|
|
1961
|
-
height: string;
|
|
1962
|
-
width: string;
|
|
1963
|
-
size: string;
|
|
1964
|
-
name: string;
|
|
1965
|
-
} & {
|
|
1966
|
-
date?: string | null | undefined;
|
|
1967
|
-
}) | ({
|
|
1968
|
-
__TYPE__: "FileLink";
|
|
1969
|
-
} & {
|
|
1970
|
-
kind: "file";
|
|
1971
|
-
id: string;
|
|
1972
|
-
url: string;
|
|
1973
|
-
name: string;
|
|
1974
|
-
size: string;
|
|
1975
|
-
} & {
|
|
1976
|
-
date?: string | null | undefined;
|
|
1977
|
-
}) | ({
|
|
1978
|
-
__TYPE__: "DocumentLink";
|
|
1979
|
-
} & {
|
|
1980
|
-
id: string;
|
|
1981
|
-
}) | ({
|
|
1982
|
-
__TYPE__: "ExternalLink";
|
|
1983
|
-
} & {
|
|
1984
|
-
url: string;
|
|
1985
|
-
} & {
|
|
1986
|
-
kind?: "web";
|
|
1987
|
-
target?: string | null | undefined;
|
|
1988
|
-
preview?: {
|
|
1989
|
-
title?: string;
|
|
1990
|
-
} | null | undefined;
|
|
1991
|
-
});
|
|
1992
|
-
start: number;
|
|
1993
|
-
end: number;
|
|
1994
|
-
type: "hyperlink";
|
|
1995
|
-
} | {
|
|
1996
|
-
data: string;
|
|
1997
|
-
start: number;
|
|
1998
|
-
end: number;
|
|
1999
|
-
type: "label";
|
|
2000
|
-
} | {
|
|
2001
|
-
start: number;
|
|
2002
|
-
end: number;
|
|
2003
|
-
type: "strong" | "em" | "list-item";
|
|
2004
|
-
})[];
|
|
2005
|
-
};
|
|
2006
|
-
} & {
|
|
2007
|
-
label?: string;
|
|
2008
|
-
direction?: string;
|
|
2009
|
-
})[];
|
|
2010
|
-
} | {
|
|
2011
|
-
type: "tableCell";
|
|
2012
|
-
content: ({
|
|
2013
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
2014
|
-
content: {
|
|
2015
|
-
text: string;
|
|
2016
|
-
} & {
|
|
2017
|
-
spans?: ({
|
|
2018
|
-
data: ({
|
|
2019
|
-
__TYPE__: "ImageLink";
|
|
2020
|
-
} & {
|
|
2021
|
-
kind: "image";
|
|
2022
|
-
id: string;
|
|
2023
|
-
url: string;
|
|
2024
|
-
height: string;
|
|
2025
|
-
width: string;
|
|
2026
|
-
size: string;
|
|
2027
|
-
name: string;
|
|
2028
|
-
} & {
|
|
2029
|
-
date?: string | null | undefined;
|
|
2030
|
-
}) | ({
|
|
2031
|
-
__TYPE__: "FileLink";
|
|
2032
|
-
} & {
|
|
2033
|
-
kind: "file";
|
|
2034
|
-
id: string;
|
|
2035
|
-
url: string;
|
|
2036
|
-
name: string;
|
|
2037
|
-
size: string;
|
|
2038
|
-
} & {
|
|
2039
|
-
date?: string | null | undefined;
|
|
2040
|
-
}) | ({
|
|
2041
|
-
__TYPE__: "DocumentLink";
|
|
2042
|
-
} & {
|
|
2043
|
-
id: string;
|
|
2044
|
-
}) | ({
|
|
2045
|
-
__TYPE__: "ExternalLink";
|
|
2046
|
-
} & {
|
|
2047
|
-
url: string;
|
|
2048
|
-
} & {
|
|
2049
|
-
kind?: "web";
|
|
2050
|
-
target?: string | null | undefined;
|
|
2051
|
-
preview?: {
|
|
2052
|
-
title?: string;
|
|
2053
|
-
} | null | undefined;
|
|
2054
|
-
});
|
|
2055
|
-
start: number;
|
|
2056
|
-
end: number;
|
|
2057
|
-
type: "hyperlink";
|
|
2058
|
-
} | {
|
|
2059
|
-
data: string;
|
|
2060
|
-
start: number;
|
|
2061
|
-
end: number;
|
|
2062
|
-
type: "label";
|
|
2063
|
-
} | {
|
|
2064
|
-
start: number;
|
|
2065
|
-
end: number;
|
|
2066
|
-
type: "strong" | "em" | "list-item";
|
|
2067
|
-
})[];
|
|
2068
|
-
};
|
|
2069
|
-
} & {
|
|
2070
|
-
label?: string;
|
|
2071
|
-
direction?: string;
|
|
2072
|
-
})[];
|
|
1694
|
+
};
|
|
2073
1695
|
})[];
|
|
2074
1696
|
}[];
|
|
2075
1697
|
} & {
|
|
@@ -2439,7 +2061,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
2439
2061
|
label?: string | null | undefined;
|
|
2440
2062
|
direction?: string | null | undefined;
|
|
2441
2063
|
}) | ({
|
|
2442
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
2064
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2443
2065
|
content: {
|
|
2444
2066
|
text: string;
|
|
2445
2067
|
} & {
|
|
@@ -2498,14 +2120,18 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
2498
2120
|
} & {
|
|
2499
2121
|
label?: string;
|
|
2500
2122
|
direction?: string;
|
|
2501
|
-
})
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2123
|
+
}))[];
|
|
2124
|
+
} | {
|
|
2125
|
+
__TYPE__: "SeparatorContent";
|
|
2126
|
+
} | ({
|
|
2127
|
+
content: {
|
|
2128
|
+
type: "tableRow";
|
|
2129
|
+
content: ({
|
|
2130
|
+
type: "tableHeader";
|
|
2131
|
+
content: {
|
|
2132
|
+
__TYPE__: "StructuredTextContent";
|
|
2133
|
+
value: ({
|
|
2134
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2509
2135
|
content: {
|
|
2510
2136
|
text: string;
|
|
2511
2137
|
} & {
|
|
@@ -2565,10 +2191,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
2565
2191
|
label?: string;
|
|
2566
2192
|
direction?: string;
|
|
2567
2193
|
})[];
|
|
2568
|
-
}
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2194
|
+
};
|
|
2195
|
+
} | {
|
|
2196
|
+
type: "tableCell";
|
|
2197
|
+
content: {
|
|
2198
|
+
__TYPE__: "StructuredTextContent";
|
|
2199
|
+
value: ({
|
|
2200
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2572
2201
|
content: {
|
|
2573
2202
|
text: string;
|
|
2574
2203
|
} & {
|
|
@@ -2628,154 +2257,21 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
2628
2257
|
label?: string;
|
|
2629
2258
|
direction?: string;
|
|
2630
2259
|
})[];
|
|
2631
|
-
}
|
|
2632
|
-
}[];
|
|
2633
|
-
}
|
|
2260
|
+
};
|
|
2261
|
+
})[];
|
|
2262
|
+
}[];
|
|
2263
|
+
} & {
|
|
2264
|
+
__TYPE__: "TableContent";
|
|
2265
|
+
});
|
|
2266
|
+
};
|
|
2267
|
+
items: {
|
|
2268
|
+
__TYPE__: "GroupItemContent";
|
|
2269
|
+
value: [string, {
|
|
2270
|
+
type: string;
|
|
2271
|
+
__TYPE__: "EmptyContent";
|
|
2634
2272
|
} | {
|
|
2635
|
-
__TYPE__: "
|
|
2636
|
-
|
|
2637
|
-
content: {
|
|
2638
|
-
type: "tableRow";
|
|
2639
|
-
content: ({
|
|
2640
|
-
type: "tableHeader";
|
|
2641
|
-
content: ({
|
|
2642
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
2643
|
-
content: {
|
|
2644
|
-
text: string;
|
|
2645
|
-
} & {
|
|
2646
|
-
spans?: ({
|
|
2647
|
-
data: ({
|
|
2648
|
-
__TYPE__: "ImageLink";
|
|
2649
|
-
} & {
|
|
2650
|
-
kind: "image";
|
|
2651
|
-
id: string;
|
|
2652
|
-
url: string;
|
|
2653
|
-
height: string;
|
|
2654
|
-
width: string;
|
|
2655
|
-
size: string;
|
|
2656
|
-
name: string;
|
|
2657
|
-
} & {
|
|
2658
|
-
date?: string | null | undefined;
|
|
2659
|
-
}) | ({
|
|
2660
|
-
__TYPE__: "FileLink";
|
|
2661
|
-
} & {
|
|
2662
|
-
kind: "file";
|
|
2663
|
-
id: string;
|
|
2664
|
-
url: string;
|
|
2665
|
-
name: string;
|
|
2666
|
-
size: string;
|
|
2667
|
-
} & {
|
|
2668
|
-
date?: string | null | undefined;
|
|
2669
|
-
}) | ({
|
|
2670
|
-
__TYPE__: "DocumentLink";
|
|
2671
|
-
} & {
|
|
2672
|
-
id: string;
|
|
2673
|
-
}) | ({
|
|
2674
|
-
__TYPE__: "ExternalLink";
|
|
2675
|
-
} & {
|
|
2676
|
-
url: string;
|
|
2677
|
-
} & {
|
|
2678
|
-
kind?: "web";
|
|
2679
|
-
target?: string | null | undefined;
|
|
2680
|
-
preview?: {
|
|
2681
|
-
title?: string;
|
|
2682
|
-
} | null | undefined;
|
|
2683
|
-
});
|
|
2684
|
-
start: number;
|
|
2685
|
-
end: number;
|
|
2686
|
-
type: "hyperlink";
|
|
2687
|
-
} | {
|
|
2688
|
-
data: string;
|
|
2689
|
-
start: number;
|
|
2690
|
-
end: number;
|
|
2691
|
-
type: "label";
|
|
2692
|
-
} | {
|
|
2693
|
-
start: number;
|
|
2694
|
-
end: number;
|
|
2695
|
-
type: "strong" | "em" | "list-item";
|
|
2696
|
-
})[];
|
|
2697
|
-
};
|
|
2698
|
-
} & {
|
|
2699
|
-
label?: string;
|
|
2700
|
-
direction?: string;
|
|
2701
|
-
})[];
|
|
2702
|
-
} | {
|
|
2703
|
-
type: "tableCell";
|
|
2704
|
-
content: ({
|
|
2705
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
2706
|
-
content: {
|
|
2707
|
-
text: string;
|
|
2708
|
-
} & {
|
|
2709
|
-
spans?: ({
|
|
2710
|
-
data: ({
|
|
2711
|
-
__TYPE__: "ImageLink";
|
|
2712
|
-
} & {
|
|
2713
|
-
kind: "image";
|
|
2714
|
-
id: string;
|
|
2715
|
-
url: string;
|
|
2716
|
-
height: string;
|
|
2717
|
-
width: string;
|
|
2718
|
-
size: string;
|
|
2719
|
-
name: string;
|
|
2720
|
-
} & {
|
|
2721
|
-
date?: string | null | undefined;
|
|
2722
|
-
}) | ({
|
|
2723
|
-
__TYPE__: "FileLink";
|
|
2724
|
-
} & {
|
|
2725
|
-
kind: "file";
|
|
2726
|
-
id: string;
|
|
2727
|
-
url: string;
|
|
2728
|
-
name: string;
|
|
2729
|
-
size: string;
|
|
2730
|
-
} & {
|
|
2731
|
-
date?: string | null | undefined;
|
|
2732
|
-
}) | ({
|
|
2733
|
-
__TYPE__: "DocumentLink";
|
|
2734
|
-
} & {
|
|
2735
|
-
id: string;
|
|
2736
|
-
}) | ({
|
|
2737
|
-
__TYPE__: "ExternalLink";
|
|
2738
|
-
} & {
|
|
2739
|
-
url: string;
|
|
2740
|
-
} & {
|
|
2741
|
-
kind?: "web";
|
|
2742
|
-
target?: string | null | undefined;
|
|
2743
|
-
preview?: {
|
|
2744
|
-
title?: string;
|
|
2745
|
-
} | null | undefined;
|
|
2746
|
-
});
|
|
2747
|
-
start: number;
|
|
2748
|
-
end: number;
|
|
2749
|
-
type: "hyperlink";
|
|
2750
|
-
} | {
|
|
2751
|
-
data: string;
|
|
2752
|
-
start: number;
|
|
2753
|
-
end: number;
|
|
2754
|
-
type: "label";
|
|
2755
|
-
} | {
|
|
2756
|
-
start: number;
|
|
2757
|
-
end: number;
|
|
2758
|
-
type: "strong" | "em" | "list-item";
|
|
2759
|
-
})[];
|
|
2760
|
-
};
|
|
2761
|
-
} & {
|
|
2762
|
-
label?: string;
|
|
2763
|
-
direction?: string;
|
|
2764
|
-
})[];
|
|
2765
|
-
})[];
|
|
2766
|
-
}[];
|
|
2767
|
-
} & {
|
|
2768
|
-
__TYPE__: "TableContent";
|
|
2769
|
-
});
|
|
2770
|
-
};
|
|
2771
|
-
items: {
|
|
2772
|
-
__TYPE__: "GroupItemContent";
|
|
2773
|
-
value: [string, {
|
|
2774
|
-
type: string;
|
|
2775
|
-
__TYPE__: "EmptyContent";
|
|
2776
|
-
} | {
|
|
2777
|
-
__TYPE__: "BooleanContent";
|
|
2778
|
-
value: boolean;
|
|
2273
|
+
__TYPE__: "BooleanContent";
|
|
2274
|
+
value: boolean;
|
|
2779
2275
|
} | ({
|
|
2780
2276
|
embed_url: string;
|
|
2781
2277
|
type: string;
|
|
@@ -3129,7 +2625,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
3129
2625
|
label?: string | null | undefined;
|
|
3130
2626
|
direction?: string | null | undefined;
|
|
3131
2627
|
}) | ({
|
|
3132
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
2628
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
3133
2629
|
content: {
|
|
3134
2630
|
text: string;
|
|
3135
2631
|
} & {
|
|
@@ -3188,14 +2684,18 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
3188
2684
|
} & {
|
|
3189
2685
|
label?: string;
|
|
3190
2686
|
direction?: string;
|
|
3191
|
-
})
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
2687
|
+
}))[];
|
|
2688
|
+
} | {
|
|
2689
|
+
__TYPE__: "SeparatorContent";
|
|
2690
|
+
} | ({
|
|
2691
|
+
content: {
|
|
2692
|
+
type: "tableRow";
|
|
2693
|
+
content: ({
|
|
2694
|
+
type: "tableHeader";
|
|
2695
|
+
content: {
|
|
2696
|
+
__TYPE__: "StructuredTextContent";
|
|
2697
|
+
value: ({
|
|
2698
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
3199
2699
|
content: {
|
|
3200
2700
|
text: string;
|
|
3201
2701
|
} & {
|
|
@@ -3255,10 +2755,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
3255
2755
|
label?: string;
|
|
3256
2756
|
direction?: string;
|
|
3257
2757
|
})[];
|
|
3258
|
-
}
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
2758
|
+
};
|
|
2759
|
+
} | {
|
|
2760
|
+
type: "tableCell";
|
|
2761
|
+
content: {
|
|
2762
|
+
__TYPE__: "StructuredTextContent";
|
|
2763
|
+
value: ({
|
|
2764
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
3262
2765
|
content: {
|
|
3263
2766
|
text: string;
|
|
3264
2767
|
} & {
|
|
@@ -3318,140 +2821,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
3318
2821
|
label?: string;
|
|
3319
2822
|
direction?: string;
|
|
3320
2823
|
})[];
|
|
3321
|
-
}
|
|
3322
|
-
}[];
|
|
3323
|
-
})[];
|
|
3324
|
-
} | {
|
|
3325
|
-
__TYPE__: "SeparatorContent";
|
|
3326
|
-
} | ({
|
|
3327
|
-
content: {
|
|
3328
|
-
type: "tableRow";
|
|
3329
|
-
content: ({
|
|
3330
|
-
type: "tableHeader";
|
|
3331
|
-
content: ({
|
|
3332
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
3333
|
-
content: {
|
|
3334
|
-
text: string;
|
|
3335
|
-
} & {
|
|
3336
|
-
spans?: ({
|
|
3337
|
-
data: ({
|
|
3338
|
-
__TYPE__: "ImageLink";
|
|
3339
|
-
} & {
|
|
3340
|
-
kind: "image";
|
|
3341
|
-
id: string;
|
|
3342
|
-
url: string;
|
|
3343
|
-
height: string;
|
|
3344
|
-
width: string;
|
|
3345
|
-
size: string;
|
|
3346
|
-
name: string;
|
|
3347
|
-
} & {
|
|
3348
|
-
date?: string | null | undefined;
|
|
3349
|
-
}) | ({
|
|
3350
|
-
__TYPE__: "FileLink";
|
|
3351
|
-
} & {
|
|
3352
|
-
kind: "file";
|
|
3353
|
-
id: string;
|
|
3354
|
-
url: string;
|
|
3355
|
-
name: string;
|
|
3356
|
-
size: string;
|
|
3357
|
-
} & {
|
|
3358
|
-
date?: string | null | undefined;
|
|
3359
|
-
}) | ({
|
|
3360
|
-
__TYPE__: "DocumentLink";
|
|
3361
|
-
} & {
|
|
3362
|
-
id: string;
|
|
3363
|
-
}) | ({
|
|
3364
|
-
__TYPE__: "ExternalLink";
|
|
3365
|
-
} & {
|
|
3366
|
-
url: string;
|
|
3367
|
-
} & {
|
|
3368
|
-
kind?: "web";
|
|
3369
|
-
target?: string | null | undefined;
|
|
3370
|
-
preview?: {
|
|
3371
|
-
title?: string;
|
|
3372
|
-
} | null | undefined;
|
|
3373
|
-
});
|
|
3374
|
-
start: number;
|
|
3375
|
-
end: number;
|
|
3376
|
-
type: "hyperlink";
|
|
3377
|
-
} | {
|
|
3378
|
-
data: string;
|
|
3379
|
-
start: number;
|
|
3380
|
-
end: number;
|
|
3381
|
-
type: "label";
|
|
3382
|
-
} | {
|
|
3383
|
-
start: number;
|
|
3384
|
-
end: number;
|
|
3385
|
-
type: "strong" | "em" | "list-item";
|
|
3386
|
-
})[];
|
|
3387
|
-
};
|
|
3388
|
-
} & {
|
|
3389
|
-
label?: string;
|
|
3390
|
-
direction?: string;
|
|
3391
|
-
})[];
|
|
3392
|
-
} | {
|
|
3393
|
-
type: "tableCell";
|
|
3394
|
-
content: ({
|
|
3395
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
3396
|
-
content: {
|
|
3397
|
-
text: string;
|
|
3398
|
-
} & {
|
|
3399
|
-
spans?: ({
|
|
3400
|
-
data: ({
|
|
3401
|
-
__TYPE__: "ImageLink";
|
|
3402
|
-
} & {
|
|
3403
|
-
kind: "image";
|
|
3404
|
-
id: string;
|
|
3405
|
-
url: string;
|
|
3406
|
-
height: string;
|
|
3407
|
-
width: string;
|
|
3408
|
-
size: string;
|
|
3409
|
-
name: string;
|
|
3410
|
-
} & {
|
|
3411
|
-
date?: string | null | undefined;
|
|
3412
|
-
}) | ({
|
|
3413
|
-
__TYPE__: "FileLink";
|
|
3414
|
-
} & {
|
|
3415
|
-
kind: "file";
|
|
3416
|
-
id: string;
|
|
3417
|
-
url: string;
|
|
3418
|
-
name: string;
|
|
3419
|
-
size: string;
|
|
3420
|
-
} & {
|
|
3421
|
-
date?: string | null | undefined;
|
|
3422
|
-
}) | ({
|
|
3423
|
-
__TYPE__: "DocumentLink";
|
|
3424
|
-
} & {
|
|
3425
|
-
id: string;
|
|
3426
|
-
}) | ({
|
|
3427
|
-
__TYPE__: "ExternalLink";
|
|
3428
|
-
} & {
|
|
3429
|
-
url: string;
|
|
3430
|
-
} & {
|
|
3431
|
-
kind?: "web";
|
|
3432
|
-
target?: string | null | undefined;
|
|
3433
|
-
preview?: {
|
|
3434
|
-
title?: string;
|
|
3435
|
-
} | null | undefined;
|
|
3436
|
-
});
|
|
3437
|
-
start: number;
|
|
3438
|
-
end: number;
|
|
3439
|
-
type: "hyperlink";
|
|
3440
|
-
} | {
|
|
3441
|
-
data: string;
|
|
3442
|
-
start: number;
|
|
3443
|
-
end: number;
|
|
3444
|
-
type: "label";
|
|
3445
|
-
} | {
|
|
3446
|
-
start: number;
|
|
3447
|
-
end: number;
|
|
3448
|
-
type: "strong" | "em" | "list-item";
|
|
3449
|
-
})[];
|
|
3450
|
-
};
|
|
3451
|
-
} & {
|
|
3452
|
-
label?: string;
|
|
3453
|
-
direction?: string;
|
|
3454
|
-
})[];
|
|
2824
|
+
};
|
|
3455
2825
|
})[];
|
|
3456
2826
|
}[];
|
|
3457
2827
|
} & {
|
|
@@ -3827,7 +3197,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3827
3197
|
label?: string | null | undefined;
|
|
3828
3198
|
direction?: string | null | undefined;
|
|
3829
3199
|
}) | ({
|
|
3830
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
3200
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
3831
3201
|
content: {
|
|
3832
3202
|
text: string;
|
|
3833
3203
|
} & {
|
|
@@ -3886,14 +3256,18 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3886
3256
|
} & {
|
|
3887
3257
|
label?: string;
|
|
3888
3258
|
direction?: string;
|
|
3889
|
-
})
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3259
|
+
}))[];
|
|
3260
|
+
} | {
|
|
3261
|
+
__TYPE__: "SeparatorContent";
|
|
3262
|
+
} | ({
|
|
3263
|
+
content: {
|
|
3264
|
+
type: "tableRow";
|
|
3265
|
+
content: ({
|
|
3266
|
+
type: "tableHeader";
|
|
3267
|
+
content: {
|
|
3268
|
+
__TYPE__: "StructuredTextContent";
|
|
3269
|
+
value: ({
|
|
3270
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
3897
3271
|
content: {
|
|
3898
3272
|
text: string;
|
|
3899
3273
|
} & {
|
|
@@ -3953,10 +3327,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3953
3327
|
label?: string;
|
|
3954
3328
|
direction?: string;
|
|
3955
3329
|
})[];
|
|
3956
|
-
}
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3330
|
+
};
|
|
3331
|
+
} | {
|
|
3332
|
+
type: "tableCell";
|
|
3333
|
+
content: {
|
|
3334
|
+
__TYPE__: "StructuredTextContent";
|
|
3335
|
+
value: ({
|
|
3336
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
3960
3337
|
content: {
|
|
3961
3338
|
text: string;
|
|
3962
3339
|
} & {
|
|
@@ -4016,140 +3393,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4016
3393
|
label?: string;
|
|
4017
3394
|
direction?: string;
|
|
4018
3395
|
})[];
|
|
4019
|
-
}
|
|
4020
|
-
}[];
|
|
4021
|
-
})[];
|
|
4022
|
-
} | {
|
|
4023
|
-
__TYPE__: "SeparatorContent";
|
|
4024
|
-
} | ({
|
|
4025
|
-
content: {
|
|
4026
|
-
type: "tableRow";
|
|
4027
|
-
content: ({
|
|
4028
|
-
type: "tableHeader";
|
|
4029
|
-
content: ({
|
|
4030
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4031
|
-
content: {
|
|
4032
|
-
text: string;
|
|
4033
|
-
} & {
|
|
4034
|
-
spans?: ({
|
|
4035
|
-
data: ({
|
|
4036
|
-
__TYPE__: "ImageLink";
|
|
4037
|
-
} & {
|
|
4038
|
-
kind: "image";
|
|
4039
|
-
id: string;
|
|
4040
|
-
url: string;
|
|
4041
|
-
height: string;
|
|
4042
|
-
width: string;
|
|
4043
|
-
size: string;
|
|
4044
|
-
name: string;
|
|
4045
|
-
} & {
|
|
4046
|
-
date?: string | null | undefined;
|
|
4047
|
-
}) | ({
|
|
4048
|
-
__TYPE__: "FileLink";
|
|
4049
|
-
} & {
|
|
4050
|
-
kind: "file";
|
|
4051
|
-
id: string;
|
|
4052
|
-
url: string;
|
|
4053
|
-
name: string;
|
|
4054
|
-
size: string;
|
|
4055
|
-
} & {
|
|
4056
|
-
date?: string | null | undefined;
|
|
4057
|
-
}) | ({
|
|
4058
|
-
__TYPE__: "DocumentLink";
|
|
4059
|
-
} & {
|
|
4060
|
-
id: string;
|
|
4061
|
-
}) | ({
|
|
4062
|
-
__TYPE__: "ExternalLink";
|
|
4063
|
-
} & {
|
|
4064
|
-
url: string;
|
|
4065
|
-
} & {
|
|
4066
|
-
kind?: "web";
|
|
4067
|
-
target?: string | null | undefined;
|
|
4068
|
-
preview?: {
|
|
4069
|
-
title?: string;
|
|
4070
|
-
} | null | undefined;
|
|
4071
|
-
});
|
|
4072
|
-
start: number;
|
|
4073
|
-
end: number;
|
|
4074
|
-
type: "hyperlink";
|
|
4075
|
-
} | {
|
|
4076
|
-
data: string;
|
|
4077
|
-
start: number;
|
|
4078
|
-
end: number;
|
|
4079
|
-
type: "label";
|
|
4080
|
-
} | {
|
|
4081
|
-
start: number;
|
|
4082
|
-
end: number;
|
|
4083
|
-
type: "strong" | "em" | "list-item";
|
|
4084
|
-
})[];
|
|
4085
|
-
};
|
|
4086
|
-
} & {
|
|
4087
|
-
label?: string;
|
|
4088
|
-
direction?: string;
|
|
4089
|
-
})[];
|
|
4090
|
-
} | {
|
|
4091
|
-
type: "tableCell";
|
|
4092
|
-
content: ({
|
|
4093
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4094
|
-
content: {
|
|
4095
|
-
text: string;
|
|
4096
|
-
} & {
|
|
4097
|
-
spans?: ({
|
|
4098
|
-
data: ({
|
|
4099
|
-
__TYPE__: "ImageLink";
|
|
4100
|
-
} & {
|
|
4101
|
-
kind: "image";
|
|
4102
|
-
id: string;
|
|
4103
|
-
url: string;
|
|
4104
|
-
height: string;
|
|
4105
|
-
width: string;
|
|
4106
|
-
size: string;
|
|
4107
|
-
name: string;
|
|
4108
|
-
} & {
|
|
4109
|
-
date?: string | null | undefined;
|
|
4110
|
-
}) | ({
|
|
4111
|
-
__TYPE__: "FileLink";
|
|
4112
|
-
} & {
|
|
4113
|
-
kind: "file";
|
|
4114
|
-
id: string;
|
|
4115
|
-
url: string;
|
|
4116
|
-
name: string;
|
|
4117
|
-
size: string;
|
|
4118
|
-
} & {
|
|
4119
|
-
date?: string | null | undefined;
|
|
4120
|
-
}) | ({
|
|
4121
|
-
__TYPE__: "DocumentLink";
|
|
4122
|
-
} & {
|
|
4123
|
-
id: string;
|
|
4124
|
-
}) | ({
|
|
4125
|
-
__TYPE__: "ExternalLink";
|
|
4126
|
-
} & {
|
|
4127
|
-
url: string;
|
|
4128
|
-
} & {
|
|
4129
|
-
kind?: "web";
|
|
4130
|
-
target?: string | null | undefined;
|
|
4131
|
-
preview?: {
|
|
4132
|
-
title?: string;
|
|
4133
|
-
} | null | undefined;
|
|
4134
|
-
});
|
|
4135
|
-
start: number;
|
|
4136
|
-
end: number;
|
|
4137
|
-
type: "hyperlink";
|
|
4138
|
-
} | {
|
|
4139
|
-
data: string;
|
|
4140
|
-
start: number;
|
|
4141
|
-
end: number;
|
|
4142
|
-
type: "label";
|
|
4143
|
-
} | {
|
|
4144
|
-
start: number;
|
|
4145
|
-
end: number;
|
|
4146
|
-
type: "strong" | "em" | "list-item";
|
|
4147
|
-
})[];
|
|
4148
|
-
};
|
|
4149
|
-
} & {
|
|
4150
|
-
label?: string;
|
|
4151
|
-
direction?: string;
|
|
4152
|
-
})[];
|
|
3396
|
+
};
|
|
4153
3397
|
})[];
|
|
4154
3398
|
}[];
|
|
4155
3399
|
} & {
|
|
@@ -4516,7 +3760,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4516
3760
|
label?: string | null | undefined;
|
|
4517
3761
|
direction?: string | null | undefined;
|
|
4518
3762
|
}) | ({
|
|
4519
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
3763
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
4520
3764
|
content: {
|
|
4521
3765
|
text: string;
|
|
4522
3766
|
} & {
|
|
@@ -4575,14 +3819,18 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4575
3819
|
} & {
|
|
4576
3820
|
label?: string;
|
|
4577
3821
|
direction?: string;
|
|
4578
|
-
})
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
3822
|
+
}))[];
|
|
3823
|
+
} | {
|
|
3824
|
+
__TYPE__: "SeparatorContent";
|
|
3825
|
+
} | ({
|
|
3826
|
+
content: {
|
|
3827
|
+
type: "tableRow";
|
|
3828
|
+
content: ({
|
|
3829
|
+
type: "tableHeader";
|
|
3830
|
+
content: {
|
|
3831
|
+
__TYPE__: "StructuredTextContent";
|
|
3832
|
+
value: ({
|
|
3833
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
4586
3834
|
content: {
|
|
4587
3835
|
text: string;
|
|
4588
3836
|
} & {
|
|
@@ -4642,10 +3890,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4642
3890
|
label?: string;
|
|
4643
3891
|
direction?: string;
|
|
4644
3892
|
})[];
|
|
4645
|
-
}
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
3893
|
+
};
|
|
3894
|
+
} | {
|
|
3895
|
+
type: "tableCell";
|
|
3896
|
+
content: {
|
|
3897
|
+
__TYPE__: "StructuredTextContent";
|
|
3898
|
+
value: ({
|
|
3899
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
4649
3900
|
content: {
|
|
4650
3901
|
text: string;
|
|
4651
3902
|
} & {
|
|
@@ -4705,140 +3956,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4705
3956
|
label?: string;
|
|
4706
3957
|
direction?: string;
|
|
4707
3958
|
})[];
|
|
4708
|
-
}
|
|
4709
|
-
}[];
|
|
4710
|
-
})[];
|
|
4711
|
-
} | {
|
|
4712
|
-
__TYPE__: "SeparatorContent";
|
|
4713
|
-
} | ({
|
|
4714
|
-
content: {
|
|
4715
|
-
type: "tableRow";
|
|
4716
|
-
content: ({
|
|
4717
|
-
type: "tableHeader";
|
|
4718
|
-
content: ({
|
|
4719
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4720
|
-
content: {
|
|
4721
|
-
text: string;
|
|
4722
|
-
} & {
|
|
4723
|
-
spans?: ({
|
|
4724
|
-
data: ({
|
|
4725
|
-
__TYPE__: "ImageLink";
|
|
4726
|
-
} & {
|
|
4727
|
-
kind: "image";
|
|
4728
|
-
id: string;
|
|
4729
|
-
url: string;
|
|
4730
|
-
height: string;
|
|
4731
|
-
width: string;
|
|
4732
|
-
size: string;
|
|
4733
|
-
name: string;
|
|
4734
|
-
} & {
|
|
4735
|
-
date?: string | null | undefined;
|
|
4736
|
-
}) | ({
|
|
4737
|
-
__TYPE__: "FileLink";
|
|
4738
|
-
} & {
|
|
4739
|
-
kind: "file";
|
|
4740
|
-
id: string;
|
|
4741
|
-
url: string;
|
|
4742
|
-
name: string;
|
|
4743
|
-
size: string;
|
|
4744
|
-
} & {
|
|
4745
|
-
date?: string | null | undefined;
|
|
4746
|
-
}) | ({
|
|
4747
|
-
__TYPE__: "DocumentLink";
|
|
4748
|
-
} & {
|
|
4749
|
-
id: string;
|
|
4750
|
-
}) | ({
|
|
4751
|
-
__TYPE__: "ExternalLink";
|
|
4752
|
-
} & {
|
|
4753
|
-
url: string;
|
|
4754
|
-
} & {
|
|
4755
|
-
kind?: "web";
|
|
4756
|
-
target?: string | null | undefined;
|
|
4757
|
-
preview?: {
|
|
4758
|
-
title?: string;
|
|
4759
|
-
} | null | undefined;
|
|
4760
|
-
});
|
|
4761
|
-
start: number;
|
|
4762
|
-
end: number;
|
|
4763
|
-
type: "hyperlink";
|
|
4764
|
-
} | {
|
|
4765
|
-
data: string;
|
|
4766
|
-
start: number;
|
|
4767
|
-
end: number;
|
|
4768
|
-
type: "label";
|
|
4769
|
-
} | {
|
|
4770
|
-
start: number;
|
|
4771
|
-
end: number;
|
|
4772
|
-
type: "strong" | "em" | "list-item";
|
|
4773
|
-
})[];
|
|
4774
|
-
};
|
|
4775
|
-
} & {
|
|
4776
|
-
label?: string;
|
|
4777
|
-
direction?: string;
|
|
4778
|
-
})[];
|
|
4779
|
-
} | {
|
|
4780
|
-
type: "tableCell";
|
|
4781
|
-
content: ({
|
|
4782
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
4783
|
-
content: {
|
|
4784
|
-
text: string;
|
|
4785
|
-
} & {
|
|
4786
|
-
spans?: ({
|
|
4787
|
-
data: ({
|
|
4788
|
-
__TYPE__: "ImageLink";
|
|
4789
|
-
} & {
|
|
4790
|
-
kind: "image";
|
|
4791
|
-
id: string;
|
|
4792
|
-
url: string;
|
|
4793
|
-
height: string;
|
|
4794
|
-
width: string;
|
|
4795
|
-
size: string;
|
|
4796
|
-
name: string;
|
|
4797
|
-
} & {
|
|
4798
|
-
date?: string | null | undefined;
|
|
4799
|
-
}) | ({
|
|
4800
|
-
__TYPE__: "FileLink";
|
|
4801
|
-
} & {
|
|
4802
|
-
kind: "file";
|
|
4803
|
-
id: string;
|
|
4804
|
-
url: string;
|
|
4805
|
-
name: string;
|
|
4806
|
-
size: string;
|
|
4807
|
-
} & {
|
|
4808
|
-
date?: string | null | undefined;
|
|
4809
|
-
}) | ({
|
|
4810
|
-
__TYPE__: "DocumentLink";
|
|
4811
|
-
} & {
|
|
4812
|
-
id: string;
|
|
4813
|
-
}) | ({
|
|
4814
|
-
__TYPE__: "ExternalLink";
|
|
4815
|
-
} & {
|
|
4816
|
-
url: string;
|
|
4817
|
-
} & {
|
|
4818
|
-
kind?: "web";
|
|
4819
|
-
target?: string | null | undefined;
|
|
4820
|
-
preview?: {
|
|
4821
|
-
title?: string;
|
|
4822
|
-
} | null | undefined;
|
|
4823
|
-
});
|
|
4824
|
-
start: number;
|
|
4825
|
-
end: number;
|
|
4826
|
-
type: "hyperlink";
|
|
4827
|
-
} | {
|
|
4828
|
-
data: string;
|
|
4829
|
-
start: number;
|
|
4830
|
-
end: number;
|
|
4831
|
-
type: "label";
|
|
4832
|
-
} | {
|
|
4833
|
-
start: number;
|
|
4834
|
-
end: number;
|
|
4835
|
-
type: "strong" | "em" | "list-item";
|
|
4836
|
-
})[];
|
|
4837
|
-
};
|
|
4838
|
-
} & {
|
|
4839
|
-
label?: string;
|
|
4840
|
-
direction?: string;
|
|
4841
|
-
})[];
|
|
3959
|
+
};
|
|
4842
3960
|
})[];
|
|
4843
3961
|
}[];
|
|
4844
3962
|
} & {
|
|
@@ -5206,7 +4324,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5206
4324
|
label?: string | null | undefined;
|
|
5207
4325
|
direction?: string | null | undefined;
|
|
5208
4326
|
}) | ({
|
|
5209
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
4327
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
5210
4328
|
content: {
|
|
5211
4329
|
text: string;
|
|
5212
4330
|
} & {
|
|
@@ -5265,21 +4383,25 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5265
4383
|
} & {
|
|
5266
4384
|
label?: string;
|
|
5267
4385
|
direction?: string;
|
|
5268
|
-
})
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
|
|
5277
|
-
|
|
5278
|
-
|
|
5279
|
-
|
|
5280
|
-
|
|
5281
|
-
|
|
5282
|
-
|
|
4386
|
+
}))[];
|
|
4387
|
+
} | {
|
|
4388
|
+
__TYPE__: "SeparatorContent";
|
|
4389
|
+
} | ({
|
|
4390
|
+
content: {
|
|
4391
|
+
type: "tableRow";
|
|
4392
|
+
content: ({
|
|
4393
|
+
type: "tableHeader";
|
|
4394
|
+
content: {
|
|
4395
|
+
__TYPE__: "StructuredTextContent";
|
|
4396
|
+
value: ({
|
|
4397
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
4398
|
+
content: {
|
|
4399
|
+
text: string;
|
|
4400
|
+
} & {
|
|
4401
|
+
spans?: ({
|
|
4402
|
+
data: ({
|
|
4403
|
+
__TYPE__: "ImageLink";
|
|
4404
|
+
} & {
|
|
5283
4405
|
kind: "image";
|
|
5284
4406
|
id: string;
|
|
5285
4407
|
url: string;
|
|
@@ -5332,10 +4454,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5332
4454
|
label?: string;
|
|
5333
4455
|
direction?: string;
|
|
5334
4456
|
})[];
|
|
5335
|
-
}
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
|
|
4457
|
+
};
|
|
4458
|
+
} | {
|
|
4459
|
+
type: "tableCell";
|
|
4460
|
+
content: {
|
|
4461
|
+
__TYPE__: "StructuredTextContent";
|
|
4462
|
+
value: ({
|
|
4463
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
5339
4464
|
content: {
|
|
5340
4465
|
text: string;
|
|
5341
4466
|
} & {
|
|
@@ -5395,140 +4520,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5395
4520
|
label?: string;
|
|
5396
4521
|
direction?: string;
|
|
5397
4522
|
})[];
|
|
5398
|
-
}
|
|
5399
|
-
}[];
|
|
5400
|
-
})[];
|
|
5401
|
-
} | {
|
|
5402
|
-
__TYPE__: "SeparatorContent";
|
|
5403
|
-
} | ({
|
|
5404
|
-
content: {
|
|
5405
|
-
type: "tableRow";
|
|
5406
|
-
content: ({
|
|
5407
|
-
type: "tableHeader";
|
|
5408
|
-
content: ({
|
|
5409
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
5410
|
-
content: {
|
|
5411
|
-
text: string;
|
|
5412
|
-
} & {
|
|
5413
|
-
spans?: ({
|
|
5414
|
-
data: ({
|
|
5415
|
-
__TYPE__: "ImageLink";
|
|
5416
|
-
} & {
|
|
5417
|
-
kind: "image";
|
|
5418
|
-
id: string;
|
|
5419
|
-
url: string;
|
|
5420
|
-
height: string;
|
|
5421
|
-
width: string;
|
|
5422
|
-
size: string;
|
|
5423
|
-
name: string;
|
|
5424
|
-
} & {
|
|
5425
|
-
date?: string | null | undefined;
|
|
5426
|
-
}) | ({
|
|
5427
|
-
__TYPE__: "FileLink";
|
|
5428
|
-
} & {
|
|
5429
|
-
kind: "file";
|
|
5430
|
-
id: string;
|
|
5431
|
-
url: string;
|
|
5432
|
-
name: string;
|
|
5433
|
-
size: string;
|
|
5434
|
-
} & {
|
|
5435
|
-
date?: string | null | undefined;
|
|
5436
|
-
}) | ({
|
|
5437
|
-
__TYPE__: "DocumentLink";
|
|
5438
|
-
} & {
|
|
5439
|
-
id: string;
|
|
5440
|
-
}) | ({
|
|
5441
|
-
__TYPE__: "ExternalLink";
|
|
5442
|
-
} & {
|
|
5443
|
-
url: string;
|
|
5444
|
-
} & {
|
|
5445
|
-
kind?: "web";
|
|
5446
|
-
target?: string | null | undefined;
|
|
5447
|
-
preview?: {
|
|
5448
|
-
title?: string;
|
|
5449
|
-
} | null | undefined;
|
|
5450
|
-
});
|
|
5451
|
-
start: number;
|
|
5452
|
-
end: number;
|
|
5453
|
-
type: "hyperlink";
|
|
5454
|
-
} | {
|
|
5455
|
-
data: string;
|
|
5456
|
-
start: number;
|
|
5457
|
-
end: number;
|
|
5458
|
-
type: "label";
|
|
5459
|
-
} | {
|
|
5460
|
-
start: number;
|
|
5461
|
-
end: number;
|
|
5462
|
-
type: "strong" | "em" | "list-item";
|
|
5463
|
-
})[];
|
|
5464
|
-
};
|
|
5465
|
-
} & {
|
|
5466
|
-
label?: string;
|
|
5467
|
-
direction?: string;
|
|
5468
|
-
})[];
|
|
5469
|
-
} | {
|
|
5470
|
-
type: "tableCell";
|
|
5471
|
-
content: ({
|
|
5472
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
5473
|
-
content: {
|
|
5474
|
-
text: string;
|
|
5475
|
-
} & {
|
|
5476
|
-
spans?: ({
|
|
5477
|
-
data: ({
|
|
5478
|
-
__TYPE__: "ImageLink";
|
|
5479
|
-
} & {
|
|
5480
|
-
kind: "image";
|
|
5481
|
-
id: string;
|
|
5482
|
-
url: string;
|
|
5483
|
-
height: string;
|
|
5484
|
-
width: string;
|
|
5485
|
-
size: string;
|
|
5486
|
-
name: string;
|
|
5487
|
-
} & {
|
|
5488
|
-
date?: string | null | undefined;
|
|
5489
|
-
}) | ({
|
|
5490
|
-
__TYPE__: "FileLink";
|
|
5491
|
-
} & {
|
|
5492
|
-
kind: "file";
|
|
5493
|
-
id: string;
|
|
5494
|
-
url: string;
|
|
5495
|
-
name: string;
|
|
5496
|
-
size: string;
|
|
5497
|
-
} & {
|
|
5498
|
-
date?: string | null | undefined;
|
|
5499
|
-
}) | ({
|
|
5500
|
-
__TYPE__: "DocumentLink";
|
|
5501
|
-
} & {
|
|
5502
|
-
id: string;
|
|
5503
|
-
}) | ({
|
|
5504
|
-
__TYPE__: "ExternalLink";
|
|
5505
|
-
} & {
|
|
5506
|
-
url: string;
|
|
5507
|
-
} & {
|
|
5508
|
-
kind?: "web";
|
|
5509
|
-
target?: string | null | undefined;
|
|
5510
|
-
preview?: {
|
|
5511
|
-
title?: string;
|
|
5512
|
-
} | null | undefined;
|
|
5513
|
-
});
|
|
5514
|
-
start: number;
|
|
5515
|
-
end: number;
|
|
5516
|
-
type: "hyperlink";
|
|
5517
|
-
} | {
|
|
5518
|
-
data: string;
|
|
5519
|
-
start: number;
|
|
5520
|
-
end: number;
|
|
5521
|
-
type: "label";
|
|
5522
|
-
} | {
|
|
5523
|
-
start: number;
|
|
5524
|
-
end: number;
|
|
5525
|
-
type: "strong" | "em" | "list-item";
|
|
5526
|
-
})[];
|
|
5527
|
-
};
|
|
5528
|
-
} & {
|
|
5529
|
-
label?: string;
|
|
5530
|
-
direction?: string;
|
|
5531
|
-
})[];
|
|
4523
|
+
};
|
|
5532
4524
|
})[];
|
|
5533
4525
|
}[];
|
|
5534
4526
|
} & {
|
|
@@ -5898,7 +4890,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5898
4890
|
label?: string | null | undefined;
|
|
5899
4891
|
direction?: string | null | undefined;
|
|
5900
4892
|
}) | ({
|
|
5901
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
4893
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
5902
4894
|
content: {
|
|
5903
4895
|
text: string;
|
|
5904
4896
|
} & {
|
|
@@ -5957,14 +4949,18 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
5957
4949
|
} & {
|
|
5958
4950
|
label?: string;
|
|
5959
4951
|
direction?: string;
|
|
5960
|
-
})
|
|
5961
|
-
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
4952
|
+
}))[];
|
|
4953
|
+
} | {
|
|
4954
|
+
__TYPE__: "SeparatorContent";
|
|
4955
|
+
} | ({
|
|
4956
|
+
content: {
|
|
4957
|
+
type: "tableRow";
|
|
4958
|
+
content: ({
|
|
4959
|
+
type: "tableHeader";
|
|
4960
|
+
content: {
|
|
4961
|
+
__TYPE__: "StructuredTextContent";
|
|
4962
|
+
value: ({
|
|
4963
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
5968
4964
|
content: {
|
|
5969
4965
|
text: string;
|
|
5970
4966
|
} & {
|
|
@@ -6024,10 +5020,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
6024
5020
|
label?: string;
|
|
6025
5021
|
direction?: string;
|
|
6026
5022
|
})[];
|
|
6027
|
-
}
|
|
6028
|
-
|
|
6029
|
-
|
|
6030
|
-
|
|
5023
|
+
};
|
|
5024
|
+
} | {
|
|
5025
|
+
type: "tableCell";
|
|
5026
|
+
content: {
|
|
5027
|
+
__TYPE__: "StructuredTextContent";
|
|
5028
|
+
value: ({
|
|
5029
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6031
5030
|
content: {
|
|
6032
5031
|
text: string;
|
|
6033
5032
|
} & {
|
|
@@ -6087,154 +5086,21 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
6087
5086
|
label?: string;
|
|
6088
5087
|
direction?: string;
|
|
6089
5088
|
})[];
|
|
6090
|
-
}
|
|
6091
|
-
}[];
|
|
6092
|
-
}
|
|
5089
|
+
};
|
|
5090
|
+
})[];
|
|
5091
|
+
}[];
|
|
5092
|
+
} & {
|
|
5093
|
+
__TYPE__: "TableContent";
|
|
5094
|
+
});
|
|
5095
|
+
};
|
|
5096
|
+
items: {
|
|
5097
|
+
__TYPE__: "GroupItemContent";
|
|
5098
|
+
value: [string, {
|
|
5099
|
+
type: string;
|
|
5100
|
+
__TYPE__: "EmptyContent";
|
|
6093
5101
|
} | {
|
|
6094
|
-
__TYPE__: "
|
|
6095
|
-
|
|
6096
|
-
content: {
|
|
6097
|
-
type: "tableRow";
|
|
6098
|
-
content: ({
|
|
6099
|
-
type: "tableHeader";
|
|
6100
|
-
content: ({
|
|
6101
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6102
|
-
content: {
|
|
6103
|
-
text: string;
|
|
6104
|
-
} & {
|
|
6105
|
-
spans?: ({
|
|
6106
|
-
data: ({
|
|
6107
|
-
__TYPE__: "ImageLink";
|
|
6108
|
-
} & {
|
|
6109
|
-
kind: "image";
|
|
6110
|
-
id: string;
|
|
6111
|
-
url: string;
|
|
6112
|
-
height: string;
|
|
6113
|
-
width: string;
|
|
6114
|
-
size: string;
|
|
6115
|
-
name: string;
|
|
6116
|
-
} & {
|
|
6117
|
-
date?: string | null | undefined;
|
|
6118
|
-
}) | ({
|
|
6119
|
-
__TYPE__: "FileLink";
|
|
6120
|
-
} & {
|
|
6121
|
-
kind: "file";
|
|
6122
|
-
id: string;
|
|
6123
|
-
url: string;
|
|
6124
|
-
name: string;
|
|
6125
|
-
size: string;
|
|
6126
|
-
} & {
|
|
6127
|
-
date?: string | null | undefined;
|
|
6128
|
-
}) | ({
|
|
6129
|
-
__TYPE__: "DocumentLink";
|
|
6130
|
-
} & {
|
|
6131
|
-
id: string;
|
|
6132
|
-
}) | ({
|
|
6133
|
-
__TYPE__: "ExternalLink";
|
|
6134
|
-
} & {
|
|
6135
|
-
url: string;
|
|
6136
|
-
} & {
|
|
6137
|
-
kind?: "web";
|
|
6138
|
-
target?: string | null | undefined;
|
|
6139
|
-
preview?: {
|
|
6140
|
-
title?: string;
|
|
6141
|
-
} | null | undefined;
|
|
6142
|
-
});
|
|
6143
|
-
start: number;
|
|
6144
|
-
end: number;
|
|
6145
|
-
type: "hyperlink";
|
|
6146
|
-
} | {
|
|
6147
|
-
data: string;
|
|
6148
|
-
start: number;
|
|
6149
|
-
end: number;
|
|
6150
|
-
type: "label";
|
|
6151
|
-
} | {
|
|
6152
|
-
start: number;
|
|
6153
|
-
end: number;
|
|
6154
|
-
type: "strong" | "em" | "list-item";
|
|
6155
|
-
})[];
|
|
6156
|
-
};
|
|
6157
|
-
} & {
|
|
6158
|
-
label?: string;
|
|
6159
|
-
direction?: string;
|
|
6160
|
-
})[];
|
|
6161
|
-
} | {
|
|
6162
|
-
type: "tableCell";
|
|
6163
|
-
content: ({
|
|
6164
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6165
|
-
content: {
|
|
6166
|
-
text: string;
|
|
6167
|
-
} & {
|
|
6168
|
-
spans?: ({
|
|
6169
|
-
data: ({
|
|
6170
|
-
__TYPE__: "ImageLink";
|
|
6171
|
-
} & {
|
|
6172
|
-
kind: "image";
|
|
6173
|
-
id: string;
|
|
6174
|
-
url: string;
|
|
6175
|
-
height: string;
|
|
6176
|
-
width: string;
|
|
6177
|
-
size: string;
|
|
6178
|
-
name: string;
|
|
6179
|
-
} & {
|
|
6180
|
-
date?: string | null | undefined;
|
|
6181
|
-
}) | ({
|
|
6182
|
-
__TYPE__: "FileLink";
|
|
6183
|
-
} & {
|
|
6184
|
-
kind: "file";
|
|
6185
|
-
id: string;
|
|
6186
|
-
url: string;
|
|
6187
|
-
name: string;
|
|
6188
|
-
size: string;
|
|
6189
|
-
} & {
|
|
6190
|
-
date?: string | null | undefined;
|
|
6191
|
-
}) | ({
|
|
6192
|
-
__TYPE__: "DocumentLink";
|
|
6193
|
-
} & {
|
|
6194
|
-
id: string;
|
|
6195
|
-
}) | ({
|
|
6196
|
-
__TYPE__: "ExternalLink";
|
|
6197
|
-
} & {
|
|
6198
|
-
url: string;
|
|
6199
|
-
} & {
|
|
6200
|
-
kind?: "web";
|
|
6201
|
-
target?: string | null | undefined;
|
|
6202
|
-
preview?: {
|
|
6203
|
-
title?: string;
|
|
6204
|
-
} | null | undefined;
|
|
6205
|
-
});
|
|
6206
|
-
start: number;
|
|
6207
|
-
end: number;
|
|
6208
|
-
type: "hyperlink";
|
|
6209
|
-
} | {
|
|
6210
|
-
data: string;
|
|
6211
|
-
start: number;
|
|
6212
|
-
end: number;
|
|
6213
|
-
type: "label";
|
|
6214
|
-
} | {
|
|
6215
|
-
start: number;
|
|
6216
|
-
end: number;
|
|
6217
|
-
type: "strong" | "em" | "list-item";
|
|
6218
|
-
})[];
|
|
6219
|
-
};
|
|
6220
|
-
} & {
|
|
6221
|
-
label?: string;
|
|
6222
|
-
direction?: string;
|
|
6223
|
-
})[];
|
|
6224
|
-
})[];
|
|
6225
|
-
}[];
|
|
6226
|
-
} & {
|
|
6227
|
-
__TYPE__: "TableContent";
|
|
6228
|
-
});
|
|
6229
|
-
};
|
|
6230
|
-
items: {
|
|
6231
|
-
__TYPE__: "GroupItemContent";
|
|
6232
|
-
value: [string, {
|
|
6233
|
-
type: string;
|
|
6234
|
-
__TYPE__: "EmptyContent";
|
|
6235
|
-
} | {
|
|
6236
|
-
__TYPE__: "BooleanContent";
|
|
6237
|
-
value: boolean;
|
|
5102
|
+
__TYPE__: "BooleanContent";
|
|
5103
|
+
value: boolean;
|
|
6238
5104
|
} | ({
|
|
6239
5105
|
embed_url: string;
|
|
6240
5106
|
type: string;
|
|
@@ -6588,7 +5454,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
6588
5454
|
label?: string | null | undefined;
|
|
6589
5455
|
direction?: string | null | undefined;
|
|
6590
5456
|
}) | ({
|
|
6591
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
5457
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6592
5458
|
content: {
|
|
6593
5459
|
text: string;
|
|
6594
5460
|
} & {
|
|
@@ -6647,14 +5513,18 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
6647
5513
|
} & {
|
|
6648
5514
|
label?: string;
|
|
6649
5515
|
direction?: string;
|
|
6650
|
-
})
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
5516
|
+
}))[];
|
|
5517
|
+
} | {
|
|
5518
|
+
__TYPE__: "SeparatorContent";
|
|
5519
|
+
} | ({
|
|
5520
|
+
content: {
|
|
5521
|
+
type: "tableRow";
|
|
5522
|
+
content: ({
|
|
5523
|
+
type: "tableHeader";
|
|
5524
|
+
content: {
|
|
5525
|
+
__TYPE__: "StructuredTextContent";
|
|
5526
|
+
value: ({
|
|
5527
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6658
5528
|
content: {
|
|
6659
5529
|
text: string;
|
|
6660
5530
|
} & {
|
|
@@ -6714,10 +5584,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
6714
5584
|
label?: string;
|
|
6715
5585
|
direction?: string;
|
|
6716
5586
|
})[];
|
|
6717
|
-
}
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
5587
|
+
};
|
|
5588
|
+
} | {
|
|
5589
|
+
type: "tableCell";
|
|
5590
|
+
content: {
|
|
5591
|
+
__TYPE__: "StructuredTextContent";
|
|
5592
|
+
value: ({
|
|
5593
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
6721
5594
|
content: {
|
|
6722
5595
|
text: string;
|
|
6723
5596
|
} & {
|
|
@@ -6777,140 +5650,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
6777
5650
|
label?: string;
|
|
6778
5651
|
direction?: string;
|
|
6779
5652
|
})[];
|
|
6780
|
-
}
|
|
6781
|
-
}[];
|
|
6782
|
-
})[];
|
|
6783
|
-
} | {
|
|
6784
|
-
__TYPE__: "SeparatorContent";
|
|
6785
|
-
} | ({
|
|
6786
|
-
content: {
|
|
6787
|
-
type: "tableRow";
|
|
6788
|
-
content: ({
|
|
6789
|
-
type: "tableHeader";
|
|
6790
|
-
content: ({
|
|
6791
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6792
|
-
content: {
|
|
6793
|
-
text: string;
|
|
6794
|
-
} & {
|
|
6795
|
-
spans?: ({
|
|
6796
|
-
data: ({
|
|
6797
|
-
__TYPE__: "ImageLink";
|
|
6798
|
-
} & {
|
|
6799
|
-
kind: "image";
|
|
6800
|
-
id: string;
|
|
6801
|
-
url: string;
|
|
6802
|
-
height: string;
|
|
6803
|
-
width: string;
|
|
6804
|
-
size: string;
|
|
6805
|
-
name: string;
|
|
6806
|
-
} & {
|
|
6807
|
-
date?: string | null | undefined;
|
|
6808
|
-
}) | ({
|
|
6809
|
-
__TYPE__: "FileLink";
|
|
6810
|
-
} & {
|
|
6811
|
-
kind: "file";
|
|
6812
|
-
id: string;
|
|
6813
|
-
url: string;
|
|
6814
|
-
name: string;
|
|
6815
|
-
size: string;
|
|
6816
|
-
} & {
|
|
6817
|
-
date?: string | null | undefined;
|
|
6818
|
-
}) | ({
|
|
6819
|
-
__TYPE__: "DocumentLink";
|
|
6820
|
-
} & {
|
|
6821
|
-
id: string;
|
|
6822
|
-
}) | ({
|
|
6823
|
-
__TYPE__: "ExternalLink";
|
|
6824
|
-
} & {
|
|
6825
|
-
url: string;
|
|
6826
|
-
} & {
|
|
6827
|
-
kind?: "web";
|
|
6828
|
-
target?: string | null | undefined;
|
|
6829
|
-
preview?: {
|
|
6830
|
-
title?: string;
|
|
6831
|
-
} | null | undefined;
|
|
6832
|
-
});
|
|
6833
|
-
start: number;
|
|
6834
|
-
end: number;
|
|
6835
|
-
type: "hyperlink";
|
|
6836
|
-
} | {
|
|
6837
|
-
data: string;
|
|
6838
|
-
start: number;
|
|
6839
|
-
end: number;
|
|
6840
|
-
type: "label";
|
|
6841
|
-
} | {
|
|
6842
|
-
start: number;
|
|
6843
|
-
end: number;
|
|
6844
|
-
type: "strong" | "em" | "list-item";
|
|
6845
|
-
})[];
|
|
6846
|
-
};
|
|
6847
|
-
} & {
|
|
6848
|
-
label?: string;
|
|
6849
|
-
direction?: string;
|
|
6850
|
-
})[];
|
|
6851
|
-
} | {
|
|
6852
|
-
type: "tableCell";
|
|
6853
|
-
content: ({
|
|
6854
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl" | "table";
|
|
6855
|
-
content: {
|
|
6856
|
-
text: string;
|
|
6857
|
-
} & {
|
|
6858
|
-
spans?: ({
|
|
6859
|
-
data: ({
|
|
6860
|
-
__TYPE__: "ImageLink";
|
|
6861
|
-
} & {
|
|
6862
|
-
kind: "image";
|
|
6863
|
-
id: string;
|
|
6864
|
-
url: string;
|
|
6865
|
-
height: string;
|
|
6866
|
-
width: string;
|
|
6867
|
-
size: string;
|
|
6868
|
-
name: string;
|
|
6869
|
-
} & {
|
|
6870
|
-
date?: string | null | undefined;
|
|
6871
|
-
}) | ({
|
|
6872
|
-
__TYPE__: "FileLink";
|
|
6873
|
-
} & {
|
|
6874
|
-
kind: "file";
|
|
6875
|
-
id: string;
|
|
6876
|
-
url: string;
|
|
6877
|
-
name: string;
|
|
6878
|
-
size: string;
|
|
6879
|
-
} & {
|
|
6880
|
-
date?: string | null | undefined;
|
|
6881
|
-
}) | ({
|
|
6882
|
-
__TYPE__: "DocumentLink";
|
|
6883
|
-
} & {
|
|
6884
|
-
id: string;
|
|
6885
|
-
}) | ({
|
|
6886
|
-
__TYPE__: "ExternalLink";
|
|
6887
|
-
} & {
|
|
6888
|
-
url: string;
|
|
6889
|
-
} & {
|
|
6890
|
-
kind?: "web";
|
|
6891
|
-
target?: string | null | undefined;
|
|
6892
|
-
preview?: {
|
|
6893
|
-
title?: string;
|
|
6894
|
-
} | null | undefined;
|
|
6895
|
-
});
|
|
6896
|
-
start: number;
|
|
6897
|
-
end: number;
|
|
6898
|
-
type: "hyperlink";
|
|
6899
|
-
} | {
|
|
6900
|
-
data: string;
|
|
6901
|
-
start: number;
|
|
6902
|
-
end: number;
|
|
6903
|
-
type: "label";
|
|
6904
|
-
} | {
|
|
6905
|
-
start: number;
|
|
6906
|
-
end: number;
|
|
6907
|
-
type: "strong" | "em" | "list-item";
|
|
6908
|
-
})[];
|
|
6909
|
-
};
|
|
6910
|
-
} & {
|
|
6911
|
-
label?: string;
|
|
6912
|
-
direction?: string;
|
|
6913
|
-
})[];
|
|
5653
|
+
};
|
|
6914
5654
|
})[];
|
|
6915
5655
|
}[];
|
|
6916
5656
|
} & {
|
|
@@ -7244,7 +5984,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
7244
5984
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
7245
5985
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
7246
5986
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
7247
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
5987
|
+
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>;
|
|
7248
5988
|
content: t.IntersectionC<[t.TypeC<{
|
|
7249
5989
|
text: t.StringC;
|
|
7250
5990
|
}>, t.PartialC<{
|
|
@@ -7353,14 +6093,18 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
7353
6093
|
}>, t.PartialC<{
|
|
7354
6094
|
label: t.StringC;
|
|
7355
6095
|
direction: t.StringC;
|
|
7356
|
-
}>]
|
|
7357
|
-
|
|
7358
|
-
|
|
7359
|
-
|
|
7360
|
-
|
|
7361
|
-
|
|
7362
|
-
|
|
7363
|
-
|
|
6096
|
+
}>]>>]>>;
|
|
6097
|
+
}>>, t.ExactC<t.TypeC<{
|
|
6098
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
6099
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
6100
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
6101
|
+
type: t.LiteralC<"tableRow">;
|
|
6102
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
6103
|
+
type: t.LiteralC<"tableHeader">;
|
|
6104
|
+
content: t.ExactC<t.TypeC<{
|
|
6105
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
6106
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
6107
|
+
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>;
|
|
7364
6108
|
content: t.IntersectionC<[t.TypeC<{
|
|
7365
6109
|
text: t.StringC;
|
|
7366
6110
|
}>, t.PartialC<{
|
|
@@ -7470,10 +6214,13 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
7470
6214
|
label: t.StringC;
|
|
7471
6215
|
direction: t.StringC;
|
|
7472
6216
|
}>]>>>;
|
|
7473
|
-
}
|
|
7474
|
-
|
|
7475
|
-
|
|
7476
|
-
|
|
6217
|
+
}>>;
|
|
6218
|
+
}>>, t.ExactC<t.TypeC<{
|
|
6219
|
+
type: t.LiteralC<"tableCell">;
|
|
6220
|
+
content: t.ExactC<t.TypeC<{
|
|
6221
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
6222
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
6223
|
+
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>;
|
|
7477
6224
|
content: t.IntersectionC<[t.TypeC<{
|
|
7478
6225
|
text: t.StringC;
|
|
7479
6226
|
}>, t.PartialC<{
|
|
@@ -7583,12 +6330,12 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
7583
6330
|
label: t.StringC;
|
|
7584
6331
|
direction: t.StringC;
|
|
7585
6332
|
}>]>>>;
|
|
7586
|
-
}
|
|
7587
|
-
}
|
|
7588
|
-
}
|
|
7589
|
-
}>>, t.ExactC<t.TypeC<{
|
|
7590
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
6333
|
+
}>>;
|
|
6334
|
+
}>>]>>;
|
|
6335
|
+
}>>>;
|
|
7591
6336
|
}>>, t.ExactC<t.TypeC<{
|
|
6337
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
6338
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
7592
6339
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
7593
6340
|
type: t.LiteralC<"Link">;
|
|
7594
6341
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -7669,240 +6416,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
7669
6416
|
variant: t.StringC;
|
|
7670
6417
|
}>]>>]>]>;
|
|
7671
6418
|
}>>]>>;
|
|
7672
|
-
}
|
|
7673
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
7674
|
-
type: t.LiteralC<"tableRow">;
|
|
7675
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
7676
|
-
type: t.LiteralC<"tableHeader">;
|
|
7677
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
7678
|
-
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>;
|
|
7679
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
7680
|
-
text: t.StringC;
|
|
7681
|
-
}>, t.PartialC<{
|
|
7682
|
-
spans: t.Type<({
|
|
7683
|
-
data: ({
|
|
7684
|
-
__TYPE__: "ImageLink";
|
|
7685
|
-
} & {
|
|
7686
|
-
kind: "image";
|
|
7687
|
-
id: string;
|
|
7688
|
-
url: string;
|
|
7689
|
-
height: string;
|
|
7690
|
-
width: string;
|
|
7691
|
-
size: string;
|
|
7692
|
-
name: string;
|
|
7693
|
-
} & {
|
|
7694
|
-
date?: string | null | undefined;
|
|
7695
|
-
}) | ({
|
|
7696
|
-
__TYPE__: "FileLink";
|
|
7697
|
-
} & {
|
|
7698
|
-
kind: "file";
|
|
7699
|
-
id: string;
|
|
7700
|
-
url: string;
|
|
7701
|
-
name: string;
|
|
7702
|
-
size: string;
|
|
7703
|
-
} & {
|
|
7704
|
-
date?: string | null | undefined;
|
|
7705
|
-
}) | ({
|
|
7706
|
-
__TYPE__: "DocumentLink";
|
|
7707
|
-
} & {
|
|
7708
|
-
id: string;
|
|
7709
|
-
}) | ({
|
|
7710
|
-
__TYPE__: "ExternalLink";
|
|
7711
|
-
} & {
|
|
7712
|
-
url: string;
|
|
7713
|
-
} & {
|
|
7714
|
-
kind?: "web";
|
|
7715
|
-
target?: string | null | undefined;
|
|
7716
|
-
preview?: {
|
|
7717
|
-
title?: string;
|
|
7718
|
-
} | null | undefined;
|
|
7719
|
-
});
|
|
7720
|
-
start: number;
|
|
7721
|
-
end: number;
|
|
7722
|
-
type: "hyperlink";
|
|
7723
|
-
} | {
|
|
7724
|
-
data: string;
|
|
7725
|
-
start: number;
|
|
7726
|
-
end: number;
|
|
7727
|
-
type: "label";
|
|
7728
|
-
} | {
|
|
7729
|
-
start: number;
|
|
7730
|
-
end: number;
|
|
7731
|
-
type: "strong" | "em" | "list-item";
|
|
7732
|
-
})[], ({
|
|
7733
|
-
data: ({
|
|
7734
|
-
__TYPE__: "ImageLink";
|
|
7735
|
-
} & {
|
|
7736
|
-
kind: "image";
|
|
7737
|
-
id: string;
|
|
7738
|
-
url: string;
|
|
7739
|
-
height: string;
|
|
7740
|
-
width: string;
|
|
7741
|
-
size: string;
|
|
7742
|
-
name: string;
|
|
7743
|
-
} & {
|
|
7744
|
-
date?: string | null | undefined;
|
|
7745
|
-
}) | ({
|
|
7746
|
-
__TYPE__: "FileLink";
|
|
7747
|
-
} & {
|
|
7748
|
-
kind: "file";
|
|
7749
|
-
id: string;
|
|
7750
|
-
url: string;
|
|
7751
|
-
name: string;
|
|
7752
|
-
size: string;
|
|
7753
|
-
} & {
|
|
7754
|
-
date?: string | null | undefined;
|
|
7755
|
-
}) | ({
|
|
7756
|
-
__TYPE__: "DocumentLink";
|
|
7757
|
-
} & {
|
|
7758
|
-
id: string;
|
|
7759
|
-
}) | ({
|
|
7760
|
-
__TYPE__: "ExternalLink";
|
|
7761
|
-
} & {
|
|
7762
|
-
url: string;
|
|
7763
|
-
} & {
|
|
7764
|
-
kind?: "web";
|
|
7765
|
-
target?: string | null | undefined;
|
|
7766
|
-
preview?: {
|
|
7767
|
-
title?: string;
|
|
7768
|
-
} | null | undefined;
|
|
7769
|
-
});
|
|
7770
|
-
start: number;
|
|
7771
|
-
end: number;
|
|
7772
|
-
type: "hyperlink";
|
|
7773
|
-
} | {
|
|
7774
|
-
data: string;
|
|
7775
|
-
start: number;
|
|
7776
|
-
end: number;
|
|
7777
|
-
type: "label";
|
|
7778
|
-
} | {
|
|
7779
|
-
start: number;
|
|
7780
|
-
end: number;
|
|
7781
|
-
type: "strong" | "em" | "list-item";
|
|
7782
|
-
})[], unknown>;
|
|
7783
|
-
}>]>;
|
|
7784
|
-
}>, t.PartialC<{
|
|
7785
|
-
label: t.StringC;
|
|
7786
|
-
direction: t.StringC;
|
|
7787
|
-
}>]>>>;
|
|
7788
|
-
}>>, t.ExactC<t.TypeC<{
|
|
7789
|
-
type: t.LiteralC<"tableCell">;
|
|
7790
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
7791
|
-
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>;
|
|
7792
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
7793
|
-
text: t.StringC;
|
|
7794
|
-
}>, t.PartialC<{
|
|
7795
|
-
spans: t.Type<({
|
|
7796
|
-
data: ({
|
|
7797
|
-
__TYPE__: "ImageLink";
|
|
7798
|
-
} & {
|
|
7799
|
-
kind: "image";
|
|
7800
|
-
id: string;
|
|
7801
|
-
url: string;
|
|
7802
|
-
height: string;
|
|
7803
|
-
width: string;
|
|
7804
|
-
size: string;
|
|
7805
|
-
name: string;
|
|
7806
|
-
} & {
|
|
7807
|
-
date?: string | null | undefined;
|
|
7808
|
-
}) | ({
|
|
7809
|
-
__TYPE__: "FileLink";
|
|
7810
|
-
} & {
|
|
7811
|
-
kind: "file";
|
|
7812
|
-
id: string;
|
|
7813
|
-
url: string;
|
|
7814
|
-
name: string;
|
|
7815
|
-
size: string;
|
|
7816
|
-
} & {
|
|
7817
|
-
date?: string | null | undefined;
|
|
7818
|
-
}) | ({
|
|
7819
|
-
__TYPE__: "DocumentLink";
|
|
7820
|
-
} & {
|
|
7821
|
-
id: string;
|
|
7822
|
-
}) | ({
|
|
7823
|
-
__TYPE__: "ExternalLink";
|
|
7824
|
-
} & {
|
|
7825
|
-
url: string;
|
|
7826
|
-
} & {
|
|
7827
|
-
kind?: "web";
|
|
7828
|
-
target?: string | null | undefined;
|
|
7829
|
-
preview?: {
|
|
7830
|
-
title?: string;
|
|
7831
|
-
} | null | undefined;
|
|
7832
|
-
});
|
|
7833
|
-
start: number;
|
|
7834
|
-
end: number;
|
|
7835
|
-
type: "hyperlink";
|
|
7836
|
-
} | {
|
|
7837
|
-
data: string;
|
|
7838
|
-
start: number;
|
|
7839
|
-
end: number;
|
|
7840
|
-
type: "label";
|
|
7841
|
-
} | {
|
|
7842
|
-
start: number;
|
|
7843
|
-
end: number;
|
|
7844
|
-
type: "strong" | "em" | "list-item";
|
|
7845
|
-
})[], ({
|
|
7846
|
-
data: ({
|
|
7847
|
-
__TYPE__: "ImageLink";
|
|
7848
|
-
} & {
|
|
7849
|
-
kind: "image";
|
|
7850
|
-
id: string;
|
|
7851
|
-
url: string;
|
|
7852
|
-
height: string;
|
|
7853
|
-
width: string;
|
|
7854
|
-
size: string;
|
|
7855
|
-
name: string;
|
|
7856
|
-
} & {
|
|
7857
|
-
date?: string | null | undefined;
|
|
7858
|
-
}) | ({
|
|
7859
|
-
__TYPE__: "FileLink";
|
|
7860
|
-
} & {
|
|
7861
|
-
kind: "file";
|
|
7862
|
-
id: string;
|
|
7863
|
-
url: string;
|
|
7864
|
-
name: string;
|
|
7865
|
-
size: string;
|
|
7866
|
-
} & {
|
|
7867
|
-
date?: string | null | undefined;
|
|
7868
|
-
}) | ({
|
|
7869
|
-
__TYPE__: "DocumentLink";
|
|
7870
|
-
} & {
|
|
7871
|
-
id: string;
|
|
7872
|
-
}) | ({
|
|
7873
|
-
__TYPE__: "ExternalLink";
|
|
7874
|
-
} & {
|
|
7875
|
-
url: string;
|
|
7876
|
-
} & {
|
|
7877
|
-
kind?: "web";
|
|
7878
|
-
target?: string | null | undefined;
|
|
7879
|
-
preview?: {
|
|
7880
|
-
title?: string;
|
|
7881
|
-
} | null | undefined;
|
|
7882
|
-
});
|
|
7883
|
-
start: number;
|
|
7884
|
-
end: number;
|
|
7885
|
-
type: "hyperlink";
|
|
7886
|
-
} | {
|
|
7887
|
-
data: string;
|
|
7888
|
-
start: number;
|
|
7889
|
-
end: number;
|
|
7890
|
-
type: "label";
|
|
7891
|
-
} | {
|
|
7892
|
-
start: number;
|
|
7893
|
-
end: number;
|
|
7894
|
-
type: "strong" | "em" | "list-item";
|
|
7895
|
-
})[], unknown>;
|
|
7896
|
-
}>]>;
|
|
7897
|
-
}>, t.PartialC<{
|
|
7898
|
-
label: t.StringC;
|
|
7899
|
-
direction: t.StringC;
|
|
7900
|
-
}>]>>>;
|
|
7901
|
-
}>>]>>;
|
|
7902
|
-
}>>>;
|
|
7903
|
-
}>>, t.ExactC<t.TypeC<{
|
|
7904
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
7905
|
-
}>>]>]>>;
|
|
6419
|
+
}>>]>>;
|
|
7906
6420
|
repeat: t.ArrayC<t.ExactC<t.TypeC<{
|
|
7907
6421
|
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
7908
6422
|
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -8221,7 +6735,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
8221
6735
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
8222
6736
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
8223
6737
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
8224
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
6738
|
+
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>;
|
|
8225
6739
|
content: t.IntersectionC<[t.TypeC<{
|
|
8226
6740
|
text: t.StringC;
|
|
8227
6741
|
}>, t.PartialC<{
|
|
@@ -8330,14 +6844,18 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
8330
6844
|
}>, t.PartialC<{
|
|
8331
6845
|
label: t.StringC;
|
|
8332
6846
|
direction: t.StringC;
|
|
8333
|
-
}>]
|
|
8334
|
-
|
|
8335
|
-
|
|
8336
|
-
|
|
8337
|
-
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
|
|
6847
|
+
}>]>>]>>;
|
|
6848
|
+
}>>, t.ExactC<t.TypeC<{
|
|
6849
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
6850
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
6851
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
6852
|
+
type: t.LiteralC<"tableRow">;
|
|
6853
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
6854
|
+
type: t.LiteralC<"tableHeader">;
|
|
6855
|
+
content: t.ExactC<t.TypeC<{
|
|
6856
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
6857
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
6858
|
+
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>;
|
|
8341
6859
|
content: t.IntersectionC<[t.TypeC<{
|
|
8342
6860
|
text: t.StringC;
|
|
8343
6861
|
}>, t.PartialC<{
|
|
@@ -8447,10 +6965,13 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
8447
6965
|
label: t.StringC;
|
|
8448
6966
|
direction: t.StringC;
|
|
8449
6967
|
}>]>>>;
|
|
8450
|
-
}
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
6968
|
+
}>>;
|
|
6969
|
+
}>>, t.ExactC<t.TypeC<{
|
|
6970
|
+
type: t.LiteralC<"tableCell">;
|
|
6971
|
+
content: t.ExactC<t.TypeC<{
|
|
6972
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
6973
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
6974
|
+
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>;
|
|
8454
6975
|
content: t.IntersectionC<[t.TypeC<{
|
|
8455
6976
|
text: t.StringC;
|
|
8456
6977
|
}>, t.PartialC<{
|
|
@@ -8560,12 +7081,12 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
8560
7081
|
label: t.StringC;
|
|
8561
7082
|
direction: t.StringC;
|
|
8562
7083
|
}>]>>>;
|
|
8563
|
-
}
|
|
8564
|
-
}
|
|
8565
|
-
}
|
|
8566
|
-
}>>, t.ExactC<t.TypeC<{
|
|
8567
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
7084
|
+
}>>;
|
|
7085
|
+
}>>]>>;
|
|
7086
|
+
}>>>;
|
|
8568
7087
|
}>>, t.ExactC<t.TypeC<{
|
|
7088
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
7089
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
8569
7090
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
8570
7091
|
type: t.LiteralC<"Link">;
|
|
8571
7092
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -8646,240 +7167,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
8646
7167
|
variant: t.StringC;
|
|
8647
7168
|
}>]>>]>]>;
|
|
8648
7169
|
}>>]>>;
|
|
8649
|
-
}
|
|
8650
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
8651
|
-
type: t.LiteralC<"tableRow">;
|
|
8652
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
8653
|
-
type: t.LiteralC<"tableHeader">;
|
|
8654
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
8655
|
-
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>;
|
|
8656
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
8657
|
-
text: t.StringC;
|
|
8658
|
-
}>, t.PartialC<{
|
|
8659
|
-
spans: t.Type<({
|
|
8660
|
-
data: ({
|
|
8661
|
-
__TYPE__: "ImageLink";
|
|
8662
|
-
} & {
|
|
8663
|
-
kind: "image";
|
|
8664
|
-
id: string;
|
|
8665
|
-
url: string;
|
|
8666
|
-
height: string;
|
|
8667
|
-
width: string;
|
|
8668
|
-
size: string;
|
|
8669
|
-
name: string;
|
|
8670
|
-
} & {
|
|
8671
|
-
date?: string | null | undefined;
|
|
8672
|
-
}) | ({
|
|
8673
|
-
__TYPE__: "FileLink";
|
|
8674
|
-
} & {
|
|
8675
|
-
kind: "file";
|
|
8676
|
-
id: string;
|
|
8677
|
-
url: string;
|
|
8678
|
-
name: string;
|
|
8679
|
-
size: string;
|
|
8680
|
-
} & {
|
|
8681
|
-
date?: string | null | undefined;
|
|
8682
|
-
}) | ({
|
|
8683
|
-
__TYPE__: "DocumentLink";
|
|
8684
|
-
} & {
|
|
8685
|
-
id: string;
|
|
8686
|
-
}) | ({
|
|
8687
|
-
__TYPE__: "ExternalLink";
|
|
8688
|
-
} & {
|
|
8689
|
-
url: string;
|
|
8690
|
-
} & {
|
|
8691
|
-
kind?: "web";
|
|
8692
|
-
target?: string | null | undefined;
|
|
8693
|
-
preview?: {
|
|
8694
|
-
title?: string;
|
|
8695
|
-
} | null | undefined;
|
|
8696
|
-
});
|
|
8697
|
-
start: number;
|
|
8698
|
-
end: number;
|
|
8699
|
-
type: "hyperlink";
|
|
8700
|
-
} | {
|
|
8701
|
-
data: string;
|
|
8702
|
-
start: number;
|
|
8703
|
-
end: number;
|
|
8704
|
-
type: "label";
|
|
8705
|
-
} | {
|
|
8706
|
-
start: number;
|
|
8707
|
-
end: number;
|
|
8708
|
-
type: "strong" | "em" | "list-item";
|
|
8709
|
-
})[], ({
|
|
8710
|
-
data: ({
|
|
8711
|
-
__TYPE__: "ImageLink";
|
|
8712
|
-
} & {
|
|
8713
|
-
kind: "image";
|
|
8714
|
-
id: string;
|
|
8715
|
-
url: string;
|
|
8716
|
-
height: string;
|
|
8717
|
-
width: string;
|
|
8718
|
-
size: string;
|
|
8719
|
-
name: string;
|
|
8720
|
-
} & {
|
|
8721
|
-
date?: string | null | undefined;
|
|
8722
|
-
}) | ({
|
|
8723
|
-
__TYPE__: "FileLink";
|
|
8724
|
-
} & {
|
|
8725
|
-
kind: "file";
|
|
8726
|
-
id: string;
|
|
8727
|
-
url: string;
|
|
8728
|
-
name: string;
|
|
8729
|
-
size: string;
|
|
8730
|
-
} & {
|
|
8731
|
-
date?: string | null | undefined;
|
|
8732
|
-
}) | ({
|
|
8733
|
-
__TYPE__: "DocumentLink";
|
|
8734
|
-
} & {
|
|
8735
|
-
id: string;
|
|
8736
|
-
}) | ({
|
|
8737
|
-
__TYPE__: "ExternalLink";
|
|
8738
|
-
} & {
|
|
8739
|
-
url: string;
|
|
8740
|
-
} & {
|
|
8741
|
-
kind?: "web";
|
|
8742
|
-
target?: string | null | undefined;
|
|
8743
|
-
preview?: {
|
|
8744
|
-
title?: string;
|
|
8745
|
-
} | null | undefined;
|
|
8746
|
-
});
|
|
8747
|
-
start: number;
|
|
8748
|
-
end: number;
|
|
8749
|
-
type: "hyperlink";
|
|
8750
|
-
} | {
|
|
8751
|
-
data: string;
|
|
8752
|
-
start: number;
|
|
8753
|
-
end: number;
|
|
8754
|
-
type: "label";
|
|
8755
|
-
} | {
|
|
8756
|
-
start: number;
|
|
8757
|
-
end: number;
|
|
8758
|
-
type: "strong" | "em" | "list-item";
|
|
8759
|
-
})[], unknown>;
|
|
8760
|
-
}>]>;
|
|
8761
|
-
}>, t.PartialC<{
|
|
8762
|
-
label: t.StringC;
|
|
8763
|
-
direction: t.StringC;
|
|
8764
|
-
}>]>>>;
|
|
8765
|
-
}>>, t.ExactC<t.TypeC<{
|
|
8766
|
-
type: t.LiteralC<"tableCell">;
|
|
8767
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
8768
|
-
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>;
|
|
8769
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
8770
|
-
text: t.StringC;
|
|
8771
|
-
}>, t.PartialC<{
|
|
8772
|
-
spans: t.Type<({
|
|
8773
|
-
data: ({
|
|
8774
|
-
__TYPE__: "ImageLink";
|
|
8775
|
-
} & {
|
|
8776
|
-
kind: "image";
|
|
8777
|
-
id: string;
|
|
8778
|
-
url: string;
|
|
8779
|
-
height: string;
|
|
8780
|
-
width: string;
|
|
8781
|
-
size: string;
|
|
8782
|
-
name: string;
|
|
8783
|
-
} & {
|
|
8784
|
-
date?: string | null | undefined;
|
|
8785
|
-
}) | ({
|
|
8786
|
-
__TYPE__: "FileLink";
|
|
8787
|
-
} & {
|
|
8788
|
-
kind: "file";
|
|
8789
|
-
id: string;
|
|
8790
|
-
url: string;
|
|
8791
|
-
name: string;
|
|
8792
|
-
size: string;
|
|
8793
|
-
} & {
|
|
8794
|
-
date?: string | null | undefined;
|
|
8795
|
-
}) | ({
|
|
8796
|
-
__TYPE__: "DocumentLink";
|
|
8797
|
-
} & {
|
|
8798
|
-
id: string;
|
|
8799
|
-
}) | ({
|
|
8800
|
-
__TYPE__: "ExternalLink";
|
|
8801
|
-
} & {
|
|
8802
|
-
url: string;
|
|
8803
|
-
} & {
|
|
8804
|
-
kind?: "web";
|
|
8805
|
-
target?: string | null | undefined;
|
|
8806
|
-
preview?: {
|
|
8807
|
-
title?: string;
|
|
8808
|
-
} | null | undefined;
|
|
8809
|
-
});
|
|
8810
|
-
start: number;
|
|
8811
|
-
end: number;
|
|
8812
|
-
type: "hyperlink";
|
|
8813
|
-
} | {
|
|
8814
|
-
data: string;
|
|
8815
|
-
start: number;
|
|
8816
|
-
end: number;
|
|
8817
|
-
type: "label";
|
|
8818
|
-
} | {
|
|
8819
|
-
start: number;
|
|
8820
|
-
end: number;
|
|
8821
|
-
type: "strong" | "em" | "list-item";
|
|
8822
|
-
})[], ({
|
|
8823
|
-
data: ({
|
|
8824
|
-
__TYPE__: "ImageLink";
|
|
8825
|
-
} & {
|
|
8826
|
-
kind: "image";
|
|
8827
|
-
id: string;
|
|
8828
|
-
url: string;
|
|
8829
|
-
height: string;
|
|
8830
|
-
width: string;
|
|
8831
|
-
size: string;
|
|
8832
|
-
name: string;
|
|
8833
|
-
} & {
|
|
8834
|
-
date?: string | null | undefined;
|
|
8835
|
-
}) | ({
|
|
8836
|
-
__TYPE__: "FileLink";
|
|
8837
|
-
} & {
|
|
8838
|
-
kind: "file";
|
|
8839
|
-
id: string;
|
|
8840
|
-
url: string;
|
|
8841
|
-
name: string;
|
|
8842
|
-
size: string;
|
|
8843
|
-
} & {
|
|
8844
|
-
date?: string | null | undefined;
|
|
8845
|
-
}) | ({
|
|
8846
|
-
__TYPE__: "DocumentLink";
|
|
8847
|
-
} & {
|
|
8848
|
-
id: string;
|
|
8849
|
-
}) | ({
|
|
8850
|
-
__TYPE__: "ExternalLink";
|
|
8851
|
-
} & {
|
|
8852
|
-
url: string;
|
|
8853
|
-
} & {
|
|
8854
|
-
kind?: "web";
|
|
8855
|
-
target?: string | null | undefined;
|
|
8856
|
-
preview?: {
|
|
8857
|
-
title?: string;
|
|
8858
|
-
} | null | undefined;
|
|
8859
|
-
});
|
|
8860
|
-
start: number;
|
|
8861
|
-
end: number;
|
|
8862
|
-
type: "hyperlink";
|
|
8863
|
-
} | {
|
|
8864
|
-
data: string;
|
|
8865
|
-
start: number;
|
|
8866
|
-
end: number;
|
|
8867
|
-
type: "label";
|
|
8868
|
-
} | {
|
|
8869
|
-
start: number;
|
|
8870
|
-
end: number;
|
|
8871
|
-
type: "strong" | "em" | "list-item";
|
|
8872
|
-
})[], unknown>;
|
|
8873
|
-
}>]>;
|
|
8874
|
-
}>, t.PartialC<{
|
|
8875
|
-
label: t.StringC;
|
|
8876
|
-
direction: t.StringC;
|
|
8877
|
-
}>]>>>;
|
|
8878
|
-
}>>]>>;
|
|
8879
|
-
}>>>;
|
|
8880
|
-
}>>, t.ExactC<t.TypeC<{
|
|
8881
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
8882
|
-
}>>]>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
|
|
7170
|
+
}>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
|
|
8883
7171
|
}>>>;
|
|
8884
7172
|
}>>, t.ExactC<t.TypeC<{
|
|
8885
7173
|
__TYPE__: t.LiteralC<"SharedSliceContent">;
|
|
@@ -9200,7 +7488,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
9200
7488
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
9201
7489
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
9202
7490
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
9203
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
7491
|
+
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>;
|
|
9204
7492
|
content: t.IntersectionC<[t.TypeC<{
|
|
9205
7493
|
text: t.StringC;
|
|
9206
7494
|
}>, t.PartialC<{
|
|
@@ -9309,14 +7597,18 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
9309
7597
|
}>, t.PartialC<{
|
|
9310
7598
|
label: t.StringC;
|
|
9311
7599
|
direction: t.StringC;
|
|
9312
|
-
}>]
|
|
9313
|
-
|
|
9314
|
-
|
|
9315
|
-
|
|
9316
|
-
|
|
9317
|
-
|
|
9318
|
-
|
|
9319
|
-
|
|
7600
|
+
}>]>>]>>;
|
|
7601
|
+
}>>, t.ExactC<t.TypeC<{
|
|
7602
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
7603
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
7604
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
7605
|
+
type: t.LiteralC<"tableRow">;
|
|
7606
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
7607
|
+
type: t.LiteralC<"tableHeader">;
|
|
7608
|
+
content: t.ExactC<t.TypeC<{
|
|
7609
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
7610
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
7611
|
+
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>;
|
|
9320
7612
|
content: t.IntersectionC<[t.TypeC<{
|
|
9321
7613
|
text: t.StringC;
|
|
9322
7614
|
}>, t.PartialC<{
|
|
@@ -9426,10 +7718,13 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
9426
7718
|
label: t.StringC;
|
|
9427
7719
|
direction: t.StringC;
|
|
9428
7720
|
}>]>>>;
|
|
9429
|
-
}
|
|
9430
|
-
|
|
9431
|
-
|
|
9432
|
-
|
|
7721
|
+
}>>;
|
|
7722
|
+
}>>, t.ExactC<t.TypeC<{
|
|
7723
|
+
type: t.LiteralC<"tableCell">;
|
|
7724
|
+
content: t.ExactC<t.TypeC<{
|
|
7725
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
7726
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
7727
|
+
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>;
|
|
9433
7728
|
content: t.IntersectionC<[t.TypeC<{
|
|
9434
7729
|
text: t.StringC;
|
|
9435
7730
|
}>, t.PartialC<{
|
|
@@ -9539,12 +7834,12 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
9539
7834
|
label: t.StringC;
|
|
9540
7835
|
direction: t.StringC;
|
|
9541
7836
|
}>]>>>;
|
|
9542
|
-
}
|
|
9543
|
-
}
|
|
9544
|
-
}
|
|
9545
|
-
}>>, t.ExactC<t.TypeC<{
|
|
9546
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
7837
|
+
}>>;
|
|
7838
|
+
}>>]>>;
|
|
7839
|
+
}>>>;
|
|
9547
7840
|
}>>, t.ExactC<t.TypeC<{
|
|
7841
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
7842
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
9548
7843
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
9549
7844
|
type: t.LiteralC<"Link">;
|
|
9550
7845
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -9617,248 +7912,15 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
9617
7912
|
text: t.StringC;
|
|
9618
7913
|
variant: t.StringC;
|
|
9619
7914
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
9620
|
-
__TYPE__: t.LiteralC<"AnyLink">;
|
|
9621
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
9622
|
-
kind: t.LiteralC<"any">;
|
|
9623
|
-
}>, t.PartialC<{
|
|
9624
|
-
text: t.StringC;
|
|
9625
|
-
variant: t.StringC;
|
|
9626
|
-
}>]>>]>]>;
|
|
9627
|
-
}>>]>>;
|
|
9628
|
-
}
|
|
9629
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
9630
|
-
type: t.LiteralC<"tableRow">;
|
|
9631
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
9632
|
-
type: t.LiteralC<"tableHeader">;
|
|
9633
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
9634
|
-
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>;
|
|
9635
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
9636
|
-
text: t.StringC;
|
|
9637
|
-
}>, t.PartialC<{
|
|
9638
|
-
spans: t.Type<({
|
|
9639
|
-
data: ({
|
|
9640
|
-
__TYPE__: "ImageLink";
|
|
9641
|
-
} & {
|
|
9642
|
-
kind: "image";
|
|
9643
|
-
id: string;
|
|
9644
|
-
url: string;
|
|
9645
|
-
height: string;
|
|
9646
|
-
width: string;
|
|
9647
|
-
size: string;
|
|
9648
|
-
name: string;
|
|
9649
|
-
} & {
|
|
9650
|
-
date?: string | null | undefined;
|
|
9651
|
-
}) | ({
|
|
9652
|
-
__TYPE__: "FileLink";
|
|
9653
|
-
} & {
|
|
9654
|
-
kind: "file";
|
|
9655
|
-
id: string;
|
|
9656
|
-
url: string;
|
|
9657
|
-
name: string;
|
|
9658
|
-
size: string;
|
|
9659
|
-
} & {
|
|
9660
|
-
date?: string | null | undefined;
|
|
9661
|
-
}) | ({
|
|
9662
|
-
__TYPE__: "DocumentLink";
|
|
9663
|
-
} & {
|
|
9664
|
-
id: string;
|
|
9665
|
-
}) | ({
|
|
9666
|
-
__TYPE__: "ExternalLink";
|
|
9667
|
-
} & {
|
|
9668
|
-
url: string;
|
|
9669
|
-
} & {
|
|
9670
|
-
kind?: "web";
|
|
9671
|
-
target?: string | null | undefined;
|
|
9672
|
-
preview?: {
|
|
9673
|
-
title?: string;
|
|
9674
|
-
} | null | undefined;
|
|
9675
|
-
});
|
|
9676
|
-
start: number;
|
|
9677
|
-
end: number;
|
|
9678
|
-
type: "hyperlink";
|
|
9679
|
-
} | {
|
|
9680
|
-
data: string;
|
|
9681
|
-
start: number;
|
|
9682
|
-
end: number;
|
|
9683
|
-
type: "label";
|
|
9684
|
-
} | {
|
|
9685
|
-
start: number;
|
|
9686
|
-
end: number;
|
|
9687
|
-
type: "strong" | "em" | "list-item";
|
|
9688
|
-
})[], ({
|
|
9689
|
-
data: ({
|
|
9690
|
-
__TYPE__: "ImageLink";
|
|
9691
|
-
} & {
|
|
9692
|
-
kind: "image";
|
|
9693
|
-
id: string;
|
|
9694
|
-
url: string;
|
|
9695
|
-
height: string;
|
|
9696
|
-
width: string;
|
|
9697
|
-
size: string;
|
|
9698
|
-
name: string;
|
|
9699
|
-
} & {
|
|
9700
|
-
date?: string | null | undefined;
|
|
9701
|
-
}) | ({
|
|
9702
|
-
__TYPE__: "FileLink";
|
|
9703
|
-
} & {
|
|
9704
|
-
kind: "file";
|
|
9705
|
-
id: string;
|
|
9706
|
-
url: string;
|
|
9707
|
-
name: string;
|
|
9708
|
-
size: string;
|
|
9709
|
-
} & {
|
|
9710
|
-
date?: string | null | undefined;
|
|
9711
|
-
}) | ({
|
|
9712
|
-
__TYPE__: "DocumentLink";
|
|
9713
|
-
} & {
|
|
9714
|
-
id: string;
|
|
9715
|
-
}) | ({
|
|
9716
|
-
__TYPE__: "ExternalLink";
|
|
9717
|
-
} & {
|
|
9718
|
-
url: string;
|
|
9719
|
-
} & {
|
|
9720
|
-
kind?: "web";
|
|
9721
|
-
target?: string | null | undefined;
|
|
9722
|
-
preview?: {
|
|
9723
|
-
title?: string;
|
|
9724
|
-
} | null | undefined;
|
|
9725
|
-
});
|
|
9726
|
-
start: number;
|
|
9727
|
-
end: number;
|
|
9728
|
-
type: "hyperlink";
|
|
9729
|
-
} | {
|
|
9730
|
-
data: string;
|
|
9731
|
-
start: number;
|
|
9732
|
-
end: number;
|
|
9733
|
-
type: "label";
|
|
9734
|
-
} | {
|
|
9735
|
-
start: number;
|
|
9736
|
-
end: number;
|
|
9737
|
-
type: "strong" | "em" | "list-item";
|
|
9738
|
-
})[], unknown>;
|
|
9739
|
-
}>]>;
|
|
9740
|
-
}>, t.PartialC<{
|
|
9741
|
-
label: t.StringC;
|
|
9742
|
-
direction: t.StringC;
|
|
9743
|
-
}>]>>>;
|
|
9744
|
-
}>>, t.ExactC<t.TypeC<{
|
|
9745
|
-
type: t.LiteralC<"tableCell">;
|
|
9746
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
9747
|
-
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>;
|
|
9748
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
9749
|
-
text: t.StringC;
|
|
9750
|
-
}>, t.PartialC<{
|
|
9751
|
-
spans: t.Type<({
|
|
9752
|
-
data: ({
|
|
9753
|
-
__TYPE__: "ImageLink";
|
|
9754
|
-
} & {
|
|
9755
|
-
kind: "image";
|
|
9756
|
-
id: string;
|
|
9757
|
-
url: string;
|
|
9758
|
-
height: string;
|
|
9759
|
-
width: string;
|
|
9760
|
-
size: string;
|
|
9761
|
-
name: string;
|
|
9762
|
-
} & {
|
|
9763
|
-
date?: string | null | undefined;
|
|
9764
|
-
}) | ({
|
|
9765
|
-
__TYPE__: "FileLink";
|
|
9766
|
-
} & {
|
|
9767
|
-
kind: "file";
|
|
9768
|
-
id: string;
|
|
9769
|
-
url: string;
|
|
9770
|
-
name: string;
|
|
9771
|
-
size: string;
|
|
9772
|
-
} & {
|
|
9773
|
-
date?: string | null | undefined;
|
|
9774
|
-
}) | ({
|
|
9775
|
-
__TYPE__: "DocumentLink";
|
|
9776
|
-
} & {
|
|
9777
|
-
id: string;
|
|
9778
|
-
}) | ({
|
|
9779
|
-
__TYPE__: "ExternalLink";
|
|
9780
|
-
} & {
|
|
9781
|
-
url: string;
|
|
9782
|
-
} & {
|
|
9783
|
-
kind?: "web";
|
|
9784
|
-
target?: string | null | undefined;
|
|
9785
|
-
preview?: {
|
|
9786
|
-
title?: string;
|
|
9787
|
-
} | null | undefined;
|
|
9788
|
-
});
|
|
9789
|
-
start: number;
|
|
9790
|
-
end: number;
|
|
9791
|
-
type: "hyperlink";
|
|
9792
|
-
} | {
|
|
9793
|
-
data: string;
|
|
9794
|
-
start: number;
|
|
9795
|
-
end: number;
|
|
9796
|
-
type: "label";
|
|
9797
|
-
} | {
|
|
9798
|
-
start: number;
|
|
9799
|
-
end: number;
|
|
9800
|
-
type: "strong" | "em" | "list-item";
|
|
9801
|
-
})[], ({
|
|
9802
|
-
data: ({
|
|
9803
|
-
__TYPE__: "ImageLink";
|
|
9804
|
-
} & {
|
|
9805
|
-
kind: "image";
|
|
9806
|
-
id: string;
|
|
9807
|
-
url: string;
|
|
9808
|
-
height: string;
|
|
9809
|
-
width: string;
|
|
9810
|
-
size: string;
|
|
9811
|
-
name: string;
|
|
9812
|
-
} & {
|
|
9813
|
-
date?: string | null | undefined;
|
|
9814
|
-
}) | ({
|
|
9815
|
-
__TYPE__: "FileLink";
|
|
9816
|
-
} & {
|
|
9817
|
-
kind: "file";
|
|
9818
|
-
id: string;
|
|
9819
|
-
url: string;
|
|
9820
|
-
name: string;
|
|
9821
|
-
size: string;
|
|
9822
|
-
} & {
|
|
9823
|
-
date?: string | null | undefined;
|
|
9824
|
-
}) | ({
|
|
9825
|
-
__TYPE__: "DocumentLink";
|
|
9826
|
-
} & {
|
|
9827
|
-
id: string;
|
|
9828
|
-
}) | ({
|
|
9829
|
-
__TYPE__: "ExternalLink";
|
|
9830
|
-
} & {
|
|
9831
|
-
url: string;
|
|
9832
|
-
} & {
|
|
9833
|
-
kind?: "web";
|
|
9834
|
-
target?: string | null | undefined;
|
|
9835
|
-
preview?: {
|
|
9836
|
-
title?: string;
|
|
9837
|
-
} | null | undefined;
|
|
9838
|
-
});
|
|
9839
|
-
start: number;
|
|
9840
|
-
end: number;
|
|
9841
|
-
type: "hyperlink";
|
|
9842
|
-
} | {
|
|
9843
|
-
data: string;
|
|
9844
|
-
start: number;
|
|
9845
|
-
end: number;
|
|
9846
|
-
type: "label";
|
|
9847
|
-
} | {
|
|
9848
|
-
start: number;
|
|
9849
|
-
end: number;
|
|
9850
|
-
type: "strong" | "em" | "list-item";
|
|
9851
|
-
})[], unknown>;
|
|
9852
|
-
}>]>;
|
|
9853
|
-
}>, t.PartialC<{
|
|
9854
|
-
label: t.StringC;
|
|
9855
|
-
direction: t.StringC;
|
|
9856
|
-
}>]>>>;
|
|
9857
|
-
}>>]>>;
|
|
9858
|
-
}>>>;
|
|
9859
|
-
}>>, t.ExactC<t.TypeC<{
|
|
9860
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
9861
|
-
}>>]>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>>;
|
|
7915
|
+
__TYPE__: t.LiteralC<"AnyLink">;
|
|
7916
|
+
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
7917
|
+
kind: t.LiteralC<"any">;
|
|
7918
|
+
}>, t.PartialC<{
|
|
7919
|
+
text: t.StringC;
|
|
7920
|
+
variant: t.StringC;
|
|
7921
|
+
}>]>>]>]>;
|
|
7922
|
+
}>>]>>;
|
|
7923
|
+
}>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>>;
|
|
9862
7924
|
items: t.ArrayC<t.ExactC<t.TypeC<{
|
|
9863
7925
|
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
9864
7926
|
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -10177,7 +8239,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
10177
8239
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
10178
8240
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
10179
8241
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
10180
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
8242
|
+
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>;
|
|
10181
8243
|
content: t.IntersectionC<[t.TypeC<{
|
|
10182
8244
|
text: t.StringC;
|
|
10183
8245
|
}>, t.PartialC<{
|
|
@@ -10286,14 +8348,18 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
10286
8348
|
}>, t.PartialC<{
|
|
10287
8349
|
label: t.StringC;
|
|
10288
8350
|
direction: t.StringC;
|
|
10289
|
-
}>]
|
|
10290
|
-
|
|
10291
|
-
|
|
10292
|
-
|
|
10293
|
-
|
|
10294
|
-
|
|
10295
|
-
|
|
10296
|
-
|
|
8351
|
+
}>]>>]>>;
|
|
8352
|
+
}>>, t.ExactC<t.TypeC<{
|
|
8353
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
8354
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
8355
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
8356
|
+
type: t.LiteralC<"tableRow">;
|
|
8357
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
8358
|
+
type: t.LiteralC<"tableHeader">;
|
|
8359
|
+
content: t.ExactC<t.TypeC<{
|
|
8360
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
8361
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
8362
|
+
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>;
|
|
10297
8363
|
content: t.IntersectionC<[t.TypeC<{
|
|
10298
8364
|
text: t.StringC;
|
|
10299
8365
|
}>, t.PartialC<{
|
|
@@ -10403,10 +8469,13 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
10403
8469
|
label: t.StringC;
|
|
10404
8470
|
direction: t.StringC;
|
|
10405
8471
|
}>]>>>;
|
|
10406
|
-
}
|
|
10407
|
-
|
|
10408
|
-
|
|
10409
|
-
|
|
8472
|
+
}>>;
|
|
8473
|
+
}>>, t.ExactC<t.TypeC<{
|
|
8474
|
+
type: t.LiteralC<"tableCell">;
|
|
8475
|
+
content: t.ExactC<t.TypeC<{
|
|
8476
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
8477
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
8478
|
+
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>;
|
|
10410
8479
|
content: t.IntersectionC<[t.TypeC<{
|
|
10411
8480
|
text: t.StringC;
|
|
10412
8481
|
}>, t.PartialC<{
|
|
@@ -10516,12 +8585,12 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
10516
8585
|
label: t.StringC;
|
|
10517
8586
|
direction: t.StringC;
|
|
10518
8587
|
}>]>>>;
|
|
10519
|
-
}
|
|
10520
|
-
}
|
|
10521
|
-
}
|
|
10522
|
-
}>>, t.ExactC<t.TypeC<{
|
|
10523
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
8588
|
+
}>>;
|
|
8589
|
+
}>>]>>;
|
|
8590
|
+
}>>>;
|
|
10524
8591
|
}>>, t.ExactC<t.TypeC<{
|
|
8592
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
8593
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
10525
8594
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
10526
8595
|
type: t.LiteralC<"Link">;
|
|
10527
8596
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -10602,240 +8671,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
10602
8671
|
variant: t.StringC;
|
|
10603
8672
|
}>]>>]>]>;
|
|
10604
8673
|
}>>]>>;
|
|
10605
|
-
}
|
|
10606
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
10607
|
-
type: t.LiteralC<"tableRow">;
|
|
10608
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
10609
|
-
type: t.LiteralC<"tableHeader">;
|
|
10610
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
10611
|
-
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>;
|
|
10612
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
10613
|
-
text: t.StringC;
|
|
10614
|
-
}>, t.PartialC<{
|
|
10615
|
-
spans: t.Type<({
|
|
10616
|
-
data: ({
|
|
10617
|
-
__TYPE__: "ImageLink";
|
|
10618
|
-
} & {
|
|
10619
|
-
kind: "image";
|
|
10620
|
-
id: string;
|
|
10621
|
-
url: string;
|
|
10622
|
-
height: string;
|
|
10623
|
-
width: string;
|
|
10624
|
-
size: string;
|
|
10625
|
-
name: string;
|
|
10626
|
-
} & {
|
|
10627
|
-
date?: string | null | undefined;
|
|
10628
|
-
}) | ({
|
|
10629
|
-
__TYPE__: "FileLink";
|
|
10630
|
-
} & {
|
|
10631
|
-
kind: "file";
|
|
10632
|
-
id: string;
|
|
10633
|
-
url: string;
|
|
10634
|
-
name: string;
|
|
10635
|
-
size: string;
|
|
10636
|
-
} & {
|
|
10637
|
-
date?: string | null | undefined;
|
|
10638
|
-
}) | ({
|
|
10639
|
-
__TYPE__: "DocumentLink";
|
|
10640
|
-
} & {
|
|
10641
|
-
id: string;
|
|
10642
|
-
}) | ({
|
|
10643
|
-
__TYPE__: "ExternalLink";
|
|
10644
|
-
} & {
|
|
10645
|
-
url: string;
|
|
10646
|
-
} & {
|
|
10647
|
-
kind?: "web";
|
|
10648
|
-
target?: string | null | undefined;
|
|
10649
|
-
preview?: {
|
|
10650
|
-
title?: string;
|
|
10651
|
-
} | null | undefined;
|
|
10652
|
-
});
|
|
10653
|
-
start: number;
|
|
10654
|
-
end: number;
|
|
10655
|
-
type: "hyperlink";
|
|
10656
|
-
} | {
|
|
10657
|
-
data: string;
|
|
10658
|
-
start: number;
|
|
10659
|
-
end: number;
|
|
10660
|
-
type: "label";
|
|
10661
|
-
} | {
|
|
10662
|
-
start: number;
|
|
10663
|
-
end: number;
|
|
10664
|
-
type: "strong" | "em" | "list-item";
|
|
10665
|
-
})[], ({
|
|
10666
|
-
data: ({
|
|
10667
|
-
__TYPE__: "ImageLink";
|
|
10668
|
-
} & {
|
|
10669
|
-
kind: "image";
|
|
10670
|
-
id: string;
|
|
10671
|
-
url: string;
|
|
10672
|
-
height: string;
|
|
10673
|
-
width: string;
|
|
10674
|
-
size: string;
|
|
10675
|
-
name: string;
|
|
10676
|
-
} & {
|
|
10677
|
-
date?: string | null | undefined;
|
|
10678
|
-
}) | ({
|
|
10679
|
-
__TYPE__: "FileLink";
|
|
10680
|
-
} & {
|
|
10681
|
-
kind: "file";
|
|
10682
|
-
id: string;
|
|
10683
|
-
url: string;
|
|
10684
|
-
name: string;
|
|
10685
|
-
size: string;
|
|
10686
|
-
} & {
|
|
10687
|
-
date?: string | null | undefined;
|
|
10688
|
-
}) | ({
|
|
10689
|
-
__TYPE__: "DocumentLink";
|
|
10690
|
-
} & {
|
|
10691
|
-
id: string;
|
|
10692
|
-
}) | ({
|
|
10693
|
-
__TYPE__: "ExternalLink";
|
|
10694
|
-
} & {
|
|
10695
|
-
url: string;
|
|
10696
|
-
} & {
|
|
10697
|
-
kind?: "web";
|
|
10698
|
-
target?: string | null | undefined;
|
|
10699
|
-
preview?: {
|
|
10700
|
-
title?: string;
|
|
10701
|
-
} | null | undefined;
|
|
10702
|
-
});
|
|
10703
|
-
start: number;
|
|
10704
|
-
end: number;
|
|
10705
|
-
type: "hyperlink";
|
|
10706
|
-
} | {
|
|
10707
|
-
data: string;
|
|
10708
|
-
start: number;
|
|
10709
|
-
end: number;
|
|
10710
|
-
type: "label";
|
|
10711
|
-
} | {
|
|
10712
|
-
start: number;
|
|
10713
|
-
end: number;
|
|
10714
|
-
type: "strong" | "em" | "list-item";
|
|
10715
|
-
})[], unknown>;
|
|
10716
|
-
}>]>;
|
|
10717
|
-
}>, t.PartialC<{
|
|
10718
|
-
label: t.StringC;
|
|
10719
|
-
direction: t.StringC;
|
|
10720
|
-
}>]>>>;
|
|
10721
|
-
}>>, t.ExactC<t.TypeC<{
|
|
10722
|
-
type: t.LiteralC<"tableCell">;
|
|
10723
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
10724
|
-
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>;
|
|
10725
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
10726
|
-
text: t.StringC;
|
|
10727
|
-
}>, t.PartialC<{
|
|
10728
|
-
spans: t.Type<({
|
|
10729
|
-
data: ({
|
|
10730
|
-
__TYPE__: "ImageLink";
|
|
10731
|
-
} & {
|
|
10732
|
-
kind: "image";
|
|
10733
|
-
id: string;
|
|
10734
|
-
url: string;
|
|
10735
|
-
height: string;
|
|
10736
|
-
width: string;
|
|
10737
|
-
size: string;
|
|
10738
|
-
name: string;
|
|
10739
|
-
} & {
|
|
10740
|
-
date?: string | null | undefined;
|
|
10741
|
-
}) | ({
|
|
10742
|
-
__TYPE__: "FileLink";
|
|
10743
|
-
} & {
|
|
10744
|
-
kind: "file";
|
|
10745
|
-
id: string;
|
|
10746
|
-
url: string;
|
|
10747
|
-
name: string;
|
|
10748
|
-
size: string;
|
|
10749
|
-
} & {
|
|
10750
|
-
date?: string | null | undefined;
|
|
10751
|
-
}) | ({
|
|
10752
|
-
__TYPE__: "DocumentLink";
|
|
10753
|
-
} & {
|
|
10754
|
-
id: string;
|
|
10755
|
-
}) | ({
|
|
10756
|
-
__TYPE__: "ExternalLink";
|
|
10757
|
-
} & {
|
|
10758
|
-
url: string;
|
|
10759
|
-
} & {
|
|
10760
|
-
kind?: "web";
|
|
10761
|
-
target?: string | null | undefined;
|
|
10762
|
-
preview?: {
|
|
10763
|
-
title?: string;
|
|
10764
|
-
} | null | undefined;
|
|
10765
|
-
});
|
|
10766
|
-
start: number;
|
|
10767
|
-
end: number;
|
|
10768
|
-
type: "hyperlink";
|
|
10769
|
-
} | {
|
|
10770
|
-
data: string;
|
|
10771
|
-
start: number;
|
|
10772
|
-
end: number;
|
|
10773
|
-
type: "label";
|
|
10774
|
-
} | {
|
|
10775
|
-
start: number;
|
|
10776
|
-
end: number;
|
|
10777
|
-
type: "strong" | "em" | "list-item";
|
|
10778
|
-
})[], ({
|
|
10779
|
-
data: ({
|
|
10780
|
-
__TYPE__: "ImageLink";
|
|
10781
|
-
} & {
|
|
10782
|
-
kind: "image";
|
|
10783
|
-
id: string;
|
|
10784
|
-
url: string;
|
|
10785
|
-
height: string;
|
|
10786
|
-
width: string;
|
|
10787
|
-
size: string;
|
|
10788
|
-
name: string;
|
|
10789
|
-
} & {
|
|
10790
|
-
date?: string | null | undefined;
|
|
10791
|
-
}) | ({
|
|
10792
|
-
__TYPE__: "FileLink";
|
|
10793
|
-
} & {
|
|
10794
|
-
kind: "file";
|
|
10795
|
-
id: string;
|
|
10796
|
-
url: string;
|
|
10797
|
-
name: string;
|
|
10798
|
-
size: string;
|
|
10799
|
-
} & {
|
|
10800
|
-
date?: string | null | undefined;
|
|
10801
|
-
}) | ({
|
|
10802
|
-
__TYPE__: "DocumentLink";
|
|
10803
|
-
} & {
|
|
10804
|
-
id: string;
|
|
10805
|
-
}) | ({
|
|
10806
|
-
__TYPE__: "ExternalLink";
|
|
10807
|
-
} & {
|
|
10808
|
-
url: string;
|
|
10809
|
-
} & {
|
|
10810
|
-
kind?: "web";
|
|
10811
|
-
target?: string | null | undefined;
|
|
10812
|
-
preview?: {
|
|
10813
|
-
title?: string;
|
|
10814
|
-
} | null | undefined;
|
|
10815
|
-
});
|
|
10816
|
-
start: number;
|
|
10817
|
-
end: number;
|
|
10818
|
-
type: "hyperlink";
|
|
10819
|
-
} | {
|
|
10820
|
-
data: string;
|
|
10821
|
-
start: number;
|
|
10822
|
-
end: number;
|
|
10823
|
-
type: "label";
|
|
10824
|
-
} | {
|
|
10825
|
-
start: number;
|
|
10826
|
-
end: number;
|
|
10827
|
-
type: "strong" | "em" | "list-item";
|
|
10828
|
-
})[], unknown>;
|
|
10829
|
-
}>]>;
|
|
10830
|
-
}>, t.PartialC<{
|
|
10831
|
-
label: t.StringC;
|
|
10832
|
-
direction: t.StringC;
|
|
10833
|
-
}>]>>>;
|
|
10834
|
-
}>>]>>;
|
|
10835
|
-
}>>>;
|
|
10836
|
-
}>>, t.ExactC<t.TypeC<{
|
|
10837
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
10838
|
-
}>>]>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
|
|
8674
|
+
}>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
|
|
10839
8675
|
}>>>;
|
|
10840
8676
|
}>>, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
10841
8677
|
type: t.StringC;
|
|
@@ -11153,7 +8989,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
11153
8989
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
11154
8990
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
11155
8991
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
11156
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl"
|
|
8992
|
+
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>;
|
|
11157
8993
|
content: t.IntersectionC<[t.TypeC<{
|
|
11158
8994
|
text: t.StringC;
|
|
11159
8995
|
}>, t.PartialC<{
|
|
@@ -11262,14 +9098,18 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
11262
9098
|
}>, t.PartialC<{
|
|
11263
9099
|
label: t.StringC;
|
|
11264
9100
|
direction: t.StringC;
|
|
11265
|
-
}>]
|
|
11266
|
-
|
|
11267
|
-
|
|
11268
|
-
|
|
11269
|
-
|
|
11270
|
-
|
|
11271
|
-
|
|
11272
|
-
|
|
9101
|
+
}>]>>]>>;
|
|
9102
|
+
}>>, t.ExactC<t.TypeC<{
|
|
9103
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
9104
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
9105
|
+
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
9106
|
+
type: t.LiteralC<"tableRow">;
|
|
9107
|
+
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
9108
|
+
type: t.LiteralC<"tableHeader">;
|
|
9109
|
+
content: t.ExactC<t.TypeC<{
|
|
9110
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
9111
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
9112
|
+
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>;
|
|
11273
9113
|
content: t.IntersectionC<[t.TypeC<{
|
|
11274
9114
|
text: t.StringC;
|
|
11275
9115
|
}>, t.PartialC<{
|
|
@@ -11379,10 +9219,13 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
11379
9219
|
label: t.StringC;
|
|
11380
9220
|
direction: t.StringC;
|
|
11381
9221
|
}>]>>>;
|
|
11382
|
-
}
|
|
11383
|
-
|
|
11384
|
-
|
|
11385
|
-
|
|
9222
|
+
}>>;
|
|
9223
|
+
}>>, t.ExactC<t.TypeC<{
|
|
9224
|
+
type: t.LiteralC<"tableCell">;
|
|
9225
|
+
content: t.ExactC<t.TypeC<{
|
|
9226
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
9227
|
+
value: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
9228
|
+
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>;
|
|
11386
9229
|
content: t.IntersectionC<[t.TypeC<{
|
|
11387
9230
|
text: t.StringC;
|
|
11388
9231
|
}>, t.PartialC<{
|
|
@@ -11492,12 +9335,12 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
11492
9335
|
label: t.StringC;
|
|
11493
9336
|
direction: t.StringC;
|
|
11494
9337
|
}>]>>>;
|
|
11495
|
-
}
|
|
11496
|
-
}
|
|
11497
|
-
}
|
|
11498
|
-
}>>, t.ExactC<t.TypeC<{
|
|
11499
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
9338
|
+
}>>;
|
|
9339
|
+
}>>]>>;
|
|
9340
|
+
}>>>;
|
|
11500
9341
|
}>>, t.ExactC<t.TypeC<{
|
|
9342
|
+
__TYPE__: t.LiteralC<"TableContent">;
|
|
9343
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
11501
9344
|
__TYPE__: t.LiteralC<"RepeatableContent">;
|
|
11502
9345
|
type: t.LiteralC<"Link">;
|
|
11503
9346
|
value: t.ArrayC<t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
@@ -11578,240 +9421,7 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
11578
9421
|
variant: t.StringC;
|
|
11579
9422
|
}>]>>]>]>;
|
|
11580
9423
|
}>>]>>;
|
|
11581
|
-
}
|
|
11582
|
-
content: t.ArrayC<t.ExactC<t.TypeC<{
|
|
11583
|
-
type: t.LiteralC<"tableRow">;
|
|
11584
|
-
content: t.ArrayC<t.UnionC<[t.ExactC<t.TypeC<{
|
|
11585
|
-
type: t.LiteralC<"tableHeader">;
|
|
11586
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
11587
|
-
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>;
|
|
11588
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
11589
|
-
text: t.StringC;
|
|
11590
|
-
}>, t.PartialC<{
|
|
11591
|
-
spans: t.Type<({
|
|
11592
|
-
data: ({
|
|
11593
|
-
__TYPE__: "ImageLink";
|
|
11594
|
-
} & {
|
|
11595
|
-
kind: "image";
|
|
11596
|
-
id: string;
|
|
11597
|
-
url: string;
|
|
11598
|
-
height: string;
|
|
11599
|
-
width: string;
|
|
11600
|
-
size: string;
|
|
11601
|
-
name: string;
|
|
11602
|
-
} & {
|
|
11603
|
-
date?: string | null | undefined;
|
|
11604
|
-
}) | ({
|
|
11605
|
-
__TYPE__: "FileLink";
|
|
11606
|
-
} & {
|
|
11607
|
-
kind: "file";
|
|
11608
|
-
id: string;
|
|
11609
|
-
url: string;
|
|
11610
|
-
name: string;
|
|
11611
|
-
size: string;
|
|
11612
|
-
} & {
|
|
11613
|
-
date?: string | null | undefined;
|
|
11614
|
-
}) | ({
|
|
11615
|
-
__TYPE__: "DocumentLink";
|
|
11616
|
-
} & {
|
|
11617
|
-
id: string;
|
|
11618
|
-
}) | ({
|
|
11619
|
-
__TYPE__: "ExternalLink";
|
|
11620
|
-
} & {
|
|
11621
|
-
url: string;
|
|
11622
|
-
} & {
|
|
11623
|
-
kind?: "web";
|
|
11624
|
-
target?: string | null | undefined;
|
|
11625
|
-
preview?: {
|
|
11626
|
-
title?: string;
|
|
11627
|
-
} | null | undefined;
|
|
11628
|
-
});
|
|
11629
|
-
start: number;
|
|
11630
|
-
end: number;
|
|
11631
|
-
type: "hyperlink";
|
|
11632
|
-
} | {
|
|
11633
|
-
data: string;
|
|
11634
|
-
start: number;
|
|
11635
|
-
end: number;
|
|
11636
|
-
type: "label";
|
|
11637
|
-
} | {
|
|
11638
|
-
start: number;
|
|
11639
|
-
end: number;
|
|
11640
|
-
type: "strong" | "em" | "list-item";
|
|
11641
|
-
})[], ({
|
|
11642
|
-
data: ({
|
|
11643
|
-
__TYPE__: "ImageLink";
|
|
11644
|
-
} & {
|
|
11645
|
-
kind: "image";
|
|
11646
|
-
id: string;
|
|
11647
|
-
url: string;
|
|
11648
|
-
height: string;
|
|
11649
|
-
width: string;
|
|
11650
|
-
size: string;
|
|
11651
|
-
name: string;
|
|
11652
|
-
} & {
|
|
11653
|
-
date?: string | null | undefined;
|
|
11654
|
-
}) | ({
|
|
11655
|
-
__TYPE__: "FileLink";
|
|
11656
|
-
} & {
|
|
11657
|
-
kind: "file";
|
|
11658
|
-
id: string;
|
|
11659
|
-
url: string;
|
|
11660
|
-
name: string;
|
|
11661
|
-
size: string;
|
|
11662
|
-
} & {
|
|
11663
|
-
date?: string | null | undefined;
|
|
11664
|
-
}) | ({
|
|
11665
|
-
__TYPE__: "DocumentLink";
|
|
11666
|
-
} & {
|
|
11667
|
-
id: string;
|
|
11668
|
-
}) | ({
|
|
11669
|
-
__TYPE__: "ExternalLink";
|
|
11670
|
-
} & {
|
|
11671
|
-
url: string;
|
|
11672
|
-
} & {
|
|
11673
|
-
kind?: "web";
|
|
11674
|
-
target?: string | null | undefined;
|
|
11675
|
-
preview?: {
|
|
11676
|
-
title?: string;
|
|
11677
|
-
} | null | undefined;
|
|
11678
|
-
});
|
|
11679
|
-
start: number;
|
|
11680
|
-
end: number;
|
|
11681
|
-
type: "hyperlink";
|
|
11682
|
-
} | {
|
|
11683
|
-
data: string;
|
|
11684
|
-
start: number;
|
|
11685
|
-
end: number;
|
|
11686
|
-
type: "label";
|
|
11687
|
-
} | {
|
|
11688
|
-
start: number;
|
|
11689
|
-
end: number;
|
|
11690
|
-
type: "strong" | "em" | "list-item";
|
|
11691
|
-
})[], unknown>;
|
|
11692
|
-
}>]>;
|
|
11693
|
-
}>, t.PartialC<{
|
|
11694
|
-
label: t.StringC;
|
|
11695
|
-
direction: t.StringC;
|
|
11696
|
-
}>]>>>;
|
|
11697
|
-
}>>, t.ExactC<t.TypeC<{
|
|
11698
|
-
type: t.LiteralC<"tableCell">;
|
|
11699
|
-
content: t.ArrayC<t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
11700
|
-
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>;
|
|
11701
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
11702
|
-
text: t.StringC;
|
|
11703
|
-
}>, t.PartialC<{
|
|
11704
|
-
spans: t.Type<({
|
|
11705
|
-
data: ({
|
|
11706
|
-
__TYPE__: "ImageLink";
|
|
11707
|
-
} & {
|
|
11708
|
-
kind: "image";
|
|
11709
|
-
id: string;
|
|
11710
|
-
url: string;
|
|
11711
|
-
height: string;
|
|
11712
|
-
width: string;
|
|
11713
|
-
size: string;
|
|
11714
|
-
name: string;
|
|
11715
|
-
} & {
|
|
11716
|
-
date?: string | null | undefined;
|
|
11717
|
-
}) | ({
|
|
11718
|
-
__TYPE__: "FileLink";
|
|
11719
|
-
} & {
|
|
11720
|
-
kind: "file";
|
|
11721
|
-
id: string;
|
|
11722
|
-
url: string;
|
|
11723
|
-
name: string;
|
|
11724
|
-
size: string;
|
|
11725
|
-
} & {
|
|
11726
|
-
date?: string | null | undefined;
|
|
11727
|
-
}) | ({
|
|
11728
|
-
__TYPE__: "DocumentLink";
|
|
11729
|
-
} & {
|
|
11730
|
-
id: string;
|
|
11731
|
-
}) | ({
|
|
11732
|
-
__TYPE__: "ExternalLink";
|
|
11733
|
-
} & {
|
|
11734
|
-
url: string;
|
|
11735
|
-
} & {
|
|
11736
|
-
kind?: "web";
|
|
11737
|
-
target?: string | null | undefined;
|
|
11738
|
-
preview?: {
|
|
11739
|
-
title?: string;
|
|
11740
|
-
} | null | undefined;
|
|
11741
|
-
});
|
|
11742
|
-
start: number;
|
|
11743
|
-
end: number;
|
|
11744
|
-
type: "hyperlink";
|
|
11745
|
-
} | {
|
|
11746
|
-
data: string;
|
|
11747
|
-
start: number;
|
|
11748
|
-
end: number;
|
|
11749
|
-
type: "label";
|
|
11750
|
-
} | {
|
|
11751
|
-
start: number;
|
|
11752
|
-
end: number;
|
|
11753
|
-
type: "strong" | "em" | "list-item";
|
|
11754
|
-
})[], ({
|
|
11755
|
-
data: ({
|
|
11756
|
-
__TYPE__: "ImageLink";
|
|
11757
|
-
} & {
|
|
11758
|
-
kind: "image";
|
|
11759
|
-
id: string;
|
|
11760
|
-
url: string;
|
|
11761
|
-
height: string;
|
|
11762
|
-
width: string;
|
|
11763
|
-
size: string;
|
|
11764
|
-
name: string;
|
|
11765
|
-
} & {
|
|
11766
|
-
date?: string | null | undefined;
|
|
11767
|
-
}) | ({
|
|
11768
|
-
__TYPE__: "FileLink";
|
|
11769
|
-
} & {
|
|
11770
|
-
kind: "file";
|
|
11771
|
-
id: string;
|
|
11772
|
-
url: string;
|
|
11773
|
-
name: string;
|
|
11774
|
-
size: string;
|
|
11775
|
-
} & {
|
|
11776
|
-
date?: string | null | undefined;
|
|
11777
|
-
}) | ({
|
|
11778
|
-
__TYPE__: "DocumentLink";
|
|
11779
|
-
} & {
|
|
11780
|
-
id: string;
|
|
11781
|
-
}) | ({
|
|
11782
|
-
__TYPE__: "ExternalLink";
|
|
11783
|
-
} & {
|
|
11784
|
-
url: string;
|
|
11785
|
-
} & {
|
|
11786
|
-
kind?: "web";
|
|
11787
|
-
target?: string | null | undefined;
|
|
11788
|
-
preview?: {
|
|
11789
|
-
title?: string;
|
|
11790
|
-
} | null | undefined;
|
|
11791
|
-
});
|
|
11792
|
-
start: number;
|
|
11793
|
-
end: number;
|
|
11794
|
-
type: "hyperlink";
|
|
11795
|
-
} | {
|
|
11796
|
-
data: string;
|
|
11797
|
-
start: number;
|
|
11798
|
-
end: number;
|
|
11799
|
-
type: "label";
|
|
11800
|
-
} | {
|
|
11801
|
-
start: number;
|
|
11802
|
-
end: number;
|
|
11803
|
-
type: "strong" | "em" | "list-item";
|
|
11804
|
-
})[], unknown>;
|
|
11805
|
-
}>]>;
|
|
11806
|
-
}>, t.PartialC<{
|
|
11807
|
-
label: t.StringC;
|
|
11808
|
-
direction: t.StringC;
|
|
11809
|
-
}>]>>>;
|
|
11810
|
-
}>>]>>;
|
|
11811
|
-
}>>>;
|
|
11812
|
-
}>>, t.ExactC<t.TypeC<{
|
|
11813
|
-
__TYPE__: t.LiteralC<"TableContent">;
|
|
11814
|
-
}>>]>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>;
|
|
9424
|
+
}>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>;
|
|
11815
9425
|
}>>;
|
|
11816
9426
|
}>;
|
|
11817
9427
|
export declare type SlicesContent = t.TypeOf<typeof SlicesContent>;
|