@prismicio/types-internal 2.8.0 → 2.9.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/lib/_internal/utils.d.ts +3 -2
  2. package/lib/content/Document.d.ts +1369 -61
  3. package/lib/content/Document.js +11 -0
  4. package/lib/content/LegacyContentCtx.d.ts +2 -2
  5. package/lib/content/LegacyContentCtx.js +4 -1
  6. package/lib/content/fields/GroupContent.js +13 -0
  7. package/lib/content/fields/RepeatableContent.d.ts +162 -0
  8. package/lib/content/fields/RepeatableContent.js +93 -0
  9. package/lib/content/fields/WidgetContent.d.ts +1369 -61
  10. package/lib/content/fields/index.d.ts +1 -0
  11. package/lib/content/fields/index.js +1 -0
  12. package/lib/content/fields/nestable/LinkContent.d.ts +23 -0
  13. package/lib/content/fields/nestable/LinkContent.js +23 -0
  14. package/lib/content/fields/nestable/NestableContent.d.ts +218 -0
  15. package/lib/content/fields/nestable/NestableContent.js +8 -1
  16. package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +66 -66
  17. package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +727 -0
  18. package/lib/content/fields/nestable/RichTextContent/TextBlock.js +80 -0
  19. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +438 -2
  20. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +74 -0
  21. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +440 -4
  22. package/lib/content/fields/slices/Slice/SharedSliceContent.js +20 -4
  23. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +219 -1
  24. package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +219 -1
  25. package/lib/content/fields/slices/Slice/index.d.ts +735 -5
  26. package/lib/content/fields/slices/SliceItem.d.ts +734 -4
  27. package/lib/content/fields/slices/SlicesContent.d.ts +1098 -8
  28. package/lib/customtypes/CustomType.d.ts +18 -0
  29. package/lib/customtypes/Section.d.ts +18 -0
  30. package/lib/customtypes/diff/SharedSlice.d.ts +8 -0
  31. package/lib/customtypes/diff/Variation.d.ts +8 -0
  32. package/lib/customtypes/widgets/Group.d.ts +6 -0
  33. package/lib/customtypes/widgets/Widget.d.ts +21 -0
  34. package/lib/customtypes/widgets/nestable/Link.d.ts +2 -0
  35. package/lib/customtypes/widgets/nestable/Link.js +5 -1
  36. package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +1 -0
  37. package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +2 -0
  38. package/lib/customtypes/widgets/slices/LegacySlice.d.ts +2 -0
  39. package/lib/customtypes/widgets/slices/SharedSlice.d.ts +8 -0
  40. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +6 -0
  41. package/lib/customtypes/widgets/slices/SliceWidget.d.ts +327 -0
  42. package/lib/customtypes/widgets/slices/SliceWidget.js +8 -0
  43. package/lib/customtypes/widgets/slices/Slices.d.ts +28 -0
  44. package/package.json +1 -1
  45. package/src/_internal/utils.ts +3 -1
  46. package/src/content/Document.ts +12 -0
  47. package/src/content/LegacyContentCtx.ts +4 -1
  48. package/src/content/fields/GroupContent.ts +13 -0
  49. package/src/content/fields/RepeatableContent.ts +147 -0
  50. package/src/content/fields/index.ts +1 -0
  51. package/src/content/fields/nestable/LinkContent.ts +24 -0
  52. package/src/content/fields/nestable/NestableContent.ts +12 -1
  53. package/src/content/fields/slices/Slice/SharedSliceContent.ts +18 -0
  54. package/src/customtypes/widgets/nestable/Link.ts +5 -1
@@ -190,6 +190,78 @@ export declare const isSlicesContent: (u: unknown) => u is {
190
190
  text: string;
191
191
  });
192
192
  } | {
193
+ __TYPE__: "RepeatableContent";
194
+ type: "Link";
195
+ value: {
196
+ __TYPE__: "LinkContent";
197
+ value: ({
198
+ __TYPE__: "ImageLink";
199
+ } & (({
200
+ kind: string;
201
+ id: string;
202
+ url: string;
203
+ height: string;
204
+ width: string;
205
+ size: string;
206
+ name: string;
207
+ } & {
208
+ date?: string | null | undefined;
209
+ } & {
210
+ text?: string;
211
+ }) | {
212
+ kind: "image";
213
+ text: string;
214
+ })) | ({
215
+ __TYPE__: "FileLink";
216
+ } & (({
217
+ kind: string;
218
+ id: string;
219
+ url: string;
220
+ name: string;
221
+ size: string;
222
+ } & {
223
+ date?: string | null | undefined;
224
+ } & {
225
+ text?: string;
226
+ }) | {
227
+ kind: "file";
228
+ text: string;
229
+ })) | ({
230
+ __TYPE__: "MediaLink";
231
+ } & {
232
+ kind: "media";
233
+ text: string;
234
+ }) | ({
235
+ __TYPE__: "DocumentLink";
236
+ } & (({
237
+ id: string;
238
+ } & {
239
+ text?: string;
240
+ }) | {
241
+ kind: "document";
242
+ text: string;
243
+ })) | ({
244
+ __TYPE__: "ExternalLink";
245
+ } & (({
246
+ url: string;
247
+ } & {
248
+ kind?: "web";
249
+ target?: string | null | undefined;
250
+ preview?: {
251
+ title?: string;
252
+ } | null | undefined;
253
+ } & {
254
+ text?: string;
255
+ }) | {
256
+ kind: "web";
257
+ text: string;
258
+ })) | ({
259
+ __TYPE__: "AnyLink";
260
+ } & {
261
+ text: string;
262
+ });
263
+ }[];
264
+ } | import("..").GroupContent | {
193
265
  __TYPE__: "StructuredTextContent";
194
266
  value: (({
195
267
  type: "image";
@@ -344,7 +416,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
344
416
  }))[];
345
417
  } | {
346
418
  __TYPE__: "SeparatorContent";
347
- } | import("..").GroupContent | {
419
+ } | {
348
420
  __TYPE__: "CompositeSliceContent";
349
421
  nonRepeat: {
350
422
  [x: string]: {
@@ -527,6 +599,78 @@ export declare const isSlicesContent: (u: unknown) => u is {
527
599
  } & {
528
600
  text: string;
529
601
  });
602
+ } | {
603
+ __TYPE__: "RepeatableContent";
604
+ type: "Link";
605
+ value: {
606
+ __TYPE__: "LinkContent";
607
+ value: ({
608
+ __TYPE__: "ImageLink";
609
+ } & (({
610
+ kind: string;
611
+ id: string;
612
+ url: string;
613
+ height: string;
614
+ width: string;
615
+ size: string;
616
+ name: string;
617
+ } & {
618
+ date?: string | null | undefined;
619
+ } & {
620
+ text?: string;
621
+ }) | {
622
+ kind: "image";
623
+ text: string;
624
+ })) | ({
625
+ __TYPE__: "FileLink";
626
+ } & (({
627
+ kind: string;
628
+ id: string;
629
+ url: string;
630
+ name: string;
631
+ size: string;
632
+ } & {
633
+ date?: string | null | undefined;
634
+ } & {
635
+ text?: string;
636
+ }) | {
637
+ kind: "file";
638
+ text: string;
639
+ })) | ({
640
+ __TYPE__: "MediaLink";
641
+ } & {
642
+ kind: "media";
643
+ text: string;
644
+ }) | ({
645
+ __TYPE__: "DocumentLink";
646
+ } & (({
647
+ id: string;
648
+ } & {
649
+ text?: string;
650
+ }) | {
651
+ kind: "document";
652
+ text: string;
653
+ })) | ({
654
+ __TYPE__: "ExternalLink";
655
+ } & (({
656
+ url: string;
657
+ } & {
658
+ kind?: "web";
659
+ target?: string | null | undefined;
660
+ preview?: {
661
+ title?: string;
662
+ } | null | undefined;
663
+ } & {
664
+ text?: string;
665
+ }) | {
666
+ kind: "web";
667
+ text: string;
668
+ })) | ({
669
+ __TYPE__: "AnyLink";
670
+ } & {
671
+ text: string;
672
+ });
673
+ }[];
530
674
  } | {
531
675
  __TYPE__: "StructuredTextContent";
532
676
  value: (({
@@ -867,6 +1011,78 @@ export declare const isSlicesContent: (u: unknown) => u is {
867
1011
  text: string;
868
1012
  });
869
1013
  } | {
1014
+ __TYPE__: "RepeatableContent";
1015
+ type: "Link";
1016
+ value: {
1017
+ __TYPE__: "LinkContent";
1018
+ value: ({
1019
+ __TYPE__: "ImageLink";
1020
+ } & (({
1021
+ kind: string;
1022
+ id: string;
1023
+ url: string;
1024
+ height: string;
1025
+ width: string;
1026
+ size: string;
1027
+ name: string;
1028
+ } & {
1029
+ date?: string | null | undefined;
1030
+ } & {
1031
+ text?: string;
1032
+ }) | {
1033
+ kind: "image";
1034
+ text: string;
1035
+ })) | ({
1036
+ __TYPE__: "FileLink";
1037
+ } & (({
1038
+ kind: string;
1039
+ id: string;
1040
+ url: string;
1041
+ name: string;
1042
+ size: string;
1043
+ } & {
1044
+ date?: string | null | undefined;
1045
+ } & {
1046
+ text?: string;
1047
+ }) | {
1048
+ kind: "file";
1049
+ text: string;
1050
+ })) | ({
1051
+ __TYPE__: "MediaLink";
1052
+ } & {
1053
+ kind: "media";
1054
+ text: string;
1055
+ }) | ({
1056
+ __TYPE__: "DocumentLink";
1057
+ } & (({
1058
+ id: string;
1059
+ } & {
1060
+ text?: string;
1061
+ }) | {
1062
+ kind: "document";
1063
+ text: string;
1064
+ })) | ({
1065
+ __TYPE__: "ExternalLink";
1066
+ } & (({
1067
+ url: string;
1068
+ } & {
1069
+ kind?: "web";
1070
+ target?: string | null | undefined;
1071
+ preview?: {
1072
+ title?: string;
1073
+ } | null | undefined;
1074
+ } & {
1075
+ text?: string;
1076
+ }) | {
1077
+ kind: "web";
1078
+ text: string;
1079
+ })) | ({
1080
+ __TYPE__: "AnyLink";
1081
+ } & {
1082
+ text: string;
1083
+ });
1084
+ }[];
1085
+ } | import("..").GroupContent | {
870
1086
  __TYPE__: "StructuredTextContent";
871
1087
  value: (({
872
1088
  type: "image";
@@ -1021,7 +1237,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1021
1237
  }))[];
1022
1238
  } | {
1023
1239
  __TYPE__: "SeparatorContent";
1024
- } | import("..").GroupContent][];
1240
+ }][];
1025
1241
  }[];
1026
1242
  } | {
1027
1243
  __TYPE__: "SharedSliceContent";
@@ -1208,6 +1424,78 @@ export declare const isSlicesContent: (u: unknown) => u is {
1208
1424
  text: string;
1209
1425
  });
1210
1426
  } | {
1427
+ __TYPE__: "RepeatableContent";
1428
+ type: "Link";
1429
+ value: {
1430
+ __TYPE__: "LinkContent";
1431
+ value: ({
1432
+ __TYPE__: "ImageLink";
1433
+ } & (({
1434
+ kind: string;
1435
+ id: string;
1436
+ url: string;
1437
+ height: string;
1438
+ width: string;
1439
+ size: string;
1440
+ name: string;
1441
+ } & {
1442
+ date?: string | null | undefined;
1443
+ } & {
1444
+ text?: string;
1445
+ }) | {
1446
+ kind: "image";
1447
+ text: string;
1448
+ })) | ({
1449
+ __TYPE__: "FileLink";
1450
+ } & (({
1451
+ kind: string;
1452
+ id: string;
1453
+ url: string;
1454
+ name: string;
1455
+ size: string;
1456
+ } & {
1457
+ date?: string | null | undefined;
1458
+ } & {
1459
+ text?: string;
1460
+ }) | {
1461
+ kind: "file";
1462
+ text: string;
1463
+ })) | ({
1464
+ __TYPE__: "MediaLink";
1465
+ } & {
1466
+ kind: "media";
1467
+ text: string;
1468
+ }) | ({
1469
+ __TYPE__: "DocumentLink";
1470
+ } & (({
1471
+ id: string;
1472
+ } & {
1473
+ text?: string;
1474
+ }) | {
1475
+ kind: "document";
1476
+ text: string;
1477
+ })) | ({
1478
+ __TYPE__: "ExternalLink";
1479
+ } & (({
1480
+ url: string;
1481
+ } & {
1482
+ kind?: "web";
1483
+ target?: string | null | undefined;
1484
+ preview?: {
1485
+ title?: string;
1486
+ } | null | undefined;
1487
+ } & {
1488
+ text?: string;
1489
+ }) | {
1490
+ kind: "web";
1491
+ text: string;
1492
+ })) | ({
1493
+ __TYPE__: "AnyLink";
1494
+ } & {
1495
+ text: string;
1496
+ });
1497
+ }[];
1498
+ } | import("..").GroupContent | {
1211
1499
  __TYPE__: "StructuredTextContent";
1212
1500
  value: (({
1213
1501
  type: "image";
@@ -1362,7 +1650,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1362
1650
  }))[];
1363
1651
  } | {
1364
1652
  __TYPE__: "SeparatorContent";
1365
- } | import("..").GroupContent;
1653
+ };
1366
1654
  };
1367
1655
  items: {
1368
1656
  __TYPE__: "GroupItemContent";
@@ -1547,6 +1835,78 @@ export declare const isSlicesContent: (u: unknown) => u is {
1547
1835
  text: string;
1548
1836
  });
1549
1837
  } | {
1838
+ __TYPE__: "RepeatableContent";
1839
+ type: "Link";
1840
+ value: {
1841
+ __TYPE__: "LinkContent";
1842
+ value: ({
1843
+ __TYPE__: "ImageLink";
1844
+ } & (({
1845
+ kind: string;
1846
+ id: string;
1847
+ url: string;
1848
+ height: string;
1849
+ width: string;
1850
+ size: string;
1851
+ name: string;
1852
+ } & {
1853
+ date?: string | null | undefined;
1854
+ } & {
1855
+ text?: string;
1856
+ }) | {
1857
+ kind: "image";
1858
+ text: string;
1859
+ })) | ({
1860
+ __TYPE__: "FileLink";
1861
+ } & (({
1862
+ kind: string;
1863
+ id: string;
1864
+ url: string;
1865
+ name: string;
1866
+ size: string;
1867
+ } & {
1868
+ date?: string | null | undefined;
1869
+ } & {
1870
+ text?: string;
1871
+ }) | {
1872
+ kind: "file";
1873
+ text: string;
1874
+ })) | ({
1875
+ __TYPE__: "MediaLink";
1876
+ } & {
1877
+ kind: "media";
1878
+ text: string;
1879
+ }) | ({
1880
+ __TYPE__: "DocumentLink";
1881
+ } & (({
1882
+ id: string;
1883
+ } & {
1884
+ text?: string;
1885
+ }) | {
1886
+ kind: "document";
1887
+ text: string;
1888
+ })) | ({
1889
+ __TYPE__: "ExternalLink";
1890
+ } & (({
1891
+ url: string;
1892
+ } & {
1893
+ kind?: "web";
1894
+ target?: string | null | undefined;
1895
+ preview?: {
1896
+ title?: string;
1897
+ } | null | undefined;
1898
+ } & {
1899
+ text?: string;
1900
+ }) | {
1901
+ kind: "web";
1902
+ text: string;
1903
+ })) | ({
1904
+ __TYPE__: "AnyLink";
1905
+ } & {
1906
+ text: string;
1907
+ });
1908
+ }[];
1909
+ } | import("..").GroupContent | {
1550
1910
  __TYPE__: "StructuredTextContent";
1551
1911
  value: (({
1552
1912
  type: "image";
@@ -1701,7 +2061,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1701
2061
  }))[];
1702
2062
  } | {
1703
2063
  __TYPE__: "SeparatorContent";
1704
- } | import("..").GroupContent][];
2064
+ }][];
1705
2065
  }[];
1706
2066
  };
1707
2067
  }[];
@@ -1894,6 +2254,78 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
1894
2254
  text: string;
1895
2255
  });
1896
2256
  } | {
2257
+ __TYPE__: "RepeatableContent";
2258
+ type: "Link";
2259
+ value: {
2260
+ __TYPE__: "LinkContent";
2261
+ value: ({
2262
+ __TYPE__: "ImageLink";
2263
+ } & (({
2264
+ kind: string;
2265
+ id: string;
2266
+ url: string;
2267
+ height: string;
2268
+ width: string;
2269
+ size: string;
2270
+ name: string;
2271
+ } & {
2272
+ date?: string | null | undefined;
2273
+ } & {
2274
+ text?: string;
2275
+ }) | {
2276
+ kind: "image";
2277
+ text: string;
2278
+ })) | ({
2279
+ __TYPE__: "FileLink";
2280
+ } & (({
2281
+ kind: string;
2282
+ id: string;
2283
+ url: string;
2284
+ name: string;
2285
+ size: string;
2286
+ } & {
2287
+ date?: string | null | undefined;
2288
+ } & {
2289
+ text?: string;
2290
+ }) | {
2291
+ kind: "file";
2292
+ text: string;
2293
+ })) | ({
2294
+ __TYPE__: "MediaLink";
2295
+ } & {
2296
+ kind: "media";
2297
+ text: string;
2298
+ }) | ({
2299
+ __TYPE__: "DocumentLink";
2300
+ } & (({
2301
+ id: string;
2302
+ } & {
2303
+ text?: string;
2304
+ }) | {
2305
+ kind: "document";
2306
+ text: string;
2307
+ })) | ({
2308
+ __TYPE__: "ExternalLink";
2309
+ } & (({
2310
+ url: string;
2311
+ } & {
2312
+ kind?: "web";
2313
+ target?: string | null | undefined;
2314
+ preview?: {
2315
+ title?: string;
2316
+ } | null | undefined;
2317
+ } & {
2318
+ text?: string;
2319
+ }) | {
2320
+ kind: "web";
2321
+ text: string;
2322
+ })) | ({
2323
+ __TYPE__: "AnyLink";
2324
+ } & {
2325
+ text: string;
2326
+ });
2327
+ }[];
2328
+ } | import("..").GroupContent | {
1897
2329
  __TYPE__: "StructuredTextContent";
1898
2330
  value: (({
1899
2331
  type: "image";
@@ -2048,7 +2480,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2048
2480
  }))[];
2049
2481
  } | {
2050
2482
  __TYPE__: "SeparatorContent";
2051
- } | import("..").GroupContent | {
2483
+ } | {
2052
2484
  __TYPE__: "CompositeSliceContent";
2053
2485
  nonRepeat: {
2054
2486
  [x: string]: {
@@ -2231,6 +2663,78 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2231
2663
  } & {
2232
2664
  text: string;
2233
2665
  });
2666
+ } | {
2667
+ __TYPE__: "RepeatableContent";
2668
+ type: "Link";
2669
+ value: {
2670
+ __TYPE__: "LinkContent";
2671
+ value: ({
2672
+ __TYPE__: "ImageLink";
2673
+ } & (({
2674
+ kind: string;
2675
+ id: string;
2676
+ url: string;
2677
+ height: string;
2678
+ width: string;
2679
+ size: string;
2680
+ name: string;
2681
+ } & {
2682
+ date?: string | null | undefined;
2683
+ } & {
2684
+ text?: string;
2685
+ }) | {
2686
+ kind: "image";
2687
+ text: string;
2688
+ })) | ({
2689
+ __TYPE__: "FileLink";
2690
+ } & (({
2691
+ kind: string;
2692
+ id: string;
2693
+ url: string;
2694
+ name: string;
2695
+ size: string;
2696
+ } & {
2697
+ date?: string | null | undefined;
2698
+ } & {
2699
+ text?: string;
2700
+ }) | {
2701
+ kind: "file";
2702
+ text: string;
2703
+ })) | ({
2704
+ __TYPE__: "MediaLink";
2705
+ } & {
2706
+ kind: "media";
2707
+ text: string;
2708
+ }) | ({
2709
+ __TYPE__: "DocumentLink";
2710
+ } & (({
2711
+ id: string;
2712
+ } & {
2713
+ text?: string;
2714
+ }) | {
2715
+ kind: "document";
2716
+ text: string;
2717
+ })) | ({
2718
+ __TYPE__: "ExternalLink";
2719
+ } & (({
2720
+ url: string;
2721
+ } & {
2722
+ kind?: "web";
2723
+ target?: string | null | undefined;
2724
+ preview?: {
2725
+ title?: string;
2726
+ } | null | undefined;
2727
+ } & {
2728
+ text?: string;
2729
+ }) | {
2730
+ kind: "web";
2731
+ text: string;
2732
+ })) | ({
2733
+ __TYPE__: "AnyLink";
2734
+ } & {
2735
+ text: string;
2736
+ });
2737
+ }[];
2234
2738
  } | {
2235
2739
  __TYPE__: "StructuredTextContent";
2236
2740
  value: (({
@@ -2571,6 +3075,78 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2571
3075
  text: string;
2572
3076
  });
2573
3077
  } | {
3078
+ __TYPE__: "RepeatableContent";
3079
+ type: "Link";
3080
+ value: {
3081
+ __TYPE__: "LinkContent";
3082
+ value: ({
3083
+ __TYPE__: "ImageLink";
3084
+ } & (({
3085
+ kind: string;
3086
+ id: string;
3087
+ url: string;
3088
+ height: string;
3089
+ width: string;
3090
+ size: string;
3091
+ name: string;
3092
+ } & {
3093
+ date?: string | null | undefined;
3094
+ } & {
3095
+ text?: string;
3096
+ }) | {
3097
+ kind: "image";
3098
+ text: string;
3099
+ })) | ({
3100
+ __TYPE__: "FileLink";
3101
+ } & (({
3102
+ kind: string;
3103
+ id: string;
3104
+ url: string;
3105
+ name: string;
3106
+ size: string;
3107
+ } & {
3108
+ date?: string | null | undefined;
3109
+ } & {
3110
+ text?: string;
3111
+ }) | {
3112
+ kind: "file";
3113
+ text: string;
3114
+ })) | ({
3115
+ __TYPE__: "MediaLink";
3116
+ } & {
3117
+ kind: "media";
3118
+ text: string;
3119
+ }) | ({
3120
+ __TYPE__: "DocumentLink";
3121
+ } & (({
3122
+ id: string;
3123
+ } & {
3124
+ text?: string;
3125
+ }) | {
3126
+ kind: "document";
3127
+ text: string;
3128
+ })) | ({
3129
+ __TYPE__: "ExternalLink";
3130
+ } & (({
3131
+ url: string;
3132
+ } & {
3133
+ kind?: "web";
3134
+ target?: string | null | undefined;
3135
+ preview?: {
3136
+ title?: string;
3137
+ } | null | undefined;
3138
+ } & {
3139
+ text?: string;
3140
+ }) | {
3141
+ kind: "web";
3142
+ text: string;
3143
+ })) | ({
3144
+ __TYPE__: "AnyLink";
3145
+ } & {
3146
+ text: string;
3147
+ });
3148
+ }[];
3149
+ } | import("..").GroupContent | {
2574
3150
  __TYPE__: "StructuredTextContent";
2575
3151
  value: (({
2576
3152
  type: "image";
@@ -2725,7 +3301,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2725
3301
  }))[];
2726
3302
  } | {
2727
3303
  __TYPE__: "SeparatorContent";
2728
- } | import("..").GroupContent][];
3304
+ }][];
2729
3305
  }[];
2730
3306
  } | {
2731
3307
  __TYPE__: "SharedSliceContent";
@@ -2912,6 +3488,78 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2912
3488
  text: string;
2913
3489
  });
2914
3490
  } | {
3491
+ __TYPE__: "RepeatableContent";
3492
+ type: "Link";
3493
+ value: {
3494
+ __TYPE__: "LinkContent";
3495
+ value: ({
3496
+ __TYPE__: "ImageLink";
3497
+ } & (({
3498
+ kind: string;
3499
+ id: string;
3500
+ url: string;
3501
+ height: string;
3502
+ width: string;
3503
+ size: string;
3504
+ name: string;
3505
+ } & {
3506
+ date?: string | null | undefined;
3507
+ } & {
3508
+ text?: string;
3509
+ }) | {
3510
+ kind: "image";
3511
+ text: string;
3512
+ })) | ({
3513
+ __TYPE__: "FileLink";
3514
+ } & (({
3515
+ kind: string;
3516
+ id: string;
3517
+ url: string;
3518
+ name: string;
3519
+ size: string;
3520
+ } & {
3521
+ date?: string | null | undefined;
3522
+ } & {
3523
+ text?: string;
3524
+ }) | {
3525
+ kind: "file";
3526
+ text: string;
3527
+ })) | ({
3528
+ __TYPE__: "MediaLink";
3529
+ } & {
3530
+ kind: "media";
3531
+ text: string;
3532
+ }) | ({
3533
+ __TYPE__: "DocumentLink";
3534
+ } & (({
3535
+ id: string;
3536
+ } & {
3537
+ text?: string;
3538
+ }) | {
3539
+ kind: "document";
3540
+ text: string;
3541
+ })) | ({
3542
+ __TYPE__: "ExternalLink";
3543
+ } & (({
3544
+ url: string;
3545
+ } & {
3546
+ kind?: "web";
3547
+ target?: string | null | undefined;
3548
+ preview?: {
3549
+ title?: string;
3550
+ } | null | undefined;
3551
+ } & {
3552
+ text?: string;
3553
+ }) | {
3554
+ kind: "web";
3555
+ text: string;
3556
+ })) | ({
3557
+ __TYPE__: "AnyLink";
3558
+ } & {
3559
+ text: string;
3560
+ });
3561
+ }[];
3562
+ } | import("..").GroupContent | {
2915
3563
  __TYPE__: "StructuredTextContent";
2916
3564
  value: (({
2917
3565
  type: "image";
@@ -3066,7 +3714,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3066
3714
  }))[];
3067
3715
  } | {
3068
3716
  __TYPE__: "SeparatorContent";
3069
- } | import("..").GroupContent;
3717
+ };
3070
3718
  };
3071
3719
  items: {
3072
3720
  __TYPE__: "GroupItemContent";
@@ -3251,6 +3899,78 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3251
3899
  text: string;
3252
3900
  });
3253
3901
  } | {
3902
+ __TYPE__: "RepeatableContent";
3903
+ type: "Link";
3904
+ value: {
3905
+ __TYPE__: "LinkContent";
3906
+ value: ({
3907
+ __TYPE__: "ImageLink";
3908
+ } & (({
3909
+ kind: string;
3910
+ id: string;
3911
+ url: string;
3912
+ height: string;
3913
+ width: string;
3914
+ size: string;
3915
+ name: string;
3916
+ } & {
3917
+ date?: string | null | undefined;
3918
+ } & {
3919
+ text?: string;
3920
+ }) | {
3921
+ kind: "image";
3922
+ text: string;
3923
+ })) | ({
3924
+ __TYPE__: "FileLink";
3925
+ } & (({
3926
+ kind: string;
3927
+ id: string;
3928
+ url: string;
3929
+ name: string;
3930
+ size: string;
3931
+ } & {
3932
+ date?: string | null | undefined;
3933
+ } & {
3934
+ text?: string;
3935
+ }) | {
3936
+ kind: "file";
3937
+ text: string;
3938
+ })) | ({
3939
+ __TYPE__: "MediaLink";
3940
+ } & {
3941
+ kind: "media";
3942
+ text: string;
3943
+ }) | ({
3944
+ __TYPE__: "DocumentLink";
3945
+ } & (({
3946
+ id: string;
3947
+ } & {
3948
+ text?: string;
3949
+ }) | {
3950
+ kind: "document";
3951
+ text: string;
3952
+ })) | ({
3953
+ __TYPE__: "ExternalLink";
3954
+ } & (({
3955
+ url: string;
3956
+ } & {
3957
+ kind?: "web";
3958
+ target?: string | null | undefined;
3959
+ preview?: {
3960
+ title?: string;
3961
+ } | null | undefined;
3962
+ } & {
3963
+ text?: string;
3964
+ }) | {
3965
+ kind: "web";
3966
+ text: string;
3967
+ })) | ({
3968
+ __TYPE__: "AnyLink";
3969
+ } & {
3970
+ text: string;
3971
+ });
3972
+ }[];
3973
+ } | import("..").GroupContent | {
3254
3974
  __TYPE__: "StructuredTextContent";
3255
3975
  value: (({
3256
3976
  type: "image";
@@ -3405,7 +4125,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3405
4125
  }))[];
3406
4126
  } | {
3407
4127
  __TYPE__: "SeparatorContent";
3408
- } | import("..").GroupContent][];
4128
+ }][];
3409
4129
  }[];
3410
4130
  };
3411
4131
  }[];
@@ -3839,6 +4559,80 @@ export declare const SlicesContent: t.TypeC<{
3839
4559
  }>]>>]>>;
3840
4560
  }>>, t.ExactC<t.TypeC<{
3841
4561
  __TYPE__: t.LiteralC<"SeparatorContent">;
4562
+ }>>, t.ExactC<t.TypeC<{
4563
+ __TYPE__: t.LiteralC<"RepeatableContent">;
4564
+ type: t.LiteralC<"Link">;
4565
+ value: t.ArrayC<t.ExactC<t.TypeC<{
4566
+ __TYPE__: t.LiteralC<"LinkContent">;
4567
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4568
+ __TYPE__: t.LiteralC<"ImageLink">;
4569
+ }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4570
+ kind: t.StringC;
4571
+ id: t.StringC;
4572
+ url: t.StringC;
4573
+ height: t.StringC;
4574
+ width: t.StringC;
4575
+ size: t.StringC;
4576
+ name: t.StringC;
4577
+ }>>, t.ExactC<t.PartialC<{
4578
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4579
+ }>>]>, t.ExactC<t.PartialC<{
4580
+ text: t.StringC;
4581
+ }>>]>, t.ExactC<t.TypeC<{
4582
+ kind: t.LiteralC<"image">;
4583
+ text: t.StringC;
4584
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4585
+ __TYPE__: t.LiteralC<"FileLink">;
4586
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4587
+ kind: t.StringC;
4588
+ id: t.StringC;
4589
+ url: t.StringC;
4590
+ name: t.StringC;
4591
+ size: t.StringC;
4592
+ }>, t.PartialC<{
4593
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4594
+ }>]>>, t.ExactC<t.PartialC<{
4595
+ text: t.StringC;
4596
+ }>>]>, t.ExactC<t.TypeC<{
4597
+ kind: t.LiteralC<"file">;
4598
+ text: t.StringC;
4599
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4600
+ __TYPE__: t.LiteralC<"DocumentLink">;
4601
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4602
+ id: t.Type<string, string, unknown>;
4603
+ }>>, t.ExactC<t.PartialC<{
4604
+ text: t.StringC;
4605
+ }>>]>, t.ExactC<t.TypeC<{
4606
+ kind: t.LiteralC<"document">;
4607
+ text: t.StringC;
4608
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4609
+ __TYPE__: t.LiteralC<"ExternalLink">;
4610
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4611
+ url: t.StringC;
4612
+ }>, t.PartialC<{
4613
+ kind: t.LiteralC<"web">;
4614
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4615
+ preview: t.UnionC<[t.Type<{
4616
+ title?: string;
4617
+ }, {
4618
+ title?: string;
4619
+ }, unknown>, t.NullC, t.UndefinedC]>;
4620
+ }>]>>, t.ExactC<t.PartialC<{
4621
+ text: t.StringC;
4622
+ }>>]>, t.ExactC<t.TypeC<{
4623
+ kind: t.LiteralC<"web">;
4624
+ text: t.StringC;
4625
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4626
+ __TYPE__: t.LiteralC<"MediaLink">;
4627
+ }>>, t.ExactC<t.TypeC<{
4628
+ kind: t.LiteralC<"media">;
4629
+ text: t.StringC;
4630
+ }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4631
+ __TYPE__: t.LiteralC<"AnyLink">;
4632
+ }>>, t.ExactC<t.TypeC<{
4633
+ text: t.StringC;
4634
+ }>>]>]>;
4635
+ }>>>;
3842
4636
  }>>]>>;
3843
4637
  repeat: t.ArrayC<t.ExactC<t.TypeC<{
3844
4638
  __TYPE__: t.LiteralC<"GroupItemContent">;
@@ -4263,6 +5057,80 @@ export declare const SlicesContent: t.TypeC<{
4263
5057
  }>]>>]>>;
4264
5058
  }>>, t.ExactC<t.TypeC<{
4265
5059
  __TYPE__: t.LiteralC<"SeparatorContent">;
5060
+ }>>, t.ExactC<t.TypeC<{
5061
+ __TYPE__: t.LiteralC<"RepeatableContent">;
5062
+ type: t.LiteralC<"Link">;
5063
+ value: t.ArrayC<t.ExactC<t.TypeC<{
5064
+ __TYPE__: t.LiteralC<"LinkContent">;
5065
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5066
+ __TYPE__: t.LiteralC<"ImageLink">;
5067
+ }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5068
+ kind: t.StringC;
5069
+ id: t.StringC;
5070
+ url: t.StringC;
5071
+ height: t.StringC;
5072
+ width: t.StringC;
5073
+ size: t.StringC;
5074
+ name: t.StringC;
5075
+ }>>, t.ExactC<t.PartialC<{
5076
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5077
+ }>>]>, t.ExactC<t.PartialC<{
5078
+ text: t.StringC;
5079
+ }>>]>, t.ExactC<t.TypeC<{
5080
+ kind: t.LiteralC<"image">;
5081
+ text: t.StringC;
5082
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5083
+ __TYPE__: t.LiteralC<"FileLink">;
5084
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5085
+ kind: t.StringC;
5086
+ id: t.StringC;
5087
+ url: t.StringC;
5088
+ name: t.StringC;
5089
+ size: t.StringC;
5090
+ }>, t.PartialC<{
5091
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5092
+ }>]>>, t.ExactC<t.PartialC<{
5093
+ text: t.StringC;
5094
+ }>>]>, t.ExactC<t.TypeC<{
5095
+ kind: t.LiteralC<"file">;
5096
+ text: t.StringC;
5097
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5098
+ __TYPE__: t.LiteralC<"DocumentLink">;
5099
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5100
+ id: t.Type<string, string, unknown>;
5101
+ }>>, t.ExactC<t.PartialC<{
5102
+ text: t.StringC;
5103
+ }>>]>, t.ExactC<t.TypeC<{
5104
+ kind: t.LiteralC<"document">;
5105
+ text: t.StringC;
5106
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5107
+ __TYPE__: t.LiteralC<"ExternalLink">;
5108
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5109
+ url: t.StringC;
5110
+ }>, t.PartialC<{
5111
+ kind: t.LiteralC<"web">;
5112
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5113
+ preview: t.UnionC<[t.Type<{
5114
+ title?: string;
5115
+ }, {
5116
+ title?: string;
5117
+ }, unknown>, t.NullC, t.UndefinedC]>;
5118
+ }>]>>, t.ExactC<t.PartialC<{
5119
+ text: t.StringC;
5120
+ }>>]>, t.ExactC<t.TypeC<{
5121
+ kind: t.LiteralC<"web">;
5122
+ text: t.StringC;
5123
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5124
+ __TYPE__: t.LiteralC<"MediaLink">;
5125
+ }>>, t.ExactC<t.TypeC<{
5126
+ kind: t.LiteralC<"media">;
5127
+ text: t.StringC;
5128
+ }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5129
+ __TYPE__: t.LiteralC<"AnyLink">;
5130
+ }>>, t.ExactC<t.TypeC<{
5131
+ text: t.StringC;
5132
+ }>>]>]>;
5133
+ }>>>;
4266
5134
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
4267
5135
  }>>>;
4268
5136
  }>>, t.ExactC<t.TypeC<{
@@ -4689,6 +5557,80 @@ export declare const SlicesContent: t.TypeC<{
4689
5557
  }>]>>]>>;
4690
5558
  }>>, t.ExactC<t.TypeC<{
4691
5559
  __TYPE__: t.LiteralC<"SeparatorContent">;
5560
+ }>>, t.ExactC<t.TypeC<{
5561
+ __TYPE__: t.LiteralC<"RepeatableContent">;
5562
+ type: t.LiteralC<"Link">;
5563
+ value: t.ArrayC<t.ExactC<t.TypeC<{
5564
+ __TYPE__: t.LiteralC<"LinkContent">;
5565
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5566
+ __TYPE__: t.LiteralC<"ImageLink">;
5567
+ }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5568
+ kind: t.StringC;
5569
+ id: t.StringC;
5570
+ url: t.StringC;
5571
+ height: t.StringC;
5572
+ width: t.StringC;
5573
+ size: t.StringC;
5574
+ name: t.StringC;
5575
+ }>>, t.ExactC<t.PartialC<{
5576
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5577
+ }>>]>, t.ExactC<t.PartialC<{
5578
+ text: t.StringC;
5579
+ }>>]>, t.ExactC<t.TypeC<{
5580
+ kind: t.LiteralC<"image">;
5581
+ text: t.StringC;
5582
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5583
+ __TYPE__: t.LiteralC<"FileLink">;
5584
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5585
+ kind: t.StringC;
5586
+ id: t.StringC;
5587
+ url: t.StringC;
5588
+ name: t.StringC;
5589
+ size: t.StringC;
5590
+ }>, t.PartialC<{
5591
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5592
+ }>]>>, t.ExactC<t.PartialC<{
5593
+ text: t.StringC;
5594
+ }>>]>, t.ExactC<t.TypeC<{
5595
+ kind: t.LiteralC<"file">;
5596
+ text: t.StringC;
5597
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5598
+ __TYPE__: t.LiteralC<"DocumentLink">;
5599
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5600
+ id: t.Type<string, string, unknown>;
5601
+ }>>, t.ExactC<t.PartialC<{
5602
+ text: t.StringC;
5603
+ }>>]>, t.ExactC<t.TypeC<{
5604
+ kind: t.LiteralC<"document">;
5605
+ text: t.StringC;
5606
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5607
+ __TYPE__: t.LiteralC<"ExternalLink">;
5608
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5609
+ url: t.StringC;
5610
+ }>, t.PartialC<{
5611
+ kind: t.LiteralC<"web">;
5612
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5613
+ preview: t.UnionC<[t.Type<{
5614
+ title?: string;
5615
+ }, {
5616
+ title?: string;
5617
+ }, unknown>, t.NullC, t.UndefinedC]>;
5618
+ }>]>>, t.ExactC<t.PartialC<{
5619
+ text: t.StringC;
5620
+ }>>]>, t.ExactC<t.TypeC<{
5621
+ kind: t.LiteralC<"web">;
5622
+ text: t.StringC;
5623
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5624
+ __TYPE__: t.LiteralC<"MediaLink">;
5625
+ }>>, t.ExactC<t.TypeC<{
5626
+ kind: t.LiteralC<"media">;
5627
+ text: t.StringC;
5628
+ }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5629
+ __TYPE__: t.LiteralC<"AnyLink">;
5630
+ }>>, t.ExactC<t.TypeC<{
5631
+ text: t.StringC;
5632
+ }>>]>]>;
5633
+ }>>>;
4692
5634
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>>;
4693
5635
  items: t.ArrayC<t.ExactC<t.TypeC<{
4694
5636
  __TYPE__: t.LiteralC<"GroupItemContent">;
@@ -5113,6 +6055,80 @@ export declare const SlicesContent: t.TypeC<{
5113
6055
  }>]>>]>>;
5114
6056
  }>>, t.ExactC<t.TypeC<{
5115
6057
  __TYPE__: t.LiteralC<"SeparatorContent">;
6058
+ }>>, t.ExactC<t.TypeC<{
6059
+ __TYPE__: t.LiteralC<"RepeatableContent">;
6060
+ type: t.LiteralC<"Link">;
6061
+ value: t.ArrayC<t.ExactC<t.TypeC<{
6062
+ __TYPE__: t.LiteralC<"LinkContent">;
6063
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6064
+ __TYPE__: t.LiteralC<"ImageLink">;
6065
+ }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6066
+ kind: t.StringC;
6067
+ id: t.StringC;
6068
+ url: t.StringC;
6069
+ height: t.StringC;
6070
+ width: t.StringC;
6071
+ size: t.StringC;
6072
+ name: t.StringC;
6073
+ }>>, t.ExactC<t.PartialC<{
6074
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6075
+ }>>]>, t.ExactC<t.PartialC<{
6076
+ text: t.StringC;
6077
+ }>>]>, t.ExactC<t.TypeC<{
6078
+ kind: t.LiteralC<"image">;
6079
+ text: t.StringC;
6080
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6081
+ __TYPE__: t.LiteralC<"FileLink">;
6082
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6083
+ kind: t.StringC;
6084
+ id: t.StringC;
6085
+ url: t.StringC;
6086
+ name: t.StringC;
6087
+ size: t.StringC;
6088
+ }>, t.PartialC<{
6089
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6090
+ }>]>>, t.ExactC<t.PartialC<{
6091
+ text: t.StringC;
6092
+ }>>]>, t.ExactC<t.TypeC<{
6093
+ kind: t.LiteralC<"file">;
6094
+ text: t.StringC;
6095
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6096
+ __TYPE__: t.LiteralC<"DocumentLink">;
6097
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6098
+ id: t.Type<string, string, unknown>;
6099
+ }>>, t.ExactC<t.PartialC<{
6100
+ text: t.StringC;
6101
+ }>>]>, t.ExactC<t.TypeC<{
6102
+ kind: t.LiteralC<"document">;
6103
+ text: t.StringC;
6104
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6105
+ __TYPE__: t.LiteralC<"ExternalLink">;
6106
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6107
+ url: t.StringC;
6108
+ }>, t.PartialC<{
6109
+ kind: t.LiteralC<"web">;
6110
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6111
+ preview: t.UnionC<[t.Type<{
6112
+ title?: string;
6113
+ }, {
6114
+ title?: string;
6115
+ }, unknown>, t.NullC, t.UndefinedC]>;
6116
+ }>]>>, t.ExactC<t.PartialC<{
6117
+ text: t.StringC;
6118
+ }>>]>, t.ExactC<t.TypeC<{
6119
+ kind: t.LiteralC<"web">;
6120
+ text: t.StringC;
6121
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6122
+ __TYPE__: t.LiteralC<"MediaLink">;
6123
+ }>>, t.ExactC<t.TypeC<{
6124
+ kind: t.LiteralC<"media">;
6125
+ text: t.StringC;
6126
+ }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6127
+ __TYPE__: t.LiteralC<"AnyLink">;
6128
+ }>>, t.ExactC<t.TypeC<{
6129
+ text: t.StringC;
6130
+ }>>]>]>;
6131
+ }>>>;
5116
6132
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
5117
6133
  }>>>;
5118
6134
  }>>, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -5536,6 +6552,80 @@ export declare const SlicesContent: t.TypeC<{
5536
6552
  }>]>>]>>;
5537
6553
  }>>, t.ExactC<t.TypeC<{
5538
6554
  __TYPE__: t.LiteralC<"SeparatorContent">;
6555
+ }>>, t.ExactC<t.TypeC<{
6556
+ __TYPE__: t.LiteralC<"RepeatableContent">;
6557
+ type: t.LiteralC<"Link">;
6558
+ value: t.ArrayC<t.ExactC<t.TypeC<{
6559
+ __TYPE__: t.LiteralC<"LinkContent">;
6560
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6561
+ __TYPE__: t.LiteralC<"ImageLink">;
6562
+ }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6563
+ kind: t.StringC;
6564
+ id: t.StringC;
6565
+ url: t.StringC;
6566
+ height: t.StringC;
6567
+ width: t.StringC;
6568
+ size: t.StringC;
6569
+ name: t.StringC;
6570
+ }>>, t.ExactC<t.PartialC<{
6571
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6572
+ }>>]>, t.ExactC<t.PartialC<{
6573
+ text: t.StringC;
6574
+ }>>]>, t.ExactC<t.TypeC<{
6575
+ kind: t.LiteralC<"image">;
6576
+ text: t.StringC;
6577
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6578
+ __TYPE__: t.LiteralC<"FileLink">;
6579
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6580
+ kind: t.StringC;
6581
+ id: t.StringC;
6582
+ url: t.StringC;
6583
+ name: t.StringC;
6584
+ size: t.StringC;
6585
+ }>, t.PartialC<{
6586
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6587
+ }>]>>, t.ExactC<t.PartialC<{
6588
+ text: t.StringC;
6589
+ }>>]>, t.ExactC<t.TypeC<{
6590
+ kind: t.LiteralC<"file">;
6591
+ text: t.StringC;
6592
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6593
+ __TYPE__: t.LiteralC<"DocumentLink">;
6594
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6595
+ id: t.Type<string, string, unknown>;
6596
+ }>>, t.ExactC<t.PartialC<{
6597
+ text: t.StringC;
6598
+ }>>]>, t.ExactC<t.TypeC<{
6599
+ kind: t.LiteralC<"document">;
6600
+ text: t.StringC;
6601
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6602
+ __TYPE__: t.LiteralC<"ExternalLink">;
6603
+ }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6604
+ url: t.StringC;
6605
+ }>, t.PartialC<{
6606
+ kind: t.LiteralC<"web">;
6607
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6608
+ preview: t.UnionC<[t.Type<{
6609
+ title?: string;
6610
+ }, {
6611
+ title?: string;
6612
+ }, unknown>, t.NullC, t.UndefinedC]>;
6613
+ }>]>>, t.ExactC<t.PartialC<{
6614
+ text: t.StringC;
6615
+ }>>]>, t.ExactC<t.TypeC<{
6616
+ kind: t.LiteralC<"web">;
6617
+ text: t.StringC;
6618
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6619
+ __TYPE__: t.LiteralC<"MediaLink">;
6620
+ }>>, t.ExactC<t.TypeC<{
6621
+ kind: t.LiteralC<"media">;
6622
+ text: t.StringC;
6623
+ }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6624
+ __TYPE__: t.LiteralC<"AnyLink">;
6625
+ }>>, t.ExactC<t.TypeC<{
6626
+ text: t.StringC;
6627
+ }>>]>]>;
6628
+ }>>>;
5539
6629
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>;
5540
6630
  }>>;
5541
6631
  }>;