@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
@@ -90,7 +90,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
90
90
  credits?: string | null;
91
91
  alt?: string | null;
92
92
  provider?: string | null | undefined;
93
- caption?: string | null | undefined;
94
93
  } & {
95
94
  thumbnails?: {
96
95
  [x: string]: {
@@ -115,7 +114,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
115
114
  credits?: string | null;
116
115
  alt?: string | null;
117
116
  provider?: string | null | undefined;
118
- caption?: string | null | undefined;
119
117
  };
120
118
  };
121
119
  } & {
@@ -190,7 +188,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
190
188
  credits?: string | null;
191
189
  alt?: string | null;
192
190
  provider?: string | null | undefined;
193
- caption?: string | null | undefined;
194
191
  } & {
195
192
  linkTo?: ({
196
193
  __TYPE__: "ImageLink";
@@ -409,7 +406,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
409
406
  credits?: string | null;
410
407
  alt?: string | null;
411
408
  provider?: string | null | undefined;
412
- caption?: string | null | undefined;
413
409
  } & {
414
410
  thumbnails?: {
415
411
  [x: string]: {
@@ -434,7 +430,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
434
430
  credits?: string | null;
435
431
  alt?: string | null;
436
432
  provider?: string | null | undefined;
437
- caption?: string | null | undefined;
438
433
  };
439
434
  };
440
435
  } & {
@@ -509,7 +504,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
509
504
  credits?: string | null;
510
505
  alt?: string | null;
511
506
  provider?: string | null | undefined;
512
- caption?: string | null | undefined;
513
507
  } & {
514
508
  linkTo?: ({
515
509
  __TYPE__: "ImageLink";
@@ -729,7 +723,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
729
723
  credits?: string | null;
730
724
  alt?: string | null;
731
725
  provider?: string | null | undefined;
732
- caption?: string | null | undefined;
733
726
  } & {
734
727
  thumbnails?: {
735
728
  [x: string]: {
@@ -754,7 +747,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
754
747
  credits?: string | null;
755
748
  alt?: string | null;
756
749
  provider?: string | null | undefined;
757
- caption?: string | null | undefined;
758
750
  };
759
751
  };
760
752
  } & {
@@ -829,7 +821,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
829
821
  credits?: string | null;
830
822
  alt?: string | null;
831
823
  provider?: string | null | undefined;
832
- caption?: string | null | undefined;
833
824
  } & {
834
825
  linkTo?: ({
835
826
  __TYPE__: "ImageLink";
@@ -1048,7 +1039,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1048
1039
  credits?: string | null;
1049
1040
  alt?: string | null;
1050
1041
  provider?: string | null | undefined;
1051
- caption?: string | null | undefined;
1052
1042
  } & {
1053
1043
  thumbnails?: {
1054
1044
  [x: string]: {
@@ -1073,7 +1063,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1073
1063
  credits?: string | null;
1074
1064
  alt?: string | null;
1075
1065
  provider?: string | null | undefined;
1076
- caption?: string | null | undefined;
1077
1066
  };
1078
1067
  };
1079
1068
  } & {
@@ -1148,7 +1137,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1148
1137
  credits?: string | null;
1149
1138
  alt?: string | null;
1150
1139
  provider?: string | null | undefined;
1151
- caption?: string | null | undefined;
1152
1140
  } & {
1153
1141
  linkTo?: ({
1154
1142
  __TYPE__: "ImageLink";
@@ -1369,7 +1357,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1369
1357
  credits?: string | null;
1370
1358
  alt?: string | null;
1371
1359
  provider?: string | null | undefined;
1372
- caption?: string | null | undefined;
1373
1360
  } & {
1374
1361
  thumbnails?: {
1375
1362
  [x: string]: {
@@ -1394,7 +1381,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1394
1381
  credits?: string | null;
1395
1382
  alt?: string | null;
1396
1383
  provider?: string | null | undefined;
1397
- caption?: string | null | undefined;
1398
1384
  };
1399
1385
  };
1400
1386
  } & {
@@ -1469,7 +1455,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1469
1455
  credits?: string | null;
1470
1456
  alt?: string | null;
1471
1457
  provider?: string | null | undefined;
1472
- caption?: string | null | undefined;
1473
1458
  } & {
1474
1459
  linkTo?: ({
1475
1460
  __TYPE__: "ImageLink";
@@ -1688,7 +1673,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1688
1673
  credits?: string | null;
1689
1674
  alt?: string | null;
1690
1675
  provider?: string | null | undefined;
1691
- caption?: string | null | undefined;
1692
1676
  } & {
1693
1677
  thumbnails?: {
1694
1678
  [x: string]: {
@@ -1713,7 +1697,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1713
1697
  credits?: string | null;
1714
1698
  alt?: string | null;
1715
1699
  provider?: string | null | undefined;
1716
- caption?: string | null | undefined;
1717
1700
  };
1718
1701
  };
1719
1702
  } & {
@@ -1788,7 +1771,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
1788
1771
  credits?: string | null;
1789
1772
  alt?: string | null;
1790
1773
  provider?: string | null | undefined;
1791
- caption?: string | null | undefined;
1792
1774
  } & {
1793
1775
  linkTo?: ({
1794
1776
  __TYPE__: "ImageLink";
@@ -2015,7 +1997,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2015
1997
  credits?: string | null;
2016
1998
  alt?: string | null;
2017
1999
  provider?: string | null | undefined;
2018
- caption?: string | null | undefined;
2019
2000
  } & {
2020
2001
  thumbnails?: {
2021
2002
  [x: string]: {
@@ -2040,7 +2021,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2040
2021
  credits?: string | null;
2041
2022
  alt?: string | null;
2042
2023
  provider?: string | null | undefined;
2043
- caption?: string | null | undefined;
2044
2024
  };
2045
2025
  };
2046
2026
  } & {
@@ -2115,7 +2095,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2115
2095
  credits?: string | null;
2116
2096
  alt?: string | null;
2117
2097
  provider?: string | null | undefined;
2118
- caption?: string | null | undefined;
2119
2098
  } & {
2120
2099
  linkTo?: ({
2121
2100
  __TYPE__: "ImageLink";
@@ -2334,7 +2313,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2334
2313
  credits?: string | null;
2335
2314
  alt?: string | null;
2336
2315
  provider?: string | null | undefined;
2337
- caption?: string | null | undefined;
2338
2316
  } & {
2339
2317
  thumbnails?: {
2340
2318
  [x: string]: {
@@ -2359,7 +2337,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2359
2337
  credits?: string | null;
2360
2338
  alt?: string | null;
2361
2339
  provider?: string | null | undefined;
2362
- caption?: string | null | undefined;
2363
2340
  };
2364
2341
  };
2365
2342
  } & {
@@ -2434,7 +2411,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2434
2411
  credits?: string | null;
2435
2412
  alt?: string | null;
2436
2413
  provider?: string | null | undefined;
2437
- caption?: string | null | undefined;
2438
2414
  } & {
2439
2415
  linkTo?: ({
2440
2416
  __TYPE__: "ImageLink";
@@ -2654,7 +2630,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2654
2630
  credits?: string | null;
2655
2631
  alt?: string | null;
2656
2632
  provider?: string | null | undefined;
2657
- caption?: string | null | undefined;
2658
2633
  } & {
2659
2634
  thumbnails?: {
2660
2635
  [x: string]: {
@@ -2679,7 +2654,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2679
2654
  credits?: string | null;
2680
2655
  alt?: string | null;
2681
2656
  provider?: string | null | undefined;
2682
- caption?: string | null | undefined;
2683
2657
  };
2684
2658
  };
2685
2659
  } & {
@@ -2754,7 +2728,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2754
2728
  credits?: string | null;
2755
2729
  alt?: string | null;
2756
2730
  provider?: string | null | undefined;
2757
- caption?: string | null | undefined;
2758
2731
  } & {
2759
2732
  linkTo?: ({
2760
2733
  __TYPE__: "ImageLink";
@@ -2973,7 +2946,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2973
2946
  credits?: string | null;
2974
2947
  alt?: string | null;
2975
2948
  provider?: string | null | undefined;
2976
- caption?: string | null | undefined;
2977
2949
  } & {
2978
2950
  thumbnails?: {
2979
2951
  [x: string]: {
@@ -2998,7 +2970,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2998
2970
  credits?: string | null;
2999
2971
  alt?: string | null;
3000
2972
  provider?: string | null | undefined;
3001
- caption?: string | null | undefined;
3002
2973
  };
3003
2974
  };
3004
2975
  } & {
@@ -3073,7 +3044,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3073
3044
  credits?: string | null;
3074
3045
  alt?: string | null;
3075
3046
  provider?: string | null | undefined;
3076
- caption?: string | null | undefined;
3077
3047
  } & {
3078
3048
  linkTo?: ({
3079
3049
  __TYPE__: "ImageLink";
@@ -3294,7 +3264,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3294
3264
  credits?: string | null;
3295
3265
  alt?: string | null;
3296
3266
  provider?: string | null | undefined;
3297
- caption?: string | null | undefined;
3298
3267
  } & {
3299
3268
  thumbnails?: {
3300
3269
  [x: string]: {
@@ -3319,7 +3288,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3319
3288
  credits?: string | null;
3320
3289
  alt?: string | null;
3321
3290
  provider?: string | null | undefined;
3322
- caption?: string | null | undefined;
3323
3291
  };
3324
3292
  };
3325
3293
  } & {
@@ -3394,7 +3362,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3394
3362
  credits?: string | null;
3395
3363
  alt?: string | null;
3396
3364
  provider?: string | null | undefined;
3397
- caption?: string | null | undefined;
3398
3365
  } & {
3399
3366
  linkTo?: ({
3400
3367
  __TYPE__: "ImageLink";
@@ -3613,7 +3580,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3613
3580
  credits?: string | null;
3614
3581
  alt?: string | null;
3615
3582
  provider?: string | null | undefined;
3616
- caption?: string | null | undefined;
3617
3583
  } & {
3618
3584
  thumbnails?: {
3619
3585
  [x: string]: {
@@ -3638,7 +3604,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3638
3604
  credits?: string | null;
3639
3605
  alt?: string | null;
3640
3606
  provider?: string | null | undefined;
3641
- caption?: string | null | undefined;
3642
3607
  };
3643
3608
  };
3644
3609
  } & {
@@ -3713,7 +3678,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3713
3678
  credits?: string | null;
3714
3679
  alt?: string | null;
3715
3680
  provider?: string | null | undefined;
3716
- caption?: string | null | undefined;
3717
3681
  } & {
3718
3682
  linkTo?: ({
3719
3683
  __TYPE__: "ImageLink";
@@ -3941,7 +3905,6 @@ export declare const SlicesContent: t.TypeC<{
3941
3905
  credits: t.Type<string | null, string | null, unknown>;
3942
3906
  alt: t.Type<string | null, string | null, unknown>;
3943
3907
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3944
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3945
3908
  }>]>>, t.PartialC<{
3946
3909
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
3947
3910
  origin: t.ExactC<t.TypeC<{
@@ -3965,7 +3928,6 @@ export declare const SlicesContent: t.TypeC<{
3965
3928
  credits: t.Type<string | null, string | null, unknown>;
3966
3929
  alt: t.Type<string | null, string | null, unknown>;
3967
3930
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3968
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
3969
3931
  }>]>>>;
3970
3932
  }>]>, t.ExactC<t.TypeC<{
3971
3933
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -4041,7 +4003,6 @@ export declare const SlicesContent: t.TypeC<{
4041
4003
  credits: t.Type<string | null, string | null, unknown>;
4042
4004
  alt: t.Type<string | null, string | null, unknown>;
4043
4005
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4044
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4045
4006
  }>]>>, t.PartialC<{
4046
4007
  linkTo: t.UnionC<[t.Type<({
4047
4008
  __TYPE__: "ImageLink";
@@ -4339,7 +4300,6 @@ export declare const SlicesContent: t.TypeC<{
4339
4300
  credits: t.Type<string | null, string | null, unknown>;
4340
4301
  alt: t.Type<string | null, string | null, unknown>;
4341
4302
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4342
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4343
4303
  }>]>>, t.PartialC<{
4344
4304
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
4345
4305
  origin: t.ExactC<t.TypeC<{
@@ -4363,7 +4323,6 @@ export declare const SlicesContent: t.TypeC<{
4363
4323
  credits: t.Type<string | null, string | null, unknown>;
4364
4324
  alt: t.Type<string | null, string | null, unknown>;
4365
4325
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4366
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4367
4326
  }>]>>>;
4368
4327
  }>]>, t.ExactC<t.TypeC<{
4369
4328
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -4439,7 +4398,6 @@ export declare const SlicesContent: t.TypeC<{
4439
4398
  credits: t.Type<string | null, string | null, unknown>;
4440
4399
  alt: t.Type<string | null, string | null, unknown>;
4441
4400
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4442
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4443
4401
  }>]>>, t.PartialC<{
4444
4402
  linkTo: t.UnionC<[t.Type<({
4445
4403
  __TYPE__: "ImageLink";
@@ -4739,7 +4697,6 @@ export declare const SlicesContent: t.TypeC<{
4739
4697
  credits: t.Type<string | null, string | null, unknown>;
4740
4698
  alt: t.Type<string | null, string | null, unknown>;
4741
4699
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4742
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4743
4700
  }>]>>, t.PartialC<{
4744
4701
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
4745
4702
  origin: t.ExactC<t.TypeC<{
@@ -4763,7 +4720,6 @@ export declare const SlicesContent: t.TypeC<{
4763
4720
  credits: t.Type<string | null, string | null, unknown>;
4764
4721
  alt: t.Type<string | null, string | null, unknown>;
4765
4722
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4766
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4767
4723
  }>]>>>;
4768
4724
  }>]>, t.ExactC<t.TypeC<{
4769
4725
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -4839,7 +4795,6 @@ export declare const SlicesContent: t.TypeC<{
4839
4795
  credits: t.Type<string | null, string | null, unknown>;
4840
4796
  alt: t.Type<string | null, string | null, unknown>;
4841
4797
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4842
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
4843
4798
  }>]>>, t.PartialC<{
4844
4799
  linkTo: t.UnionC<[t.Type<({
4845
4800
  __TYPE__: "ImageLink";
@@ -5137,7 +5092,6 @@ export declare const SlicesContent: t.TypeC<{
5137
5092
  credits: t.Type<string | null, string | null, unknown>;
5138
5093
  alt: t.Type<string | null, string | null, unknown>;
5139
5094
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5140
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5141
5095
  }>]>>, t.PartialC<{
5142
5096
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
5143
5097
  origin: t.ExactC<t.TypeC<{
@@ -5161,7 +5115,6 @@ export declare const SlicesContent: t.TypeC<{
5161
5115
  credits: t.Type<string | null, string | null, unknown>;
5162
5116
  alt: t.Type<string | null, string | null, unknown>;
5163
5117
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5164
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5165
5118
  }>]>>>;
5166
5119
  }>]>, t.ExactC<t.TypeC<{
5167
5120
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -5237,7 +5190,6 @@ export declare const SlicesContent: t.TypeC<{
5237
5190
  credits: t.Type<string | null, string | null, unknown>;
5238
5191
  alt: t.Type<string | null, string | null, unknown>;
5239
5192
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5240
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5241
5193
  }>]>>, t.PartialC<{
5242
5194
  linkTo: t.UnionC<[t.Type<({
5243
5195
  __TYPE__: "ImageLink";
@@ -5534,7 +5486,6 @@ export declare const SlicesContent: t.TypeC<{
5534
5486
  credits: t.Type<string | null, string | null, unknown>;
5535
5487
  alt: t.Type<string | null, string | null, unknown>;
5536
5488
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5537
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5538
5489
  }>]>>, t.PartialC<{
5539
5490
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
5540
5491
  origin: t.ExactC<t.TypeC<{
@@ -5558,7 +5509,6 @@ export declare const SlicesContent: t.TypeC<{
5558
5509
  credits: t.Type<string | null, string | null, unknown>;
5559
5510
  alt: t.Type<string | null, string | null, unknown>;
5560
5511
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5561
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5562
5512
  }>]>>>;
5563
5513
  }>]>, t.ExactC<t.TypeC<{
5564
5514
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -5634,7 +5584,6 @@ export declare const SlicesContent: t.TypeC<{
5634
5584
  credits: t.Type<string | null, string | null, unknown>;
5635
5585
  alt: t.Type<string | null, string | null, unknown>;
5636
5586
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5637
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5638
5587
  }>]>>, t.PartialC<{
5639
5588
  linkTo: t.UnionC<[t.Type<({
5640
5589
  __TYPE__: "ImageLink";
@@ -5933,7 +5882,6 @@ export declare const SlicesContent: t.TypeC<{
5933
5882
  credits: t.Type<string | null, string | null, unknown>;
5934
5883
  alt: t.Type<string | null, string | null, unknown>;
5935
5884
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5936
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5937
5885
  }>]>>, t.PartialC<{
5938
5886
  thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
5939
5887
  origin: t.ExactC<t.TypeC<{
@@ -5957,7 +5905,6 @@ export declare const SlicesContent: t.TypeC<{
5957
5905
  credits: t.Type<string | null, string | null, unknown>;
5958
5906
  alt: t.Type<string | null, string | null, unknown>;
5959
5907
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5960
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
5961
5908
  }>]>>>;
5962
5909
  }>]>, t.ExactC<t.TypeC<{
5963
5910
  __TYPE__: t.LiteralC<"ImageContent">;
@@ -6033,7 +5980,6 @@ export declare const SlicesContent: t.TypeC<{
6033
5980
  credits: t.Type<string | null, string | null, unknown>;
6034
5981
  alt: t.Type<string | null, string | null, unknown>;
6035
5982
  provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6036
- caption: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
6037
5983
  }>]>>, t.PartialC<{
6038
5984
  linkTo: t.UnionC<[t.Type<({
6039
5985
  __TYPE__: "ImageLink";