@prismicio/types-internal 2.0.0-alpha.7 → 2.0.0-alpha.8
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.
- package/lib/content/Document.d.ts +608 -32
- package/lib/content/fields/GroupContent.d.ts +190 -10
- package/lib/content/fields/WidgetContent.d.ts +912 -48
- package/lib/content/fields/nestable/EmbedContent.d.ts +44 -41
- package/lib/content/fields/nestable/EmbedContent.js +15 -38
- package/lib/content/fields/nestable/NestableContent.d.ts +114 -7
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +76 -5
- package/lib/content/fields/nestable/RichTextContent/Blocks.js +15 -7
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +76 -4
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +228 -12
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +76 -4
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +228 -12
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +190 -10
- package/lib/content/fields/slices/Slice/index.d.ts +421 -22
- package/lib/content/fields/slices/Slice/index.js +3 -0
- package/lib/content/fields/slices/SliceItem.d.ts +456 -24
- package/lib/content/fields/slices/SliceItem.js +2 -2
- package/lib/content/fields/slices/SlicesContent.d.ts +684 -36
- package/lib/content/fields/slices/index.d.ts +1 -3
- package/lib/content/fields/slices/index.js +1 -3
- package/package.json +1 -1
- package/src/content/fields/nestable/EmbedContent.ts +20 -59
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +19 -8
- package/src/content/fields/slices/Slice/index.ts +4 -0
- package/src/content/fields/slices/SliceItem.ts +2 -2
- package/src/content/fields/slices/index.ts +1 -3
|
@@ -11,7 +11,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
11
11
|
}>>, t.ExactC<t.TypeC<{
|
|
12
12
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
13
13
|
value: t.BooleanC;
|
|
14
|
-
}>>, t.
|
|
14
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
15
|
+
embed_url: t.StringC;
|
|
16
|
+
type: t.StringC;
|
|
17
|
+
}>, t.PartialC<{
|
|
18
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
19
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
20
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
21
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
22
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
23
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
24
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
25
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
26
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
27
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
28
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
29
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
30
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
31
|
+
all: t.UnknownC;
|
|
32
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
15
33
|
type: t.LiteralC<"Text">;
|
|
16
34
|
value: t.Type<string, string, unknown>;
|
|
17
35
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -250,7 +268,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
250
268
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
251
269
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
252
270
|
type: t.LiteralC<"embed">;
|
|
253
|
-
data: t.
|
|
271
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
272
|
+
embed_url: t.StringC;
|
|
273
|
+
type: t.StringC;
|
|
274
|
+
}>, t.PartialC<{
|
|
275
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
276
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
277
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
278
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
279
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
280
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
281
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
282
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
283
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
284
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
285
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
286
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
287
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
288
|
+
all: t.UnknownC;
|
|
289
|
+
}>>]>;
|
|
254
290
|
}>, t.PartialC<{
|
|
255
291
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
256
292
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -287,7 +323,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
287
323
|
}>>, t.ExactC<t.TypeC<{
|
|
288
324
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
289
325
|
value: t.BooleanC;
|
|
290
|
-
}>>, t.
|
|
326
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
327
|
+
embed_url: t.StringC;
|
|
328
|
+
type: t.StringC;
|
|
329
|
+
}>, t.PartialC<{
|
|
330
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
331
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
332
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
333
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
334
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
335
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
336
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
337
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
338
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
339
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
340
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
341
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
342
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
343
|
+
all: t.UnknownC;
|
|
344
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
291
345
|
type: t.LiteralC<"Text">;
|
|
292
346
|
value: t.Type<string, string, unknown>;
|
|
293
347
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -526,7 +580,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
526
580
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
527
581
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
528
582
|
type: t.LiteralC<"embed">;
|
|
529
|
-
data: t.
|
|
583
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
584
|
+
embed_url: t.StringC;
|
|
585
|
+
type: t.StringC;
|
|
586
|
+
}>, t.PartialC<{
|
|
587
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
588
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
589
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
590
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
591
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
592
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
593
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
594
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
595
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
596
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
597
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
598
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
599
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
600
|
+
all: t.UnknownC;
|
|
601
|
+
}>>]>;
|
|
530
602
|
}>, t.PartialC<{
|
|
531
603
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
532
604
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -572,7 +644,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
572
644
|
}>>, t.ExactC<t.TypeC<{
|
|
573
645
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
574
646
|
value: t.BooleanC;
|
|
575
|
-
}>>, t.
|
|
647
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
648
|
+
embed_url: t.StringC;
|
|
649
|
+
type: t.StringC;
|
|
650
|
+
}>, t.PartialC<{
|
|
651
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
652
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
653
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
654
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
655
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
656
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
657
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
658
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
659
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
660
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
661
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
662
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
663
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
664
|
+
all: t.UnknownC;
|
|
665
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
576
666
|
type: t.LiteralC<"Text">;
|
|
577
667
|
value: t.Type<string, string, unknown>;
|
|
578
668
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -811,7 +901,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
811
901
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
812
902
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
813
903
|
type: t.LiteralC<"embed">;
|
|
814
|
-
data: t.
|
|
904
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
905
|
+
embed_url: t.StringC;
|
|
906
|
+
type: t.StringC;
|
|
907
|
+
}>, t.PartialC<{
|
|
908
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
909
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
910
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
911
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
912
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
913
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
914
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
915
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
916
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
917
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
918
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
919
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
920
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
921
|
+
all: t.UnknownC;
|
|
922
|
+
}>>]>;
|
|
815
923
|
}>, t.PartialC<{
|
|
816
924
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
817
925
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -849,7 +957,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
849
957
|
}>>, t.ExactC<t.TypeC<{
|
|
850
958
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
851
959
|
value: t.BooleanC;
|
|
852
|
-
}>>, t.
|
|
960
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
961
|
+
embed_url: t.StringC;
|
|
962
|
+
type: t.StringC;
|
|
963
|
+
}>, t.PartialC<{
|
|
964
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
965
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
966
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
967
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
968
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
969
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
970
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
971
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
972
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
973
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
974
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
975
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
976
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
977
|
+
all: t.UnknownC;
|
|
978
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
853
979
|
type: t.LiteralC<"Text">;
|
|
854
980
|
value: t.Type<string, string, unknown>;
|
|
855
981
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1088,7 +1214,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1088
1214
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1089
1215
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1090
1216
|
type: t.LiteralC<"embed">;
|
|
1091
|
-
data: t.
|
|
1217
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1218
|
+
embed_url: t.StringC;
|
|
1219
|
+
type: t.StringC;
|
|
1220
|
+
}>, t.PartialC<{
|
|
1221
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1222
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1223
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1224
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1225
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1226
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1227
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1228
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1229
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1230
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1231
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1232
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1233
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1234
|
+
all: t.UnknownC;
|
|
1235
|
+
}>>]>;
|
|
1092
1236
|
}>, t.PartialC<{
|
|
1093
1237
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1094
1238
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1128,7 +1272,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1128
1272
|
}>>, t.ExactC<t.TypeC<{
|
|
1129
1273
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1130
1274
|
value: t.BooleanC;
|
|
1131
|
-
}>>, t.
|
|
1275
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1276
|
+
embed_url: t.StringC;
|
|
1277
|
+
type: t.StringC;
|
|
1278
|
+
}>, t.PartialC<{
|
|
1279
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1280
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1281
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1282
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1283
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1284
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1285
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1286
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1287
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1288
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1289
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1290
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1291
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1292
|
+
all: t.UnknownC;
|
|
1293
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1132
1294
|
type: t.LiteralC<"Text">;
|
|
1133
1295
|
value: t.Type<string, string, unknown>;
|
|
1134
1296
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1367,7 +1529,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1367
1529
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1368
1530
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1369
1531
|
type: t.LiteralC<"embed">;
|
|
1370
|
-
data: t.
|
|
1532
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1533
|
+
embed_url: t.StringC;
|
|
1534
|
+
type: t.StringC;
|
|
1535
|
+
}>, t.PartialC<{
|
|
1536
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1537
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1538
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1539
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1540
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1541
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1542
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1543
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1544
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1545
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1546
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1547
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1548
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1549
|
+
all: t.UnknownC;
|
|
1550
|
+
}>>]>;
|
|
1371
1551
|
}>, t.PartialC<{
|
|
1372
1552
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1373
1553
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1405,7 +1585,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1405
1585
|
}>>, t.ExactC<t.TypeC<{
|
|
1406
1586
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1407
1587
|
value: t.BooleanC;
|
|
1408
|
-
}>>, t.
|
|
1588
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1589
|
+
embed_url: t.StringC;
|
|
1590
|
+
type: t.StringC;
|
|
1591
|
+
}>, t.PartialC<{
|
|
1592
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1593
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1594
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1595
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1596
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1597
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1598
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1599
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1600
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1601
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1602
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1603
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1604
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1605
|
+
all: t.UnknownC;
|
|
1606
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1409
1607
|
type: t.LiteralC<"Text">;
|
|
1410
1608
|
value: t.Type<string, string, unknown>;
|
|
1411
1609
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1644,7 +1842,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1644
1842
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1645
1843
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1646
1844
|
type: t.LiteralC<"embed">;
|
|
1647
|
-
data: t.
|
|
1845
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1846
|
+
embed_url: t.StringC;
|
|
1847
|
+
type: t.StringC;
|
|
1848
|
+
}>, t.PartialC<{
|
|
1849
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1850
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1851
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1852
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1853
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1854
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1855
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1856
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1857
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1858
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1859
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1860
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1861
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1862
|
+
all: t.UnknownC;
|
|
1863
|
+
}>>]>;
|
|
1648
1864
|
}>, t.PartialC<{
|
|
1649
1865
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1650
1866
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1681,7 +1897,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1681
1897
|
}>>, t.ExactC<t.TypeC<{
|
|
1682
1898
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1683
1899
|
value: t.BooleanC;
|
|
1684
|
-
}>>, t.
|
|
1900
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1901
|
+
embed_url: t.StringC;
|
|
1902
|
+
type: t.StringC;
|
|
1903
|
+
}>, t.PartialC<{
|
|
1904
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1905
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1906
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1907
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1908
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1909
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1910
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1911
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1912
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1913
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1914
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1915
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1916
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1917
|
+
all: t.UnknownC;
|
|
1918
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1685
1919
|
type: t.LiteralC<"Text">;
|
|
1686
1920
|
value: t.Type<string, string, unknown>;
|
|
1687
1921
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1920,7 +2154,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1920
2154
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1921
2155
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1922
2156
|
type: t.LiteralC<"embed">;
|
|
1923
|
-
data: t.
|
|
2157
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2158
|
+
embed_url: t.StringC;
|
|
2159
|
+
type: t.StringC;
|
|
2160
|
+
}>, t.PartialC<{
|
|
2161
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2162
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2163
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2164
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2165
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2166
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2167
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2168
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2169
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2170
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2171
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2172
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2173
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2174
|
+
all: t.UnknownC;
|
|
2175
|
+
}>>]>;
|
|
1924
2176
|
}>, t.PartialC<{
|
|
1925
2177
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1926
2178
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1959,7 +2211,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1959
2211
|
}>>, t.ExactC<t.TypeC<{
|
|
1960
2212
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1961
2213
|
value: t.BooleanC;
|
|
1962
|
-
}>>, t.
|
|
2214
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2215
|
+
embed_url: t.StringC;
|
|
2216
|
+
type: t.StringC;
|
|
2217
|
+
}>, t.PartialC<{
|
|
2218
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2219
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2220
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2221
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2222
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2223
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2224
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2225
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2226
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2227
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2228
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2229
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2230
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2231
|
+
all: t.UnknownC;
|
|
2232
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1963
2233
|
type: t.LiteralC<"Text">;
|
|
1964
2234
|
value: t.Type<string, string, unknown>;
|
|
1965
2235
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -2198,7 +2468,25 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2198
2468
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2199
2469
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2200
2470
|
type: t.LiteralC<"embed">;
|
|
2201
|
-
data: t.
|
|
2471
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2472
|
+
embed_url: t.StringC;
|
|
2473
|
+
type: t.StringC;
|
|
2474
|
+
}>, t.PartialC<{
|
|
2475
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2476
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2477
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2478
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2479
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2480
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2481
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2482
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2483
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2484
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2485
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2486
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2487
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2488
|
+
all: t.UnknownC;
|
|
2489
|
+
}>>]>;
|
|
2202
2490
|
}>, t.PartialC<{
|
|
2203
2491
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2204
2492
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -2250,7 +2538,25 @@ export declare const DocumentLegacy: {
|
|
|
2250
2538
|
[x: string]: {
|
|
2251
2539
|
__TYPE__: "BooleanContent";
|
|
2252
2540
|
value: boolean;
|
|
2253
|
-
} |
|
|
2541
|
+
} | ({
|
|
2542
|
+
embed_url: string;
|
|
2543
|
+
type: string;
|
|
2544
|
+
} & {
|
|
2545
|
+
version?: string | number | null;
|
|
2546
|
+
title?: string | null | undefined;
|
|
2547
|
+
author_name?: string | null | undefined;
|
|
2548
|
+
author_url?: string | null | undefined;
|
|
2549
|
+
provider_name?: string | null | undefined;
|
|
2550
|
+
provider_url?: string | null | undefined;
|
|
2551
|
+
cache_age?: string | number | null;
|
|
2552
|
+
thumbnail_url?: string | null | undefined;
|
|
2553
|
+
thumbnail_width?: number | null | undefined;
|
|
2554
|
+
thumbnail_height?: number | null | undefined;
|
|
2555
|
+
html?: string | null | undefined;
|
|
2556
|
+
} & {
|
|
2557
|
+
__TYPE__: "EmbedContent";
|
|
2558
|
+
all: unknown;
|
|
2559
|
+
}) | {
|
|
2254
2560
|
type: "Color";
|
|
2255
2561
|
value: string;
|
|
2256
2562
|
__TYPE__: "FieldContent";
|
|
@@ -2454,7 +2760,25 @@ export declare const DocumentLegacy: {
|
|
|
2454
2760
|
direction?: string | null | undefined;
|
|
2455
2761
|
}) | ({
|
|
2456
2762
|
type: "embed";
|
|
2457
|
-
data:
|
|
2763
|
+
data: {
|
|
2764
|
+
embed_url: string;
|
|
2765
|
+
type: string;
|
|
2766
|
+
} & {
|
|
2767
|
+
version?: string | number | null;
|
|
2768
|
+
title?: string | null | undefined;
|
|
2769
|
+
author_name?: string | null | undefined;
|
|
2770
|
+
author_url?: string | null | undefined;
|
|
2771
|
+
provider_name?: string | null | undefined;
|
|
2772
|
+
provider_url?: string | null | undefined;
|
|
2773
|
+
cache_age?: string | number | null;
|
|
2774
|
+
thumbnail_url?: string | null | undefined;
|
|
2775
|
+
thumbnail_width?: number | null | undefined;
|
|
2776
|
+
thumbnail_height?: number | null | undefined;
|
|
2777
|
+
html?: string | null | undefined;
|
|
2778
|
+
} & {
|
|
2779
|
+
__TYPE__: "EmbedContent";
|
|
2780
|
+
all: unknown;
|
|
2781
|
+
};
|
|
2458
2782
|
} & {
|
|
2459
2783
|
label?: string | null | undefined;
|
|
2460
2784
|
direction?: string | null | undefined;
|
|
@@ -2484,7 +2808,25 @@ export declare const DocumentLegacy: {
|
|
|
2484
2808
|
value: [string, {
|
|
2485
2809
|
__TYPE__: "BooleanContent";
|
|
2486
2810
|
value: boolean;
|
|
2487
|
-
} |
|
|
2811
|
+
} | ({
|
|
2812
|
+
embed_url: string;
|
|
2813
|
+
type: string;
|
|
2814
|
+
} & {
|
|
2815
|
+
version?: string | number | null;
|
|
2816
|
+
title?: string | null | undefined;
|
|
2817
|
+
author_name?: string | null | undefined;
|
|
2818
|
+
author_url?: string | null | undefined;
|
|
2819
|
+
provider_name?: string | null | undefined;
|
|
2820
|
+
provider_url?: string | null | undefined;
|
|
2821
|
+
cache_age?: string | number | null;
|
|
2822
|
+
thumbnail_url?: string | null | undefined;
|
|
2823
|
+
thumbnail_width?: number | null | undefined;
|
|
2824
|
+
thumbnail_height?: number | null | undefined;
|
|
2825
|
+
html?: string | null | undefined;
|
|
2826
|
+
} & {
|
|
2827
|
+
__TYPE__: "EmbedContent";
|
|
2828
|
+
all: unknown;
|
|
2829
|
+
}) | {
|
|
2488
2830
|
type: "Color";
|
|
2489
2831
|
value: string;
|
|
2490
2832
|
__TYPE__: "FieldContent";
|
|
@@ -2688,7 +3030,25 @@ export declare const DocumentLegacy: {
|
|
|
2688
3030
|
direction?: string | null | undefined;
|
|
2689
3031
|
}) | ({
|
|
2690
3032
|
type: "embed";
|
|
2691
|
-
data:
|
|
3033
|
+
data: {
|
|
3034
|
+
embed_url: string;
|
|
3035
|
+
type: string;
|
|
3036
|
+
} & {
|
|
3037
|
+
version?: string | number | null;
|
|
3038
|
+
title?: string | null | undefined;
|
|
3039
|
+
author_name?: string | null | undefined;
|
|
3040
|
+
author_url?: string | null | undefined;
|
|
3041
|
+
provider_name?: string | null | undefined;
|
|
3042
|
+
provider_url?: string | null | undefined;
|
|
3043
|
+
cache_age?: string | number | null;
|
|
3044
|
+
thumbnail_url?: string | null | undefined;
|
|
3045
|
+
thumbnail_width?: number | null | undefined;
|
|
3046
|
+
thumbnail_height?: number | null | undefined;
|
|
3047
|
+
html?: string | null | undefined;
|
|
3048
|
+
} & {
|
|
3049
|
+
__TYPE__: "EmbedContent";
|
|
3050
|
+
all: unknown;
|
|
3051
|
+
};
|
|
2692
3052
|
} & {
|
|
2693
3053
|
label?: string | null | undefined;
|
|
2694
3054
|
direction?: string | null | undefined;
|
|
@@ -2722,7 +3082,25 @@ export declare const DocumentLegacy: {
|
|
|
2722
3082
|
widget: {
|
|
2723
3083
|
__TYPE__: "BooleanContent";
|
|
2724
3084
|
value: boolean;
|
|
2725
|
-
} |
|
|
3085
|
+
} | ({
|
|
3086
|
+
embed_url: string;
|
|
3087
|
+
type: string;
|
|
3088
|
+
} & {
|
|
3089
|
+
version?: string | number | null;
|
|
3090
|
+
title?: string | null | undefined;
|
|
3091
|
+
author_name?: string | null | undefined;
|
|
3092
|
+
author_url?: string | null | undefined;
|
|
3093
|
+
provider_name?: string | null | undefined;
|
|
3094
|
+
provider_url?: string | null | undefined;
|
|
3095
|
+
cache_age?: string | number | null;
|
|
3096
|
+
thumbnail_url?: string | null | undefined;
|
|
3097
|
+
thumbnail_width?: number | null | undefined;
|
|
3098
|
+
thumbnail_height?: number | null | undefined;
|
|
3099
|
+
html?: string | null | undefined;
|
|
3100
|
+
} & {
|
|
3101
|
+
__TYPE__: "EmbedContent";
|
|
3102
|
+
all: unknown;
|
|
3103
|
+
}) | {
|
|
2726
3104
|
type: "Color";
|
|
2727
3105
|
value: string;
|
|
2728
3106
|
__TYPE__: "FieldContent";
|
|
@@ -2926,7 +3304,25 @@ export declare const DocumentLegacy: {
|
|
|
2926
3304
|
direction?: string | null | undefined;
|
|
2927
3305
|
}) | ({
|
|
2928
3306
|
type: "embed";
|
|
2929
|
-
data:
|
|
3307
|
+
data: {
|
|
3308
|
+
embed_url: string;
|
|
3309
|
+
type: string;
|
|
3310
|
+
} & {
|
|
3311
|
+
version?: string | number | null;
|
|
3312
|
+
title?: string | null | undefined;
|
|
3313
|
+
author_name?: string | null | undefined;
|
|
3314
|
+
author_url?: string | null | undefined;
|
|
3315
|
+
provider_name?: string | null | undefined;
|
|
3316
|
+
provider_url?: string | null | undefined;
|
|
3317
|
+
cache_age?: string | number | null;
|
|
3318
|
+
thumbnail_url?: string | null | undefined;
|
|
3319
|
+
thumbnail_width?: number | null | undefined;
|
|
3320
|
+
thumbnail_height?: number | null | undefined;
|
|
3321
|
+
html?: string | null | undefined;
|
|
3322
|
+
} & {
|
|
3323
|
+
__TYPE__: "EmbedContent";
|
|
3324
|
+
all: unknown;
|
|
3325
|
+
};
|
|
2930
3326
|
} & {
|
|
2931
3327
|
label?: string | null | undefined;
|
|
2932
3328
|
direction?: string | null | undefined;
|
|
@@ -2956,7 +3352,25 @@ export declare const DocumentLegacy: {
|
|
|
2956
3352
|
value: [string, {
|
|
2957
3353
|
__TYPE__: "BooleanContent";
|
|
2958
3354
|
value: boolean;
|
|
2959
|
-
} |
|
|
3355
|
+
} | ({
|
|
3356
|
+
embed_url: string;
|
|
3357
|
+
type: string;
|
|
3358
|
+
} & {
|
|
3359
|
+
version?: string | number | null;
|
|
3360
|
+
title?: string | null | undefined;
|
|
3361
|
+
author_name?: string | null | undefined;
|
|
3362
|
+
author_url?: string | null | undefined;
|
|
3363
|
+
provider_name?: string | null | undefined;
|
|
3364
|
+
provider_url?: string | null | undefined;
|
|
3365
|
+
cache_age?: string | number | null;
|
|
3366
|
+
thumbnail_url?: string | null | undefined;
|
|
3367
|
+
thumbnail_width?: number | null | undefined;
|
|
3368
|
+
thumbnail_height?: number | null | undefined;
|
|
3369
|
+
html?: string | null | undefined;
|
|
3370
|
+
} & {
|
|
3371
|
+
__TYPE__: "EmbedContent";
|
|
3372
|
+
all: unknown;
|
|
3373
|
+
}) | {
|
|
2960
3374
|
type: "Color";
|
|
2961
3375
|
value: string;
|
|
2962
3376
|
__TYPE__: "FieldContent";
|
|
@@ -3160,7 +3574,25 @@ export declare const DocumentLegacy: {
|
|
|
3160
3574
|
direction?: string | null | undefined;
|
|
3161
3575
|
}) | ({
|
|
3162
3576
|
type: "embed";
|
|
3163
|
-
data:
|
|
3577
|
+
data: {
|
|
3578
|
+
embed_url: string;
|
|
3579
|
+
type: string;
|
|
3580
|
+
} & {
|
|
3581
|
+
version?: string | number | null;
|
|
3582
|
+
title?: string | null | undefined;
|
|
3583
|
+
author_name?: string | null | undefined;
|
|
3584
|
+
author_url?: string | null | undefined;
|
|
3585
|
+
provider_name?: string | null | undefined;
|
|
3586
|
+
provider_url?: string | null | undefined;
|
|
3587
|
+
cache_age?: string | number | null;
|
|
3588
|
+
thumbnail_url?: string | null | undefined;
|
|
3589
|
+
thumbnail_width?: number | null | undefined;
|
|
3590
|
+
thumbnail_height?: number | null | undefined;
|
|
3591
|
+
html?: string | null | undefined;
|
|
3592
|
+
} & {
|
|
3593
|
+
__TYPE__: "EmbedContent";
|
|
3594
|
+
all: unknown;
|
|
3595
|
+
};
|
|
3164
3596
|
} & {
|
|
3165
3597
|
label?: string | null | undefined;
|
|
3166
3598
|
direction?: string | null | undefined;
|
|
@@ -3191,7 +3623,25 @@ export declare const DocumentLegacy: {
|
|
|
3191
3623
|
[x: string]: {
|
|
3192
3624
|
__TYPE__: "BooleanContent";
|
|
3193
3625
|
value: boolean;
|
|
3194
|
-
} |
|
|
3626
|
+
} | ({
|
|
3627
|
+
embed_url: string;
|
|
3628
|
+
type: string;
|
|
3629
|
+
} & {
|
|
3630
|
+
version?: string | number | null;
|
|
3631
|
+
title?: string | null | undefined;
|
|
3632
|
+
author_name?: string | null | undefined;
|
|
3633
|
+
author_url?: string | null | undefined;
|
|
3634
|
+
provider_name?: string | null | undefined;
|
|
3635
|
+
provider_url?: string | null | undefined;
|
|
3636
|
+
cache_age?: string | number | null;
|
|
3637
|
+
thumbnail_url?: string | null | undefined;
|
|
3638
|
+
thumbnail_width?: number | null | undefined;
|
|
3639
|
+
thumbnail_height?: number | null | undefined;
|
|
3640
|
+
html?: string | null | undefined;
|
|
3641
|
+
} & {
|
|
3642
|
+
__TYPE__: "EmbedContent";
|
|
3643
|
+
all: unknown;
|
|
3644
|
+
}) | {
|
|
3195
3645
|
type: "Color";
|
|
3196
3646
|
value: string;
|
|
3197
3647
|
__TYPE__: "FieldContent";
|
|
@@ -3395,7 +3845,25 @@ export declare const DocumentLegacy: {
|
|
|
3395
3845
|
direction?: string | null | undefined;
|
|
3396
3846
|
}) | ({
|
|
3397
3847
|
type: "embed";
|
|
3398
|
-
data:
|
|
3848
|
+
data: {
|
|
3849
|
+
embed_url: string;
|
|
3850
|
+
type: string;
|
|
3851
|
+
} & {
|
|
3852
|
+
version?: string | number | null;
|
|
3853
|
+
title?: string | null | undefined;
|
|
3854
|
+
author_name?: string | null | undefined;
|
|
3855
|
+
author_url?: string | null | undefined;
|
|
3856
|
+
provider_name?: string | null | undefined;
|
|
3857
|
+
provider_url?: string | null | undefined;
|
|
3858
|
+
cache_age?: string | number | null;
|
|
3859
|
+
thumbnail_url?: string | null | undefined;
|
|
3860
|
+
thumbnail_width?: number | null | undefined;
|
|
3861
|
+
thumbnail_height?: number | null | undefined;
|
|
3862
|
+
html?: string | null | undefined;
|
|
3863
|
+
} & {
|
|
3864
|
+
__TYPE__: "EmbedContent";
|
|
3865
|
+
all: unknown;
|
|
3866
|
+
};
|
|
3399
3867
|
} & {
|
|
3400
3868
|
label?: string | null | undefined;
|
|
3401
3869
|
direction?: string | null | undefined;
|
|
@@ -3425,7 +3893,25 @@ export declare const DocumentLegacy: {
|
|
|
3425
3893
|
value: [string, {
|
|
3426
3894
|
__TYPE__: "BooleanContent";
|
|
3427
3895
|
value: boolean;
|
|
3428
|
-
} |
|
|
3896
|
+
} | ({
|
|
3897
|
+
embed_url: string;
|
|
3898
|
+
type: string;
|
|
3899
|
+
} & {
|
|
3900
|
+
version?: string | number | null;
|
|
3901
|
+
title?: string | null | undefined;
|
|
3902
|
+
author_name?: string | null | undefined;
|
|
3903
|
+
author_url?: string | null | undefined;
|
|
3904
|
+
provider_name?: string | null | undefined;
|
|
3905
|
+
provider_url?: string | null | undefined;
|
|
3906
|
+
cache_age?: string | number | null;
|
|
3907
|
+
thumbnail_url?: string | null | undefined;
|
|
3908
|
+
thumbnail_width?: number | null | undefined;
|
|
3909
|
+
thumbnail_height?: number | null | undefined;
|
|
3910
|
+
html?: string | null | undefined;
|
|
3911
|
+
} & {
|
|
3912
|
+
__TYPE__: "EmbedContent";
|
|
3913
|
+
all: unknown;
|
|
3914
|
+
}) | {
|
|
3429
3915
|
type: "Color";
|
|
3430
3916
|
value: string;
|
|
3431
3917
|
__TYPE__: "FieldContent";
|
|
@@ -3629,7 +4115,25 @@ export declare const DocumentLegacy: {
|
|
|
3629
4115
|
direction?: string | null | undefined;
|
|
3630
4116
|
}) | ({
|
|
3631
4117
|
type: "embed";
|
|
3632
|
-
data:
|
|
4118
|
+
data: {
|
|
4119
|
+
embed_url: string;
|
|
4120
|
+
type: string;
|
|
4121
|
+
} & {
|
|
4122
|
+
version?: string | number | null;
|
|
4123
|
+
title?: string | null | undefined;
|
|
4124
|
+
author_name?: string | null | undefined;
|
|
4125
|
+
author_url?: string | null | undefined;
|
|
4126
|
+
provider_name?: string | null | undefined;
|
|
4127
|
+
provider_url?: string | null | undefined;
|
|
4128
|
+
cache_age?: string | number | null;
|
|
4129
|
+
thumbnail_url?: string | null | undefined;
|
|
4130
|
+
thumbnail_width?: number | null | undefined;
|
|
4131
|
+
thumbnail_height?: number | null | undefined;
|
|
4132
|
+
html?: string | null | undefined;
|
|
4133
|
+
} & {
|
|
4134
|
+
__TYPE__: "EmbedContent";
|
|
4135
|
+
all: unknown;
|
|
4136
|
+
};
|
|
3633
4137
|
} & {
|
|
3634
4138
|
label?: string | null | undefined;
|
|
3635
4139
|
direction?: string | null | undefined;
|
|
@@ -3661,7 +4165,25 @@ export declare const DocumentLegacy: {
|
|
|
3661
4165
|
[x: string]: {
|
|
3662
4166
|
__TYPE__: "BooleanContent";
|
|
3663
4167
|
value: boolean;
|
|
3664
|
-
} |
|
|
4168
|
+
} | ({
|
|
4169
|
+
embed_url: string;
|
|
4170
|
+
type: string;
|
|
4171
|
+
} & {
|
|
4172
|
+
version?: string | number | null;
|
|
4173
|
+
title?: string | null | undefined;
|
|
4174
|
+
author_name?: string | null | undefined;
|
|
4175
|
+
author_url?: string | null | undefined;
|
|
4176
|
+
provider_name?: string | null | undefined;
|
|
4177
|
+
provider_url?: string | null | undefined;
|
|
4178
|
+
cache_age?: string | number | null;
|
|
4179
|
+
thumbnail_url?: string | null | undefined;
|
|
4180
|
+
thumbnail_width?: number | null | undefined;
|
|
4181
|
+
thumbnail_height?: number | null | undefined;
|
|
4182
|
+
html?: string | null | undefined;
|
|
4183
|
+
} & {
|
|
4184
|
+
__TYPE__: "EmbedContent";
|
|
4185
|
+
all: unknown;
|
|
4186
|
+
}) | {
|
|
3665
4187
|
type: "Color";
|
|
3666
4188
|
value: string;
|
|
3667
4189
|
__TYPE__: "FieldContent";
|
|
@@ -3865,7 +4387,25 @@ export declare const DocumentLegacy: {
|
|
|
3865
4387
|
direction?: string | null | undefined;
|
|
3866
4388
|
}) | ({
|
|
3867
4389
|
type: "embed";
|
|
3868
|
-
data:
|
|
4390
|
+
data: {
|
|
4391
|
+
embed_url: string;
|
|
4392
|
+
type: string;
|
|
4393
|
+
} & {
|
|
4394
|
+
version?: string | number | null;
|
|
4395
|
+
title?: string | null | undefined;
|
|
4396
|
+
author_name?: string | null | undefined;
|
|
4397
|
+
author_url?: string | null | undefined;
|
|
4398
|
+
provider_name?: string | null | undefined;
|
|
4399
|
+
provider_url?: string | null | undefined;
|
|
4400
|
+
cache_age?: string | number | null;
|
|
4401
|
+
thumbnail_url?: string | null | undefined;
|
|
4402
|
+
thumbnail_width?: number | null | undefined;
|
|
4403
|
+
thumbnail_height?: number | null | undefined;
|
|
4404
|
+
html?: string | null | undefined;
|
|
4405
|
+
} & {
|
|
4406
|
+
__TYPE__: "EmbedContent";
|
|
4407
|
+
all: unknown;
|
|
4408
|
+
};
|
|
3869
4409
|
} & {
|
|
3870
4410
|
label?: string | null | undefined;
|
|
3871
4411
|
direction?: string | null | undefined;
|
|
@@ -3895,7 +4435,25 @@ export declare const DocumentLegacy: {
|
|
|
3895
4435
|
value: [string, {
|
|
3896
4436
|
__TYPE__: "BooleanContent";
|
|
3897
4437
|
value: boolean;
|
|
3898
|
-
} |
|
|
4438
|
+
} | ({
|
|
4439
|
+
embed_url: string;
|
|
4440
|
+
type: string;
|
|
4441
|
+
} & {
|
|
4442
|
+
version?: string | number | null;
|
|
4443
|
+
title?: string | null | undefined;
|
|
4444
|
+
author_name?: string | null | undefined;
|
|
4445
|
+
author_url?: string | null | undefined;
|
|
4446
|
+
provider_name?: string | null | undefined;
|
|
4447
|
+
provider_url?: string | null | undefined;
|
|
4448
|
+
cache_age?: string | number | null;
|
|
4449
|
+
thumbnail_url?: string | null | undefined;
|
|
4450
|
+
thumbnail_width?: number | null | undefined;
|
|
4451
|
+
thumbnail_height?: number | null | undefined;
|
|
4452
|
+
html?: string | null | undefined;
|
|
4453
|
+
} & {
|
|
4454
|
+
__TYPE__: "EmbedContent";
|
|
4455
|
+
all: unknown;
|
|
4456
|
+
}) | {
|
|
3899
4457
|
type: "Color";
|
|
3900
4458
|
value: string;
|
|
3901
4459
|
__TYPE__: "FieldContent";
|
|
@@ -4099,7 +4657,25 @@ export declare const DocumentLegacy: {
|
|
|
4099
4657
|
direction?: string | null | undefined;
|
|
4100
4658
|
}) | ({
|
|
4101
4659
|
type: "embed";
|
|
4102
|
-
data:
|
|
4660
|
+
data: {
|
|
4661
|
+
embed_url: string;
|
|
4662
|
+
type: string;
|
|
4663
|
+
} & {
|
|
4664
|
+
version?: string | number | null;
|
|
4665
|
+
title?: string | null | undefined;
|
|
4666
|
+
author_name?: string | null | undefined;
|
|
4667
|
+
author_url?: string | null | undefined;
|
|
4668
|
+
provider_name?: string | null | undefined;
|
|
4669
|
+
provider_url?: string | null | undefined;
|
|
4670
|
+
cache_age?: string | number | null;
|
|
4671
|
+
thumbnail_url?: string | null | undefined;
|
|
4672
|
+
thumbnail_width?: number | null | undefined;
|
|
4673
|
+
thumbnail_height?: number | null | undefined;
|
|
4674
|
+
html?: string | null | undefined;
|
|
4675
|
+
} & {
|
|
4676
|
+
__TYPE__: "EmbedContent";
|
|
4677
|
+
all: unknown;
|
|
4678
|
+
};
|
|
4103
4679
|
} & {
|
|
4104
4680
|
label?: string | null | undefined;
|
|
4105
4681
|
direction?: string | null | undefined;
|