@prismicio/types-internal 3.0.0 → 3.1.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.
Files changed (53) hide show
  1. package/lib/_internal/utils.d.ts +3 -2
  2. package/lib/content/Document.d.ts +1561 -361
  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 +34 -40
  8. package/lib/content/fields/WidgetContent.d.ts +1558 -358
  9. package/lib/content/fields/index.d.ts +1 -0
  10. package/lib/content/fields/index.js +1 -0
  11. package/lib/content/fields/nestable/LinkContent.d.ts +122 -146
  12. package/lib/content/fields/nestable/LinkContent.js +19 -39
  13. package/lib/content/fields/nestable/NestableContent.d.ts +254 -54
  14. package/lib/content/fields/nestable/NestableContent.js +8 -1
  15. package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +66 -66
  16. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +510 -110
  17. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +86 -18
  18. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +512 -112
  19. package/lib/content/fields/slices/Slice/SharedSliceContent.js +20 -4
  20. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +255 -55
  21. package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +255 -55
  22. package/lib/content/fields/slices/Slice/index.d.ts +855 -185
  23. package/lib/content/fields/slices/SliceItem.d.ts +854 -184
  24. package/lib/content/fields/slices/SlicesContent.d.ts +1278 -278
  25. package/lib/customtypes/CustomType.d.ts +18 -0
  26. package/lib/customtypes/Section.d.ts +18 -0
  27. package/lib/customtypes/diff/SharedSlice.d.ts +8 -0
  28. package/lib/customtypes/diff/Variation.d.ts +8 -0
  29. package/lib/customtypes/widgets/Group.d.ts +6 -0
  30. package/lib/customtypes/widgets/Widget.d.ts +21 -0
  31. package/lib/customtypes/widgets/nestable/Link.d.ts +10 -0
  32. package/lib/customtypes/widgets/nestable/Link.js +5 -0
  33. package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +1 -0
  34. package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +2 -0
  35. package/lib/customtypes/widgets/slices/LegacySlice.d.ts +2 -0
  36. package/lib/customtypes/widgets/slices/SharedSlice.d.ts +8 -0
  37. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +6 -0
  38. package/lib/customtypes/widgets/slices/Slices.d.ts +28 -0
  39. package/package.json +2 -1
  40. package/src/_internal/utils.ts +3 -1
  41. package/src/content/Document.ts +12 -0
  42. package/src/content/LegacyContentCtx.ts +4 -1
  43. package/src/content/fields/GroupContent.ts +13 -0
  44. package/src/content/fields/RepeatableContent.ts +147 -0
  45. package/src/content/fields/index.ts +1 -0
  46. package/src/content/fields/nestable/LinkContent.ts +19 -39
  47. package/src/content/fields/nestable/NestableContent.ts +12 -1
  48. package/src/content/fields/slices/Slice/SharedSliceContent.ts +18 -0
  49. package/src/customtypes/widgets/nestable/Link.ts +6 -0
  50. package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +0 -727
  51. package/lib/content/fields/nestable/RichTextContent/TextBlock.js +0 -80
  52. package/lib/customtypes/widgets/slices/SliceWidget.d.ts +0 -327
  53. package/lib/customtypes/widgets/slices/SliceWidget.js +0 -8
@@ -125,7 +125,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
125
125
  __TYPE__: "LinkContent";
126
126
  value: ({
127
127
  __TYPE__: "ImageLink";
128
- } & (({
128
+ } & ((({
129
129
  kind: "image";
130
130
  id: string;
131
131
  url: string;
@@ -135,14 +135,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
135
135
  name: string;
136
136
  } & {
137
137
  date?: string | null | undefined;
138
- } & {
139
- text?: string;
140
138
  }) | {
141
139
  kind: "image";
142
- text: string;
140
+ }) & {
141
+ text?: string;
143
142
  })) | ({
144
143
  __TYPE__: "FileLink";
145
- } & (({
144
+ } & ((({
146
145
  kind: "file";
147
146
  id: string;
148
147
  url: string;
@@ -150,28 +149,27 @@ export declare const isSlicesContent: (u: unknown) => u is {
150
149
  size: string;
151
150
  } & {
152
151
  date?: string | null | undefined;
153
- } & {
154
- text?: string;
155
152
  }) | {
156
153
  kind: "file";
157
- text: string;
154
+ }) & {
155
+ text?: string;
158
156
  })) | ({
159
157
  __TYPE__: "MediaLink";
160
158
  } & {
161
159
  kind: "media";
162
- text: string;
160
+ } & {
161
+ text?: string;
163
162
  }) | ({
164
163
  __TYPE__: "DocumentLink";
165
164
  } & (({
166
165
  id: string;
167
- } & {
168
- text?: string;
169
- }) | {
166
+ } | {
170
167
  kind: "document";
171
- text: string;
168
+ }) & {
169
+ text?: string;
172
170
  })) | ({
173
171
  __TYPE__: "ExternalLink";
174
- } & (({
172
+ } & ((({
175
173
  url: string;
176
174
  } & {
177
175
  kind?: "web";
@@ -179,17 +177,85 @@ export declare const isSlicesContent: (u: unknown) => u is {
179
177
  preview?: {
180
178
  title?: string;
181
179
  } | null | undefined;
182
- } & {
183
- text?: string;
184
180
  }) | {
185
181
  kind: "web";
186
- text: string;
182
+ }) & {
183
+ text?: string;
187
184
  })) | ({
188
185
  __TYPE__: "AnyLink";
189
186
  } & {
190
- text: string;
187
+ text?: string;
191
188
  });
192
189
  } | {
190
+ __TYPE__: "RepeatableContent";
191
+ type: "Link";
192
+ value: {
193
+ __TYPE__: "LinkContent";
194
+ value: ({
195
+ __TYPE__: "ImageLink";
196
+ } & ((({
197
+ kind: "image";
198
+ id: string;
199
+ url: string;
200
+ height: string;
201
+ width: string;
202
+ size: string;
203
+ name: string;
204
+ } & {
205
+ date?: string | null | undefined;
206
+ }) | {
207
+ kind: "image";
208
+ }) & {
209
+ text?: string;
210
+ })) | ({
211
+ __TYPE__: "FileLink";
212
+ } & ((({
213
+ kind: "file";
214
+ id: string;
215
+ url: string;
216
+ name: string;
217
+ size: string;
218
+ } & {
219
+ date?: string | null | undefined;
220
+ }) | {
221
+ kind: "file";
222
+ }) & {
223
+ text?: string;
224
+ })) | ({
225
+ __TYPE__: "MediaLink";
226
+ } & {
227
+ kind: "media";
228
+ } & {
229
+ text?: string;
230
+ }) | ({
231
+ __TYPE__: "DocumentLink";
232
+ } & (({
233
+ id: string;
234
+ } | {
235
+ kind: "document";
236
+ }) & {
237
+ text?: string;
238
+ })) | ({
239
+ __TYPE__: "ExternalLink";
240
+ } & ((({
241
+ url: string;
242
+ } & {
243
+ kind?: "web";
244
+ target?: string | null | undefined;
245
+ preview?: {
246
+ title?: string;
247
+ } | null | undefined;
248
+ }) | {
249
+ kind: "web";
250
+ }) & {
251
+ text?: string;
252
+ })) | ({
253
+ __TYPE__: "AnyLink";
254
+ } & {
255
+ text?: string;
256
+ });
257
+ }[];
258
+ } | import("..").GroupContent | {
193
259
  __TYPE__: "StructuredTextContent";
194
260
  value: (({
195
261
  type: "image";
@@ -344,7 +410,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
344
410
  }))[];
345
411
  } | {
346
412
  __TYPE__: "SeparatorContent";
347
- } | import("..").GroupContent | {
413
+ } | {
348
414
  __TYPE__: "CompositeSliceContent";
349
415
  nonRepeat: {
350
416
  [x: string]: {
@@ -463,7 +529,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
463
529
  __TYPE__: "LinkContent";
464
530
  value: ({
465
531
  __TYPE__: "ImageLink";
466
- } & (({
532
+ } & ((({
467
533
  kind: "image";
468
534
  id: string;
469
535
  url: string;
@@ -473,14 +539,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
473
539
  name: string;
474
540
  } & {
475
541
  date?: string | null | undefined;
476
- } & {
477
- text?: string;
478
542
  }) | {
479
543
  kind: "image";
480
- text: string;
544
+ }) & {
545
+ text?: string;
481
546
  })) | ({
482
547
  __TYPE__: "FileLink";
483
- } & (({
548
+ } & ((({
484
549
  kind: "file";
485
550
  id: string;
486
551
  url: string;
@@ -488,28 +553,27 @@ export declare const isSlicesContent: (u: unknown) => u is {
488
553
  size: string;
489
554
  } & {
490
555
  date?: string | null | undefined;
491
- } & {
492
- text?: string;
493
556
  }) | {
494
557
  kind: "file";
495
- text: string;
558
+ }) & {
559
+ text?: string;
496
560
  })) | ({
497
561
  __TYPE__: "MediaLink";
498
562
  } & {
499
563
  kind: "media";
500
- text: string;
564
+ } & {
565
+ text?: string;
501
566
  }) | ({
502
567
  __TYPE__: "DocumentLink";
503
568
  } & (({
504
569
  id: string;
505
- } & {
506
- text?: string;
507
- }) | {
570
+ } | {
508
571
  kind: "document";
509
- text: string;
572
+ }) & {
573
+ text?: string;
510
574
  })) | ({
511
575
  __TYPE__: "ExternalLink";
512
- } & (({
576
+ } & ((({
513
577
  url: string;
514
578
  } & {
515
579
  kind?: "web";
@@ -517,16 +581,84 @@ export declare const isSlicesContent: (u: unknown) => u is {
517
581
  preview?: {
518
582
  title?: string;
519
583
  } | null | undefined;
520
- } & {
521
- text?: string;
522
584
  }) | {
523
585
  kind: "web";
524
- text: string;
586
+ }) & {
587
+ text?: string;
525
588
  })) | ({
526
589
  __TYPE__: "AnyLink";
527
590
  } & {
528
- text: string;
591
+ text?: string;
529
592
  });
593
+ } | {
594
+ __TYPE__: "RepeatableContent";
595
+ type: "Link";
596
+ value: {
597
+ __TYPE__: "LinkContent";
598
+ value: ({
599
+ __TYPE__: "ImageLink";
600
+ } & ((({
601
+ kind: "image";
602
+ id: string;
603
+ url: string;
604
+ height: string;
605
+ width: string;
606
+ size: string;
607
+ name: string;
608
+ } & {
609
+ date?: string | null | undefined;
610
+ }) | {
611
+ kind: "image";
612
+ }) & {
613
+ text?: string;
614
+ })) | ({
615
+ __TYPE__: "FileLink";
616
+ } & ((({
617
+ kind: "file";
618
+ id: string;
619
+ url: string;
620
+ name: string;
621
+ size: string;
622
+ } & {
623
+ date?: string | null | undefined;
624
+ }) | {
625
+ kind: "file";
626
+ }) & {
627
+ text?: string;
628
+ })) | ({
629
+ __TYPE__: "MediaLink";
630
+ } & {
631
+ kind: "media";
632
+ } & {
633
+ text?: string;
634
+ }) | ({
635
+ __TYPE__: "DocumentLink";
636
+ } & (({
637
+ id: string;
638
+ } | {
639
+ kind: "document";
640
+ }) & {
641
+ text?: string;
642
+ })) | ({
643
+ __TYPE__: "ExternalLink";
644
+ } & ((({
645
+ url: string;
646
+ } & {
647
+ kind?: "web";
648
+ target?: string | null | undefined;
649
+ preview?: {
650
+ title?: string;
651
+ } | null | undefined;
652
+ }) | {
653
+ kind: "web";
654
+ }) & {
655
+ text?: string;
656
+ })) | ({
657
+ __TYPE__: "AnyLink";
658
+ } & {
659
+ text?: string;
660
+ });
661
+ }[];
530
662
  } | {
531
663
  __TYPE__: "StructuredTextContent";
532
664
  value: (({
@@ -802,7 +934,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
802
934
  __TYPE__: "LinkContent";
803
935
  value: ({
804
936
  __TYPE__: "ImageLink";
805
- } & (({
937
+ } & ((({
806
938
  kind: "image";
807
939
  id: string;
808
940
  url: string;
@@ -812,14 +944,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
812
944
  name: string;
813
945
  } & {
814
946
  date?: string | null | undefined;
815
- } & {
816
- text?: string;
817
947
  }) | {
818
948
  kind: "image";
819
- text: string;
949
+ }) & {
950
+ text?: string;
820
951
  })) | ({
821
952
  __TYPE__: "FileLink";
822
- } & (({
953
+ } & ((({
823
954
  kind: "file";
824
955
  id: string;
825
956
  url: string;
@@ -827,28 +958,27 @@ export declare const isSlicesContent: (u: unknown) => u is {
827
958
  size: string;
828
959
  } & {
829
960
  date?: string | null | undefined;
830
- } & {
831
- text?: string;
832
961
  }) | {
833
962
  kind: "file";
834
- text: string;
963
+ }) & {
964
+ text?: string;
835
965
  })) | ({
836
966
  __TYPE__: "MediaLink";
837
967
  } & {
838
968
  kind: "media";
839
- text: string;
969
+ } & {
970
+ text?: string;
840
971
  }) | ({
841
972
  __TYPE__: "DocumentLink";
842
973
  } & (({
843
974
  id: string;
844
- } & {
845
- text?: string;
846
- }) | {
975
+ } | {
847
976
  kind: "document";
848
- text: string;
977
+ }) & {
978
+ text?: string;
849
979
  })) | ({
850
980
  __TYPE__: "ExternalLink";
851
- } & (({
981
+ } & ((({
852
982
  url: string;
853
983
  } & {
854
984
  kind?: "web";
@@ -856,17 +986,85 @@ export declare const isSlicesContent: (u: unknown) => u is {
856
986
  preview?: {
857
987
  title?: string;
858
988
  } | null | undefined;
859
- } & {
860
- text?: string;
861
989
  }) | {
862
990
  kind: "web";
863
- text: string;
991
+ }) & {
992
+ text?: string;
864
993
  })) | ({
865
994
  __TYPE__: "AnyLink";
866
995
  } & {
867
- text: string;
996
+ text?: string;
868
997
  });
869
998
  } | {
999
+ __TYPE__: "RepeatableContent";
1000
+ type: "Link";
1001
+ value: {
1002
+ __TYPE__: "LinkContent";
1003
+ value: ({
1004
+ __TYPE__: "ImageLink";
1005
+ } & ((({
1006
+ kind: "image";
1007
+ id: string;
1008
+ url: string;
1009
+ height: string;
1010
+ width: string;
1011
+ size: string;
1012
+ name: string;
1013
+ } & {
1014
+ date?: string | null | undefined;
1015
+ }) | {
1016
+ kind: "image";
1017
+ }) & {
1018
+ text?: string;
1019
+ })) | ({
1020
+ __TYPE__: "FileLink";
1021
+ } & ((({
1022
+ kind: "file";
1023
+ id: string;
1024
+ url: string;
1025
+ name: string;
1026
+ size: string;
1027
+ } & {
1028
+ date?: string | null | undefined;
1029
+ }) | {
1030
+ kind: "file";
1031
+ }) & {
1032
+ text?: string;
1033
+ })) | ({
1034
+ __TYPE__: "MediaLink";
1035
+ } & {
1036
+ kind: "media";
1037
+ } & {
1038
+ text?: string;
1039
+ }) | ({
1040
+ __TYPE__: "DocumentLink";
1041
+ } & (({
1042
+ id: string;
1043
+ } | {
1044
+ kind: "document";
1045
+ }) & {
1046
+ text?: string;
1047
+ })) | ({
1048
+ __TYPE__: "ExternalLink";
1049
+ } & ((({
1050
+ url: string;
1051
+ } & {
1052
+ kind?: "web";
1053
+ target?: string | null | undefined;
1054
+ preview?: {
1055
+ title?: string;
1056
+ } | null | undefined;
1057
+ }) | {
1058
+ kind: "web";
1059
+ }) & {
1060
+ text?: string;
1061
+ })) | ({
1062
+ __TYPE__: "AnyLink";
1063
+ } & {
1064
+ text?: string;
1065
+ });
1066
+ }[];
1067
+ } | import("..").GroupContent | {
870
1068
  __TYPE__: "StructuredTextContent";
871
1069
  value: (({
872
1070
  type: "image";
@@ -1021,7 +1219,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1021
1219
  }))[];
1022
1220
  } | {
1023
1221
  __TYPE__: "SeparatorContent";
1024
- } | import("..").GroupContent][];
1222
+ }][];
1025
1223
  }[];
1026
1224
  } | {
1027
1225
  __TYPE__: "SharedSliceContent";
@@ -1143,7 +1341,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1143
1341
  __TYPE__: "LinkContent";
1144
1342
  value: ({
1145
1343
  __TYPE__: "ImageLink";
1146
- } & (({
1344
+ } & ((({
1147
1345
  kind: "image";
1148
1346
  id: string;
1149
1347
  url: string;
@@ -1153,14 +1351,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
1153
1351
  name: string;
1154
1352
  } & {
1155
1353
  date?: string | null | undefined;
1156
- } & {
1157
- text?: string;
1158
1354
  }) | {
1159
1355
  kind: "image";
1160
- text: string;
1356
+ }) & {
1357
+ text?: string;
1161
1358
  })) | ({
1162
1359
  __TYPE__: "FileLink";
1163
- } & (({
1360
+ } & ((({
1164
1361
  kind: "file";
1165
1362
  id: string;
1166
1363
  url: string;
@@ -1168,28 +1365,27 @@ export declare const isSlicesContent: (u: unknown) => u is {
1168
1365
  size: string;
1169
1366
  } & {
1170
1367
  date?: string | null | undefined;
1171
- } & {
1172
- text?: string;
1173
1368
  }) | {
1174
1369
  kind: "file";
1175
- text: string;
1370
+ }) & {
1371
+ text?: string;
1176
1372
  })) | ({
1177
1373
  __TYPE__: "MediaLink";
1178
1374
  } & {
1179
1375
  kind: "media";
1180
- text: string;
1376
+ } & {
1377
+ text?: string;
1181
1378
  }) | ({
1182
1379
  __TYPE__: "DocumentLink";
1183
1380
  } & (({
1184
1381
  id: string;
1185
- } & {
1186
- text?: string;
1187
- }) | {
1382
+ } | {
1188
1383
  kind: "document";
1189
- text: string;
1384
+ }) & {
1385
+ text?: string;
1190
1386
  })) | ({
1191
1387
  __TYPE__: "ExternalLink";
1192
- } & (({
1388
+ } & ((({
1193
1389
  url: string;
1194
1390
  } & {
1195
1391
  kind?: "web";
@@ -1197,17 +1393,85 @@ export declare const isSlicesContent: (u: unknown) => u is {
1197
1393
  preview?: {
1198
1394
  title?: string;
1199
1395
  } | null | undefined;
1200
- } & {
1201
- text?: string;
1202
1396
  }) | {
1203
1397
  kind: "web";
1204
- text: string;
1398
+ }) & {
1399
+ text?: string;
1205
1400
  })) | ({
1206
1401
  __TYPE__: "AnyLink";
1207
1402
  } & {
1208
- text: string;
1403
+ text?: string;
1209
1404
  });
1210
1405
  } | {
1406
+ __TYPE__: "RepeatableContent";
1407
+ type: "Link";
1408
+ value: {
1409
+ __TYPE__: "LinkContent";
1410
+ value: ({
1411
+ __TYPE__: "ImageLink";
1412
+ } & ((({
1413
+ kind: "image";
1414
+ id: string;
1415
+ url: string;
1416
+ height: string;
1417
+ width: string;
1418
+ size: string;
1419
+ name: string;
1420
+ } & {
1421
+ date?: string | null | undefined;
1422
+ }) | {
1423
+ kind: "image";
1424
+ }) & {
1425
+ text?: string;
1426
+ })) | ({
1427
+ __TYPE__: "FileLink";
1428
+ } & ((({
1429
+ kind: "file";
1430
+ id: string;
1431
+ url: string;
1432
+ name: string;
1433
+ size: string;
1434
+ } & {
1435
+ date?: string | null | undefined;
1436
+ }) | {
1437
+ kind: "file";
1438
+ }) & {
1439
+ text?: string;
1440
+ })) | ({
1441
+ __TYPE__: "MediaLink";
1442
+ } & {
1443
+ kind: "media";
1444
+ } & {
1445
+ text?: string;
1446
+ }) | ({
1447
+ __TYPE__: "DocumentLink";
1448
+ } & (({
1449
+ id: string;
1450
+ } | {
1451
+ kind: "document";
1452
+ }) & {
1453
+ text?: string;
1454
+ })) | ({
1455
+ __TYPE__: "ExternalLink";
1456
+ } & ((({
1457
+ url: string;
1458
+ } & {
1459
+ kind?: "web";
1460
+ target?: string | null | undefined;
1461
+ preview?: {
1462
+ title?: string;
1463
+ } | null | undefined;
1464
+ }) | {
1465
+ kind: "web";
1466
+ }) & {
1467
+ text?: string;
1468
+ })) | ({
1469
+ __TYPE__: "AnyLink";
1470
+ } & {
1471
+ text?: string;
1472
+ });
1473
+ }[];
1474
+ } | import("..").GroupContent | {
1211
1475
  __TYPE__: "StructuredTextContent";
1212
1476
  value: (({
1213
1477
  type: "image";
@@ -1362,7 +1626,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1362
1626
  }))[];
1363
1627
  } | {
1364
1628
  __TYPE__: "SeparatorContent";
1365
- } | import("..").GroupContent;
1629
+ };
1366
1630
  };
1367
1631
  items: {
1368
1632
  __TYPE__: "GroupItemContent";
@@ -1482,7 +1746,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1482
1746
  __TYPE__: "LinkContent";
1483
1747
  value: ({
1484
1748
  __TYPE__: "ImageLink";
1485
- } & (({
1749
+ } & ((({
1486
1750
  kind: "image";
1487
1751
  id: string;
1488
1752
  url: string;
@@ -1492,14 +1756,13 @@ export declare const isSlicesContent: (u: unknown) => u is {
1492
1756
  name: string;
1493
1757
  } & {
1494
1758
  date?: string | null | undefined;
1495
- } & {
1496
- text?: string;
1497
1759
  }) | {
1498
1760
  kind: "image";
1499
- text: string;
1761
+ }) & {
1762
+ text?: string;
1500
1763
  })) | ({
1501
1764
  __TYPE__: "FileLink";
1502
- } & (({
1765
+ } & ((({
1503
1766
  kind: "file";
1504
1767
  id: string;
1505
1768
  url: string;
@@ -1507,28 +1770,27 @@ export declare const isSlicesContent: (u: unknown) => u is {
1507
1770
  size: string;
1508
1771
  } & {
1509
1772
  date?: string | null | undefined;
1510
- } & {
1511
- text?: string;
1512
1773
  }) | {
1513
1774
  kind: "file";
1514
- text: string;
1775
+ }) & {
1776
+ text?: string;
1515
1777
  })) | ({
1516
1778
  __TYPE__: "MediaLink";
1517
1779
  } & {
1518
1780
  kind: "media";
1519
- text: string;
1781
+ } & {
1782
+ text?: string;
1520
1783
  }) | ({
1521
1784
  __TYPE__: "DocumentLink";
1522
1785
  } & (({
1523
1786
  id: string;
1524
- } & {
1525
- text?: string;
1526
- }) | {
1787
+ } | {
1527
1788
  kind: "document";
1528
- text: string;
1789
+ }) & {
1790
+ text?: string;
1529
1791
  })) | ({
1530
1792
  __TYPE__: "ExternalLink";
1531
- } & (({
1793
+ } & ((({
1532
1794
  url: string;
1533
1795
  } & {
1534
1796
  kind?: "web";
@@ -1536,17 +1798,85 @@ export declare const isSlicesContent: (u: unknown) => u is {
1536
1798
  preview?: {
1537
1799
  title?: string;
1538
1800
  } | null | undefined;
1539
- } & {
1540
- text?: string;
1541
1801
  }) | {
1542
1802
  kind: "web";
1543
- text: string;
1803
+ }) & {
1804
+ text?: string;
1544
1805
  })) | ({
1545
1806
  __TYPE__: "AnyLink";
1546
1807
  } & {
1547
- text: string;
1808
+ text?: string;
1548
1809
  });
1549
1810
  } | {
1811
+ __TYPE__: "RepeatableContent";
1812
+ type: "Link";
1813
+ value: {
1814
+ __TYPE__: "LinkContent";
1815
+ value: ({
1816
+ __TYPE__: "ImageLink";
1817
+ } & ((({
1818
+ kind: "image";
1819
+ id: string;
1820
+ url: string;
1821
+ height: string;
1822
+ width: string;
1823
+ size: string;
1824
+ name: string;
1825
+ } & {
1826
+ date?: string | null | undefined;
1827
+ }) | {
1828
+ kind: "image";
1829
+ }) & {
1830
+ text?: string;
1831
+ })) | ({
1832
+ __TYPE__: "FileLink";
1833
+ } & ((({
1834
+ kind: "file";
1835
+ id: string;
1836
+ url: string;
1837
+ name: string;
1838
+ size: string;
1839
+ } & {
1840
+ date?: string | null | undefined;
1841
+ }) | {
1842
+ kind: "file";
1843
+ }) & {
1844
+ text?: string;
1845
+ })) | ({
1846
+ __TYPE__: "MediaLink";
1847
+ } & {
1848
+ kind: "media";
1849
+ } & {
1850
+ text?: string;
1851
+ }) | ({
1852
+ __TYPE__: "DocumentLink";
1853
+ } & (({
1854
+ id: string;
1855
+ } | {
1856
+ kind: "document";
1857
+ }) & {
1858
+ text?: string;
1859
+ })) | ({
1860
+ __TYPE__: "ExternalLink";
1861
+ } & ((({
1862
+ url: string;
1863
+ } & {
1864
+ kind?: "web";
1865
+ target?: string | null | undefined;
1866
+ preview?: {
1867
+ title?: string;
1868
+ } | null | undefined;
1869
+ }) | {
1870
+ kind: "web";
1871
+ }) & {
1872
+ text?: string;
1873
+ })) | ({
1874
+ __TYPE__: "AnyLink";
1875
+ } & {
1876
+ text?: string;
1877
+ });
1878
+ }[];
1879
+ } | import("..").GroupContent | {
1550
1880
  __TYPE__: "StructuredTextContent";
1551
1881
  value: (({
1552
1882
  type: "image";
@@ -1701,7 +2031,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1701
2031
  }))[];
1702
2032
  } | {
1703
2033
  __TYPE__: "SeparatorContent";
1704
- } | import("..").GroupContent][];
2034
+ }][];
1705
2035
  }[];
1706
2036
  };
1707
2037
  }[];
@@ -1829,7 +2159,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
1829
2159
  __TYPE__: "LinkContent";
1830
2160
  value: ({
1831
2161
  __TYPE__: "ImageLink";
1832
- } & (({
2162
+ } & ((({
1833
2163
  kind: "image";
1834
2164
  id: string;
1835
2165
  url: string;
@@ -1839,14 +2169,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
1839
2169
  name: string;
1840
2170
  } & {
1841
2171
  date?: string | null | undefined;
1842
- } & {
1843
- text?: string;
1844
2172
  }) | {
1845
2173
  kind: "image";
1846
- text: string;
2174
+ }) & {
2175
+ text?: string;
1847
2176
  })) | ({
1848
2177
  __TYPE__: "FileLink";
1849
- } & (({
2178
+ } & ((({
1850
2179
  kind: "file";
1851
2180
  id: string;
1852
2181
  url: string;
@@ -1854,28 +2183,27 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
1854
2183
  size: string;
1855
2184
  } & {
1856
2185
  date?: string | null | undefined;
1857
- } & {
1858
- text?: string;
1859
2186
  }) | {
1860
2187
  kind: "file";
1861
- text: string;
2188
+ }) & {
2189
+ text?: string;
1862
2190
  })) | ({
1863
2191
  __TYPE__: "MediaLink";
1864
2192
  } & {
1865
2193
  kind: "media";
1866
- text: string;
2194
+ } & {
2195
+ text?: string;
1867
2196
  }) | ({
1868
2197
  __TYPE__: "DocumentLink";
1869
2198
  } & (({
1870
2199
  id: string;
1871
- } & {
1872
- text?: string;
1873
- }) | {
2200
+ } | {
1874
2201
  kind: "document";
1875
- text: string;
2202
+ }) & {
2203
+ text?: string;
1876
2204
  })) | ({
1877
2205
  __TYPE__: "ExternalLink";
1878
- } & (({
2206
+ } & ((({
1879
2207
  url: string;
1880
2208
  } & {
1881
2209
  kind?: "web";
@@ -1883,17 +2211,85 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
1883
2211
  preview?: {
1884
2212
  title?: string;
1885
2213
  } | null | undefined;
1886
- } & {
1887
- text?: string;
1888
2214
  }) | {
1889
2215
  kind: "web";
1890
- text: string;
2216
+ }) & {
2217
+ text?: string;
1891
2218
  })) | ({
1892
2219
  __TYPE__: "AnyLink";
1893
2220
  } & {
1894
- text: string;
2221
+ text?: string;
1895
2222
  });
1896
2223
  } | {
2224
+ __TYPE__: "RepeatableContent";
2225
+ type: "Link";
2226
+ value: {
2227
+ __TYPE__: "LinkContent";
2228
+ value: ({
2229
+ __TYPE__: "ImageLink";
2230
+ } & ((({
2231
+ kind: "image";
2232
+ id: string;
2233
+ url: string;
2234
+ height: string;
2235
+ width: string;
2236
+ size: string;
2237
+ name: string;
2238
+ } & {
2239
+ date?: string | null | undefined;
2240
+ }) | {
2241
+ kind: "image";
2242
+ }) & {
2243
+ text?: string;
2244
+ })) | ({
2245
+ __TYPE__: "FileLink";
2246
+ } & ((({
2247
+ kind: "file";
2248
+ id: string;
2249
+ url: string;
2250
+ name: string;
2251
+ size: string;
2252
+ } & {
2253
+ date?: string | null | undefined;
2254
+ }) | {
2255
+ kind: "file";
2256
+ }) & {
2257
+ text?: string;
2258
+ })) | ({
2259
+ __TYPE__: "MediaLink";
2260
+ } & {
2261
+ kind: "media";
2262
+ } & {
2263
+ text?: string;
2264
+ }) | ({
2265
+ __TYPE__: "DocumentLink";
2266
+ } & (({
2267
+ id: string;
2268
+ } | {
2269
+ kind: "document";
2270
+ }) & {
2271
+ text?: string;
2272
+ })) | ({
2273
+ __TYPE__: "ExternalLink";
2274
+ } & ((({
2275
+ url: string;
2276
+ } & {
2277
+ kind?: "web";
2278
+ target?: string | null | undefined;
2279
+ preview?: {
2280
+ title?: string;
2281
+ } | null | undefined;
2282
+ }) | {
2283
+ kind: "web";
2284
+ }) & {
2285
+ text?: string;
2286
+ })) | ({
2287
+ __TYPE__: "AnyLink";
2288
+ } & {
2289
+ text?: string;
2290
+ });
2291
+ }[];
2292
+ } | import("..").GroupContent | {
1897
2293
  __TYPE__: "StructuredTextContent";
1898
2294
  value: (({
1899
2295
  type: "image";
@@ -2048,7 +2444,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2048
2444
  }))[];
2049
2445
  } | {
2050
2446
  __TYPE__: "SeparatorContent";
2051
- } | import("..").GroupContent | {
2447
+ } | {
2052
2448
  __TYPE__: "CompositeSliceContent";
2053
2449
  nonRepeat: {
2054
2450
  [x: string]: {
@@ -2167,7 +2563,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2167
2563
  __TYPE__: "LinkContent";
2168
2564
  value: ({
2169
2565
  __TYPE__: "ImageLink";
2170
- } & (({
2566
+ } & ((({
2171
2567
  kind: "image";
2172
2568
  id: string;
2173
2569
  url: string;
@@ -2177,14 +2573,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2177
2573
  name: string;
2178
2574
  } & {
2179
2575
  date?: string | null | undefined;
2180
- } & {
2181
- text?: string;
2182
2576
  }) | {
2183
2577
  kind: "image";
2184
- text: string;
2578
+ }) & {
2579
+ text?: string;
2185
2580
  })) | ({
2186
2581
  __TYPE__: "FileLink";
2187
- } & (({
2582
+ } & ((({
2188
2583
  kind: "file";
2189
2584
  id: string;
2190
2585
  url: string;
@@ -2192,28 +2587,27 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2192
2587
  size: string;
2193
2588
  } & {
2194
2589
  date?: string | null | undefined;
2195
- } & {
2196
- text?: string;
2197
2590
  }) | {
2198
2591
  kind: "file";
2199
- text: string;
2592
+ }) & {
2593
+ text?: string;
2200
2594
  })) | ({
2201
2595
  __TYPE__: "MediaLink";
2202
2596
  } & {
2203
2597
  kind: "media";
2204
- text: string;
2598
+ } & {
2599
+ text?: string;
2205
2600
  }) | ({
2206
2601
  __TYPE__: "DocumentLink";
2207
2602
  } & (({
2208
2603
  id: string;
2209
- } & {
2210
- text?: string;
2211
- }) | {
2604
+ } | {
2212
2605
  kind: "document";
2213
- text: string;
2606
+ }) & {
2607
+ text?: string;
2214
2608
  })) | ({
2215
2609
  __TYPE__: "ExternalLink";
2216
- } & (({
2610
+ } & ((({
2217
2611
  url: string;
2218
2612
  } & {
2219
2613
  kind?: "web";
@@ -2221,16 +2615,84 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2221
2615
  preview?: {
2222
2616
  title?: string;
2223
2617
  } | null | undefined;
2224
- } & {
2225
- text?: string;
2226
2618
  }) | {
2227
2619
  kind: "web";
2228
- text: string;
2620
+ }) & {
2621
+ text?: string;
2229
2622
  })) | ({
2230
2623
  __TYPE__: "AnyLink";
2231
2624
  } & {
2232
- text: string;
2625
+ text?: string;
2233
2626
  });
2627
+ } | {
2628
+ __TYPE__: "RepeatableContent";
2629
+ type: "Link";
2630
+ value: {
2631
+ __TYPE__: "LinkContent";
2632
+ value: ({
2633
+ __TYPE__: "ImageLink";
2634
+ } & ((({
2635
+ kind: "image";
2636
+ id: string;
2637
+ url: string;
2638
+ height: string;
2639
+ width: string;
2640
+ size: string;
2641
+ name: string;
2642
+ } & {
2643
+ date?: string | null | undefined;
2644
+ }) | {
2645
+ kind: "image";
2646
+ }) & {
2647
+ text?: string;
2648
+ })) | ({
2649
+ __TYPE__: "FileLink";
2650
+ } & ((({
2651
+ kind: "file";
2652
+ id: string;
2653
+ url: string;
2654
+ name: string;
2655
+ size: string;
2656
+ } & {
2657
+ date?: string | null | undefined;
2658
+ }) | {
2659
+ kind: "file";
2660
+ }) & {
2661
+ text?: string;
2662
+ })) | ({
2663
+ __TYPE__: "MediaLink";
2664
+ } & {
2665
+ kind: "media";
2666
+ } & {
2667
+ text?: string;
2668
+ }) | ({
2669
+ __TYPE__: "DocumentLink";
2670
+ } & (({
2671
+ id: string;
2672
+ } | {
2673
+ kind: "document";
2674
+ }) & {
2675
+ text?: string;
2676
+ })) | ({
2677
+ __TYPE__: "ExternalLink";
2678
+ } & ((({
2679
+ url: string;
2680
+ } & {
2681
+ kind?: "web";
2682
+ target?: string | null | undefined;
2683
+ preview?: {
2684
+ title?: string;
2685
+ } | null | undefined;
2686
+ }) | {
2687
+ kind: "web";
2688
+ }) & {
2689
+ text?: string;
2690
+ })) | ({
2691
+ __TYPE__: "AnyLink";
2692
+ } & {
2693
+ text?: string;
2694
+ });
2695
+ }[];
2234
2696
  } | {
2235
2697
  __TYPE__: "StructuredTextContent";
2236
2698
  value: (({
@@ -2506,7 +2968,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2506
2968
  __TYPE__: "LinkContent";
2507
2969
  value: ({
2508
2970
  __TYPE__: "ImageLink";
2509
- } & (({
2971
+ } & ((({
2510
2972
  kind: "image";
2511
2973
  id: string;
2512
2974
  url: string;
@@ -2516,14 +2978,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2516
2978
  name: string;
2517
2979
  } & {
2518
2980
  date?: string | null | undefined;
2519
- } & {
2520
- text?: string;
2521
2981
  }) | {
2522
2982
  kind: "image";
2523
- text: string;
2983
+ }) & {
2984
+ text?: string;
2524
2985
  })) | ({
2525
2986
  __TYPE__: "FileLink";
2526
- } & (({
2987
+ } & ((({
2527
2988
  kind: "file";
2528
2989
  id: string;
2529
2990
  url: string;
@@ -2531,28 +2992,27 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2531
2992
  size: string;
2532
2993
  } & {
2533
2994
  date?: string | null | undefined;
2534
- } & {
2535
- text?: string;
2536
2995
  }) | {
2537
2996
  kind: "file";
2538
- text: string;
2997
+ }) & {
2998
+ text?: string;
2539
2999
  })) | ({
2540
3000
  __TYPE__: "MediaLink";
2541
3001
  } & {
2542
3002
  kind: "media";
2543
- text: string;
3003
+ } & {
3004
+ text?: string;
2544
3005
  }) | ({
2545
3006
  __TYPE__: "DocumentLink";
2546
3007
  } & (({
2547
3008
  id: string;
2548
- } & {
2549
- text?: string;
2550
- }) | {
3009
+ } | {
2551
3010
  kind: "document";
2552
- text: string;
3011
+ }) & {
3012
+ text?: string;
2553
3013
  })) | ({
2554
3014
  __TYPE__: "ExternalLink";
2555
- } & (({
3015
+ } & ((({
2556
3016
  url: string;
2557
3017
  } & {
2558
3018
  kind?: "web";
@@ -2560,17 +3020,85 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2560
3020
  preview?: {
2561
3021
  title?: string;
2562
3022
  } | null | undefined;
2563
- } & {
2564
- text?: string;
2565
3023
  }) | {
2566
3024
  kind: "web";
2567
- text: string;
3025
+ }) & {
3026
+ text?: string;
2568
3027
  })) | ({
2569
3028
  __TYPE__: "AnyLink";
2570
3029
  } & {
2571
- text: string;
3030
+ text?: string;
2572
3031
  });
2573
3032
  } | {
3033
+ __TYPE__: "RepeatableContent";
3034
+ type: "Link";
3035
+ value: {
3036
+ __TYPE__: "LinkContent";
3037
+ value: ({
3038
+ __TYPE__: "ImageLink";
3039
+ } & ((({
3040
+ kind: "image";
3041
+ id: string;
3042
+ url: string;
3043
+ height: string;
3044
+ width: string;
3045
+ size: string;
3046
+ name: string;
3047
+ } & {
3048
+ date?: string | null | undefined;
3049
+ }) | {
3050
+ kind: "image";
3051
+ }) & {
3052
+ text?: string;
3053
+ })) | ({
3054
+ __TYPE__: "FileLink";
3055
+ } & ((({
3056
+ kind: "file";
3057
+ id: string;
3058
+ url: string;
3059
+ name: string;
3060
+ size: string;
3061
+ } & {
3062
+ date?: string | null | undefined;
3063
+ }) | {
3064
+ kind: "file";
3065
+ }) & {
3066
+ text?: string;
3067
+ })) | ({
3068
+ __TYPE__: "MediaLink";
3069
+ } & {
3070
+ kind: "media";
3071
+ } & {
3072
+ text?: string;
3073
+ }) | ({
3074
+ __TYPE__: "DocumentLink";
3075
+ } & (({
3076
+ id: string;
3077
+ } | {
3078
+ kind: "document";
3079
+ }) & {
3080
+ text?: string;
3081
+ })) | ({
3082
+ __TYPE__: "ExternalLink";
3083
+ } & ((({
3084
+ url: string;
3085
+ } & {
3086
+ kind?: "web";
3087
+ target?: string | null | undefined;
3088
+ preview?: {
3089
+ title?: string;
3090
+ } | null | undefined;
3091
+ }) | {
3092
+ kind: "web";
3093
+ }) & {
3094
+ text?: string;
3095
+ })) | ({
3096
+ __TYPE__: "AnyLink";
3097
+ } & {
3098
+ text?: string;
3099
+ });
3100
+ }[];
3101
+ } | import("..").GroupContent | {
2574
3102
  __TYPE__: "StructuredTextContent";
2575
3103
  value: (({
2576
3104
  type: "image";
@@ -2725,7 +3253,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2725
3253
  }))[];
2726
3254
  } | {
2727
3255
  __TYPE__: "SeparatorContent";
2728
- } | import("..").GroupContent][];
3256
+ }][];
2729
3257
  }[];
2730
3258
  } | {
2731
3259
  __TYPE__: "SharedSliceContent";
@@ -2847,7 +3375,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2847
3375
  __TYPE__: "LinkContent";
2848
3376
  value: ({
2849
3377
  __TYPE__: "ImageLink";
2850
- } & (({
3378
+ } & ((({
2851
3379
  kind: "image";
2852
3380
  id: string;
2853
3381
  url: string;
@@ -2857,14 +3385,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2857
3385
  name: string;
2858
3386
  } & {
2859
3387
  date?: string | null | undefined;
2860
- } & {
2861
- text?: string;
2862
3388
  }) | {
2863
3389
  kind: "image";
2864
- text: string;
3390
+ }) & {
3391
+ text?: string;
2865
3392
  })) | ({
2866
3393
  __TYPE__: "FileLink";
2867
- } & (({
3394
+ } & ((({
2868
3395
  kind: "file";
2869
3396
  id: string;
2870
3397
  url: string;
@@ -2872,28 +3399,27 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2872
3399
  size: string;
2873
3400
  } & {
2874
3401
  date?: string | null | undefined;
2875
- } & {
2876
- text?: string;
2877
3402
  }) | {
2878
3403
  kind: "file";
2879
- text: string;
3404
+ }) & {
3405
+ text?: string;
2880
3406
  })) | ({
2881
3407
  __TYPE__: "MediaLink";
2882
3408
  } & {
2883
3409
  kind: "media";
2884
- text: string;
3410
+ } & {
3411
+ text?: string;
2885
3412
  }) | ({
2886
3413
  __TYPE__: "DocumentLink";
2887
3414
  } & (({
2888
3415
  id: string;
2889
- } & {
2890
- text?: string;
2891
- }) | {
3416
+ } | {
2892
3417
  kind: "document";
2893
- text: string;
3418
+ }) & {
3419
+ text?: string;
2894
3420
  })) | ({
2895
3421
  __TYPE__: "ExternalLink";
2896
- } & (({
3422
+ } & ((({
2897
3423
  url: string;
2898
3424
  } & {
2899
3425
  kind?: "web";
@@ -2901,17 +3427,85 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2901
3427
  preview?: {
2902
3428
  title?: string;
2903
3429
  } | null | undefined;
2904
- } & {
2905
- text?: string;
2906
3430
  }) | {
2907
3431
  kind: "web";
2908
- text: string;
3432
+ }) & {
3433
+ text?: string;
2909
3434
  })) | ({
2910
3435
  __TYPE__: "AnyLink";
2911
3436
  } & {
2912
- text: string;
3437
+ text?: string;
2913
3438
  });
2914
3439
  } | {
3440
+ __TYPE__: "RepeatableContent";
3441
+ type: "Link";
3442
+ value: {
3443
+ __TYPE__: "LinkContent";
3444
+ value: ({
3445
+ __TYPE__: "ImageLink";
3446
+ } & ((({
3447
+ kind: "image";
3448
+ id: string;
3449
+ url: string;
3450
+ height: string;
3451
+ width: string;
3452
+ size: string;
3453
+ name: string;
3454
+ } & {
3455
+ date?: string | null | undefined;
3456
+ }) | {
3457
+ kind: "image";
3458
+ }) & {
3459
+ text?: string;
3460
+ })) | ({
3461
+ __TYPE__: "FileLink";
3462
+ } & ((({
3463
+ kind: "file";
3464
+ id: string;
3465
+ url: string;
3466
+ name: string;
3467
+ size: string;
3468
+ } & {
3469
+ date?: string | null | undefined;
3470
+ }) | {
3471
+ kind: "file";
3472
+ }) & {
3473
+ text?: string;
3474
+ })) | ({
3475
+ __TYPE__: "MediaLink";
3476
+ } & {
3477
+ kind: "media";
3478
+ } & {
3479
+ text?: string;
3480
+ }) | ({
3481
+ __TYPE__: "DocumentLink";
3482
+ } & (({
3483
+ id: string;
3484
+ } | {
3485
+ kind: "document";
3486
+ }) & {
3487
+ text?: string;
3488
+ })) | ({
3489
+ __TYPE__: "ExternalLink";
3490
+ } & ((({
3491
+ url: string;
3492
+ } & {
3493
+ kind?: "web";
3494
+ target?: string | null | undefined;
3495
+ preview?: {
3496
+ title?: string;
3497
+ } | null | undefined;
3498
+ }) | {
3499
+ kind: "web";
3500
+ }) & {
3501
+ text?: string;
3502
+ })) | ({
3503
+ __TYPE__: "AnyLink";
3504
+ } & {
3505
+ text?: string;
3506
+ });
3507
+ }[];
3508
+ } | import("..").GroupContent | {
2915
3509
  __TYPE__: "StructuredTextContent";
2916
3510
  value: (({
2917
3511
  type: "image";
@@ -3066,7 +3660,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3066
3660
  }))[];
3067
3661
  } | {
3068
3662
  __TYPE__: "SeparatorContent";
3069
- } | import("..").GroupContent;
3663
+ };
3070
3664
  };
3071
3665
  items: {
3072
3666
  __TYPE__: "GroupItemContent";
@@ -3186,7 +3780,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3186
3780
  __TYPE__: "LinkContent";
3187
3781
  value: ({
3188
3782
  __TYPE__: "ImageLink";
3189
- } & (({
3783
+ } & ((({
3190
3784
  kind: "image";
3191
3785
  id: string;
3192
3786
  url: string;
@@ -3196,14 +3790,13 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3196
3790
  name: string;
3197
3791
  } & {
3198
3792
  date?: string | null | undefined;
3199
- } & {
3200
- text?: string;
3201
3793
  }) | {
3202
3794
  kind: "image";
3203
- text: string;
3795
+ }) & {
3796
+ text?: string;
3204
3797
  })) | ({
3205
3798
  __TYPE__: "FileLink";
3206
- } & (({
3799
+ } & ((({
3207
3800
  kind: "file";
3208
3801
  id: string;
3209
3802
  url: string;
@@ -3211,28 +3804,27 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3211
3804
  size: string;
3212
3805
  } & {
3213
3806
  date?: string | null | undefined;
3214
- } & {
3215
- text?: string;
3216
3807
  }) | {
3217
3808
  kind: "file";
3218
- text: string;
3809
+ }) & {
3810
+ text?: string;
3219
3811
  })) | ({
3220
3812
  __TYPE__: "MediaLink";
3221
3813
  } & {
3222
3814
  kind: "media";
3223
- text: string;
3815
+ } & {
3816
+ text?: string;
3224
3817
  }) | ({
3225
3818
  __TYPE__: "DocumentLink";
3226
3819
  } & (({
3227
3820
  id: string;
3228
- } & {
3229
- text?: string;
3230
- }) | {
3821
+ } | {
3231
3822
  kind: "document";
3232
- text: string;
3823
+ }) & {
3824
+ text?: string;
3233
3825
  })) | ({
3234
3826
  __TYPE__: "ExternalLink";
3235
- } & (({
3827
+ } & ((({
3236
3828
  url: string;
3237
3829
  } & {
3238
3830
  kind?: "web";
@@ -3240,17 +3832,85 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3240
3832
  preview?: {
3241
3833
  title?: string;
3242
3834
  } | null | undefined;
3243
- } & {
3244
- text?: string;
3245
3835
  }) | {
3246
3836
  kind: "web";
3247
- text: string;
3837
+ }) & {
3838
+ text?: string;
3248
3839
  })) | ({
3249
3840
  __TYPE__: "AnyLink";
3250
3841
  } & {
3251
- text: string;
3842
+ text?: string;
3252
3843
  });
3253
3844
  } | {
3845
+ __TYPE__: "RepeatableContent";
3846
+ type: "Link";
3847
+ value: {
3848
+ __TYPE__: "LinkContent";
3849
+ value: ({
3850
+ __TYPE__: "ImageLink";
3851
+ } & ((({
3852
+ kind: "image";
3853
+ id: string;
3854
+ url: string;
3855
+ height: string;
3856
+ width: string;
3857
+ size: string;
3858
+ name: string;
3859
+ } & {
3860
+ date?: string | null | undefined;
3861
+ }) | {
3862
+ kind: "image";
3863
+ }) & {
3864
+ text?: string;
3865
+ })) | ({
3866
+ __TYPE__: "FileLink";
3867
+ } & ((({
3868
+ kind: "file";
3869
+ id: string;
3870
+ url: string;
3871
+ name: string;
3872
+ size: string;
3873
+ } & {
3874
+ date?: string | null | undefined;
3875
+ }) | {
3876
+ kind: "file";
3877
+ }) & {
3878
+ text?: string;
3879
+ })) | ({
3880
+ __TYPE__: "MediaLink";
3881
+ } & {
3882
+ kind: "media";
3883
+ } & {
3884
+ text?: string;
3885
+ }) | ({
3886
+ __TYPE__: "DocumentLink";
3887
+ } & (({
3888
+ id: string;
3889
+ } | {
3890
+ kind: "document";
3891
+ }) & {
3892
+ text?: string;
3893
+ })) | ({
3894
+ __TYPE__: "ExternalLink";
3895
+ } & ((({
3896
+ url: string;
3897
+ } & {
3898
+ kind?: "web";
3899
+ target?: string | null | undefined;
3900
+ preview?: {
3901
+ title?: string;
3902
+ } | null | undefined;
3903
+ }) | {
3904
+ kind: "web";
3905
+ }) & {
3906
+ text?: string;
3907
+ })) | ({
3908
+ __TYPE__: "AnyLink";
3909
+ } & {
3910
+ text?: string;
3911
+ });
3912
+ }[];
3913
+ } | import("..").GroupContent | {
3254
3914
  __TYPE__: "StructuredTextContent";
3255
3915
  value: (({
3256
3916
  type: "image";
@@ -3405,7 +4065,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3405
4065
  }))[];
3406
4066
  } | {
3407
4067
  __TYPE__: "SeparatorContent";
3408
- } | import("..").GroupContent][];
4068
+ }][];
3409
4069
  }[];
3410
4070
  };
3411
4071
  }[];
@@ -3532,7 +4192,7 @@ export declare const SlicesContent: t.TypeC<{
3532
4192
  __TYPE__: t.LiteralC<"LinkContent">;
3533
4193
  value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
3534
4194
  __TYPE__: t.LiteralC<"ImageLink">;
3535
- }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4195
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
3536
4196
  kind: t.Type<"image", "image", unknown>;
3537
4197
  id: t.StringC;
3538
4198
  url: t.StringC;
@@ -3542,14 +4202,13 @@ export declare const SlicesContent: t.TypeC<{
3542
4202
  name: t.StringC;
3543
4203
  }>>, t.ExactC<t.PartialC<{
3544
4204
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3545
- }>>]>, t.ExactC<t.PartialC<{
3546
- text: t.StringC;
3547
4205
  }>>]>, t.ExactC<t.TypeC<{
3548
4206
  kind: t.LiteralC<"image">;
4207
+ }>>]>, t.ExactC<t.PartialC<{
3549
4208
  text: t.StringC;
3550
4209
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
3551
4210
  __TYPE__: t.LiteralC<"FileLink">;
3552
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4211
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
3553
4212
  kind: t.Type<"file", "file", unknown>;
3554
4213
  id: t.StringC;
3555
4214
  url: t.StringC;
@@ -3557,23 +4216,21 @@ export declare const SlicesContent: t.TypeC<{
3557
4216
  size: t.StringC;
3558
4217
  }>, t.PartialC<{
3559
4218
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3560
- }>]>>, t.ExactC<t.PartialC<{
3561
- text: t.StringC;
3562
- }>>]>, t.ExactC<t.TypeC<{
4219
+ }>]>>, t.ExactC<t.TypeC<{
3563
4220
  kind: t.LiteralC<"file">;
4221
+ }>>]>, t.ExactC<t.PartialC<{
3564
4222
  text: t.StringC;
3565
4223
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
3566
4224
  __TYPE__: t.LiteralC<"DocumentLink">;
3567
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4225
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
3568
4226
  id: t.Type<string, string, unknown>;
3569
- }>>, t.ExactC<t.PartialC<{
3570
- text: t.StringC;
3571
- }>>]>, t.ExactC<t.TypeC<{
4227
+ }>>, t.ExactC<t.TypeC<{
3572
4228
  kind: t.LiteralC<"document">;
4229
+ }>>]>, t.ExactC<t.PartialC<{
3573
4230
  text: t.StringC;
3574
4231
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
3575
4232
  __TYPE__: t.LiteralC<"ExternalLink">;
3576
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4233
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
3577
4234
  url: t.StringC;
3578
4235
  }>, t.PartialC<{
3579
4236
  kind: t.LiteralC<"web">;
@@ -3583,19 +4240,19 @@ export declare const SlicesContent: t.TypeC<{
3583
4240
  }, {
3584
4241
  title?: string;
3585
4242
  }, unknown>, t.NullC, t.UndefinedC]>;
3586
- }>]>>, t.ExactC<t.PartialC<{
3587
- text: t.StringC;
3588
- }>>]>, t.ExactC<t.TypeC<{
4243
+ }>]>>, t.ExactC<t.TypeC<{
3589
4244
  kind: t.LiteralC<"web">;
4245
+ }>>]>, t.ExactC<t.PartialC<{
3590
4246
  text: t.StringC;
3591
4247
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
3592
4248
  __TYPE__: t.LiteralC<"MediaLink">;
3593
- }>>, t.ExactC<t.TypeC<{
4249
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
3594
4250
  kind: t.LiteralC<"media">;
4251
+ }>>, t.ExactC<t.PartialC<{
3595
4252
  text: t.StringC;
3596
- }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4253
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
3597
4254
  __TYPE__: t.LiteralC<"AnyLink">;
3598
- }>>, t.ExactC<t.TypeC<{
4255
+ }>>, t.ExactC<t.PartialC<{
3599
4256
  text: t.StringC;
3600
4257
  }>>]>]>;
3601
4258
  }>>, t.ExactC<t.TypeC<{
@@ -3839,6 +4496,77 @@ export declare const SlicesContent: t.TypeC<{
3839
4496
  }>]>>]>>;
3840
4497
  }>>, t.ExactC<t.TypeC<{
3841
4498
  __TYPE__: t.LiteralC<"SeparatorContent">;
4499
+ }>>, t.ExactC<t.TypeC<{
4500
+ __TYPE__: t.LiteralC<"RepeatableContent">;
4501
+ type: t.LiteralC<"Link">;
4502
+ value: t.ArrayC<t.ExactC<t.TypeC<{
4503
+ __TYPE__: t.LiteralC<"LinkContent">;
4504
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4505
+ __TYPE__: t.LiteralC<"ImageLink">;
4506
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4507
+ kind: t.Type<"image", "image", unknown>;
4508
+ id: t.StringC;
4509
+ url: t.StringC;
4510
+ height: t.StringC;
4511
+ width: t.StringC;
4512
+ size: t.StringC;
4513
+ name: t.StringC;
4514
+ }>>, t.ExactC<t.PartialC<{
4515
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4516
+ }>>]>, t.ExactC<t.TypeC<{
4517
+ kind: t.LiteralC<"image">;
4518
+ }>>]>, t.ExactC<t.PartialC<{
4519
+ text: t.StringC;
4520
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4521
+ __TYPE__: t.LiteralC<"FileLink">;
4522
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4523
+ kind: t.Type<"file", "file", unknown>;
4524
+ id: t.StringC;
4525
+ url: t.StringC;
4526
+ name: t.StringC;
4527
+ size: t.StringC;
4528
+ }>, t.PartialC<{
4529
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4530
+ }>]>>, t.ExactC<t.TypeC<{
4531
+ kind: t.LiteralC<"file">;
4532
+ }>>]>, t.ExactC<t.PartialC<{
4533
+ text: t.StringC;
4534
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4535
+ __TYPE__: t.LiteralC<"DocumentLink">;
4536
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
4537
+ id: t.Type<string, string, unknown>;
4538
+ }>>, t.ExactC<t.TypeC<{
4539
+ kind: t.LiteralC<"document">;
4540
+ }>>]>, t.ExactC<t.PartialC<{
4541
+ text: t.StringC;
4542
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4543
+ __TYPE__: t.LiteralC<"ExternalLink">;
4544
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4545
+ url: t.StringC;
4546
+ }>, t.PartialC<{
4547
+ kind: t.LiteralC<"web">;
4548
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4549
+ preview: t.UnionC<[t.Type<{
4550
+ title?: string;
4551
+ }, {
4552
+ title?: string;
4553
+ }, unknown>, t.NullC, t.UndefinedC]>;
4554
+ }>]>>, t.ExactC<t.TypeC<{
4555
+ kind: t.LiteralC<"web">;
4556
+ }>>]>, t.ExactC<t.PartialC<{
4557
+ text: t.StringC;
4558
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4559
+ __TYPE__: t.LiteralC<"MediaLink">;
4560
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
4561
+ kind: t.LiteralC<"media">;
4562
+ }>>, t.ExactC<t.PartialC<{
4563
+ text: t.StringC;
4564
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4565
+ __TYPE__: t.LiteralC<"AnyLink">;
4566
+ }>>, t.ExactC<t.PartialC<{
4567
+ text: t.StringC;
4568
+ }>>]>]>;
4569
+ }>>>;
3842
4570
  }>>]>>;
3843
4571
  repeat: t.ArrayC<t.ExactC<t.TypeC<{
3844
4572
  __TYPE__: t.LiteralC<"GroupItemContent">;
@@ -3956,7 +4684,7 @@ export declare const SlicesContent: t.TypeC<{
3956
4684
  __TYPE__: t.LiteralC<"LinkContent">;
3957
4685
  value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
3958
4686
  __TYPE__: t.LiteralC<"ImageLink">;
3959
- }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4687
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
3960
4688
  kind: t.Type<"image", "image", unknown>;
3961
4689
  id: t.StringC;
3962
4690
  url: t.StringC;
@@ -3966,14 +4694,13 @@ export declare const SlicesContent: t.TypeC<{
3966
4694
  name: t.StringC;
3967
4695
  }>>, t.ExactC<t.PartialC<{
3968
4696
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3969
- }>>]>, t.ExactC<t.PartialC<{
3970
- text: t.StringC;
3971
4697
  }>>]>, t.ExactC<t.TypeC<{
3972
4698
  kind: t.LiteralC<"image">;
4699
+ }>>]>, t.ExactC<t.PartialC<{
3973
4700
  text: t.StringC;
3974
4701
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
3975
4702
  __TYPE__: t.LiteralC<"FileLink">;
3976
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4703
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
3977
4704
  kind: t.Type<"file", "file", unknown>;
3978
4705
  id: t.StringC;
3979
4706
  url: t.StringC;
@@ -3981,23 +4708,21 @@ export declare const SlicesContent: t.TypeC<{
3981
4708
  size: t.StringC;
3982
4709
  }>, t.PartialC<{
3983
4710
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3984
- }>]>>, t.ExactC<t.PartialC<{
3985
- text: t.StringC;
3986
- }>>]>, t.ExactC<t.TypeC<{
4711
+ }>]>>, t.ExactC<t.TypeC<{
3987
4712
  kind: t.LiteralC<"file">;
4713
+ }>>]>, t.ExactC<t.PartialC<{
3988
4714
  text: t.StringC;
3989
4715
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
3990
4716
  __TYPE__: t.LiteralC<"DocumentLink">;
3991
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4717
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
3992
4718
  id: t.Type<string, string, unknown>;
3993
- }>>, t.ExactC<t.PartialC<{
3994
- text: t.StringC;
3995
- }>>]>, t.ExactC<t.TypeC<{
4719
+ }>>, t.ExactC<t.TypeC<{
3996
4720
  kind: t.LiteralC<"document">;
4721
+ }>>]>, t.ExactC<t.PartialC<{
3997
4722
  text: t.StringC;
3998
4723
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
3999
4724
  __TYPE__: t.LiteralC<"ExternalLink">;
4000
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4725
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4001
4726
  url: t.StringC;
4002
4727
  }>, t.PartialC<{
4003
4728
  kind: t.LiteralC<"web">;
@@ -4007,19 +4732,19 @@ export declare const SlicesContent: t.TypeC<{
4007
4732
  }, {
4008
4733
  title?: string;
4009
4734
  }, unknown>, t.NullC, t.UndefinedC]>;
4010
- }>]>>, t.ExactC<t.PartialC<{
4011
- text: t.StringC;
4012
- }>>]>, t.ExactC<t.TypeC<{
4735
+ }>]>>, t.ExactC<t.TypeC<{
4013
4736
  kind: t.LiteralC<"web">;
4737
+ }>>]>, t.ExactC<t.PartialC<{
4014
4738
  text: t.StringC;
4015
4739
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4016
4740
  __TYPE__: t.LiteralC<"MediaLink">;
4017
- }>>, t.ExactC<t.TypeC<{
4741
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
4018
4742
  kind: t.LiteralC<"media">;
4743
+ }>>, t.ExactC<t.PartialC<{
4019
4744
  text: t.StringC;
4020
- }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4745
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4021
4746
  __TYPE__: t.LiteralC<"AnyLink">;
4022
- }>>, t.ExactC<t.TypeC<{
4747
+ }>>, t.ExactC<t.PartialC<{
4023
4748
  text: t.StringC;
4024
4749
  }>>]>]>;
4025
4750
  }>>, t.ExactC<t.TypeC<{
@@ -4263,6 +4988,77 @@ export declare const SlicesContent: t.TypeC<{
4263
4988
  }>]>>]>>;
4264
4989
  }>>, t.ExactC<t.TypeC<{
4265
4990
  __TYPE__: t.LiteralC<"SeparatorContent">;
4991
+ }>>, t.ExactC<t.TypeC<{
4992
+ __TYPE__: t.LiteralC<"RepeatableContent">;
4993
+ type: t.LiteralC<"Link">;
4994
+ value: t.ArrayC<t.ExactC<t.TypeC<{
4995
+ __TYPE__: t.LiteralC<"LinkContent">;
4996
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4997
+ __TYPE__: t.LiteralC<"ImageLink">;
4998
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4999
+ kind: t.Type<"image", "image", unknown>;
5000
+ id: t.StringC;
5001
+ url: t.StringC;
5002
+ height: t.StringC;
5003
+ width: t.StringC;
5004
+ size: t.StringC;
5005
+ name: t.StringC;
5006
+ }>>, t.ExactC<t.PartialC<{
5007
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5008
+ }>>]>, t.ExactC<t.TypeC<{
5009
+ kind: t.LiteralC<"image">;
5010
+ }>>]>, t.ExactC<t.PartialC<{
5011
+ text: t.StringC;
5012
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5013
+ __TYPE__: t.LiteralC<"FileLink">;
5014
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5015
+ kind: t.Type<"file", "file", unknown>;
5016
+ id: t.StringC;
5017
+ url: t.StringC;
5018
+ name: t.StringC;
5019
+ size: t.StringC;
5020
+ }>, t.PartialC<{
5021
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5022
+ }>]>>, t.ExactC<t.TypeC<{
5023
+ kind: t.LiteralC<"file">;
5024
+ }>>]>, t.ExactC<t.PartialC<{
5025
+ text: t.StringC;
5026
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5027
+ __TYPE__: t.LiteralC<"DocumentLink">;
5028
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
5029
+ id: t.Type<string, string, unknown>;
5030
+ }>>, t.ExactC<t.TypeC<{
5031
+ kind: t.LiteralC<"document">;
5032
+ }>>]>, t.ExactC<t.PartialC<{
5033
+ text: t.StringC;
5034
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5035
+ __TYPE__: t.LiteralC<"ExternalLink">;
5036
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5037
+ url: t.StringC;
5038
+ }>, t.PartialC<{
5039
+ kind: t.LiteralC<"web">;
5040
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5041
+ preview: t.UnionC<[t.Type<{
5042
+ title?: string;
5043
+ }, {
5044
+ title?: string;
5045
+ }, unknown>, t.NullC, t.UndefinedC]>;
5046
+ }>]>>, t.ExactC<t.TypeC<{
5047
+ kind: t.LiteralC<"web">;
5048
+ }>>]>, t.ExactC<t.PartialC<{
5049
+ text: t.StringC;
5050
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5051
+ __TYPE__: t.LiteralC<"MediaLink">;
5052
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
5053
+ kind: t.LiteralC<"media">;
5054
+ }>>, t.ExactC<t.PartialC<{
5055
+ text: t.StringC;
5056
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5057
+ __TYPE__: t.LiteralC<"AnyLink">;
5058
+ }>>, t.ExactC<t.PartialC<{
5059
+ text: t.StringC;
5060
+ }>>]>]>;
5061
+ }>>>;
4266
5062
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
4267
5063
  }>>>;
4268
5064
  }>>, t.ExactC<t.TypeC<{
@@ -4382,7 +5178,7 @@ export declare const SlicesContent: t.TypeC<{
4382
5178
  __TYPE__: t.LiteralC<"LinkContent">;
4383
5179
  value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4384
5180
  __TYPE__: t.LiteralC<"ImageLink">;
4385
- }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5181
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4386
5182
  kind: t.Type<"image", "image", unknown>;
4387
5183
  id: t.StringC;
4388
5184
  url: t.StringC;
@@ -4392,14 +5188,13 @@ export declare const SlicesContent: t.TypeC<{
4392
5188
  name: t.StringC;
4393
5189
  }>>, t.ExactC<t.PartialC<{
4394
5190
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4395
- }>>]>, t.ExactC<t.PartialC<{
4396
- text: t.StringC;
4397
5191
  }>>]>, t.ExactC<t.TypeC<{
4398
5192
  kind: t.LiteralC<"image">;
5193
+ }>>]>, t.ExactC<t.PartialC<{
4399
5194
  text: t.StringC;
4400
5195
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4401
5196
  __TYPE__: t.LiteralC<"FileLink">;
4402
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5197
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4403
5198
  kind: t.Type<"file", "file", unknown>;
4404
5199
  id: t.StringC;
4405
5200
  url: t.StringC;
@@ -4407,23 +5202,21 @@ export declare const SlicesContent: t.TypeC<{
4407
5202
  size: t.StringC;
4408
5203
  }>, t.PartialC<{
4409
5204
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4410
- }>]>>, t.ExactC<t.PartialC<{
4411
- text: t.StringC;
4412
- }>>]>, t.ExactC<t.TypeC<{
5205
+ }>]>>, t.ExactC<t.TypeC<{
4413
5206
  kind: t.LiteralC<"file">;
5207
+ }>>]>, t.ExactC<t.PartialC<{
4414
5208
  text: t.StringC;
4415
5209
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4416
5210
  __TYPE__: t.LiteralC<"DocumentLink">;
4417
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5211
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
4418
5212
  id: t.Type<string, string, unknown>;
4419
- }>>, t.ExactC<t.PartialC<{
4420
- text: t.StringC;
4421
- }>>]>, t.ExactC<t.TypeC<{
5213
+ }>>, t.ExactC<t.TypeC<{
4422
5214
  kind: t.LiteralC<"document">;
5215
+ }>>]>, t.ExactC<t.PartialC<{
4423
5216
  text: t.StringC;
4424
5217
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4425
5218
  __TYPE__: t.LiteralC<"ExternalLink">;
4426
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5219
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4427
5220
  url: t.StringC;
4428
5221
  }>, t.PartialC<{
4429
5222
  kind: t.LiteralC<"web">;
@@ -4433,19 +5226,19 @@ export declare const SlicesContent: t.TypeC<{
4433
5226
  }, {
4434
5227
  title?: string;
4435
5228
  }, unknown>, t.NullC, t.UndefinedC]>;
4436
- }>]>>, t.ExactC<t.PartialC<{
4437
- text: t.StringC;
4438
- }>>]>, t.ExactC<t.TypeC<{
5229
+ }>]>>, t.ExactC<t.TypeC<{
4439
5230
  kind: t.LiteralC<"web">;
5231
+ }>>]>, t.ExactC<t.PartialC<{
4440
5232
  text: t.StringC;
4441
5233
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4442
5234
  __TYPE__: t.LiteralC<"MediaLink">;
4443
- }>>, t.ExactC<t.TypeC<{
5235
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
4444
5236
  kind: t.LiteralC<"media">;
5237
+ }>>, t.ExactC<t.PartialC<{
4445
5238
  text: t.StringC;
4446
- }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5239
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4447
5240
  __TYPE__: t.LiteralC<"AnyLink">;
4448
- }>>, t.ExactC<t.TypeC<{
5241
+ }>>, t.ExactC<t.PartialC<{
4449
5242
  text: t.StringC;
4450
5243
  }>>]>]>;
4451
5244
  }>>, t.ExactC<t.TypeC<{
@@ -4689,6 +5482,77 @@ export declare const SlicesContent: t.TypeC<{
4689
5482
  }>]>>]>>;
4690
5483
  }>>, t.ExactC<t.TypeC<{
4691
5484
  __TYPE__: t.LiteralC<"SeparatorContent">;
5485
+ }>>, t.ExactC<t.TypeC<{
5486
+ __TYPE__: t.LiteralC<"RepeatableContent">;
5487
+ type: t.LiteralC<"Link">;
5488
+ value: t.ArrayC<t.ExactC<t.TypeC<{
5489
+ __TYPE__: t.LiteralC<"LinkContent">;
5490
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5491
+ __TYPE__: t.LiteralC<"ImageLink">;
5492
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5493
+ kind: t.Type<"image", "image", unknown>;
5494
+ id: t.StringC;
5495
+ url: t.StringC;
5496
+ height: t.StringC;
5497
+ width: t.StringC;
5498
+ size: t.StringC;
5499
+ name: t.StringC;
5500
+ }>>, t.ExactC<t.PartialC<{
5501
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5502
+ }>>]>, t.ExactC<t.TypeC<{
5503
+ kind: t.LiteralC<"image">;
5504
+ }>>]>, t.ExactC<t.PartialC<{
5505
+ text: t.StringC;
5506
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5507
+ __TYPE__: t.LiteralC<"FileLink">;
5508
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5509
+ kind: t.Type<"file", "file", unknown>;
5510
+ id: t.StringC;
5511
+ url: t.StringC;
5512
+ name: t.StringC;
5513
+ size: t.StringC;
5514
+ }>, t.PartialC<{
5515
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5516
+ }>]>>, t.ExactC<t.TypeC<{
5517
+ kind: t.LiteralC<"file">;
5518
+ }>>]>, t.ExactC<t.PartialC<{
5519
+ text: t.StringC;
5520
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5521
+ __TYPE__: t.LiteralC<"DocumentLink">;
5522
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
5523
+ id: t.Type<string, string, unknown>;
5524
+ }>>, t.ExactC<t.TypeC<{
5525
+ kind: t.LiteralC<"document">;
5526
+ }>>]>, t.ExactC<t.PartialC<{
5527
+ text: t.StringC;
5528
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5529
+ __TYPE__: t.LiteralC<"ExternalLink">;
5530
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5531
+ url: t.StringC;
5532
+ }>, t.PartialC<{
5533
+ kind: t.LiteralC<"web">;
5534
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5535
+ preview: t.UnionC<[t.Type<{
5536
+ title?: string;
5537
+ }, {
5538
+ title?: string;
5539
+ }, unknown>, t.NullC, t.UndefinedC]>;
5540
+ }>]>>, t.ExactC<t.TypeC<{
5541
+ kind: t.LiteralC<"web">;
5542
+ }>>]>, t.ExactC<t.PartialC<{
5543
+ text: t.StringC;
5544
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5545
+ __TYPE__: t.LiteralC<"MediaLink">;
5546
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
5547
+ kind: t.LiteralC<"media">;
5548
+ }>>, t.ExactC<t.PartialC<{
5549
+ text: t.StringC;
5550
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5551
+ __TYPE__: t.LiteralC<"AnyLink">;
5552
+ }>>, t.ExactC<t.PartialC<{
5553
+ text: t.StringC;
5554
+ }>>]>]>;
5555
+ }>>>;
4692
5556
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>>;
4693
5557
  items: t.ArrayC<t.ExactC<t.TypeC<{
4694
5558
  __TYPE__: t.LiteralC<"GroupItemContent">;
@@ -4806,7 +5670,7 @@ export declare const SlicesContent: t.TypeC<{
4806
5670
  __TYPE__: t.LiteralC<"LinkContent">;
4807
5671
  value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4808
5672
  __TYPE__: t.LiteralC<"ImageLink">;
4809
- }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5673
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
4810
5674
  kind: t.Type<"image", "image", unknown>;
4811
5675
  id: t.StringC;
4812
5676
  url: t.StringC;
@@ -4816,14 +5680,13 @@ export declare const SlicesContent: t.TypeC<{
4816
5680
  name: t.StringC;
4817
5681
  }>>, t.ExactC<t.PartialC<{
4818
5682
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4819
- }>>]>, t.ExactC<t.PartialC<{
4820
- text: t.StringC;
4821
5683
  }>>]>, t.ExactC<t.TypeC<{
4822
5684
  kind: t.LiteralC<"image">;
5685
+ }>>]>, t.ExactC<t.PartialC<{
4823
5686
  text: t.StringC;
4824
5687
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4825
5688
  __TYPE__: t.LiteralC<"FileLink">;
4826
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5689
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4827
5690
  kind: t.Type<"file", "file", unknown>;
4828
5691
  id: t.StringC;
4829
5692
  url: t.StringC;
@@ -4831,23 +5694,21 @@ export declare const SlicesContent: t.TypeC<{
4831
5694
  size: t.StringC;
4832
5695
  }>, t.PartialC<{
4833
5696
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4834
- }>]>>, t.ExactC<t.PartialC<{
4835
- text: t.StringC;
4836
- }>>]>, t.ExactC<t.TypeC<{
5697
+ }>]>>, t.ExactC<t.TypeC<{
4837
5698
  kind: t.LiteralC<"file">;
5699
+ }>>]>, t.ExactC<t.PartialC<{
4838
5700
  text: t.StringC;
4839
5701
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4840
5702
  __TYPE__: t.LiteralC<"DocumentLink">;
4841
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5703
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
4842
5704
  id: t.Type<string, string, unknown>;
4843
- }>>, t.ExactC<t.PartialC<{
4844
- text: t.StringC;
4845
- }>>]>, t.ExactC<t.TypeC<{
5705
+ }>>, t.ExactC<t.TypeC<{
4846
5706
  kind: t.LiteralC<"document">;
5707
+ }>>]>, t.ExactC<t.PartialC<{
4847
5708
  text: t.StringC;
4848
5709
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4849
5710
  __TYPE__: t.LiteralC<"ExternalLink">;
4850
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5711
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
4851
5712
  url: t.StringC;
4852
5713
  }>, t.PartialC<{
4853
5714
  kind: t.LiteralC<"web">;
@@ -4857,19 +5718,19 @@ export declare const SlicesContent: t.TypeC<{
4857
5718
  }, {
4858
5719
  title?: string;
4859
5720
  }, unknown>, t.NullC, t.UndefinedC]>;
4860
- }>]>>, t.ExactC<t.PartialC<{
4861
- text: t.StringC;
4862
- }>>]>, t.ExactC<t.TypeC<{
5721
+ }>]>>, t.ExactC<t.TypeC<{
4863
5722
  kind: t.LiteralC<"web">;
5723
+ }>>]>, t.ExactC<t.PartialC<{
4864
5724
  text: t.StringC;
4865
5725
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4866
5726
  __TYPE__: t.LiteralC<"MediaLink">;
4867
- }>>, t.ExactC<t.TypeC<{
5727
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
4868
5728
  kind: t.LiteralC<"media">;
5729
+ }>>, t.ExactC<t.PartialC<{
4869
5730
  text: t.StringC;
4870
- }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5731
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4871
5732
  __TYPE__: t.LiteralC<"AnyLink">;
4872
- }>>, t.ExactC<t.TypeC<{
5733
+ }>>, t.ExactC<t.PartialC<{
4873
5734
  text: t.StringC;
4874
5735
  }>>]>]>;
4875
5736
  }>>, t.ExactC<t.TypeC<{
@@ -5113,6 +5974,77 @@ export declare const SlicesContent: t.TypeC<{
5113
5974
  }>]>>]>>;
5114
5975
  }>>, t.ExactC<t.TypeC<{
5115
5976
  __TYPE__: t.LiteralC<"SeparatorContent">;
5977
+ }>>, t.ExactC<t.TypeC<{
5978
+ __TYPE__: t.LiteralC<"RepeatableContent">;
5979
+ type: t.LiteralC<"Link">;
5980
+ value: t.ArrayC<t.ExactC<t.TypeC<{
5981
+ __TYPE__: t.LiteralC<"LinkContent">;
5982
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5983
+ __TYPE__: t.LiteralC<"ImageLink">;
5984
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5985
+ kind: t.Type<"image", "image", unknown>;
5986
+ id: t.StringC;
5987
+ url: t.StringC;
5988
+ height: t.StringC;
5989
+ width: t.StringC;
5990
+ size: t.StringC;
5991
+ name: t.StringC;
5992
+ }>>, t.ExactC<t.PartialC<{
5993
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5994
+ }>>]>, t.ExactC<t.TypeC<{
5995
+ kind: t.LiteralC<"image">;
5996
+ }>>]>, t.ExactC<t.PartialC<{
5997
+ text: t.StringC;
5998
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5999
+ __TYPE__: t.LiteralC<"FileLink">;
6000
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6001
+ kind: t.Type<"file", "file", unknown>;
6002
+ id: t.StringC;
6003
+ url: t.StringC;
6004
+ name: t.StringC;
6005
+ size: t.StringC;
6006
+ }>, t.PartialC<{
6007
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6008
+ }>]>>, t.ExactC<t.TypeC<{
6009
+ kind: t.LiteralC<"file">;
6010
+ }>>]>, t.ExactC<t.PartialC<{
6011
+ text: t.StringC;
6012
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6013
+ __TYPE__: t.LiteralC<"DocumentLink">;
6014
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
6015
+ id: t.Type<string, string, unknown>;
6016
+ }>>, t.ExactC<t.TypeC<{
6017
+ kind: t.LiteralC<"document">;
6018
+ }>>]>, t.ExactC<t.PartialC<{
6019
+ text: t.StringC;
6020
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6021
+ __TYPE__: t.LiteralC<"ExternalLink">;
6022
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6023
+ url: t.StringC;
6024
+ }>, t.PartialC<{
6025
+ kind: t.LiteralC<"web">;
6026
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6027
+ preview: t.UnionC<[t.Type<{
6028
+ title?: string;
6029
+ }, {
6030
+ title?: string;
6031
+ }, unknown>, t.NullC, t.UndefinedC]>;
6032
+ }>]>>, t.ExactC<t.TypeC<{
6033
+ kind: t.LiteralC<"web">;
6034
+ }>>]>, t.ExactC<t.PartialC<{
6035
+ text: t.StringC;
6036
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6037
+ __TYPE__: t.LiteralC<"MediaLink">;
6038
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
6039
+ kind: t.LiteralC<"media">;
6040
+ }>>, t.ExactC<t.PartialC<{
6041
+ text: t.StringC;
6042
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6043
+ __TYPE__: t.LiteralC<"AnyLink">;
6044
+ }>>, t.ExactC<t.PartialC<{
6045
+ text: t.StringC;
6046
+ }>>]>]>;
6047
+ }>>>;
5116
6048
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
5117
6049
  }>>>;
5118
6050
  }>>, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -5229,7 +6161,7 @@ export declare const SlicesContent: t.TypeC<{
5229
6161
  __TYPE__: t.LiteralC<"LinkContent">;
5230
6162
  value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5231
6163
  __TYPE__: t.LiteralC<"ImageLink">;
5232
- }>>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6164
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
5233
6165
  kind: t.Type<"image", "image", unknown>;
5234
6166
  id: t.StringC;
5235
6167
  url: t.StringC;
@@ -5239,14 +6171,13 @@ export declare const SlicesContent: t.TypeC<{
5239
6171
  name: t.StringC;
5240
6172
  }>>, t.ExactC<t.PartialC<{
5241
6173
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5242
- }>>]>, t.ExactC<t.PartialC<{
5243
- text: t.StringC;
5244
6174
  }>>]>, t.ExactC<t.TypeC<{
5245
6175
  kind: t.LiteralC<"image">;
6176
+ }>>]>, t.ExactC<t.PartialC<{
5246
6177
  text: t.StringC;
5247
6178
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5248
6179
  __TYPE__: t.LiteralC<"FileLink">;
5249
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6180
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5250
6181
  kind: t.Type<"file", "file", unknown>;
5251
6182
  id: t.StringC;
5252
6183
  url: t.StringC;
@@ -5254,23 +6185,21 @@ export declare const SlicesContent: t.TypeC<{
5254
6185
  size: t.StringC;
5255
6186
  }>, t.PartialC<{
5256
6187
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5257
- }>]>>, t.ExactC<t.PartialC<{
5258
- text: t.StringC;
5259
- }>>]>, t.ExactC<t.TypeC<{
6188
+ }>]>>, t.ExactC<t.TypeC<{
5260
6189
  kind: t.LiteralC<"file">;
6190
+ }>>]>, t.ExactC<t.PartialC<{
5261
6191
  text: t.StringC;
5262
6192
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5263
6193
  __TYPE__: t.LiteralC<"DocumentLink">;
5264
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6194
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
5265
6195
  id: t.Type<string, string, unknown>;
5266
- }>>, t.ExactC<t.PartialC<{
5267
- text: t.StringC;
5268
- }>>]>, t.ExactC<t.TypeC<{
6196
+ }>>, t.ExactC<t.TypeC<{
5269
6197
  kind: t.LiteralC<"document">;
6198
+ }>>]>, t.ExactC<t.PartialC<{
5270
6199
  text: t.StringC;
5271
6200
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5272
6201
  __TYPE__: t.LiteralC<"ExternalLink">;
5273
- }>>, t.UnionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6202
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
5274
6203
  url: t.StringC;
5275
6204
  }>, t.PartialC<{
5276
6205
  kind: t.LiteralC<"web">;
@@ -5280,19 +6209,19 @@ export declare const SlicesContent: t.TypeC<{
5280
6209
  }, {
5281
6210
  title?: string;
5282
6211
  }, unknown>, t.NullC, t.UndefinedC]>;
5283
- }>]>>, t.ExactC<t.PartialC<{
5284
- text: t.StringC;
5285
- }>>]>, t.ExactC<t.TypeC<{
6212
+ }>]>>, t.ExactC<t.TypeC<{
5286
6213
  kind: t.LiteralC<"web">;
6214
+ }>>]>, t.ExactC<t.PartialC<{
5287
6215
  text: t.StringC;
5288
6216
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5289
6217
  __TYPE__: t.LiteralC<"MediaLink">;
5290
- }>>, t.ExactC<t.TypeC<{
6218
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
5291
6219
  kind: t.LiteralC<"media">;
6220
+ }>>, t.ExactC<t.PartialC<{
5292
6221
  text: t.StringC;
5293
- }>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6222
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5294
6223
  __TYPE__: t.LiteralC<"AnyLink">;
5295
- }>>, t.ExactC<t.TypeC<{
6224
+ }>>, t.ExactC<t.PartialC<{
5296
6225
  text: t.StringC;
5297
6226
  }>>]>]>;
5298
6227
  }>>, t.ExactC<t.TypeC<{
@@ -5536,6 +6465,77 @@ export declare const SlicesContent: t.TypeC<{
5536
6465
  }>]>>]>>;
5537
6466
  }>>, t.ExactC<t.TypeC<{
5538
6467
  __TYPE__: t.LiteralC<"SeparatorContent">;
6468
+ }>>, t.ExactC<t.TypeC<{
6469
+ __TYPE__: t.LiteralC<"RepeatableContent">;
6470
+ type: t.LiteralC<"Link">;
6471
+ value: t.ArrayC<t.ExactC<t.TypeC<{
6472
+ __TYPE__: t.LiteralC<"LinkContent">;
6473
+ value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6474
+ __TYPE__: t.LiteralC<"ImageLink">;
6475
+ }>>, t.IntersectionC<[t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
6476
+ kind: t.Type<"image", "image", unknown>;
6477
+ id: t.StringC;
6478
+ url: t.StringC;
6479
+ height: t.StringC;
6480
+ width: t.StringC;
6481
+ size: t.StringC;
6482
+ name: t.StringC;
6483
+ }>>, t.ExactC<t.PartialC<{
6484
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6485
+ }>>]>, t.ExactC<t.TypeC<{
6486
+ kind: t.LiteralC<"image">;
6487
+ }>>]>, t.ExactC<t.PartialC<{
6488
+ text: t.StringC;
6489
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6490
+ __TYPE__: t.LiteralC<"FileLink">;
6491
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6492
+ kind: t.Type<"file", "file", unknown>;
6493
+ id: t.StringC;
6494
+ url: t.StringC;
6495
+ name: t.StringC;
6496
+ size: t.StringC;
6497
+ }>, t.PartialC<{
6498
+ date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6499
+ }>]>>, t.ExactC<t.TypeC<{
6500
+ kind: t.LiteralC<"file">;
6501
+ }>>]>, t.ExactC<t.PartialC<{
6502
+ text: t.StringC;
6503
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6504
+ __TYPE__: t.LiteralC<"DocumentLink">;
6505
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
6506
+ id: t.Type<string, string, unknown>;
6507
+ }>>, t.ExactC<t.TypeC<{
6508
+ kind: t.LiteralC<"document">;
6509
+ }>>]>, t.ExactC<t.PartialC<{
6510
+ text: t.StringC;
6511
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6512
+ __TYPE__: t.LiteralC<"ExternalLink">;
6513
+ }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
6514
+ url: t.StringC;
6515
+ }>, t.PartialC<{
6516
+ kind: t.LiteralC<"web">;
6517
+ target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6518
+ preview: t.UnionC<[t.Type<{
6519
+ title?: string;
6520
+ }, {
6521
+ title?: string;
6522
+ }, unknown>, t.NullC, t.UndefinedC]>;
6523
+ }>]>>, t.ExactC<t.TypeC<{
6524
+ kind: t.LiteralC<"web">;
6525
+ }>>]>, t.ExactC<t.PartialC<{
6526
+ text: t.StringC;
6527
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6528
+ __TYPE__: t.LiteralC<"MediaLink">;
6529
+ }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
6530
+ kind: t.LiteralC<"media">;
6531
+ }>>, t.ExactC<t.PartialC<{
6532
+ text: t.StringC;
6533
+ }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6534
+ __TYPE__: t.LiteralC<"AnyLink">;
6535
+ }>>, t.ExactC<t.PartialC<{
6536
+ text: t.StringC;
6537
+ }>>]>]>;
6538
+ }>>>;
5539
6539
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>;
5540
6540
  }>>;
5541
6541
  }>;