@prismicio/types-internal 2.4.0-alpha.1 → 2.4.0-alpha.3

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 (44) hide show
  1. package/lib/content/Document.d.ts +0 -72
  2. package/lib/content/fields/GroupContent.d.ts +0 -15
  3. package/lib/content/fields/WidgetContent.d.ts +0 -72
  4. package/lib/content/fields/nestable/ImageContent.d.ts +0 -9
  5. package/lib/content/fields/nestable/ImageContent.js +0 -1
  6. package/lib/content/fields/nestable/NestableContent.d.ts +0 -9
  7. package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +0 -4
  8. package/lib/content/fields/nestable/RichTextContent/index.d.ts +0 -4
  9. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +0 -18
  10. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +0 -6
  11. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +0 -18
  12. package/lib/content/fields/slices/Slice/SharedSliceContent.js +3 -1
  13. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +0 -18
  14. package/lib/content/fields/slices/Slice/index.d.ts +0 -36
  15. package/lib/content/fields/slices/SliceItem.d.ts +0 -36
  16. package/lib/content/fields/slices/SlicesContent.d.ts +0 -54
  17. package/lib/customtypes/CustomType.d.ts +169 -14
  18. package/lib/customtypes/Section.d.ts +169 -14
  19. package/lib/customtypes/diff/SharedSlice.d.ts +338 -4
  20. package/lib/customtypes/diff/Variation.d.ts +340 -5
  21. package/lib/customtypes/widgets/Group.d.ts +0 -2
  22. package/lib/customtypes/widgets/Widget.d.ts +169 -16
  23. package/lib/customtypes/widgets/nestable/Image.d.ts +0 -2
  24. package/lib/customtypes/widgets/nestable/Image.js +0 -1
  25. package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +0 -1
  26. package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +0 -2
  27. package/lib/customtypes/widgets/slices/LegacySlice.d.ts +0 -2
  28. package/lib/customtypes/widgets/slices/SharedSlice.d.ts +336 -6
  29. package/lib/customtypes/widgets/slices/SharedSlice.js +2 -1
  30. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +327 -0
  31. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.js +8 -0
  32. package/lib/customtypes/widgets/slices/SliceWidget.d.ts +327 -0
  33. package/lib/customtypes/widgets/slices/SliceWidget.js +8 -0
  34. package/lib/customtypes/widgets/slices/Slices.d.ts +338 -24
  35. package/lib/customtypes/widgets/slices/index.d.ts +1 -0
  36. package/lib/customtypes/widgets/slices/index.js +1 -0
  37. package/package.json +1 -1
  38. package/src/content/fields/nestable/ImageContent.ts +0 -1
  39. package/src/content/fields/slices/Slice/SharedSliceContent.ts +12 -2
  40. package/src/customtypes/diff/Variation.ts +6 -5
  41. package/src/customtypes/widgets/nestable/Image.ts +0 -1
  42. package/src/customtypes/widgets/slices/SharedSlice.ts +2 -1
  43. package/src/customtypes/widgets/slices/SlicePrimaryWidget.ts +9 -0
  44. package/src/customtypes/widgets/slices/index.ts +1 -0
@@ -86,7 +86,6 @@ export declare const GroupItemContent: t.ExactC<t.TypeC<{
86
86
  credits: t.Type<string | null, string | null, unknown>;
87
87
  alt: t.Type<string | null, string | null, unknown>;
88
88
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
89
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
90
89
  }>]>>, t.PartialC<{
91
90
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
92
91
  origin: t.ExactC<t.TypeC<{
@@ -110,7 +109,6 @@ export declare const GroupItemContent: t.ExactC<t.TypeC<{
110
109
  credits: t.Type<string | null, string | null, unknown>;
111
110
  alt: t.Type<string | null, string | null, unknown>;
112
111
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
113
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
114
112
  }>]>>>;
115
113
  }>]>, t.ExactC<t.TypeC<{
116
114
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -186,7 +184,6 @@ export declare const GroupItemContent: t.ExactC<t.TypeC<{
186
184
  credits: t.Type<string | null, string | null, unknown>;
187
185
  alt: t.Type<string | null, string | null, unknown>;
188
186
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
189
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
190
187
  }>]>>, t.PartialC<{
191
188
  linkTo: t.UnionC<[t.Type<({
192
189
  __TYPE__: "ImageLink";
@@ -488,7 +485,6 @@ export declare const GroupItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
488
485
  credits?: string | null;
489
486
  alt?: string | null;
490
487
  provider?: string | null | undefined;
491
- caption?: string | null | undefined;
492
488
  } & {
493
489
  thumbnails?: {
494
490
  [x: string]: {
@@ -513,7 +509,6 @@ export declare const GroupItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
513
509
  credits?: string | null;
514
510
  alt?: string | null;
515
511
  provider?: string | null | undefined;
516
- caption?: string | null | undefined;
517
512
  };
518
513
  };
519
514
  } & {
@@ -588,7 +583,6 @@ export declare const GroupItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
588
583
  credits?: string | null;
589
584
  alt?: string | null;
590
585
  provider?: string | null | undefined;
591
- caption?: string | null | undefined;
592
586
  } & {
593
587
  linkTo?: ({
594
588
  __TYPE__: "ImageLink";
@@ -812,7 +806,6 @@ export declare const GroupLegacy: (ctx: LegacyContentCtx) => t.Type<{
812
806
  credits?: string | null;
813
807
  alt?: string | null;
814
808
  provider?: string | null | undefined;
815
- caption?: string | null | undefined;
816
809
  } & {
817
810
  thumbnails?: {
818
811
  [x: string]: {
@@ -837,7 +830,6 @@ export declare const GroupLegacy: (ctx: LegacyContentCtx) => t.Type<{
837
830
  credits?: string | null;
838
831
  alt?: string | null;
839
832
  provider?: string | null | undefined;
840
- caption?: string | null | undefined;
841
833
  };
842
834
  };
843
835
  } & {
@@ -912,7 +904,6 @@ export declare const GroupLegacy: (ctx: LegacyContentCtx) => t.Type<{
912
904
  credits?: string | null;
913
905
  alt?: string | null;
914
906
  provider?: string | null | undefined;
915
- caption?: string | null | undefined;
916
907
  } & {
917
908
  linkTo?: ({
918
909
  __TYPE__: "ImageLink";
@@ -1135,7 +1126,6 @@ export declare const isGroupContent: (u: unknown) => u is {
1135
1126
  credits?: string | null;
1136
1127
  alt?: string | null;
1137
1128
  provider?: string | null | undefined;
1138
- caption?: string | null | undefined;
1139
1129
  } & {
1140
1130
  thumbnails?: {
1141
1131
  [x: string]: {
@@ -1160,7 +1150,6 @@ export declare const isGroupContent: (u: unknown) => u is {
1160
1150
  credits?: string | null;
1161
1151
  alt?: string | null;
1162
1152
  provider?: string | null | undefined;
1163
- caption?: string | null | undefined;
1164
1153
  };
1165
1154
  };
1166
1155
  } & {
@@ -1235,7 +1224,6 @@ export declare const isGroupContent: (u: unknown) => u is {
1235
1224
  credits?: string | null;
1236
1225
  alt?: string | null;
1237
1226
  provider?: string | null | undefined;
1238
- caption?: string | null | undefined;
1239
1227
  } & {
1240
1228
  linkTo?: ({
1241
1229
  __TYPE__: "ImageLink";
@@ -1457,7 +1445,6 @@ export declare const GroupContent: t.ExactC<t.TypeC<{
1457
1445
  credits: t.Type<string | null, string | null, unknown>;
1458
1446
  alt: t.Type<string | null, string | null, unknown>;
1459
1447
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1460
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1461
1448
  }>]>>, t.PartialC<{
1462
1449
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
1463
1450
  origin: t.ExactC<t.TypeC<{
@@ -1481,7 +1468,6 @@ export declare const GroupContent: t.ExactC<t.TypeC<{
1481
1468
  credits: t.Type<string | null, string | null, unknown>;
1482
1469
  alt: t.Type<string | null, string | null, unknown>;
1483
1470
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1484
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1485
1471
  }>]>>>;
1486
1472
  }>]>, t.ExactC<t.TypeC<{
1487
1473
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -1557,7 +1543,6 @@ export declare const GroupContent: t.ExactC<t.TypeC<{
1557
1543
  credits: t.Type<string | null, string | null, unknown>;
1558
1544
  alt: t.Type<string | null, string | null, unknown>;
1559
1545
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1560
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1561
1546
  }>]>>, t.PartialC<{
1562
1547
  linkTo: t.UnionC<[t.Type<({
1563
1548
  __TYPE__: "ImageLink";
@@ -85,7 +85,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
85
85
  credits: t.Type<string | null, string | null, unknown>;
86
86
  alt: t.Type<string | null, string | null, unknown>;
87
87
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
88
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
89
88
  }>]>>, t.PartialC<{
90
89
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
91
90
  origin: t.ExactC<t.TypeC<{
@@ -109,7 +108,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
109
108
  credits: t.Type<string | null, string | null, unknown>;
110
109
  alt: t.Type<string | null, string | null, unknown>;
111
110
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
112
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
113
111
  }>]>>>;
114
112
  }>]>, t.ExactC<t.TypeC<{
115
113
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -185,7 +183,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
185
183
  credits: t.Type<string | null, string | null, unknown>;
186
184
  alt: t.Type<string | null, string | null, unknown>;
187
185
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
188
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
189
186
  }>]>>, t.PartialC<{
190
187
  linkTo: t.UnionC<[t.Type<({
191
188
  __TYPE__: "ImageLink";
@@ -482,7 +479,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
482
479
  credits: t.Type<string | null, string | null, unknown>;
483
480
  alt: t.Type<string | null, string | null, unknown>;
484
481
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
485
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
486
482
  }>]>>, t.PartialC<{
487
483
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
488
484
  origin: t.ExactC<t.TypeC<{
@@ -506,7 +502,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
506
502
  credits: t.Type<string | null, string | null, unknown>;
507
503
  alt: t.Type<string | null, string | null, unknown>;
508
504
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
509
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
510
505
  }>]>>>;
511
506
  }>]>, t.ExactC<t.TypeC<{
512
507
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -582,7 +577,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
582
577
  credits: t.Type<string | null, string | null, unknown>;
583
578
  alt: t.Type<string | null, string | null, unknown>;
584
579
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
585
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
586
580
  }>]>>, t.PartialC<{
587
581
  linkTo: t.UnionC<[t.Type<({
588
582
  __TYPE__: "ImageLink";
@@ -888,7 +882,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
888
882
  credits: t.Type<string | null, string | null, unknown>;
889
883
  alt: t.Type<string | null, string | null, unknown>;
890
884
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
891
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
892
885
  }>]>>, t.PartialC<{
893
886
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
894
887
  origin: t.ExactC<t.TypeC<{
@@ -912,7 +905,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
912
905
  credits: t.Type<string | null, string | null, unknown>;
913
906
  alt: t.Type<string | null, string | null, unknown>;
914
907
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
915
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
916
908
  }>]>>>;
917
909
  }>]>, t.ExactC<t.TypeC<{
918
910
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -988,7 +980,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
988
980
  credits: t.Type<string | null, string | null, unknown>;
989
981
  alt: t.Type<string | null, string | null, unknown>;
990
982
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
991
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
992
983
  }>]>>, t.PartialC<{
993
984
  linkTo: t.UnionC<[t.Type<({
994
985
  __TYPE__: "ImageLink";
@@ -1286,7 +1277,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1286
1277
  credits: t.Type<string | null, string | null, unknown>;
1287
1278
  alt: t.Type<string | null, string | null, unknown>;
1288
1279
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1289
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1290
1280
  }>]>>, t.PartialC<{
1291
1281
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
1292
1282
  origin: t.ExactC<t.TypeC<{
@@ -1310,7 +1300,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1310
1300
  credits: t.Type<string | null, string | null, unknown>;
1311
1301
  alt: t.Type<string | null, string | null, unknown>;
1312
1302
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1313
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1314
1303
  }>]>>>;
1315
1304
  }>]>, t.ExactC<t.TypeC<{
1316
1305
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -1386,7 +1375,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1386
1375
  credits: t.Type<string | null, string | null, unknown>;
1387
1376
  alt: t.Type<string | null, string | null, unknown>;
1388
1377
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1389
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1390
1378
  }>]>>, t.PartialC<{
1391
1379
  linkTo: t.UnionC<[t.Type<({
1392
1380
  __TYPE__: "ImageLink";
@@ -1686,7 +1674,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1686
1674
  credits: t.Type<string | null, string | null, unknown>;
1687
1675
  alt: t.Type<string | null, string | null, unknown>;
1688
1676
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1689
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1690
1677
  }>]>>, t.PartialC<{
1691
1678
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
1692
1679
  origin: t.ExactC<t.TypeC<{
@@ -1710,7 +1697,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1710
1697
  credits: t.Type<string | null, string | null, unknown>;
1711
1698
  alt: t.Type<string | null, string | null, unknown>;
1712
1699
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1713
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1714
1700
  }>]>>>;
1715
1701
  }>]>, t.ExactC<t.TypeC<{
1716
1702
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -1786,7 +1772,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1786
1772
  credits: t.Type<string | null, string | null, unknown>;
1787
1773
  alt: t.Type<string | null, string | null, unknown>;
1788
1774
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1789
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1790
1775
  }>]>>, t.PartialC<{
1791
1776
  linkTo: t.UnionC<[t.Type<({
1792
1777
  __TYPE__: "ImageLink";
@@ -2084,7 +2069,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2084
2069
  credits: t.Type<string | null, string | null, unknown>;
2085
2070
  alt: t.Type<string | null, string | null, unknown>;
2086
2071
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2087
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2088
2072
  }>]>>, t.PartialC<{
2089
2073
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
2090
2074
  origin: t.ExactC<t.TypeC<{
@@ -2108,7 +2092,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2108
2092
  credits: t.Type<string | null, string | null, unknown>;
2109
2093
  alt: t.Type<string | null, string | null, unknown>;
2110
2094
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2111
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2112
2095
  }>]>>>;
2113
2096
  }>]>, t.ExactC<t.TypeC<{
2114
2097
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -2184,7 +2167,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2184
2167
  credits: t.Type<string | null, string | null, unknown>;
2185
2168
  alt: t.Type<string | null, string | null, unknown>;
2186
2169
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2187
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2188
2170
  }>]>>, t.PartialC<{
2189
2171
  linkTo: t.UnionC<[t.Type<({
2190
2172
  __TYPE__: "ImageLink";
@@ -2481,7 +2463,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2481
2463
  credits: t.Type<string | null, string | null, unknown>;
2482
2464
  alt: t.Type<string | null, string | null, unknown>;
2483
2465
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2484
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2485
2466
  }>]>>, t.PartialC<{
2486
2467
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
2487
2468
  origin: t.ExactC<t.TypeC<{
@@ -2505,7 +2486,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2505
2486
  credits: t.Type<string | null, string | null, unknown>;
2506
2487
  alt: t.Type<string | null, string | null, unknown>;
2507
2488
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2508
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2509
2489
  }>]>>>;
2510
2490
  }>]>, t.ExactC<t.TypeC<{
2511
2491
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -2581,7 +2561,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2581
2561
  credits: t.Type<string | null, string | null, unknown>;
2582
2562
  alt: t.Type<string | null, string | null, unknown>;
2583
2563
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2584
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2585
2564
  }>]>>, t.PartialC<{
2586
2565
  linkTo: t.UnionC<[t.Type<({
2587
2566
  __TYPE__: "ImageLink";
@@ -2880,7 +2859,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2880
2859
  credits: t.Type<string | null, string | null, unknown>;
2881
2860
  alt: t.Type<string | null, string | null, unknown>;
2882
2861
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2883
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2884
2862
  }>]>>, t.PartialC<{
2885
2863
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
2886
2864
  origin: t.ExactC<t.TypeC<{
@@ -2904,7 +2882,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2904
2882
  credits: t.Type<string | null, string | null, unknown>;
2905
2883
  alt: t.Type<string | null, string | null, unknown>;
2906
2884
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2907
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2908
2885
  }>]>>>;
2909
2886
  }>]>, t.ExactC<t.TypeC<{
2910
2887
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -2980,7 +2957,6 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2980
2957
  credits: t.Type<string | null, string | null, unknown>;
2981
2958
  alt: t.Type<string | null, string | null, unknown>;
2982
2959
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2983
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2984
2960
  }>]>>, t.PartialC<{
2985
2961
  linkTo: t.UnionC<[t.Type<({
2986
2962
  __TYPE__: "ImageLink";
@@ -3280,7 +3256,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
3280
3256
  credits?: string | null;
3281
3257
  alt?: string | null;
3282
3258
  provider?: string | null | undefined;
3283
- caption?: string | null | undefined;
3284
3259
  } & {
3285
3260
  thumbnails?: {
3286
3261
  [x: string]: {
@@ -3305,7 +3280,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
3305
3280
  credits?: string | null;
3306
3281
  alt?: string | null;
3307
3282
  provider?: string | null | undefined;
3308
- caption?: string | null | undefined;
3309
3283
  };
3310
3284
  };
3311
3285
  } & {
@@ -3380,7 +3354,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
3380
3354
  credits?: string | null;
3381
3355
  alt?: string | null;
3382
3356
  provider?: string | null | undefined;
3383
- caption?: string | null | undefined;
3384
3357
  } & {
3385
3358
  linkTo?: ({
3386
3359
  __TYPE__: "ImageLink";
@@ -3599,7 +3572,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
3599
3572
  credits?: string | null;
3600
3573
  alt?: string | null;
3601
3574
  provider?: string | null | undefined;
3602
- caption?: string | null | undefined;
3603
3575
  } & {
3604
3576
  thumbnails?: {
3605
3577
  [x: string]: {
@@ -3624,7 +3596,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
3624
3596
  credits?: string | null;
3625
3597
  alt?: string | null;
3626
3598
  provider?: string | null | undefined;
3627
- caption?: string | null | undefined;
3628
3599
  };
3629
3600
  };
3630
3601
  } & {
@@ -3699,7 +3670,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
3699
3670
  credits?: string | null;
3700
3671
  alt?: string | null;
3701
3672
  provider?: string | null | undefined;
3702
- caption?: string | null | undefined;
3703
3673
  } & {
3704
3674
  linkTo?: ({
3705
3675
  __TYPE__: "ImageLink";
@@ -3925,7 +3895,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
3925
3895
  credits?: string | null;
3926
3896
  alt?: string | null;
3927
3897
  provider?: string | null | undefined;
3928
- caption?: string | null | undefined;
3929
3898
  } & {
3930
3899
  thumbnails?: {
3931
3900
  [x: string]: {
@@ -3950,7 +3919,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
3950
3919
  credits?: string | null;
3951
3920
  alt?: string | null;
3952
3921
  provider?: string | null | undefined;
3953
- caption?: string | null | undefined;
3954
3922
  };
3955
3923
  };
3956
3924
  } & {
@@ -4025,7 +3993,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4025
3993
  credits?: string | null;
4026
3994
  alt?: string | null;
4027
3995
  provider?: string | null | undefined;
4028
- caption?: string | null | undefined;
4029
3996
  } & {
4030
3997
  linkTo?: ({
4031
3998
  __TYPE__: "ImageLink";
@@ -4244,7 +4211,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4244
4211
  credits?: string | null;
4245
4212
  alt?: string | null;
4246
4213
  provider?: string | null | undefined;
4247
- caption?: string | null | undefined;
4248
4214
  } & {
4249
4215
  thumbnails?: {
4250
4216
  [x: string]: {
@@ -4269,7 +4235,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4269
4235
  credits?: string | null;
4270
4236
  alt?: string | null;
4271
4237
  provider?: string | null | undefined;
4272
- caption?: string | null | undefined;
4273
4238
  };
4274
4239
  };
4275
4240
  } & {
@@ -4344,7 +4309,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4344
4309
  credits?: string | null;
4345
4310
  alt?: string | null;
4346
4311
  provider?: string | null | undefined;
4347
- caption?: string | null | undefined;
4348
4312
  } & {
4349
4313
  linkTo?: ({
4350
4314
  __TYPE__: "ImageLink";
@@ -4564,7 +4528,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4564
4528
  credits?: string | null;
4565
4529
  alt?: string | null;
4566
4530
  provider?: string | null | undefined;
4567
- caption?: string | null | undefined;
4568
4531
  } & {
4569
4532
  thumbnails?: {
4570
4533
  [x: string]: {
@@ -4589,7 +4552,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4589
4552
  credits?: string | null;
4590
4553
  alt?: string | null;
4591
4554
  provider?: string | null | undefined;
4592
- caption?: string | null | undefined;
4593
4555
  };
4594
4556
  };
4595
4557
  } & {
@@ -4664,7 +4626,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4664
4626
  credits?: string | null;
4665
4627
  alt?: string | null;
4666
4628
  provider?: string | null | undefined;
4667
- caption?: string | null | undefined;
4668
4629
  } & {
4669
4630
  linkTo?: ({
4670
4631
  __TYPE__: "ImageLink";
@@ -4883,7 +4844,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4883
4844
  credits?: string | null;
4884
4845
  alt?: string | null;
4885
4846
  provider?: string | null | undefined;
4886
- caption?: string | null | undefined;
4887
4847
  } & {
4888
4848
  thumbnails?: {
4889
4849
  [x: string]: {
@@ -4908,7 +4868,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4908
4868
  credits?: string | null;
4909
4869
  alt?: string | null;
4910
4870
  provider?: string | null | undefined;
4911
- caption?: string | null | undefined;
4912
4871
  };
4913
4872
  };
4914
4873
  } & {
@@ -4983,7 +4942,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
4983
4942
  credits?: string | null;
4984
4943
  alt?: string | null;
4985
4944
  provider?: string | null | undefined;
4986
- caption?: string | null | undefined;
4987
4945
  } & {
4988
4946
  linkTo?: ({
4989
4947
  __TYPE__: "ImageLink";
@@ -5204,7 +5162,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
5204
5162
  credits?: string | null;
5205
5163
  alt?: string | null;
5206
5164
  provider?: string | null | undefined;
5207
- caption?: string | null | undefined;
5208
5165
  } & {
5209
5166
  thumbnails?: {
5210
5167
  [x: string]: {
@@ -5229,7 +5186,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
5229
5186
  credits?: string | null;
5230
5187
  alt?: string | null;
5231
5188
  provider?: string | null | undefined;
5232
- caption?: string | null | undefined;
5233
5189
  };
5234
5190
  };
5235
5191
  } & {
@@ -5304,7 +5260,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
5304
5260
  credits?: string | null;
5305
5261
  alt?: string | null;
5306
5262
  provider?: string | null | undefined;
5307
- caption?: string | null | undefined;
5308
5263
  } & {
5309
5264
  linkTo?: ({
5310
5265
  __TYPE__: "ImageLink";
@@ -5523,7 +5478,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
5523
5478
  credits?: string | null;
5524
5479
  alt?: string | null;
5525
5480
  provider?: string | null | undefined;
5526
- caption?: string | null | undefined;
5527
5481
  } & {
5528
5482
  thumbnails?: {
5529
5483
  [x: string]: {
@@ -5548,7 +5502,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
5548
5502
  credits?: string | null;
5549
5503
  alt?: string | null;
5550
5504
  provider?: string | null | undefined;
5551
- caption?: string | null | undefined;
5552
5505
  };
5553
5506
  };
5554
5507
  } & {
@@ -5623,7 +5576,6 @@ export declare const isWidgetContent: (u: unknown) => u is {
5623
5576
  credits?: string | null;
5624
5577
  alt?: string | null;
5625
5578
  provider?: string | null | undefined;
5626
- caption?: string | null | undefined;
5627
5579
  } & {
5628
5580
  linkTo?: ({
5629
5581
  __TYPE__: "ImageLink";
@@ -5846,7 +5798,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5846
5798
  credits?: string | null;
5847
5799
  alt?: string | null;
5848
5800
  provider?: string | null | undefined;
5849
- caption?: string | null | undefined;
5850
5801
  } & {
5851
5802
  thumbnails?: {
5852
5803
  [x: string]: {
@@ -5871,7 +5822,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5871
5822
  credits?: string | null;
5872
5823
  alt?: string | null;
5873
5824
  provider?: string | null | undefined;
5874
- caption?: string | null | undefined;
5875
5825
  };
5876
5826
  };
5877
5827
  } & {
@@ -5946,7 +5896,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5946
5896
  credits?: string | null;
5947
5897
  alt?: string | null;
5948
5898
  provider?: string | null | undefined;
5949
- caption?: string | null | undefined;
5950
5899
  } & {
5951
5900
  linkTo?: ({
5952
5901
  __TYPE__: "ImageLink";
@@ -6165,7 +6114,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6165
6114
  credits?: string | null;
6166
6115
  alt?: string | null;
6167
6116
  provider?: string | null | undefined;
6168
- caption?: string | null | undefined;
6169
6117
  } & {
6170
6118
  thumbnails?: {
6171
6119
  [x: string]: {
@@ -6190,7 +6138,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6190
6138
  credits?: string | null;
6191
6139
  alt?: string | null;
6192
6140
  provider?: string | null | undefined;
6193
- caption?: string | null | undefined;
6194
6141
  };
6195
6142
  };
6196
6143
  } & {
@@ -6265,7 +6212,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6265
6212
  credits?: string | null;
6266
6213
  alt?: string | null;
6267
6214
  provider?: string | null | undefined;
6268
- caption?: string | null | undefined;
6269
6215
  } & {
6270
6216
  linkTo?: ({
6271
6217
  __TYPE__: "ImageLink";
@@ -6491,7 +6437,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6491
6437
  credits?: string | null;
6492
6438
  alt?: string | null;
6493
6439
  provider?: string | null | undefined;
6494
- caption?: string | null | undefined;
6495
6440
  } & {
6496
6441
  thumbnails?: {
6497
6442
  [x: string]: {
@@ -6516,7 +6461,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6516
6461
  credits?: string | null;
6517
6462
  alt?: string | null;
6518
6463
  provider?: string | null | undefined;
6519
- caption?: string | null | undefined;
6520
6464
  };
6521
6465
  };
6522
6466
  } & {
@@ -6591,7 +6535,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6591
6535
  credits?: string | null;
6592
6536
  alt?: string | null;
6593
6537
  provider?: string | null | undefined;
6594
- caption?: string | null | undefined;
6595
6538
  } & {
6596
6539
  linkTo?: ({
6597
6540
  __TYPE__: "ImageLink";
@@ -6810,7 +6753,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6810
6753
  credits?: string | null;
6811
6754
  alt?: string | null;
6812
6755
  provider?: string | null | undefined;
6813
- caption?: string | null | undefined;
6814
6756
  } & {
6815
6757
  thumbnails?: {
6816
6758
  [x: string]: {
@@ -6835,7 +6777,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6835
6777
  credits?: string | null;
6836
6778
  alt?: string | null;
6837
6779
  provider?: string | null | undefined;
6838
- caption?: string | null | undefined;
6839
6780
  };
6840
6781
  };
6841
6782
  } & {
@@ -6910,7 +6851,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6910
6851
  credits?: string | null;
6911
6852
  alt?: string | null;
6912
6853
  provider?: string | null | undefined;
6913
- caption?: string | null | undefined;
6914
6854
  } & {
6915
6855
  linkTo?: ({
6916
6856
  __TYPE__: "ImageLink";
@@ -7130,7 +7070,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7130
7070
  credits?: string | null;
7131
7071
  alt?: string | null;
7132
7072
  provider?: string | null | undefined;
7133
- caption?: string | null | undefined;
7134
7073
  } & {
7135
7074
  thumbnails?: {
7136
7075
  [x: string]: {
@@ -7155,7 +7094,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7155
7094
  credits?: string | null;
7156
7095
  alt?: string | null;
7157
7096
  provider?: string | null | undefined;
7158
- caption?: string | null | undefined;
7159
7097
  };
7160
7098
  };
7161
7099
  } & {
@@ -7230,7 +7168,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7230
7168
  credits?: string | null;
7231
7169
  alt?: string | null;
7232
7170
  provider?: string | null | undefined;
7233
- caption?: string | null | undefined;
7234
7171
  } & {
7235
7172
  linkTo?: ({
7236
7173
  __TYPE__: "ImageLink";
@@ -7449,7 +7386,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7449
7386
  credits?: string | null;
7450
7387
  alt?: string | null;
7451
7388
  provider?: string | null | undefined;
7452
- caption?: string | null | undefined;
7453
7389
  } & {
7454
7390
  thumbnails?: {
7455
7391
  [x: string]: {
@@ -7474,7 +7410,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7474
7410
  credits?: string | null;
7475
7411
  alt?: string | null;
7476
7412
  provider?: string | null | undefined;
7477
- caption?: string | null | undefined;
7478
7413
  };
7479
7414
  };
7480
7415
  } & {
@@ -7549,7 +7484,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7549
7484
  credits?: string | null;
7550
7485
  alt?: string | null;
7551
7486
  provider?: string | null | undefined;
7552
- caption?: string | null | undefined;
7553
7487
  } & {
7554
7488
  linkTo?: ({
7555
7489
  __TYPE__: "ImageLink";
@@ -7770,7 +7704,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7770
7704
  credits?: string | null;
7771
7705
  alt?: string | null;
7772
7706
  provider?: string | null | undefined;
7773
- caption?: string | null | undefined;
7774
7707
  } & {
7775
7708
  thumbnails?: {
7776
7709
  [x: string]: {
@@ -7795,7 +7728,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7795
7728
  credits?: string | null;
7796
7729
  alt?: string | null;
7797
7730
  provider?: string | null | undefined;
7798
- caption?: string | null | undefined;
7799
7731
  };
7800
7732
  };
7801
7733
  } & {
@@ -7870,7 +7802,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
7870
7802
  credits?: string | null;
7871
7803
  alt?: string | null;
7872
7804
  provider?: string | null | undefined;
7873
- caption?: string | null | undefined;
7874
7805
  } & {
7875
7806
  linkTo?: ({
7876
7807
  __TYPE__: "ImageLink";
@@ -8089,7 +8020,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
8089
8020
  credits?: string | null;
8090
8021
  alt?: string | null;
8091
8022
  provider?: string | null | undefined;
8092
- caption?: string | null | undefined;
8093
8023
  } & {
8094
8024
  thumbnails?: {
8095
8025
  [x: string]: {
@@ -8114,7 +8044,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
8114
8044
  credits?: string | null;
8115
8045
  alt?: string | null;
8116
8046
  provider?: string | null | undefined;
8117
- caption?: string | null | undefined;
8118
8047
  };
8119
8048
  };
8120
8049
  } & {
@@ -8189,7 +8118,6 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
8189
8118
  credits?: string | null;
8190
8119
  alt?: string | null;
8191
8120
  provider?: string | null | undefined;
8192
- caption?: string | null | undefined;
8193
8121
  } & {
8194
8122
  linkTo?: ({
8195
8123
  __TYPE__: "ImageLink";