@prismicio/types-internal 2.0.0-alpha.4 → 2.0.0-alpha.6

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 (48) hide show
  1. package/lib/content/Document.d.ts +72 -616
  2. package/lib/content/Document.js +4 -3
  3. package/lib/content/fields/GroupContent.d.ts +23 -193
  4. package/lib/content/fields/GroupContent.js +3 -3
  5. package/lib/content/fields/WidgetContent.d.ts +104 -920
  6. package/lib/content/fields/nestable/EmbedContent.d.ts +30 -45
  7. package/lib/content/fields/nestable/EmbedContent.js +25 -12
  8. package/lib/content/fields/nestable/LinkContent.d.ts +8 -8
  9. package/lib/content/fields/nestable/LinkContent.js +1 -1
  10. package/lib/content/fields/nestable/NestableContent.d.ts +14 -115
  11. package/lib/content/fields/nestable/NestableContent.js +2 -1
  12. package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +11 -78
  13. package/lib/content/fields/nestable/RichTextContent/Blocks.js +5 -5
  14. package/lib/content/fields/nestable/RichTextContent/index.d.ts +9 -77
  15. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +26 -230
  16. package/lib/content/fields/slices/Slice/CompositeSliceContent.js +4 -4
  17. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +9 -77
  18. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +26 -230
  19. package/lib/content/fields/slices/Slice/SharedSliceContent.js +4 -4
  20. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +22 -192
  21. package/lib/content/fields/slices/Slice/index.d.ts +50 -424
  22. package/lib/content/fields/slices/SliceItem.d.ts +54 -462
  23. package/lib/content/fields/slices/SliceItem.js +2 -1
  24. package/lib/content/fields/slices/SlicesContent.d.ts +78 -690
  25. package/lib/content/utils.js +3 -3
  26. package/lib/customtypes/index.d.ts +2 -2
  27. package/lib/customtypes/index.js +2 -3
  28. package/lib/customtypes/widgets/nestable/RichText.d.ts +1 -1
  29. package/lib/customtypes/widgets/nestable/RichText.js +10 -10
  30. package/lib/customtypes/widgets/slices/Slices.d.ts +12 -3
  31. package/lib/customtypes/widgets/slices/Slices.js +4 -4
  32. package/lib/customtypes/widgets/slices/index.d.ts +6 -6
  33. package/lib/customtypes/widgets/slices/index.js +6 -11
  34. package/package.json +1 -1
  35. package/src/content/Document.ts +4 -3
  36. package/src/content/fields/GroupContent.ts +4 -4
  37. package/src/content/fields/nestable/EmbedContent.ts +52 -28
  38. package/src/content/fields/nestable/LinkContent.ts +1 -1
  39. package/src/content/fields/nestable/NestableContent.ts +2 -1
  40. package/src/content/fields/nestable/RichTextContent/Blocks.ts +6 -5
  41. package/src/content/fields/slices/Slice/CompositeSliceContent.ts +4 -3
  42. package/src/content/fields/slices/Slice/SharedSliceContent.ts +4 -3
  43. package/src/content/fields/slices/SliceItem.ts +2 -2
  44. package/src/content/utils.ts +4 -5
  45. package/src/customtypes/index.ts +2 -2
  46. package/src/customtypes/widgets/nestable/RichText.ts +16 -16
  47. package/src/customtypes/widgets/slices/Slices.ts +4 -4
  48. package/src/customtypes/widgets/slices/index.ts +6 -6
@@ -10,24 +10,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
10
10
  }>>, t.ExactC<t.TypeC<{
11
11
  __TYPE__: t.LiteralC<"BooleanContent">;
12
12
  value: t.BooleanC;
13
- }>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
14
- embed_url: t.StringC;
15
- type: t.StringC;
16
- }>, t.PartialC<{
17
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
18
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
19
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
20
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
21
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
22
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
23
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
24
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
25
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
26
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
27
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
28
- }>]>>, t.ExactC<t.TypeC<{
29
- __TYPE__: t.LiteralC<"EmbedContent">;
30
- }>>]>, t.ExactC<t.TypeC<{
13
+ }>>, t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>, t.ExactC<t.TypeC<{
31
14
  type: t.LiteralC<"Text">;
32
15
  value: t.Type<string, string, unknown>;
33
16
  __TYPE__: t.LiteralC<"FieldContent">;
@@ -132,9 +115,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
132
115
  url: t.StringC;
133
116
  name: t.StringC;
134
117
  kind: t.StringC;
118
+ size: t.StringC;
135
119
  }>, t.PartialC<{
136
120
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
137
- size: t.StringC;
138
121
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
139
122
  __TYPE__: t.LiteralC<"FileLink">;
140
123
  }>, t.PartialC<{
@@ -200,9 +183,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
200
183
  url: string;
201
184
  name: string;
202
185
  kind: string;
186
+ size: string;
203
187
  } & {
204
188
  date?: string | null | undefined;
205
- size?: string;
206
189
  } & {
207
190
  __TYPE__: "FileLink";
208
191
  } & {
@@ -238,9 +221,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
238
221
  url: string;
239
222
  name: string;
240
223
  kind: string;
224
+ size: string;
241
225
  } & {
242
226
  date?: string | null | undefined;
243
- size?: string;
244
227
  } & {
245
228
  __TYPE__: "FileLink";
246
229
  } & {
@@ -266,24 +249,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
266
249
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
267
250
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
268
251
  type: t.LiteralC<"embed">;
269
- data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
270
- embed_url: t.StringC;
271
- type: t.StringC;
272
- }>, t.PartialC<{
273
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
274
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
275
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
276
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
277
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
278
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
279
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
280
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
281
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
282
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
283
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
284
- }>]>>, t.ExactC<t.TypeC<{
285
- __TYPE__: t.LiteralC<"EmbedContent">;
286
- }>>]>;
252
+ data: t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>;
287
253
  }>, t.PartialC<{
288
254
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
289
255
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
@@ -320,24 +286,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
320
286
  }>>, t.ExactC<t.TypeC<{
321
287
  __TYPE__: t.LiteralC<"BooleanContent">;
322
288
  value: t.BooleanC;
323
- }>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
324
- embed_url: t.StringC;
325
- type: t.StringC;
326
- }>, t.PartialC<{
327
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
328
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
329
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
330
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
331
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
332
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
333
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
334
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
335
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
336
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
337
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
338
- }>]>>, t.ExactC<t.TypeC<{
339
- __TYPE__: t.LiteralC<"EmbedContent">;
340
- }>>]>, t.ExactC<t.TypeC<{
289
+ }>>, t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>, t.ExactC<t.TypeC<{
341
290
  type: t.LiteralC<"Text">;
342
291
  value: t.Type<string, string, unknown>;
343
292
  __TYPE__: t.LiteralC<"FieldContent">;
@@ -442,9 +391,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
442
391
  url: t.StringC;
443
392
  name: t.StringC;
444
393
  kind: t.StringC;
394
+ size: t.StringC;
445
395
  }>, t.PartialC<{
446
396
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
447
- size: t.StringC;
448
397
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
449
398
  __TYPE__: t.LiteralC<"FileLink">;
450
399
  }>, t.PartialC<{
@@ -510,9 +459,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
510
459
  url: string;
511
460
  name: string;
512
461
  kind: string;
462
+ size: string;
513
463
  } & {
514
464
  date?: string | null | undefined;
515
- size?: string;
516
465
  } & {
517
466
  __TYPE__: "FileLink";
518
467
  } & {
@@ -548,9 +497,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
548
497
  url: string;
549
498
  name: string;
550
499
  kind: string;
500
+ size: string;
551
501
  } & {
552
502
  date?: string | null | undefined;
553
- size?: string;
554
503
  } & {
555
504
  __TYPE__: "FileLink";
556
505
  } & {
@@ -576,24 +525,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
576
525
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
577
526
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
578
527
  type: t.LiteralC<"embed">;
579
- data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
580
- embed_url: t.StringC;
581
- type: t.StringC;
582
- }>, t.PartialC<{
583
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
584
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
585
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
586
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
587
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
588
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
589
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
590
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
591
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
592
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
593
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
594
- }>]>>, t.ExactC<t.TypeC<{
595
- __TYPE__: t.LiteralC<"EmbedContent">;
596
- }>>]>;
528
+ data: t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>;
597
529
  }>, t.PartialC<{
598
530
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
599
531
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
@@ -639,24 +571,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
639
571
  }>>, t.ExactC<t.TypeC<{
640
572
  __TYPE__: t.LiteralC<"BooleanContent">;
641
573
  value: t.BooleanC;
642
- }>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
643
- embed_url: t.StringC;
644
- type: t.StringC;
645
- }>, t.PartialC<{
646
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
647
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
648
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
649
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
650
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
651
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
652
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
653
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
654
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
655
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
656
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
657
- }>]>>, t.ExactC<t.TypeC<{
658
- __TYPE__: t.LiteralC<"EmbedContent">;
659
- }>>]>, t.ExactC<t.TypeC<{
574
+ }>>, t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>, t.ExactC<t.TypeC<{
660
575
  type: t.LiteralC<"Text">;
661
576
  value: t.Type<string, string, unknown>;
662
577
  __TYPE__: t.LiteralC<"FieldContent">;
@@ -761,9 +676,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
761
676
  url: t.StringC;
762
677
  name: t.StringC;
763
678
  kind: t.StringC;
679
+ size: t.StringC;
764
680
  }>, t.PartialC<{
765
681
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
766
- size: t.StringC;
767
682
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
768
683
  __TYPE__: t.LiteralC<"FileLink">;
769
684
  }>, t.PartialC<{
@@ -829,9 +744,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
829
744
  url: string;
830
745
  name: string;
831
746
  kind: string;
747
+ size: string;
832
748
  } & {
833
749
  date?: string | null | undefined;
834
- size?: string;
835
750
  } & {
836
751
  __TYPE__: "FileLink";
837
752
  } & {
@@ -867,9 +782,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
867
782
  url: string;
868
783
  name: string;
869
784
  kind: string;
785
+ size: string;
870
786
  } & {
871
787
  date?: string | null | undefined;
872
- size?: string;
873
788
  } & {
874
789
  __TYPE__: "FileLink";
875
790
  } & {
@@ -895,24 +810,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
895
810
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
896
811
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
897
812
  type: t.LiteralC<"embed">;
898
- data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
899
- embed_url: t.StringC;
900
- type: t.StringC;
901
- }>, t.PartialC<{
902
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
903
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
904
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
905
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
906
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
907
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
908
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
909
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
910
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
911
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
912
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
913
- }>]>>, t.ExactC<t.TypeC<{
914
- __TYPE__: t.LiteralC<"EmbedContent">;
915
- }>>]>;
813
+ data: t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>;
916
814
  }>, t.PartialC<{
917
815
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
918
816
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
@@ -950,24 +848,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
950
848
  }>>, t.ExactC<t.TypeC<{
951
849
  __TYPE__: t.LiteralC<"BooleanContent">;
952
850
  value: t.BooleanC;
953
- }>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
954
- embed_url: t.StringC;
955
- type: t.StringC;
956
- }>, t.PartialC<{
957
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
958
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
959
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
960
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
961
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
962
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
963
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
964
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
965
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
966
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
967
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
968
- }>]>>, t.ExactC<t.TypeC<{
969
- __TYPE__: t.LiteralC<"EmbedContent">;
970
- }>>]>, t.ExactC<t.TypeC<{
851
+ }>>, t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>, t.ExactC<t.TypeC<{
971
852
  type: t.LiteralC<"Text">;
972
853
  value: t.Type<string, string, unknown>;
973
854
  __TYPE__: t.LiteralC<"FieldContent">;
@@ -1072,9 +953,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1072
953
  url: t.StringC;
1073
954
  name: t.StringC;
1074
955
  kind: t.StringC;
956
+ size: t.StringC;
1075
957
  }>, t.PartialC<{
1076
958
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1077
- size: t.StringC;
1078
959
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1079
960
  __TYPE__: t.LiteralC<"FileLink">;
1080
961
  }>, t.PartialC<{
@@ -1140,9 +1021,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1140
1021
  url: string;
1141
1022
  name: string;
1142
1023
  kind: string;
1024
+ size: string;
1143
1025
  } & {
1144
1026
  date?: string | null | undefined;
1145
- size?: string;
1146
1027
  } & {
1147
1028
  __TYPE__: "FileLink";
1148
1029
  } & {
@@ -1178,9 +1059,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1178
1059
  url: string;
1179
1060
  name: string;
1180
1061
  kind: string;
1062
+ size: string;
1181
1063
  } & {
1182
1064
  date?: string | null | undefined;
1183
- size?: string;
1184
1065
  } & {
1185
1066
  __TYPE__: "FileLink";
1186
1067
  } & {
@@ -1206,24 +1087,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1206
1087
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1207
1088
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1208
1089
  type: t.LiteralC<"embed">;
1209
- data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
1210
- embed_url: t.StringC;
1211
- type: t.StringC;
1212
- }>, t.PartialC<{
1213
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1214
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1215
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1216
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1217
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1218
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1219
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1220
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1221
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1222
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1223
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1224
- }>]>>, t.ExactC<t.TypeC<{
1225
- __TYPE__: t.LiteralC<"EmbedContent">;
1226
- }>>]>;
1090
+ data: t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>;
1227
1091
  }>, t.PartialC<{
1228
1092
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1229
1093
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
@@ -1263,24 +1127,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1263
1127
  }>>, t.ExactC<t.TypeC<{
1264
1128
  __TYPE__: t.LiteralC<"BooleanContent">;
1265
1129
  value: t.BooleanC;
1266
- }>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
1267
- embed_url: t.StringC;
1268
- type: t.StringC;
1269
- }>, t.PartialC<{
1270
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1271
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1272
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1273
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1274
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1275
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1276
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1277
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1278
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1279
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1280
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1281
- }>]>>, t.ExactC<t.TypeC<{
1282
- __TYPE__: t.LiteralC<"EmbedContent">;
1283
- }>>]>, t.ExactC<t.TypeC<{
1130
+ }>>, t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>, t.ExactC<t.TypeC<{
1284
1131
  type: t.LiteralC<"Text">;
1285
1132
  value: t.Type<string, string, unknown>;
1286
1133
  __TYPE__: t.LiteralC<"FieldContent">;
@@ -1385,9 +1232,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1385
1232
  url: t.StringC;
1386
1233
  name: t.StringC;
1387
1234
  kind: t.StringC;
1235
+ size: t.StringC;
1388
1236
  }>, t.PartialC<{
1389
1237
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1390
- size: t.StringC;
1391
1238
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1392
1239
  __TYPE__: t.LiteralC<"FileLink">;
1393
1240
  }>, t.PartialC<{
@@ -1453,9 +1300,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1453
1300
  url: string;
1454
1301
  name: string;
1455
1302
  kind: string;
1303
+ size: string;
1456
1304
  } & {
1457
1305
  date?: string | null | undefined;
1458
- size?: string;
1459
1306
  } & {
1460
1307
  __TYPE__: "FileLink";
1461
1308
  } & {
@@ -1491,9 +1338,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1491
1338
  url: string;
1492
1339
  name: string;
1493
1340
  kind: string;
1341
+ size: string;
1494
1342
  } & {
1495
1343
  date?: string | null | undefined;
1496
- size?: string;
1497
1344
  } & {
1498
1345
  __TYPE__: "FileLink";
1499
1346
  } & {
@@ -1519,24 +1366,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1519
1366
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1520
1367
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1521
1368
  type: t.LiteralC<"embed">;
1522
- data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
1523
- embed_url: t.StringC;
1524
- type: t.StringC;
1525
- }>, t.PartialC<{
1526
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1527
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1528
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1529
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1530
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1531
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1532
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1533
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1534
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1535
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1536
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1537
- }>]>>, t.ExactC<t.TypeC<{
1538
- __TYPE__: t.LiteralC<"EmbedContent">;
1539
- }>>]>;
1369
+ data: t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>;
1540
1370
  }>, t.PartialC<{
1541
1371
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1542
1372
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
@@ -1574,24 +1404,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1574
1404
  }>>, t.ExactC<t.TypeC<{
1575
1405
  __TYPE__: t.LiteralC<"BooleanContent">;
1576
1406
  value: t.BooleanC;
1577
- }>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
1578
- embed_url: t.StringC;
1579
- type: t.StringC;
1580
- }>, t.PartialC<{
1581
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1582
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1583
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1584
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1585
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1586
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1587
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1588
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1589
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1590
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1591
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1592
- }>]>>, t.ExactC<t.TypeC<{
1593
- __TYPE__: t.LiteralC<"EmbedContent">;
1594
- }>>]>, t.ExactC<t.TypeC<{
1407
+ }>>, t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>, t.ExactC<t.TypeC<{
1595
1408
  type: t.LiteralC<"Text">;
1596
1409
  value: t.Type<string, string, unknown>;
1597
1410
  __TYPE__: t.LiteralC<"FieldContent">;
@@ -1696,9 +1509,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1696
1509
  url: t.StringC;
1697
1510
  name: t.StringC;
1698
1511
  kind: t.StringC;
1512
+ size: t.StringC;
1699
1513
  }>, t.PartialC<{
1700
1514
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1701
- size: t.StringC;
1702
1515
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1703
1516
  __TYPE__: t.LiteralC<"FileLink">;
1704
1517
  }>, t.PartialC<{
@@ -1764,9 +1577,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1764
1577
  url: string;
1765
1578
  name: string;
1766
1579
  kind: string;
1580
+ size: string;
1767
1581
  } & {
1768
1582
  date?: string | null | undefined;
1769
- size?: string;
1770
1583
  } & {
1771
1584
  __TYPE__: "FileLink";
1772
1585
  } & {
@@ -1802,9 +1615,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1802
1615
  url: string;
1803
1616
  name: string;
1804
1617
  kind: string;
1618
+ size: string;
1805
1619
  } & {
1806
1620
  date?: string | null | undefined;
1807
- size?: string;
1808
1621
  } & {
1809
1622
  __TYPE__: "FileLink";
1810
1623
  } & {
@@ -1830,24 +1643,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1830
1643
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1831
1644
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1832
1645
  type: t.LiteralC<"embed">;
1833
- data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
1834
- embed_url: t.StringC;
1835
- type: t.StringC;
1836
- }>, t.PartialC<{
1837
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1838
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1839
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1840
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1841
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1842
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1843
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1844
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1845
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1846
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1847
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1848
- }>]>>, t.ExactC<t.TypeC<{
1849
- __TYPE__: t.LiteralC<"EmbedContent">;
1850
- }>>]>;
1646
+ data: t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>;
1851
1647
  }>, t.PartialC<{
1852
1648
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1853
1649
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
@@ -1884,24 +1680,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
1884
1680
  }>>, t.ExactC<t.TypeC<{
1885
1681
  __TYPE__: t.LiteralC<"BooleanContent">;
1886
1682
  value: t.BooleanC;
1887
- }>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
1888
- embed_url: t.StringC;
1889
- type: t.StringC;
1890
- }>, t.PartialC<{
1891
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1892
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1893
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1894
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1895
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1896
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1897
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
1898
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1899
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1900
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
1901
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1902
- }>]>>, t.ExactC<t.TypeC<{
1903
- __TYPE__: t.LiteralC<"EmbedContent">;
1904
- }>>]>, t.ExactC<t.TypeC<{
1683
+ }>>, t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>, t.ExactC<t.TypeC<{
1905
1684
  type: t.LiteralC<"Text">;
1906
1685
  value: t.Type<string, string, unknown>;
1907
1686
  __TYPE__: t.LiteralC<"FieldContent">;
@@ -2006,9 +1785,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2006
1785
  url: t.StringC;
2007
1786
  name: t.StringC;
2008
1787
  kind: t.StringC;
1788
+ size: t.StringC;
2009
1789
  }>, t.PartialC<{
2010
1790
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2011
- size: t.StringC;
2012
1791
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2013
1792
  __TYPE__: t.LiteralC<"FileLink">;
2014
1793
  }>, t.PartialC<{
@@ -2074,9 +1853,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2074
1853
  url: string;
2075
1854
  name: string;
2076
1855
  kind: string;
1856
+ size: string;
2077
1857
  } & {
2078
1858
  date?: string | null | undefined;
2079
- size?: string;
2080
1859
  } & {
2081
1860
  __TYPE__: "FileLink";
2082
1861
  } & {
@@ -2112,9 +1891,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2112
1891
  url: string;
2113
1892
  name: string;
2114
1893
  kind: string;
1894
+ size: string;
2115
1895
  } & {
2116
1896
  date?: string | null | undefined;
2117
- size?: string;
2118
1897
  } & {
2119
1898
  __TYPE__: "FileLink";
2120
1899
  } & {
@@ -2140,24 +1919,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2140
1919
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2141
1920
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2142
1921
  type: t.LiteralC<"embed">;
2143
- data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
2144
- embed_url: t.StringC;
2145
- type: t.StringC;
2146
- }>, t.PartialC<{
2147
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
2148
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2149
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2150
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2151
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2152
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2153
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
2154
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2155
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
2156
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
2157
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2158
- }>]>>, t.ExactC<t.TypeC<{
2159
- __TYPE__: t.LiteralC<"EmbedContent">;
2160
- }>>]>;
1922
+ data: t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>;
2161
1923
  }>, t.PartialC<{
2162
1924
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2163
1925
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
@@ -2196,24 +1958,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2196
1958
  }>>, t.ExactC<t.TypeC<{
2197
1959
  __TYPE__: t.LiteralC<"BooleanContent">;
2198
1960
  value: t.BooleanC;
2199
- }>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
2200
- embed_url: t.StringC;
2201
- type: t.StringC;
2202
- }>, t.PartialC<{
2203
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
2204
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2205
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2206
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2207
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2208
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2209
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
2210
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2211
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
2212
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
2213
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2214
- }>]>>, t.ExactC<t.TypeC<{
2215
- __TYPE__: t.LiteralC<"EmbedContent">;
2216
- }>>]>, t.ExactC<t.TypeC<{
1961
+ }>>, t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>, t.ExactC<t.TypeC<{
2217
1962
  type: t.LiteralC<"Text">;
2218
1963
  value: t.Type<string, string, unknown>;
2219
1964
  __TYPE__: t.LiteralC<"FieldContent">;
@@ -2318,9 +2063,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2318
2063
  url: t.StringC;
2319
2064
  name: t.StringC;
2320
2065
  kind: t.StringC;
2066
+ size: t.StringC;
2321
2067
  }>, t.PartialC<{
2322
2068
  date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2323
- size: t.StringC;
2324
2069
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2325
2070
  __TYPE__: t.LiteralC<"FileLink">;
2326
2071
  }>, t.PartialC<{
@@ -2386,9 +2131,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2386
2131
  url: string;
2387
2132
  name: string;
2388
2133
  kind: string;
2134
+ size: string;
2389
2135
  } & {
2390
2136
  date?: string | null | undefined;
2391
- size?: string;
2392
2137
  } & {
2393
2138
  __TYPE__: "FileLink";
2394
2139
  } & {
@@ -2424,9 +2169,9 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2424
2169
  url: string;
2425
2170
  name: string;
2426
2171
  kind: string;
2172
+ size: string;
2427
2173
  } & {
2428
2174
  date?: string | null | undefined;
2429
- size?: string;
2430
2175
  } & {
2431
2176
  __TYPE__: "FileLink";
2432
2177
  } & {
@@ -2452,24 +2197,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2452
2197
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2453
2198
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2454
2199
  type: t.LiteralC<"embed">;
2455
- data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
2456
- embed_url: t.StringC;
2457
- type: t.StringC;
2458
- }>, t.PartialC<{
2459
- version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
2460
- title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2461
- author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2462
- author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2463
- provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2464
- provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2465
- cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
2466
- thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2467
- thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
2468
- thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
2469
- html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2470
- }>]>>, t.ExactC<t.TypeC<{
2471
- __TYPE__: t.LiteralC<"EmbedContent">;
2472
- }>>]>;
2200
+ data: t.Type<import("./nestable").EmbedContent, import("./nestable").EmbedContent, unknown>;
2473
2201
  }>, t.PartialC<{
2474
2202
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2475
2203
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
@@ -2506,24 +2234,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
2506
2234
  export declare const isWidgetContent: (u: unknown) => u is {
2507
2235
  __TYPE__: "BooleanContent";
2508
2236
  value: boolean;
2509
- } | ({
2510
- embed_url: string;
2511
- type: string;
2512
- } & {
2513
- version?: string | number | null;
2514
- title?: string | null | undefined;
2515
- author_name?: string | null | undefined;
2516
- author_url?: string | null | undefined;
2517
- provider_name?: string | null | undefined;
2518
- provider_url?: string | null | undefined;
2519
- cache_age?: string | number | null;
2520
- thumbnail_url?: string | null | undefined;
2521
- thumbnail_width?: number | null | undefined;
2522
- thumbnail_height?: number | null | undefined;
2523
- html?: string | null | undefined;
2524
- } & {
2525
- __TYPE__: "EmbedContent";
2526
- }) | {
2237
+ } | import("./nestable").EmbedContent | {
2527
2238
  type: "Color";
2528
2239
  value: string;
2529
2240
  __TYPE__: "FieldContent";
@@ -2630,9 +2341,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
2630
2341
  url: string;
2631
2342
  name: string;
2632
2343
  kind: string;
2344
+ size: string;
2633
2345
  } & {
2634
2346
  date?: string | null | undefined;
2635
- size?: string;
2636
2347
  } & {
2637
2348
  __TYPE__: "FileLink";
2638
2349
  } & {
@@ -2699,9 +2410,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
2699
2410
  url: string;
2700
2411
  name: string;
2701
2412
  kind: string;
2413
+ size: string;
2702
2414
  } & {
2703
2415
  date?: string | null | undefined;
2704
- size?: string;
2705
2416
  } & {
2706
2417
  __TYPE__: "FileLink";
2707
2418
  } & {
@@ -2727,24 +2438,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
2727
2438
  direction?: string | null | undefined;
2728
2439
  }) | ({
2729
2440
  type: "embed";
2730
- data: {
2731
- embed_url: string;
2732
- type: string;
2733
- } & {
2734
- version?: string | number | null;
2735
- title?: string | null | undefined;
2736
- author_name?: string | null | undefined;
2737
- author_url?: string | null | undefined;
2738
- provider_name?: string | null | undefined;
2739
- provider_url?: string | null | undefined;
2740
- cache_age?: string | number | null;
2741
- thumbnail_url?: string | null | undefined;
2742
- thumbnail_width?: number | null | undefined;
2743
- thumbnail_height?: number | null | undefined;
2744
- html?: string | null | undefined;
2745
- } & {
2746
- __TYPE__: "EmbedContent";
2747
- };
2441
+ data: import("./nestable").EmbedContent;
2748
2442
  } & {
2749
2443
  label?: string | null | undefined;
2750
2444
  direction?: string | null | undefined;
@@ -2774,24 +2468,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
2774
2468
  value: [string, {
2775
2469
  __TYPE__: "BooleanContent";
2776
2470
  value: boolean;
2777
- } | ({
2778
- embed_url: string;
2779
- type: string;
2780
- } & {
2781
- version?: string | number | null;
2782
- title?: string | null | undefined;
2783
- author_name?: string | null | undefined;
2784
- author_url?: string | null | undefined;
2785
- provider_name?: string | null | undefined;
2786
- provider_url?: string | null | undefined;
2787
- cache_age?: string | number | null;
2788
- thumbnail_url?: string | null | undefined;
2789
- thumbnail_width?: number | null | undefined;
2790
- thumbnail_height?: number | null | undefined;
2791
- html?: string | null | undefined;
2792
- } & {
2793
- __TYPE__: "EmbedContent";
2794
- }) | {
2471
+ } | import("./nestable").EmbedContent | {
2795
2472
  type: "Color";
2796
2473
  value: string;
2797
2474
  __TYPE__: "FieldContent";
@@ -2898,9 +2575,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
2898
2575
  url: string;
2899
2576
  name: string;
2900
2577
  kind: string;
2578
+ size: string;
2901
2579
  } & {
2902
2580
  date?: string | null | undefined;
2903
- size?: string;
2904
2581
  } & {
2905
2582
  __TYPE__: "FileLink";
2906
2583
  } & {
@@ -2967,9 +2644,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
2967
2644
  url: string;
2968
2645
  name: string;
2969
2646
  kind: string;
2647
+ size: string;
2970
2648
  } & {
2971
2649
  date?: string | null | undefined;
2972
- size?: string;
2973
2650
  } & {
2974
2651
  __TYPE__: "FileLink";
2975
2652
  } & {
@@ -2995,24 +2672,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
2995
2672
  direction?: string | null | undefined;
2996
2673
  }) | ({
2997
2674
  type: "embed";
2998
- data: {
2999
- embed_url: string;
3000
- type: string;
3001
- } & {
3002
- version?: string | number | null;
3003
- title?: string | null | undefined;
3004
- author_name?: string | null | undefined;
3005
- author_url?: string | null | undefined;
3006
- provider_name?: string | null | undefined;
3007
- provider_url?: string | null | undefined;
3008
- cache_age?: string | number | null;
3009
- thumbnail_url?: string | null | undefined;
3010
- thumbnail_width?: number | null | undefined;
3011
- thumbnail_height?: number | null | undefined;
3012
- html?: string | null | undefined;
3013
- } & {
3014
- __TYPE__: "EmbedContent";
3015
- };
2675
+ data: import("./nestable").EmbedContent;
3016
2676
  } & {
3017
2677
  label?: string | null | undefined;
3018
2678
  direction?: string | null | undefined;
@@ -3046,24 +2706,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
3046
2706
  widget: {
3047
2707
  __TYPE__: "BooleanContent";
3048
2708
  value: boolean;
3049
- } | ({
3050
- embed_url: string;
3051
- type: string;
3052
- } & {
3053
- version?: string | number | null;
3054
- title?: string | null | undefined;
3055
- author_name?: string | null | undefined;
3056
- author_url?: string | null | undefined;
3057
- provider_name?: string | null | undefined;
3058
- provider_url?: string | null | undefined;
3059
- cache_age?: string | number | null;
3060
- thumbnail_url?: string | null | undefined;
3061
- thumbnail_width?: number | null | undefined;
3062
- thumbnail_height?: number | null | undefined;
3063
- html?: string | null | undefined;
3064
- } & {
3065
- __TYPE__: "EmbedContent";
3066
- }) | {
2709
+ } | import("./nestable").EmbedContent | {
3067
2710
  type: "Color";
3068
2711
  value: string;
3069
2712
  __TYPE__: "FieldContent";
@@ -3170,9 +2813,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
3170
2813
  url: string;
3171
2814
  name: string;
3172
2815
  kind: string;
2816
+ size: string;
3173
2817
  } & {
3174
2818
  date?: string | null | undefined;
3175
- size?: string;
3176
2819
  } & {
3177
2820
  __TYPE__: "FileLink";
3178
2821
  } & {
@@ -3239,9 +2882,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
3239
2882
  url: string;
3240
2883
  name: string;
3241
2884
  kind: string;
2885
+ size: string;
3242
2886
  } & {
3243
2887
  date?: string | null | undefined;
3244
- size?: string;
3245
2888
  } & {
3246
2889
  __TYPE__: "FileLink";
3247
2890
  } & {
@@ -3267,24 +2910,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
3267
2910
  direction?: string | null | undefined;
3268
2911
  }) | ({
3269
2912
  type: "embed";
3270
- data: {
3271
- embed_url: string;
3272
- type: string;
3273
- } & {
3274
- version?: string | number | null;
3275
- title?: string | null | undefined;
3276
- author_name?: string | null | undefined;
3277
- author_url?: string | null | undefined;
3278
- provider_name?: string | null | undefined;
3279
- provider_url?: string | null | undefined;
3280
- cache_age?: string | number | null;
3281
- thumbnail_url?: string | null | undefined;
3282
- thumbnail_width?: number | null | undefined;
3283
- thumbnail_height?: number | null | undefined;
3284
- html?: string | null | undefined;
3285
- } & {
3286
- __TYPE__: "EmbedContent";
3287
- };
2913
+ data: import("./nestable").EmbedContent;
3288
2914
  } & {
3289
2915
  label?: string | null | undefined;
3290
2916
  direction?: string | null | undefined;
@@ -3314,24 +2940,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
3314
2940
  value: [string, {
3315
2941
  __TYPE__: "BooleanContent";
3316
2942
  value: boolean;
3317
- } | ({
3318
- embed_url: string;
3319
- type: string;
3320
- } & {
3321
- version?: string | number | null;
3322
- title?: string | null | undefined;
3323
- author_name?: string | null | undefined;
3324
- author_url?: string | null | undefined;
3325
- provider_name?: string | null | undefined;
3326
- provider_url?: string | null | undefined;
3327
- cache_age?: string | number | null;
3328
- thumbnail_url?: string | null | undefined;
3329
- thumbnail_width?: number | null | undefined;
3330
- thumbnail_height?: number | null | undefined;
3331
- html?: string | null | undefined;
3332
- } & {
3333
- __TYPE__: "EmbedContent";
3334
- }) | {
2943
+ } | import("./nestable").EmbedContent | {
3335
2944
  type: "Color";
3336
2945
  value: string;
3337
2946
  __TYPE__: "FieldContent";
@@ -3438,9 +3047,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
3438
3047
  url: string;
3439
3048
  name: string;
3440
3049
  kind: string;
3050
+ size: string;
3441
3051
  } & {
3442
3052
  date?: string | null | undefined;
3443
- size?: string;
3444
3053
  } & {
3445
3054
  __TYPE__: "FileLink";
3446
3055
  } & {
@@ -3507,9 +3116,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
3507
3116
  url: string;
3508
3117
  name: string;
3509
3118
  kind: string;
3119
+ size: string;
3510
3120
  } & {
3511
3121
  date?: string | null | undefined;
3512
- size?: string;
3513
3122
  } & {
3514
3123
  __TYPE__: "FileLink";
3515
3124
  } & {
@@ -3535,24 +3144,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
3535
3144
  direction?: string | null | undefined;
3536
3145
  }) | ({
3537
3146
  type: "embed";
3538
- data: {
3539
- embed_url: string;
3540
- type: string;
3541
- } & {
3542
- version?: string | number | null;
3543
- title?: string | null | undefined;
3544
- author_name?: string | null | undefined;
3545
- author_url?: string | null | undefined;
3546
- provider_name?: string | null | undefined;
3547
- provider_url?: string | null | undefined;
3548
- cache_age?: string | number | null;
3549
- thumbnail_url?: string | null | undefined;
3550
- thumbnail_width?: number | null | undefined;
3551
- thumbnail_height?: number | null | undefined;
3552
- html?: string | null | undefined;
3553
- } & {
3554
- __TYPE__: "EmbedContent";
3555
- };
3147
+ data: import("./nestable").EmbedContent;
3556
3148
  } & {
3557
3149
  label?: string | null | undefined;
3558
3150
  direction?: string | null | undefined;
@@ -3583,24 +3175,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
3583
3175
  [x: string]: {
3584
3176
  __TYPE__: "BooleanContent";
3585
3177
  value: boolean;
3586
- } | ({
3587
- embed_url: string;
3588
- type: string;
3589
- } & {
3590
- version?: string | number | null;
3591
- title?: string | null | undefined;
3592
- author_name?: string | null | undefined;
3593
- author_url?: string | null | undefined;
3594
- provider_name?: string | null | undefined;
3595
- provider_url?: string | null | undefined;
3596
- cache_age?: string | number | null;
3597
- thumbnail_url?: string | null | undefined;
3598
- thumbnail_width?: number | null | undefined;
3599
- thumbnail_height?: number | null | undefined;
3600
- html?: string | null | undefined;
3601
- } & {
3602
- __TYPE__: "EmbedContent";
3603
- }) | {
3178
+ } | import("./nestable").EmbedContent | {
3604
3179
  type: "Color";
3605
3180
  value: string;
3606
3181
  __TYPE__: "FieldContent";
@@ -3707,9 +3282,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
3707
3282
  url: string;
3708
3283
  name: string;
3709
3284
  kind: string;
3285
+ size: string;
3710
3286
  } & {
3711
3287
  date?: string | null | undefined;
3712
- size?: string;
3713
3288
  } & {
3714
3289
  __TYPE__: "FileLink";
3715
3290
  } & {
@@ -3776,9 +3351,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
3776
3351
  url: string;
3777
3352
  name: string;
3778
3353
  kind: string;
3354
+ size: string;
3779
3355
  } & {
3780
3356
  date?: string | null | undefined;
3781
- size?: string;
3782
3357
  } & {
3783
3358
  __TYPE__: "FileLink";
3784
3359
  } & {
@@ -3804,24 +3379,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
3804
3379
  direction?: string | null | undefined;
3805
3380
  }) | ({
3806
3381
  type: "embed";
3807
- data: {
3808
- embed_url: string;
3809
- type: string;
3810
- } & {
3811
- version?: string | number | null;
3812
- title?: string | null | undefined;
3813
- author_name?: string | null | undefined;
3814
- author_url?: string | null | undefined;
3815
- provider_name?: string | null | undefined;
3816
- provider_url?: string | null | undefined;
3817
- cache_age?: string | number | null;
3818
- thumbnail_url?: string | null | undefined;
3819
- thumbnail_width?: number | null | undefined;
3820
- thumbnail_height?: number | null | undefined;
3821
- html?: string | null | undefined;
3822
- } & {
3823
- __TYPE__: "EmbedContent";
3824
- };
3382
+ data: import("./nestable").EmbedContent;
3825
3383
  } & {
3826
3384
  label?: string | null | undefined;
3827
3385
  direction?: string | null | undefined;
@@ -3851,24 +3409,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
3851
3409
  value: [string, {
3852
3410
  __TYPE__: "BooleanContent";
3853
3411
  value: boolean;
3854
- } | ({
3855
- embed_url: string;
3856
- type: string;
3857
- } & {
3858
- version?: string | number | null;
3859
- title?: string | null | undefined;
3860
- author_name?: string | null | undefined;
3861
- author_url?: string | null | undefined;
3862
- provider_name?: string | null | undefined;
3863
- provider_url?: string | null | undefined;
3864
- cache_age?: string | number | null;
3865
- thumbnail_url?: string | null | undefined;
3866
- thumbnail_width?: number | null | undefined;
3867
- thumbnail_height?: number | null | undefined;
3868
- html?: string | null | undefined;
3869
- } & {
3870
- __TYPE__: "EmbedContent";
3871
- }) | {
3412
+ } | import("./nestable").EmbedContent | {
3872
3413
  type: "Color";
3873
3414
  value: string;
3874
3415
  __TYPE__: "FieldContent";
@@ -3975,9 +3516,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
3975
3516
  url: string;
3976
3517
  name: string;
3977
3518
  kind: string;
3519
+ size: string;
3978
3520
  } & {
3979
3521
  date?: string | null | undefined;
3980
- size?: string;
3981
3522
  } & {
3982
3523
  __TYPE__: "FileLink";
3983
3524
  } & {
@@ -4044,9 +3585,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
4044
3585
  url: string;
4045
3586
  name: string;
4046
3587
  kind: string;
3588
+ size: string;
4047
3589
  } & {
4048
3590
  date?: string | null | undefined;
4049
- size?: string;
4050
3591
  } & {
4051
3592
  __TYPE__: "FileLink";
4052
3593
  } & {
@@ -4072,24 +3613,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
4072
3613
  direction?: string | null | undefined;
4073
3614
  }) | ({
4074
3615
  type: "embed";
4075
- data: {
4076
- embed_url: string;
4077
- type: string;
4078
- } & {
4079
- version?: string | number | null;
4080
- title?: string | null | undefined;
4081
- author_name?: string | null | undefined;
4082
- author_url?: string | null | undefined;
4083
- provider_name?: string | null | undefined;
4084
- provider_url?: string | null | undefined;
4085
- cache_age?: string | number | null;
4086
- thumbnail_url?: string | null | undefined;
4087
- thumbnail_width?: number | null | undefined;
4088
- thumbnail_height?: number | null | undefined;
4089
- html?: string | null | undefined;
4090
- } & {
4091
- __TYPE__: "EmbedContent";
4092
- };
3616
+ data: import("./nestable").EmbedContent;
4093
3617
  } & {
4094
3618
  label?: string | null | undefined;
4095
3619
  direction?: string | null | undefined;
@@ -4121,24 +3645,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
4121
3645
  [x: string]: {
4122
3646
  __TYPE__: "BooleanContent";
4123
3647
  value: boolean;
4124
- } | ({
4125
- embed_url: string;
4126
- type: string;
4127
- } & {
4128
- version?: string | number | null;
4129
- title?: string | null | undefined;
4130
- author_name?: string | null | undefined;
4131
- author_url?: string | null | undefined;
4132
- provider_name?: string | null | undefined;
4133
- provider_url?: string | null | undefined;
4134
- cache_age?: string | number | null;
4135
- thumbnail_url?: string | null | undefined;
4136
- thumbnail_width?: number | null | undefined;
4137
- thumbnail_height?: number | null | undefined;
4138
- html?: string | null | undefined;
4139
- } & {
4140
- __TYPE__: "EmbedContent";
4141
- }) | {
3648
+ } | import("./nestable").EmbedContent | {
4142
3649
  type: "Color";
4143
3650
  value: string;
4144
3651
  __TYPE__: "FieldContent";
@@ -4245,9 +3752,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
4245
3752
  url: string;
4246
3753
  name: string;
4247
3754
  kind: string;
3755
+ size: string;
4248
3756
  } & {
4249
3757
  date?: string | null | undefined;
4250
- size?: string;
4251
3758
  } & {
4252
3759
  __TYPE__: "FileLink";
4253
3760
  } & {
@@ -4314,9 +3821,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
4314
3821
  url: string;
4315
3822
  name: string;
4316
3823
  kind: string;
3824
+ size: string;
4317
3825
  } & {
4318
3826
  date?: string | null | undefined;
4319
- size?: string;
4320
3827
  } & {
4321
3828
  __TYPE__: "FileLink";
4322
3829
  } & {
@@ -4342,24 +3849,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
4342
3849
  direction?: string | null | undefined;
4343
3850
  }) | ({
4344
3851
  type: "embed";
4345
- data: {
4346
- embed_url: string;
4347
- type: string;
4348
- } & {
4349
- version?: string | number | null;
4350
- title?: string | null | undefined;
4351
- author_name?: string | null | undefined;
4352
- author_url?: string | null | undefined;
4353
- provider_name?: string | null | undefined;
4354
- provider_url?: string | null | undefined;
4355
- cache_age?: string | number | null;
4356
- thumbnail_url?: string | null | undefined;
4357
- thumbnail_width?: number | null | undefined;
4358
- thumbnail_height?: number | null | undefined;
4359
- html?: string | null | undefined;
4360
- } & {
4361
- __TYPE__: "EmbedContent";
4362
- };
3852
+ data: import("./nestable").EmbedContent;
4363
3853
  } & {
4364
3854
  label?: string | null | undefined;
4365
3855
  direction?: string | null | undefined;
@@ -4389,24 +3879,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
4389
3879
  value: [string, {
4390
3880
  __TYPE__: "BooleanContent";
4391
3881
  value: boolean;
4392
- } | ({
4393
- embed_url: string;
4394
- type: string;
4395
- } & {
4396
- version?: string | number | null;
4397
- title?: string | null | undefined;
4398
- author_name?: string | null | undefined;
4399
- author_url?: string | null | undefined;
4400
- provider_name?: string | null | undefined;
4401
- provider_url?: string | null | undefined;
4402
- cache_age?: string | number | null;
4403
- thumbnail_url?: string | null | undefined;
4404
- thumbnail_width?: number | null | undefined;
4405
- thumbnail_height?: number | null | undefined;
4406
- html?: string | null | undefined;
4407
- } & {
4408
- __TYPE__: "EmbedContent";
4409
- }) | {
3882
+ } | import("./nestable").EmbedContent | {
4410
3883
  type: "Color";
4411
3884
  value: string;
4412
3885
  __TYPE__: "FieldContent";
@@ -4513,9 +3986,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
4513
3986
  url: string;
4514
3987
  name: string;
4515
3988
  kind: string;
3989
+ size: string;
4516
3990
  } & {
4517
3991
  date?: string | null | undefined;
4518
- size?: string;
4519
3992
  } & {
4520
3993
  __TYPE__: "FileLink";
4521
3994
  } & {
@@ -4582,9 +4055,9 @@ export declare const isWidgetContent: (u: unknown) => u is {
4582
4055
  url: string;
4583
4056
  name: string;
4584
4057
  kind: string;
4058
+ size: string;
4585
4059
  } & {
4586
4060
  date?: string | null | undefined;
4587
- size?: string;
4588
4061
  } & {
4589
4062
  __TYPE__: "FileLink";
4590
4063
  } & {
@@ -4610,24 +4083,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
4610
4083
  direction?: string | null | undefined;
4611
4084
  }) | ({
4612
4085
  type: "embed";
4613
- data: {
4614
- embed_url: string;
4615
- type: string;
4616
- } & {
4617
- version?: string | number | null;
4618
- title?: string | null | undefined;
4619
- author_name?: string | null | undefined;
4620
- author_url?: string | null | undefined;
4621
- provider_name?: string | null | undefined;
4622
- provider_url?: string | null | undefined;
4623
- cache_age?: string | number | null;
4624
- thumbnail_url?: string | null | undefined;
4625
- thumbnail_width?: number | null | undefined;
4626
- thumbnail_height?: number | null | undefined;
4627
- html?: string | null | undefined;
4628
- } & {
4629
- __TYPE__: "EmbedContent";
4630
- };
4086
+ data: import("./nestable").EmbedContent;
4631
4087
  } & {
4632
4088
  label?: string | null | undefined;
4633
4089
  direction?: string | null | undefined;
@@ -4664,24 +4120,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
4664
4120
  decode(value: unknown): import("fp-ts/lib/Either").Left<t.Errors> | import("fp-ts/lib/Either").Right<{
4665
4121
  __TYPE__: "BooleanContent";
4666
4122
  value: boolean;
4667
- }> | import("fp-ts/lib/Either").Right<{
4668
- embed_url: string;
4669
- type: string;
4670
- } & {
4671
- version?: string | number | null;
4672
- title?: string | null | undefined;
4673
- author_name?: string | null | undefined;
4674
- author_url?: string | null | undefined;
4675
- provider_name?: string | null | undefined;
4676
- provider_url?: string | null | undefined;
4677
- cache_age?: string | number | null;
4678
- thumbnail_url?: string | null | undefined;
4679
- thumbnail_width?: number | null | undefined;
4680
- thumbnail_height?: number | null | undefined;
4681
- html?: string | null | undefined;
4682
- } & {
4683
- __TYPE__: "EmbedContent";
4684
- }> | import("fp-ts/lib/Either").Right<{
4123
+ }> | import("fp-ts/lib/Either").Right<import("./nestable").EmbedContent> | import("fp-ts/lib/Either").Right<{
4685
4124
  type: "Color";
4686
4125
  value: string;
4687
4126
  __TYPE__: "FieldContent";
@@ -4788,9 +4227,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
4788
4227
  url: string;
4789
4228
  name: string;
4790
4229
  kind: string;
4230
+ size: string;
4791
4231
  } & {
4792
4232
  date?: string | null | undefined;
4793
- size?: string;
4794
4233
  } & {
4795
4234
  __TYPE__: "FileLink";
4796
4235
  } & {
@@ -4857,9 +4296,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
4857
4296
  url: string;
4858
4297
  name: string;
4859
4298
  kind: string;
4299
+ size: string;
4860
4300
  } & {
4861
4301
  date?: string | null | undefined;
4862
- size?: string;
4863
4302
  } & {
4864
4303
  __TYPE__: "FileLink";
4865
4304
  } & {
@@ -4885,24 +4324,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
4885
4324
  direction?: string | null | undefined;
4886
4325
  }) | ({
4887
4326
  type: "embed";
4888
- data: {
4889
- embed_url: string;
4890
- type: string;
4891
- } & {
4892
- version?: string | number | null;
4893
- title?: string | null | undefined;
4894
- author_name?: string | null | undefined;
4895
- author_url?: string | null | undefined;
4896
- provider_name?: string | null | undefined;
4897
- provider_url?: string | null | undefined;
4898
- cache_age?: string | number | null;
4899
- thumbnail_url?: string | null | undefined;
4900
- thumbnail_width?: number | null | undefined;
4901
- thumbnail_height?: number | null | undefined;
4902
- html?: string | null | undefined;
4903
- } & {
4904
- __TYPE__: "EmbedContent";
4905
- };
4327
+ data: import("./nestable").EmbedContent;
4906
4328
  } & {
4907
4329
  label?: string | null | undefined;
4908
4330
  direction?: string | null | undefined;
@@ -4932,24 +4354,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
4932
4354
  value: [string, {
4933
4355
  __TYPE__: "BooleanContent";
4934
4356
  value: boolean;
4935
- } | ({
4936
- embed_url: string;
4937
- type: string;
4938
- } & {
4939
- version?: string | number | null;
4940
- title?: string | null | undefined;
4941
- author_name?: string | null | undefined;
4942
- author_url?: string | null | undefined;
4943
- provider_name?: string | null | undefined;
4944
- provider_url?: string | null | undefined;
4945
- cache_age?: string | number | null;
4946
- thumbnail_url?: string | null | undefined;
4947
- thumbnail_width?: number | null | undefined;
4948
- thumbnail_height?: number | null | undefined;
4949
- html?: string | null | undefined;
4950
- } & {
4951
- __TYPE__: "EmbedContent";
4952
- }) | {
4357
+ } | import("./nestable").EmbedContent | {
4953
4358
  type: "Color";
4954
4359
  value: string;
4955
4360
  __TYPE__: "FieldContent";
@@ -5056,9 +4461,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5056
4461
  url: string;
5057
4462
  name: string;
5058
4463
  kind: string;
4464
+ size: string;
5059
4465
  } & {
5060
4466
  date?: string | null | undefined;
5061
- size?: string;
5062
4467
  } & {
5063
4468
  __TYPE__: "FileLink";
5064
4469
  } & {
@@ -5125,9 +4530,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5125
4530
  url: string;
5126
4531
  name: string;
5127
4532
  kind: string;
4533
+ size: string;
5128
4534
  } & {
5129
4535
  date?: string | null | undefined;
5130
- size?: string;
5131
4536
  } & {
5132
4537
  __TYPE__: "FileLink";
5133
4538
  } & {
@@ -5153,24 +4558,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5153
4558
  direction?: string | null | undefined;
5154
4559
  }) | ({
5155
4560
  type: "embed";
5156
- data: {
5157
- embed_url: string;
5158
- type: string;
5159
- } & {
5160
- version?: string | number | null;
5161
- title?: string | null | undefined;
5162
- author_name?: string | null | undefined;
5163
- author_url?: string | null | undefined;
5164
- provider_name?: string | null | undefined;
5165
- provider_url?: string | null | undefined;
5166
- cache_age?: string | number | null;
5167
- thumbnail_url?: string | null | undefined;
5168
- thumbnail_width?: number | null | undefined;
5169
- thumbnail_height?: number | null | undefined;
5170
- html?: string | null | undefined;
5171
- } & {
5172
- __TYPE__: "EmbedContent";
5173
- };
4561
+ data: import("./nestable").EmbedContent;
5174
4562
  } & {
5175
4563
  label?: string | null | undefined;
5176
4564
  direction?: string | null | undefined;
@@ -5204,24 +4592,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5204
4592
  widget: {
5205
4593
  __TYPE__: "BooleanContent";
5206
4594
  value: boolean;
5207
- } | ({
5208
- embed_url: string;
5209
- type: string;
5210
- } & {
5211
- version?: string | number | null;
5212
- title?: string | null | undefined;
5213
- author_name?: string | null | undefined;
5214
- author_url?: string | null | undefined;
5215
- provider_name?: string | null | undefined;
5216
- provider_url?: string | null | undefined;
5217
- cache_age?: string | number | null;
5218
- thumbnail_url?: string | null | undefined;
5219
- thumbnail_width?: number | null | undefined;
5220
- thumbnail_height?: number | null | undefined;
5221
- html?: string | null | undefined;
5222
- } & {
5223
- __TYPE__: "EmbedContent";
5224
- }) | {
4595
+ } | import("./nestable").EmbedContent | {
5225
4596
  type: "Color";
5226
4597
  value: string;
5227
4598
  __TYPE__: "FieldContent";
@@ -5328,9 +4699,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5328
4699
  url: string;
5329
4700
  name: string;
5330
4701
  kind: string;
4702
+ size: string;
5331
4703
  } & {
5332
4704
  date?: string | null | undefined;
5333
- size?: string;
5334
4705
  } & {
5335
4706
  __TYPE__: "FileLink";
5336
4707
  } & {
@@ -5397,9 +4768,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5397
4768
  url: string;
5398
4769
  name: string;
5399
4770
  kind: string;
4771
+ size: string;
5400
4772
  } & {
5401
4773
  date?: string | null | undefined;
5402
- size?: string;
5403
4774
  } & {
5404
4775
  __TYPE__: "FileLink";
5405
4776
  } & {
@@ -5425,24 +4796,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5425
4796
  direction?: string | null | undefined;
5426
4797
  }) | ({
5427
4798
  type: "embed";
5428
- data: {
5429
- embed_url: string;
5430
- type: string;
5431
- } & {
5432
- version?: string | number | null;
5433
- title?: string | null | undefined;
5434
- author_name?: string | null | undefined;
5435
- author_url?: string | null | undefined;
5436
- provider_name?: string | null | undefined;
5437
- provider_url?: string | null | undefined;
5438
- cache_age?: string | number | null;
5439
- thumbnail_url?: string | null | undefined;
5440
- thumbnail_width?: number | null | undefined;
5441
- thumbnail_height?: number | null | undefined;
5442
- html?: string | null | undefined;
5443
- } & {
5444
- __TYPE__: "EmbedContent";
5445
- };
4799
+ data: import("./nestable").EmbedContent;
5446
4800
  } & {
5447
4801
  label?: string | null | undefined;
5448
4802
  direction?: string | null | undefined;
@@ -5472,24 +4826,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5472
4826
  value: [string, {
5473
4827
  __TYPE__: "BooleanContent";
5474
4828
  value: boolean;
5475
- } | ({
5476
- embed_url: string;
5477
- type: string;
5478
- } & {
5479
- version?: string | number | null;
5480
- title?: string | null | undefined;
5481
- author_name?: string | null | undefined;
5482
- author_url?: string | null | undefined;
5483
- provider_name?: string | null | undefined;
5484
- provider_url?: string | null | undefined;
5485
- cache_age?: string | number | null;
5486
- thumbnail_url?: string | null | undefined;
5487
- thumbnail_width?: number | null | undefined;
5488
- thumbnail_height?: number | null | undefined;
5489
- html?: string | null | undefined;
5490
- } & {
5491
- __TYPE__: "EmbedContent";
5492
- }) | {
4829
+ } | import("./nestable").EmbedContent | {
5493
4830
  type: "Color";
5494
4831
  value: string;
5495
4832
  __TYPE__: "FieldContent";
@@ -5596,9 +4933,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5596
4933
  url: string;
5597
4934
  name: string;
5598
4935
  kind: string;
4936
+ size: string;
5599
4937
  } & {
5600
4938
  date?: string | null | undefined;
5601
- size?: string;
5602
4939
  } & {
5603
4940
  __TYPE__: "FileLink";
5604
4941
  } & {
@@ -5665,9 +5002,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5665
5002
  url: string;
5666
5003
  name: string;
5667
5004
  kind: string;
5005
+ size: string;
5668
5006
  } & {
5669
5007
  date?: string | null | undefined;
5670
- size?: string;
5671
5008
  } & {
5672
5009
  __TYPE__: "FileLink";
5673
5010
  } & {
@@ -5693,24 +5030,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5693
5030
  direction?: string | null | undefined;
5694
5031
  }) | ({
5695
5032
  type: "embed";
5696
- data: {
5697
- embed_url: string;
5698
- type: string;
5699
- } & {
5700
- version?: string | number | null;
5701
- title?: string | null | undefined;
5702
- author_name?: string | null | undefined;
5703
- author_url?: string | null | undefined;
5704
- provider_name?: string | null | undefined;
5705
- provider_url?: string | null | undefined;
5706
- cache_age?: string | number | null;
5707
- thumbnail_url?: string | null | undefined;
5708
- thumbnail_width?: number | null | undefined;
5709
- thumbnail_height?: number | null | undefined;
5710
- html?: string | null | undefined;
5711
- } & {
5712
- __TYPE__: "EmbedContent";
5713
- };
5033
+ data: import("./nestable").EmbedContent;
5714
5034
  } & {
5715
5035
  label?: string | null | undefined;
5716
5036
  direction?: string | null | undefined;
@@ -5741,24 +5061,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5741
5061
  [x: string]: {
5742
5062
  __TYPE__: "BooleanContent";
5743
5063
  value: boolean;
5744
- } | ({
5745
- embed_url: string;
5746
- type: string;
5747
- } & {
5748
- version?: string | number | null;
5749
- title?: string | null | undefined;
5750
- author_name?: string | null | undefined;
5751
- author_url?: string | null | undefined;
5752
- provider_name?: string | null | undefined;
5753
- provider_url?: string | null | undefined;
5754
- cache_age?: string | number | null;
5755
- thumbnail_url?: string | null | undefined;
5756
- thumbnail_width?: number | null | undefined;
5757
- thumbnail_height?: number | null | undefined;
5758
- html?: string | null | undefined;
5759
- } & {
5760
- __TYPE__: "EmbedContent";
5761
- }) | {
5064
+ } | import("./nestable").EmbedContent | {
5762
5065
  type: "Color";
5763
5066
  value: string;
5764
5067
  __TYPE__: "FieldContent";
@@ -5865,9 +5168,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5865
5168
  url: string;
5866
5169
  name: string;
5867
5170
  kind: string;
5171
+ size: string;
5868
5172
  } & {
5869
5173
  date?: string | null | undefined;
5870
- size?: string;
5871
5174
  } & {
5872
5175
  __TYPE__: "FileLink";
5873
5176
  } & {
@@ -5934,9 +5237,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5934
5237
  url: string;
5935
5238
  name: string;
5936
5239
  kind: string;
5240
+ size: string;
5937
5241
  } & {
5938
5242
  date?: string | null | undefined;
5939
- size?: string;
5940
5243
  } & {
5941
5244
  __TYPE__: "FileLink";
5942
5245
  } & {
@@ -5962,24 +5265,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
5962
5265
  direction?: string | null | undefined;
5963
5266
  }) | ({
5964
5267
  type: "embed";
5965
- data: {
5966
- embed_url: string;
5967
- type: string;
5968
- } & {
5969
- version?: string | number | null;
5970
- title?: string | null | undefined;
5971
- author_name?: string | null | undefined;
5972
- author_url?: string | null | undefined;
5973
- provider_name?: string | null | undefined;
5974
- provider_url?: string | null | undefined;
5975
- cache_age?: string | number | null;
5976
- thumbnail_url?: string | null | undefined;
5977
- thumbnail_width?: number | null | undefined;
5978
- thumbnail_height?: number | null | undefined;
5979
- html?: string | null | undefined;
5980
- } & {
5981
- __TYPE__: "EmbedContent";
5982
- };
5268
+ data: import("./nestable").EmbedContent;
5983
5269
  } & {
5984
5270
  label?: string | null | undefined;
5985
5271
  direction?: string | null | undefined;
@@ -6009,24 +5295,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6009
5295
  value: [string, {
6010
5296
  __TYPE__: "BooleanContent";
6011
5297
  value: boolean;
6012
- } | ({
6013
- embed_url: string;
6014
- type: string;
6015
- } & {
6016
- version?: string | number | null;
6017
- title?: string | null | undefined;
6018
- author_name?: string | null | undefined;
6019
- author_url?: string | null | undefined;
6020
- provider_name?: string | null | undefined;
6021
- provider_url?: string | null | undefined;
6022
- cache_age?: string | number | null;
6023
- thumbnail_url?: string | null | undefined;
6024
- thumbnail_width?: number | null | undefined;
6025
- thumbnail_height?: number | null | undefined;
6026
- html?: string | null | undefined;
6027
- } & {
6028
- __TYPE__: "EmbedContent";
6029
- }) | {
5298
+ } | import("./nestable").EmbedContent | {
6030
5299
  type: "Color";
6031
5300
  value: string;
6032
5301
  __TYPE__: "FieldContent";
@@ -6133,9 +5402,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6133
5402
  url: string;
6134
5403
  name: string;
6135
5404
  kind: string;
5405
+ size: string;
6136
5406
  } & {
6137
5407
  date?: string | null | undefined;
6138
- size?: string;
6139
5408
  } & {
6140
5409
  __TYPE__: "FileLink";
6141
5410
  } & {
@@ -6202,9 +5471,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6202
5471
  url: string;
6203
5472
  name: string;
6204
5473
  kind: string;
5474
+ size: string;
6205
5475
  } & {
6206
5476
  date?: string | null | undefined;
6207
- size?: string;
6208
5477
  } & {
6209
5478
  __TYPE__: "FileLink";
6210
5479
  } & {
@@ -6230,24 +5499,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6230
5499
  direction?: string | null | undefined;
6231
5500
  }) | ({
6232
5501
  type: "embed";
6233
- data: {
6234
- embed_url: string;
6235
- type: string;
6236
- } & {
6237
- version?: string | number | null;
6238
- title?: string | null | undefined;
6239
- author_name?: string | null | undefined;
6240
- author_url?: string | null | undefined;
6241
- provider_name?: string | null | undefined;
6242
- provider_url?: string | null | undefined;
6243
- cache_age?: string | number | null;
6244
- thumbnail_url?: string | null | undefined;
6245
- thumbnail_width?: number | null | undefined;
6246
- thumbnail_height?: number | null | undefined;
6247
- html?: string | null | undefined;
6248
- } & {
6249
- __TYPE__: "EmbedContent";
6250
- };
5502
+ data: import("./nestable").EmbedContent;
6251
5503
  } & {
6252
5504
  label?: string | null | undefined;
6253
5505
  direction?: string | null | undefined;
@@ -6279,24 +5531,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6279
5531
  [x: string]: {
6280
5532
  __TYPE__: "BooleanContent";
6281
5533
  value: boolean;
6282
- } | ({
6283
- embed_url: string;
6284
- type: string;
6285
- } & {
6286
- version?: string | number | null;
6287
- title?: string | null | undefined;
6288
- author_name?: string | null | undefined;
6289
- author_url?: string | null | undefined;
6290
- provider_name?: string | null | undefined;
6291
- provider_url?: string | null | undefined;
6292
- cache_age?: string | number | null;
6293
- thumbnail_url?: string | null | undefined;
6294
- thumbnail_width?: number | null | undefined;
6295
- thumbnail_height?: number | null | undefined;
6296
- html?: string | null | undefined;
6297
- } & {
6298
- __TYPE__: "EmbedContent";
6299
- }) | {
5534
+ } | import("./nestable").EmbedContent | {
6300
5535
  type: "Color";
6301
5536
  value: string;
6302
5537
  __TYPE__: "FieldContent";
@@ -6403,9 +5638,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6403
5638
  url: string;
6404
5639
  name: string;
6405
5640
  kind: string;
5641
+ size: string;
6406
5642
  } & {
6407
5643
  date?: string | null | undefined;
6408
- size?: string;
6409
5644
  } & {
6410
5645
  __TYPE__: "FileLink";
6411
5646
  } & {
@@ -6472,9 +5707,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6472
5707
  url: string;
6473
5708
  name: string;
6474
5709
  kind: string;
5710
+ size: string;
6475
5711
  } & {
6476
5712
  date?: string | null | undefined;
6477
- size?: string;
6478
5713
  } & {
6479
5714
  __TYPE__: "FileLink";
6480
5715
  } & {
@@ -6500,24 +5735,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6500
5735
  direction?: string | null | undefined;
6501
5736
  }) | ({
6502
5737
  type: "embed";
6503
- data: {
6504
- embed_url: string;
6505
- type: string;
6506
- } & {
6507
- version?: string | number | null;
6508
- title?: string | null | undefined;
6509
- author_name?: string | null | undefined;
6510
- author_url?: string | null | undefined;
6511
- provider_name?: string | null | undefined;
6512
- provider_url?: string | null | undefined;
6513
- cache_age?: string | number | null;
6514
- thumbnail_url?: string | null | undefined;
6515
- thumbnail_width?: number | null | undefined;
6516
- thumbnail_height?: number | null | undefined;
6517
- html?: string | null | undefined;
6518
- } & {
6519
- __TYPE__: "EmbedContent";
6520
- };
5738
+ data: import("./nestable").EmbedContent;
6521
5739
  } & {
6522
5740
  label?: string | null | undefined;
6523
5741
  direction?: string | null | undefined;
@@ -6547,24 +5765,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6547
5765
  value: [string, {
6548
5766
  __TYPE__: "BooleanContent";
6549
5767
  value: boolean;
6550
- } | ({
6551
- embed_url: string;
6552
- type: string;
6553
- } & {
6554
- version?: string | number | null;
6555
- title?: string | null | undefined;
6556
- author_name?: string | null | undefined;
6557
- author_url?: string | null | undefined;
6558
- provider_name?: string | null | undefined;
6559
- provider_url?: string | null | undefined;
6560
- cache_age?: string | number | null;
6561
- thumbnail_url?: string | null | undefined;
6562
- thumbnail_width?: number | null | undefined;
6563
- thumbnail_height?: number | null | undefined;
6564
- html?: string | null | undefined;
6565
- } & {
6566
- __TYPE__: "EmbedContent";
6567
- }) | {
5768
+ } | import("./nestable").EmbedContent | {
6568
5769
  type: "Color";
6569
5770
  value: string;
6570
5771
  __TYPE__: "FieldContent";
@@ -6671,9 +5872,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6671
5872
  url: string;
6672
5873
  name: string;
6673
5874
  kind: string;
5875
+ size: string;
6674
5876
  } & {
6675
5877
  date?: string | null | undefined;
6676
- size?: string;
6677
5878
  } & {
6678
5879
  __TYPE__: "FileLink";
6679
5880
  } & {
@@ -6740,9 +5941,9 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6740
5941
  url: string;
6741
5942
  name: string;
6742
5943
  kind: string;
5944
+ size: string;
6743
5945
  } & {
6744
5946
  date?: string | null | undefined;
6745
- size?: string;
6746
5947
  } & {
6747
5948
  __TYPE__: "FileLink";
6748
5949
  } & {
@@ -6768,24 +5969,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
6768
5969
  direction?: string | null | undefined;
6769
5970
  }) | ({
6770
5971
  type: "embed";
6771
- data: {
6772
- embed_url: string;
6773
- type: string;
6774
- } & {
6775
- version?: string | number | null;
6776
- title?: string | null | undefined;
6777
- author_name?: string | null | undefined;
6778
- author_url?: string | null | undefined;
6779
- provider_name?: string | null | undefined;
6780
- provider_url?: string | null | undefined;
6781
- cache_age?: string | number | null;
6782
- thumbnail_url?: string | null | undefined;
6783
- thumbnail_width?: number | null | undefined;
6784
- thumbnail_height?: number | null | undefined;
6785
- html?: string | null | undefined;
6786
- } & {
6787
- __TYPE__: "EmbedContent";
6788
- };
5972
+ data: import("./nestable").EmbedContent;
6789
5973
  } & {
6790
5974
  label?: string | null | undefined;
6791
5975
  direction?: string | null | undefined;