@prismicio/types-internal 3.2.0-alpha.3 → 3.3.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/content/Document.d.ts +216 -0
- package/lib/content/fields/WidgetContent.d.ts +216 -0
- package/lib/content/fields/nestable/LinkContent.d.ts +48 -0
- package/lib/content/fields/nestable/LinkContent.js +6 -0
- package/lib/content/fields/nestable/NestableContent.d.ts +36 -0
- package/lib/content/fields/nestable/RepeatableContent.d.ts +12 -0
- package/lib/content/fields/nestable/RepeatableContent.js +1 -8
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +72 -0
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +12 -0
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +72 -0
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +36 -0
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +36 -0
- package/lib/content/fields/slices/Slice/index.d.ts +120 -0
- package/lib/content/fields/slices/SliceItem.d.ts +120 -0
- package/lib/content/fields/slices/SlicesContent.d.ts +180 -0
- package/lib/customtypes/CustomType.d.ts +72 -0
- package/lib/customtypes/Section.d.ts +72 -0
- package/lib/customtypes/diff/SharedSlice.d.ts +32 -0
- package/lib/customtypes/diff/Variation.d.ts +32 -0
- package/lib/customtypes/widgets/Group.d.ts +24 -0
- package/lib/customtypes/widgets/Widget.d.ts +84 -0
- package/lib/customtypes/widgets/nestable/Link.d.ts +8 -0
- package/lib/customtypes/widgets/nestable/Link.js +4 -0
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +4 -0
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +8 -0
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +8 -0
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +32 -0
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +24 -0
- package/lib/customtypes/widgets/slices/Slices.d.ts +112 -0
- package/package.json +1 -1
- package/src/content/fields/nestable/LinkContent.ts +6 -0
- package/src/content/fields/nestable/RepeatableContent.ts +1 -10
- package/src/customtypes/widgets/nestable/Link.ts +5 -0
|
@@ -133,6 +133,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
133
133
|
kind: "image";
|
|
134
134
|
}) & {
|
|
135
135
|
text?: string;
|
|
136
|
+
variant?: string;
|
|
136
137
|
})) | ({
|
|
137
138
|
__TYPE__: "FileLink";
|
|
138
139
|
} & ((({
|
|
@@ -147,12 +148,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
147
148
|
kind: "file";
|
|
148
149
|
}) & {
|
|
149
150
|
text?: string;
|
|
151
|
+
variant?: string;
|
|
150
152
|
})) | ({
|
|
151
153
|
__TYPE__: "MediaLink";
|
|
152
154
|
} & {
|
|
153
155
|
kind: "media";
|
|
154
156
|
} & {
|
|
155
157
|
text?: string;
|
|
158
|
+
variant?: string;
|
|
156
159
|
}) | ({
|
|
157
160
|
__TYPE__: "DocumentLink";
|
|
158
161
|
} & (({
|
|
@@ -161,6 +164,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
161
164
|
kind: "document";
|
|
162
165
|
}) & {
|
|
163
166
|
text?: string;
|
|
167
|
+
variant?: string;
|
|
164
168
|
})) | ({
|
|
165
169
|
__TYPE__: "ExternalLink";
|
|
166
170
|
} & ((({
|
|
@@ -175,12 +179,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
175
179
|
kind: "web";
|
|
176
180
|
}) & {
|
|
177
181
|
text?: string;
|
|
182
|
+
variant?: string;
|
|
178
183
|
})) | ({
|
|
179
184
|
__TYPE__: "AnyLink";
|
|
180
185
|
} & {
|
|
181
186
|
kind: "any";
|
|
182
187
|
} & {
|
|
183
188
|
text?: string;
|
|
189
|
+
variant?: string;
|
|
184
190
|
});
|
|
185
191
|
}> | import("fp-ts/lib/Either").Right<{
|
|
186
192
|
__TYPE__: "RepeatableContent";
|
|
@@ -205,6 +211,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
205
211
|
kind: "image";
|
|
206
212
|
}) & {
|
|
207
213
|
text?: string;
|
|
214
|
+
variant?: string;
|
|
208
215
|
})) | ({
|
|
209
216
|
__TYPE__: "FileLink";
|
|
210
217
|
} & ((({
|
|
@@ -219,12 +226,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
219
226
|
kind: "file";
|
|
220
227
|
}) & {
|
|
221
228
|
text?: string;
|
|
229
|
+
variant?: string;
|
|
222
230
|
})) | ({
|
|
223
231
|
__TYPE__: "MediaLink";
|
|
224
232
|
} & {
|
|
225
233
|
kind: "media";
|
|
226
234
|
} & {
|
|
227
235
|
text?: string;
|
|
236
|
+
variant?: string;
|
|
228
237
|
}) | ({
|
|
229
238
|
__TYPE__: "DocumentLink";
|
|
230
239
|
} & (({
|
|
@@ -233,6 +242,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
233
242
|
kind: "document";
|
|
234
243
|
}) & {
|
|
235
244
|
text?: string;
|
|
245
|
+
variant?: string;
|
|
236
246
|
})) | ({
|
|
237
247
|
__TYPE__: "ExternalLink";
|
|
238
248
|
} & ((({
|
|
@@ -247,12 +257,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
247
257
|
kind: "web";
|
|
248
258
|
}) & {
|
|
249
259
|
text?: string;
|
|
260
|
+
variant?: string;
|
|
250
261
|
})) | ({
|
|
251
262
|
__TYPE__: "AnyLink";
|
|
252
263
|
} & {
|
|
253
264
|
kind: "any";
|
|
254
265
|
} & {
|
|
255
266
|
text?: string;
|
|
267
|
+
variant?: string;
|
|
256
268
|
});
|
|
257
269
|
})[];
|
|
258
270
|
}> | import("fp-ts/lib/Either").Right<{
|
|
@@ -545,6 +557,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
545
557
|
kind: "image";
|
|
546
558
|
}) & {
|
|
547
559
|
text?: string;
|
|
560
|
+
variant?: string;
|
|
548
561
|
})) | ({
|
|
549
562
|
__TYPE__: "FileLink";
|
|
550
563
|
} & ((({
|
|
@@ -559,12 +572,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
559
572
|
kind: "file";
|
|
560
573
|
}) & {
|
|
561
574
|
text?: string;
|
|
575
|
+
variant?: string;
|
|
562
576
|
})) | ({
|
|
563
577
|
__TYPE__: "MediaLink";
|
|
564
578
|
} & {
|
|
565
579
|
kind: "media";
|
|
566
580
|
} & {
|
|
567
581
|
text?: string;
|
|
582
|
+
variant?: string;
|
|
568
583
|
}) | ({
|
|
569
584
|
__TYPE__: "DocumentLink";
|
|
570
585
|
} & (({
|
|
@@ -573,6 +588,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
573
588
|
kind: "document";
|
|
574
589
|
}) & {
|
|
575
590
|
text?: string;
|
|
591
|
+
variant?: string;
|
|
576
592
|
})) | ({
|
|
577
593
|
__TYPE__: "ExternalLink";
|
|
578
594
|
} & ((({
|
|
@@ -587,12 +603,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
587
603
|
kind: "web";
|
|
588
604
|
}) & {
|
|
589
605
|
text?: string;
|
|
606
|
+
variant?: string;
|
|
590
607
|
})) | ({
|
|
591
608
|
__TYPE__: "AnyLink";
|
|
592
609
|
} & {
|
|
593
610
|
kind: "any";
|
|
594
611
|
} & {
|
|
595
612
|
text?: string;
|
|
613
|
+
variant?: string;
|
|
596
614
|
});
|
|
597
615
|
}) | {
|
|
598
616
|
__TYPE__: "RepeatableContent";
|
|
@@ -617,6 +635,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
617
635
|
kind: "image";
|
|
618
636
|
}) & {
|
|
619
637
|
text?: string;
|
|
638
|
+
variant?: string;
|
|
620
639
|
})) | ({
|
|
621
640
|
__TYPE__: "FileLink";
|
|
622
641
|
} & ((({
|
|
@@ -631,12 +650,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
631
650
|
kind: "file";
|
|
632
651
|
}) & {
|
|
633
652
|
text?: string;
|
|
653
|
+
variant?: string;
|
|
634
654
|
})) | ({
|
|
635
655
|
__TYPE__: "MediaLink";
|
|
636
656
|
} & {
|
|
637
657
|
kind: "media";
|
|
638
658
|
} & {
|
|
639
659
|
text?: string;
|
|
660
|
+
variant?: string;
|
|
640
661
|
}) | ({
|
|
641
662
|
__TYPE__: "DocumentLink";
|
|
642
663
|
} & (({
|
|
@@ -645,6 +666,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
645
666
|
kind: "document";
|
|
646
667
|
}) & {
|
|
647
668
|
text?: string;
|
|
669
|
+
variant?: string;
|
|
648
670
|
})) | ({
|
|
649
671
|
__TYPE__: "ExternalLink";
|
|
650
672
|
} & ((({
|
|
@@ -659,12 +681,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
659
681
|
kind: "web";
|
|
660
682
|
}) & {
|
|
661
683
|
text?: string;
|
|
684
|
+
variant?: string;
|
|
662
685
|
})) | ({
|
|
663
686
|
__TYPE__: "AnyLink";
|
|
664
687
|
} & {
|
|
665
688
|
kind: "any";
|
|
666
689
|
} & {
|
|
667
690
|
text?: string;
|
|
691
|
+
variant?: string;
|
|
668
692
|
});
|
|
669
693
|
})[];
|
|
670
694
|
} | {
|
|
@@ -958,6 +982,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
958
982
|
kind: "image";
|
|
959
983
|
}) & {
|
|
960
984
|
text?: string;
|
|
985
|
+
variant?: string;
|
|
961
986
|
})) | ({
|
|
962
987
|
__TYPE__: "FileLink";
|
|
963
988
|
} & ((({
|
|
@@ -972,12 +997,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
972
997
|
kind: "file";
|
|
973
998
|
}) & {
|
|
974
999
|
text?: string;
|
|
1000
|
+
variant?: string;
|
|
975
1001
|
})) | ({
|
|
976
1002
|
__TYPE__: "MediaLink";
|
|
977
1003
|
} & {
|
|
978
1004
|
kind: "media";
|
|
979
1005
|
} & {
|
|
980
1006
|
text?: string;
|
|
1007
|
+
variant?: string;
|
|
981
1008
|
}) | ({
|
|
982
1009
|
__TYPE__: "DocumentLink";
|
|
983
1010
|
} & (({
|
|
@@ -986,6 +1013,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
986
1013
|
kind: "document";
|
|
987
1014
|
}) & {
|
|
988
1015
|
text?: string;
|
|
1016
|
+
variant?: string;
|
|
989
1017
|
})) | ({
|
|
990
1018
|
__TYPE__: "ExternalLink";
|
|
991
1019
|
} & ((({
|
|
@@ -1000,12 +1028,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1000
1028
|
kind: "web";
|
|
1001
1029
|
}) & {
|
|
1002
1030
|
text?: string;
|
|
1031
|
+
variant?: string;
|
|
1003
1032
|
})) | ({
|
|
1004
1033
|
__TYPE__: "AnyLink";
|
|
1005
1034
|
} & {
|
|
1006
1035
|
kind: "any";
|
|
1007
1036
|
} & {
|
|
1008
1037
|
text?: string;
|
|
1038
|
+
variant?: string;
|
|
1009
1039
|
});
|
|
1010
1040
|
}) | {
|
|
1011
1041
|
__TYPE__: "RepeatableContent";
|
|
@@ -1030,6 +1060,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1030
1060
|
kind: "image";
|
|
1031
1061
|
}) & {
|
|
1032
1062
|
text?: string;
|
|
1063
|
+
variant?: string;
|
|
1033
1064
|
})) | ({
|
|
1034
1065
|
__TYPE__: "FileLink";
|
|
1035
1066
|
} & ((({
|
|
@@ -1044,12 +1075,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1044
1075
|
kind: "file";
|
|
1045
1076
|
}) & {
|
|
1046
1077
|
text?: string;
|
|
1078
|
+
variant?: string;
|
|
1047
1079
|
})) | ({
|
|
1048
1080
|
__TYPE__: "MediaLink";
|
|
1049
1081
|
} & {
|
|
1050
1082
|
kind: "media";
|
|
1051
1083
|
} & {
|
|
1052
1084
|
text?: string;
|
|
1085
|
+
variant?: string;
|
|
1053
1086
|
}) | ({
|
|
1054
1087
|
__TYPE__: "DocumentLink";
|
|
1055
1088
|
} & (({
|
|
@@ -1058,6 +1091,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1058
1091
|
kind: "document";
|
|
1059
1092
|
}) & {
|
|
1060
1093
|
text?: string;
|
|
1094
|
+
variant?: string;
|
|
1061
1095
|
})) | ({
|
|
1062
1096
|
__TYPE__: "ExternalLink";
|
|
1063
1097
|
} & ((({
|
|
@@ -1072,12 +1106,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1072
1106
|
kind: "web";
|
|
1073
1107
|
}) & {
|
|
1074
1108
|
text?: string;
|
|
1109
|
+
variant?: string;
|
|
1075
1110
|
})) | ({
|
|
1076
1111
|
__TYPE__: "AnyLink";
|
|
1077
1112
|
} & {
|
|
1078
1113
|
kind: "any";
|
|
1079
1114
|
} & {
|
|
1080
1115
|
text?: string;
|
|
1116
|
+
variant?: string;
|
|
1081
1117
|
});
|
|
1082
1118
|
})[];
|
|
1083
1119
|
} | import("../..").GroupContent | {
|
|
@@ -1373,6 +1409,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1373
1409
|
kind: "image";
|
|
1374
1410
|
}) & {
|
|
1375
1411
|
text?: string;
|
|
1412
|
+
variant?: string;
|
|
1376
1413
|
})) | ({
|
|
1377
1414
|
__TYPE__: "FileLink";
|
|
1378
1415
|
} & ((({
|
|
@@ -1387,12 +1424,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1387
1424
|
kind: "file";
|
|
1388
1425
|
}) & {
|
|
1389
1426
|
text?: string;
|
|
1427
|
+
variant?: string;
|
|
1390
1428
|
})) | ({
|
|
1391
1429
|
__TYPE__: "MediaLink";
|
|
1392
1430
|
} & {
|
|
1393
1431
|
kind: "media";
|
|
1394
1432
|
} & {
|
|
1395
1433
|
text?: string;
|
|
1434
|
+
variant?: string;
|
|
1396
1435
|
}) | ({
|
|
1397
1436
|
__TYPE__: "DocumentLink";
|
|
1398
1437
|
} & (({
|
|
@@ -1401,6 +1440,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1401
1440
|
kind: "document";
|
|
1402
1441
|
}) & {
|
|
1403
1442
|
text?: string;
|
|
1443
|
+
variant?: string;
|
|
1404
1444
|
})) | ({
|
|
1405
1445
|
__TYPE__: "ExternalLink";
|
|
1406
1446
|
} & ((({
|
|
@@ -1415,12 +1455,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1415
1455
|
kind: "web";
|
|
1416
1456
|
}) & {
|
|
1417
1457
|
text?: string;
|
|
1458
|
+
variant?: string;
|
|
1418
1459
|
})) | ({
|
|
1419
1460
|
__TYPE__: "AnyLink";
|
|
1420
1461
|
} & {
|
|
1421
1462
|
kind: "any";
|
|
1422
1463
|
} & {
|
|
1423
1464
|
text?: string;
|
|
1465
|
+
variant?: string;
|
|
1424
1466
|
});
|
|
1425
1467
|
}) | {
|
|
1426
1468
|
__TYPE__: "RepeatableContent";
|
|
@@ -1445,6 +1487,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1445
1487
|
kind: "image";
|
|
1446
1488
|
}) & {
|
|
1447
1489
|
text?: string;
|
|
1490
|
+
variant?: string;
|
|
1448
1491
|
})) | ({
|
|
1449
1492
|
__TYPE__: "FileLink";
|
|
1450
1493
|
} & ((({
|
|
@@ -1459,12 +1502,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1459
1502
|
kind: "file";
|
|
1460
1503
|
}) & {
|
|
1461
1504
|
text?: string;
|
|
1505
|
+
variant?: string;
|
|
1462
1506
|
})) | ({
|
|
1463
1507
|
__TYPE__: "MediaLink";
|
|
1464
1508
|
} & {
|
|
1465
1509
|
kind: "media";
|
|
1466
1510
|
} & {
|
|
1467
1511
|
text?: string;
|
|
1512
|
+
variant?: string;
|
|
1468
1513
|
}) | ({
|
|
1469
1514
|
__TYPE__: "DocumentLink";
|
|
1470
1515
|
} & (({
|
|
@@ -1473,6 +1518,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1473
1518
|
kind: "document";
|
|
1474
1519
|
}) & {
|
|
1475
1520
|
text?: string;
|
|
1521
|
+
variant?: string;
|
|
1476
1522
|
})) | ({
|
|
1477
1523
|
__TYPE__: "ExternalLink";
|
|
1478
1524
|
} & ((({
|
|
@@ -1487,12 +1533,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1487
1533
|
kind: "web";
|
|
1488
1534
|
}) & {
|
|
1489
1535
|
text?: string;
|
|
1536
|
+
variant?: string;
|
|
1490
1537
|
})) | ({
|
|
1491
1538
|
__TYPE__: "AnyLink";
|
|
1492
1539
|
} & {
|
|
1493
1540
|
kind: "any";
|
|
1494
1541
|
} & {
|
|
1495
1542
|
text?: string;
|
|
1543
|
+
variant?: string;
|
|
1496
1544
|
});
|
|
1497
1545
|
})[];
|
|
1498
1546
|
} | import("../..").GroupContent | {
|
|
@@ -1786,6 +1834,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1786
1834
|
kind: "image";
|
|
1787
1835
|
}) & {
|
|
1788
1836
|
text?: string;
|
|
1837
|
+
variant?: string;
|
|
1789
1838
|
})) | ({
|
|
1790
1839
|
__TYPE__: "FileLink";
|
|
1791
1840
|
} & ((({
|
|
@@ -1800,12 +1849,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1800
1849
|
kind: "file";
|
|
1801
1850
|
}) & {
|
|
1802
1851
|
text?: string;
|
|
1852
|
+
variant?: string;
|
|
1803
1853
|
})) | ({
|
|
1804
1854
|
__TYPE__: "MediaLink";
|
|
1805
1855
|
} & {
|
|
1806
1856
|
kind: "media";
|
|
1807
1857
|
} & {
|
|
1808
1858
|
text?: string;
|
|
1859
|
+
variant?: string;
|
|
1809
1860
|
}) | ({
|
|
1810
1861
|
__TYPE__: "DocumentLink";
|
|
1811
1862
|
} & (({
|
|
@@ -1814,6 +1865,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1814
1865
|
kind: "document";
|
|
1815
1866
|
}) & {
|
|
1816
1867
|
text?: string;
|
|
1868
|
+
variant?: string;
|
|
1817
1869
|
})) | ({
|
|
1818
1870
|
__TYPE__: "ExternalLink";
|
|
1819
1871
|
} & ((({
|
|
@@ -1828,12 +1880,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1828
1880
|
kind: "web";
|
|
1829
1881
|
}) & {
|
|
1830
1882
|
text?: string;
|
|
1883
|
+
variant?: string;
|
|
1831
1884
|
})) | ({
|
|
1832
1885
|
__TYPE__: "AnyLink";
|
|
1833
1886
|
} & {
|
|
1834
1887
|
kind: "any";
|
|
1835
1888
|
} & {
|
|
1836
1889
|
text?: string;
|
|
1890
|
+
variant?: string;
|
|
1837
1891
|
});
|
|
1838
1892
|
}) | {
|
|
1839
1893
|
__TYPE__: "RepeatableContent";
|
|
@@ -1858,6 +1912,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1858
1912
|
kind: "image";
|
|
1859
1913
|
}) & {
|
|
1860
1914
|
text?: string;
|
|
1915
|
+
variant?: string;
|
|
1861
1916
|
})) | ({
|
|
1862
1917
|
__TYPE__: "FileLink";
|
|
1863
1918
|
} & ((({
|
|
@@ -1872,12 +1927,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1872
1927
|
kind: "file";
|
|
1873
1928
|
}) & {
|
|
1874
1929
|
text?: string;
|
|
1930
|
+
variant?: string;
|
|
1875
1931
|
})) | ({
|
|
1876
1932
|
__TYPE__: "MediaLink";
|
|
1877
1933
|
} & {
|
|
1878
1934
|
kind: "media";
|
|
1879
1935
|
} & {
|
|
1880
1936
|
text?: string;
|
|
1937
|
+
variant?: string;
|
|
1881
1938
|
}) | ({
|
|
1882
1939
|
__TYPE__: "DocumentLink";
|
|
1883
1940
|
} & (({
|
|
@@ -1886,6 +1943,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1886
1943
|
kind: "document";
|
|
1887
1944
|
}) & {
|
|
1888
1945
|
text?: string;
|
|
1946
|
+
variant?: string;
|
|
1889
1947
|
})) | ({
|
|
1890
1948
|
__TYPE__: "ExternalLink";
|
|
1891
1949
|
} & ((({
|
|
@@ -1900,12 +1958,14 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1900
1958
|
kind: "web";
|
|
1901
1959
|
}) & {
|
|
1902
1960
|
text?: string;
|
|
1961
|
+
variant?: string;
|
|
1903
1962
|
})) | ({
|
|
1904
1963
|
__TYPE__: "AnyLink";
|
|
1905
1964
|
} & {
|
|
1906
1965
|
kind: "any";
|
|
1907
1966
|
} & {
|
|
1908
1967
|
text?: string;
|
|
1968
|
+
variant?: string;
|
|
1909
1969
|
});
|
|
1910
1970
|
})[];
|
|
1911
1971
|
} | import("../..").GroupContent | {
|
|
@@ -2200,6 +2260,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2200
2260
|
kind: t.LiteralC<"image">;
|
|
2201
2261
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2202
2262
|
text: t.StringC;
|
|
2263
|
+
variant: t.StringC;
|
|
2203
2264
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2204
2265
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2205
2266
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2214,6 +2275,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2214
2275
|
kind: t.LiteralC<"file">;
|
|
2215
2276
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2216
2277
|
text: t.StringC;
|
|
2278
|
+
variant: t.StringC;
|
|
2217
2279
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2218
2280
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2219
2281
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2222,6 +2284,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2222
2284
|
kind: t.LiteralC<"document">;
|
|
2223
2285
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2224
2286
|
text: t.StringC;
|
|
2287
|
+
variant: t.StringC;
|
|
2225
2288
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2226
2289
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2227
2290
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2238,18 +2301,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2238
2301
|
kind: t.LiteralC<"web">;
|
|
2239
2302
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2240
2303
|
text: t.StringC;
|
|
2304
|
+
variant: t.StringC;
|
|
2241
2305
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2242
2306
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
2243
2307
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2244
2308
|
kind: t.LiteralC<"media">;
|
|
2245
2309
|
}>>, t.ExactC<t.PartialC<{
|
|
2246
2310
|
text: t.StringC;
|
|
2311
|
+
variant: t.StringC;
|
|
2247
2312
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2248
2313
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
2249
2314
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2250
2315
|
kind: t.LiteralC<"any">;
|
|
2251
2316
|
}>, t.PartialC<{
|
|
2252
2317
|
text: t.StringC;
|
|
2318
|
+
variant: t.StringC;
|
|
2253
2319
|
}>]>>]>]>;
|
|
2254
2320
|
}>>]>, t.ExactC<t.TypeC<{
|
|
2255
2321
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -2515,6 +2581,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2515
2581
|
kind: t.LiteralC<"image">;
|
|
2516
2582
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2517
2583
|
text: t.StringC;
|
|
2584
|
+
variant: t.StringC;
|
|
2518
2585
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2519
2586
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2520
2587
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2529,6 +2596,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2529
2596
|
kind: t.LiteralC<"file">;
|
|
2530
2597
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2531
2598
|
text: t.StringC;
|
|
2599
|
+
variant: t.StringC;
|
|
2532
2600
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2533
2601
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2534
2602
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2537,6 +2605,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2537
2605
|
kind: t.LiteralC<"document">;
|
|
2538
2606
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2539
2607
|
text: t.StringC;
|
|
2608
|
+
variant: t.StringC;
|
|
2540
2609
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2541
2610
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2542
2611
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2553,18 +2622,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2553
2622
|
kind: t.LiteralC<"web">;
|
|
2554
2623
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2555
2624
|
text: t.StringC;
|
|
2625
|
+
variant: t.StringC;
|
|
2556
2626
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2557
2627
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
2558
2628
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2559
2629
|
kind: t.LiteralC<"media">;
|
|
2560
2630
|
}>>, t.ExactC<t.PartialC<{
|
|
2561
2631
|
text: t.StringC;
|
|
2632
|
+
variant: t.StringC;
|
|
2562
2633
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2563
2634
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
2564
2635
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2565
2636
|
kind: t.LiteralC<"any">;
|
|
2566
2637
|
}>, t.PartialC<{
|
|
2567
2638
|
text: t.StringC;
|
|
2639
|
+
variant: t.StringC;
|
|
2568
2640
|
}>]>>]>]>;
|
|
2569
2641
|
}>>]>>;
|
|
2570
2642
|
}>>]>>;
|
|
@@ -2700,6 +2772,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2700
2772
|
kind: t.LiteralC<"image">;
|
|
2701
2773
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2702
2774
|
text: t.StringC;
|
|
2775
|
+
variant: t.StringC;
|
|
2703
2776
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2704
2777
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2705
2778
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2714,6 +2787,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2714
2787
|
kind: t.LiteralC<"file">;
|
|
2715
2788
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2716
2789
|
text: t.StringC;
|
|
2790
|
+
variant: t.StringC;
|
|
2717
2791
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2718
2792
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2719
2793
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2722,6 +2796,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2722
2796
|
kind: t.LiteralC<"document">;
|
|
2723
2797
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2724
2798
|
text: t.StringC;
|
|
2799
|
+
variant: t.StringC;
|
|
2725
2800
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2726
2801
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2727
2802
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2738,18 +2813,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2738
2813
|
kind: t.LiteralC<"web">;
|
|
2739
2814
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2740
2815
|
text: t.StringC;
|
|
2816
|
+
variant: t.StringC;
|
|
2741
2817
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2742
2818
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
2743
2819
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2744
2820
|
kind: t.LiteralC<"media">;
|
|
2745
2821
|
}>>, t.ExactC<t.PartialC<{
|
|
2746
2822
|
text: t.StringC;
|
|
2823
|
+
variant: t.StringC;
|
|
2747
2824
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2748
2825
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
2749
2826
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2750
2827
|
kind: t.LiteralC<"any">;
|
|
2751
2828
|
}>, t.PartialC<{
|
|
2752
2829
|
text: t.StringC;
|
|
2830
|
+
variant: t.StringC;
|
|
2753
2831
|
}>]>>]>]>;
|
|
2754
2832
|
}>>]>, t.ExactC<t.TypeC<{
|
|
2755
2833
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -3015,6 +3093,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3015
3093
|
kind: t.LiteralC<"image">;
|
|
3016
3094
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3017
3095
|
text: t.StringC;
|
|
3096
|
+
variant: t.StringC;
|
|
3018
3097
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3019
3098
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
3020
3099
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -3029,6 +3108,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3029
3108
|
kind: t.LiteralC<"file">;
|
|
3030
3109
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3031
3110
|
text: t.StringC;
|
|
3111
|
+
variant: t.StringC;
|
|
3032
3112
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3033
3113
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
3034
3114
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -3037,6 +3117,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3037
3117
|
kind: t.LiteralC<"document">;
|
|
3038
3118
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3039
3119
|
text: t.StringC;
|
|
3120
|
+
variant: t.StringC;
|
|
3040
3121
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3041
3122
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
3042
3123
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -3053,18 +3134,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3053
3134
|
kind: t.LiteralC<"web">;
|
|
3054
3135
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3055
3136
|
text: t.StringC;
|
|
3137
|
+
variant: t.StringC;
|
|
3056
3138
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3057
3139
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
3058
3140
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3059
3141
|
kind: t.LiteralC<"media">;
|
|
3060
3142
|
}>>, t.ExactC<t.PartialC<{
|
|
3061
3143
|
text: t.StringC;
|
|
3144
|
+
variant: t.StringC;
|
|
3062
3145
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3063
3146
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
3064
3147
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3065
3148
|
kind: t.LiteralC<"any">;
|
|
3066
3149
|
}>, t.PartialC<{
|
|
3067
3150
|
text: t.StringC;
|
|
3151
|
+
variant: t.StringC;
|
|
3068
3152
|
}>]>>]>]>;
|
|
3069
3153
|
}>>]>>;
|
|
3070
3154
|
}>>]>, t.Type<import("../..").GroupContent, import("../..").GroupContent, unknown>]>]>>;
|
|
@@ -3202,6 +3286,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3202
3286
|
kind: t.LiteralC<"image">;
|
|
3203
3287
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3204
3288
|
text: t.StringC;
|
|
3289
|
+
variant: t.StringC;
|
|
3205
3290
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3206
3291
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
3207
3292
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -3216,6 +3301,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3216
3301
|
kind: t.LiteralC<"file">;
|
|
3217
3302
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3218
3303
|
text: t.StringC;
|
|
3304
|
+
variant: t.StringC;
|
|
3219
3305
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3220
3306
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
3221
3307
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -3224,6 +3310,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3224
3310
|
kind: t.LiteralC<"document">;
|
|
3225
3311
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3226
3312
|
text: t.StringC;
|
|
3313
|
+
variant: t.StringC;
|
|
3227
3314
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3228
3315
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
3229
3316
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -3240,18 +3327,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3240
3327
|
kind: t.LiteralC<"web">;
|
|
3241
3328
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3242
3329
|
text: t.StringC;
|
|
3330
|
+
variant: t.StringC;
|
|
3243
3331
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3244
3332
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
3245
3333
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3246
3334
|
kind: t.LiteralC<"media">;
|
|
3247
3335
|
}>>, t.ExactC<t.PartialC<{
|
|
3248
3336
|
text: t.StringC;
|
|
3337
|
+
variant: t.StringC;
|
|
3249
3338
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3250
3339
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
3251
3340
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3252
3341
|
kind: t.LiteralC<"any">;
|
|
3253
3342
|
}>, t.PartialC<{
|
|
3254
3343
|
text: t.StringC;
|
|
3344
|
+
variant: t.StringC;
|
|
3255
3345
|
}>]>>]>]>;
|
|
3256
3346
|
}>>]>, t.ExactC<t.TypeC<{
|
|
3257
3347
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -3517,6 +3607,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3517
3607
|
kind: t.LiteralC<"image">;
|
|
3518
3608
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3519
3609
|
text: t.StringC;
|
|
3610
|
+
variant: t.StringC;
|
|
3520
3611
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3521
3612
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
3522
3613
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -3531,6 +3622,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3531
3622
|
kind: t.LiteralC<"file">;
|
|
3532
3623
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3533
3624
|
text: t.StringC;
|
|
3625
|
+
variant: t.StringC;
|
|
3534
3626
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3535
3627
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
3536
3628
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -3539,6 +3631,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3539
3631
|
kind: t.LiteralC<"document">;
|
|
3540
3632
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3541
3633
|
text: t.StringC;
|
|
3634
|
+
variant: t.StringC;
|
|
3542
3635
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3543
3636
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
3544
3637
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -3555,18 +3648,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3555
3648
|
kind: t.LiteralC<"web">;
|
|
3556
3649
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3557
3650
|
text: t.StringC;
|
|
3651
|
+
variant: t.StringC;
|
|
3558
3652
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3559
3653
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
3560
3654
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3561
3655
|
kind: t.LiteralC<"media">;
|
|
3562
3656
|
}>>, t.ExactC<t.PartialC<{
|
|
3563
3657
|
text: t.StringC;
|
|
3658
|
+
variant: t.StringC;
|
|
3564
3659
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3565
3660
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
3566
3661
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3567
3662
|
kind: t.LiteralC<"any">;
|
|
3568
3663
|
}>, t.PartialC<{
|
|
3569
3664
|
text: t.StringC;
|
|
3665
|
+
variant: t.StringC;
|
|
3570
3666
|
}>]>>]>]>;
|
|
3571
3667
|
}>>]>>;
|
|
3572
3668
|
}>>]>, t.Type<import("../..").GroupContent, import("../..").GroupContent, unknown>]>>;
|
|
@@ -3702,6 +3798,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3702
3798
|
kind: t.LiteralC<"image">;
|
|
3703
3799
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3704
3800
|
text: t.StringC;
|
|
3801
|
+
variant: t.StringC;
|
|
3705
3802
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3706
3803
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
3707
3804
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -3716,6 +3813,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3716
3813
|
kind: t.LiteralC<"file">;
|
|
3717
3814
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3718
3815
|
text: t.StringC;
|
|
3816
|
+
variant: t.StringC;
|
|
3719
3817
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3720
3818
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
3721
3819
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -3724,6 +3822,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3724
3822
|
kind: t.LiteralC<"document">;
|
|
3725
3823
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3726
3824
|
text: t.StringC;
|
|
3825
|
+
variant: t.StringC;
|
|
3727
3826
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3728
3827
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
3729
3828
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -3740,18 +3839,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3740
3839
|
kind: t.LiteralC<"web">;
|
|
3741
3840
|
}>>]>, t.ExactC<t.PartialC<{
|
|
3742
3841
|
text: t.StringC;
|
|
3842
|
+
variant: t.StringC;
|
|
3743
3843
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3744
3844
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
3745
3845
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3746
3846
|
kind: t.LiteralC<"media">;
|
|
3747
3847
|
}>>, t.ExactC<t.PartialC<{
|
|
3748
3848
|
text: t.StringC;
|
|
3849
|
+
variant: t.StringC;
|
|
3749
3850
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3750
3851
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
3751
3852
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3752
3853
|
kind: t.LiteralC<"any">;
|
|
3753
3854
|
}>, t.PartialC<{
|
|
3754
3855
|
text: t.StringC;
|
|
3856
|
+
variant: t.StringC;
|
|
3755
3857
|
}>]>>]>]>;
|
|
3756
3858
|
}>>]>, t.ExactC<t.TypeC<{
|
|
3757
3859
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -4017,6 +4119,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4017
4119
|
kind: t.LiteralC<"image">;
|
|
4018
4120
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4019
4121
|
text: t.StringC;
|
|
4122
|
+
variant: t.StringC;
|
|
4020
4123
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4021
4124
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
4022
4125
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -4031,6 +4134,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4031
4134
|
kind: t.LiteralC<"file">;
|
|
4032
4135
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4033
4136
|
text: t.StringC;
|
|
4137
|
+
variant: t.StringC;
|
|
4034
4138
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4035
4139
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
4036
4140
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -4039,6 +4143,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4039
4143
|
kind: t.LiteralC<"document">;
|
|
4040
4144
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4041
4145
|
text: t.StringC;
|
|
4146
|
+
variant: t.StringC;
|
|
4042
4147
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4043
4148
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
4044
4149
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -4055,18 +4160,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4055
4160
|
kind: t.LiteralC<"web">;
|
|
4056
4161
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4057
4162
|
text: t.StringC;
|
|
4163
|
+
variant: t.StringC;
|
|
4058
4164
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4059
4165
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
4060
4166
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4061
4167
|
kind: t.LiteralC<"media">;
|
|
4062
4168
|
}>>, t.ExactC<t.PartialC<{
|
|
4063
4169
|
text: t.StringC;
|
|
4170
|
+
variant: t.StringC;
|
|
4064
4171
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4065
4172
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
4066
4173
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4067
4174
|
kind: t.LiteralC<"any">;
|
|
4068
4175
|
}>, t.PartialC<{
|
|
4069
4176
|
text: t.StringC;
|
|
4177
|
+
variant: t.StringC;
|
|
4070
4178
|
}>]>>]>]>;
|
|
4071
4179
|
}>>]>>;
|
|
4072
4180
|
}>>]>, t.Type<import("../..").GroupContent, import("../..").GroupContent, unknown>]>]>>;
|
|
@@ -4201,6 +4309,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4201
4309
|
kind: t.LiteralC<"image">;
|
|
4202
4310
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4203
4311
|
text: t.StringC;
|
|
4312
|
+
variant: t.StringC;
|
|
4204
4313
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4205
4314
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
4206
4315
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -4215,6 +4324,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4215
4324
|
kind: t.LiteralC<"file">;
|
|
4216
4325
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4217
4326
|
text: t.StringC;
|
|
4327
|
+
variant: t.StringC;
|
|
4218
4328
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4219
4329
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
4220
4330
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -4223,6 +4333,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4223
4333
|
kind: t.LiteralC<"document">;
|
|
4224
4334
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4225
4335
|
text: t.StringC;
|
|
4336
|
+
variant: t.StringC;
|
|
4226
4337
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4227
4338
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
4228
4339
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -4239,18 +4350,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4239
4350
|
kind: t.LiteralC<"web">;
|
|
4240
4351
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4241
4352
|
text: t.StringC;
|
|
4353
|
+
variant: t.StringC;
|
|
4242
4354
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4243
4355
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
4244
4356
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4245
4357
|
kind: t.LiteralC<"media">;
|
|
4246
4358
|
}>>, t.ExactC<t.PartialC<{
|
|
4247
4359
|
text: t.StringC;
|
|
4360
|
+
variant: t.StringC;
|
|
4248
4361
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4249
4362
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
4250
4363
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4251
4364
|
kind: t.LiteralC<"any">;
|
|
4252
4365
|
}>, t.PartialC<{
|
|
4253
4366
|
text: t.StringC;
|
|
4367
|
+
variant: t.StringC;
|
|
4254
4368
|
}>]>>]>]>;
|
|
4255
4369
|
}>>]>, t.ExactC<t.TypeC<{
|
|
4256
4370
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -4516,6 +4630,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4516
4630
|
kind: t.LiteralC<"image">;
|
|
4517
4631
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4518
4632
|
text: t.StringC;
|
|
4633
|
+
variant: t.StringC;
|
|
4519
4634
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4520
4635
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
4521
4636
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -4530,6 +4645,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4530
4645
|
kind: t.LiteralC<"file">;
|
|
4531
4646
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4532
4647
|
text: t.StringC;
|
|
4648
|
+
variant: t.StringC;
|
|
4533
4649
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4534
4650
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
4535
4651
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -4538,6 +4654,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4538
4654
|
kind: t.LiteralC<"document">;
|
|
4539
4655
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4540
4656
|
text: t.StringC;
|
|
4657
|
+
variant: t.StringC;
|
|
4541
4658
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4542
4659
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
4543
4660
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -4554,18 +4671,21 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
4554
4671
|
kind: t.LiteralC<"web">;
|
|
4555
4672
|
}>>]>, t.ExactC<t.PartialC<{
|
|
4556
4673
|
text: t.StringC;
|
|
4674
|
+
variant: t.StringC;
|
|
4557
4675
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4558
4676
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
4559
4677
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4560
4678
|
kind: t.LiteralC<"media">;
|
|
4561
4679
|
}>>, t.ExactC<t.PartialC<{
|
|
4562
4680
|
text: t.StringC;
|
|
4681
|
+
variant: t.StringC;
|
|
4563
4682
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4564
4683
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
4565
4684
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4566
4685
|
kind: t.LiteralC<"any">;
|
|
4567
4686
|
}>, t.PartialC<{
|
|
4568
4687
|
text: t.StringC;
|
|
4688
|
+
variant: t.StringC;
|
|
4569
4689
|
}>]>>]>]>;
|
|
4570
4690
|
}>>]>>;
|
|
4571
4691
|
}>>]>, t.Type<import("../..").GroupContent, import("../..").GroupContent, unknown>]>]>;
|