@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
|
@@ -10,7 +10,25 @@ 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.
|
|
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
|
+
all: t.UnknownC;
|
|
31
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
14
32
|
type: t.LiteralC<"Text">;
|
|
15
33
|
value: t.Type<string, string, unknown>;
|
|
16
34
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -249,7 +267,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
249
267
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
250
268
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
251
269
|
type: t.LiteralC<"embed">;
|
|
252
|
-
data: t.
|
|
270
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
271
|
+
embed_url: t.StringC;
|
|
272
|
+
type: t.StringC;
|
|
273
|
+
}>, t.PartialC<{
|
|
274
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
275
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
276
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
277
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
278
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
279
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
280
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
281
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
282
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
283
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
284
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
285
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
286
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
287
|
+
all: t.UnknownC;
|
|
288
|
+
}>>]>;
|
|
253
289
|
}>, t.PartialC<{
|
|
254
290
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
255
291
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -286,7 +322,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
286
322
|
}>>, t.ExactC<t.TypeC<{
|
|
287
323
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
288
324
|
value: t.BooleanC;
|
|
289
|
-
}>>, t.
|
|
325
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
326
|
+
embed_url: t.StringC;
|
|
327
|
+
type: t.StringC;
|
|
328
|
+
}>, t.PartialC<{
|
|
329
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
330
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
331
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
332
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
333
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
334
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
335
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
336
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
337
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
338
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
339
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
340
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
341
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
342
|
+
all: t.UnknownC;
|
|
343
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
290
344
|
type: t.LiteralC<"Text">;
|
|
291
345
|
value: t.Type<string, string, unknown>;
|
|
292
346
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -525,7 +579,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
525
579
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
526
580
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
527
581
|
type: t.LiteralC<"embed">;
|
|
528
|
-
data: t.
|
|
582
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
583
|
+
embed_url: t.StringC;
|
|
584
|
+
type: t.StringC;
|
|
585
|
+
}>, t.PartialC<{
|
|
586
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
587
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
588
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
589
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
590
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
591
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
592
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
593
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
594
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
595
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
596
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
597
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
598
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
599
|
+
all: t.UnknownC;
|
|
600
|
+
}>>]>;
|
|
529
601
|
}>, t.PartialC<{
|
|
530
602
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
531
603
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -571,7 +643,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
571
643
|
}>>, t.ExactC<t.TypeC<{
|
|
572
644
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
573
645
|
value: t.BooleanC;
|
|
574
|
-
}>>, t.
|
|
646
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
647
|
+
embed_url: t.StringC;
|
|
648
|
+
type: t.StringC;
|
|
649
|
+
}>, t.PartialC<{
|
|
650
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
651
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
652
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
653
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
654
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
655
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
656
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
657
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
658
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
659
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
660
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
661
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
662
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
663
|
+
all: t.UnknownC;
|
|
664
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
575
665
|
type: t.LiteralC<"Text">;
|
|
576
666
|
value: t.Type<string, string, unknown>;
|
|
577
667
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -810,7 +900,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
810
900
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
811
901
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
812
902
|
type: t.LiteralC<"embed">;
|
|
813
|
-
data: t.
|
|
903
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
904
|
+
embed_url: t.StringC;
|
|
905
|
+
type: t.StringC;
|
|
906
|
+
}>, t.PartialC<{
|
|
907
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
908
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
909
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
910
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
911
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
912
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
913
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
914
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
915
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
916
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
917
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
918
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
919
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
920
|
+
all: t.UnknownC;
|
|
921
|
+
}>>]>;
|
|
814
922
|
}>, t.PartialC<{
|
|
815
923
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
816
924
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -848,7 +956,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
848
956
|
}>>, t.ExactC<t.TypeC<{
|
|
849
957
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
850
958
|
value: t.BooleanC;
|
|
851
|
-
}>>, t.
|
|
959
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
960
|
+
embed_url: t.StringC;
|
|
961
|
+
type: t.StringC;
|
|
962
|
+
}>, t.PartialC<{
|
|
963
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
964
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
965
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
966
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
967
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
968
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
969
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
970
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
971
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
972
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
973
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
974
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
975
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
976
|
+
all: t.UnknownC;
|
|
977
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
852
978
|
type: t.LiteralC<"Text">;
|
|
853
979
|
value: t.Type<string, string, unknown>;
|
|
854
980
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1087,7 +1213,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1087
1213
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1088
1214
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1089
1215
|
type: t.LiteralC<"embed">;
|
|
1090
|
-
data: t.
|
|
1216
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1217
|
+
embed_url: t.StringC;
|
|
1218
|
+
type: t.StringC;
|
|
1219
|
+
}>, t.PartialC<{
|
|
1220
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1221
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1222
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1223
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1224
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1225
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1226
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1227
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1228
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1229
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1230
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1231
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1232
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1233
|
+
all: t.UnknownC;
|
|
1234
|
+
}>>]>;
|
|
1091
1235
|
}>, t.PartialC<{
|
|
1092
1236
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1093
1237
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1127,7 +1271,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1127
1271
|
}>>, t.ExactC<t.TypeC<{
|
|
1128
1272
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1129
1273
|
value: t.BooleanC;
|
|
1130
|
-
}>>, t.
|
|
1274
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1275
|
+
embed_url: t.StringC;
|
|
1276
|
+
type: t.StringC;
|
|
1277
|
+
}>, t.PartialC<{
|
|
1278
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1279
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1280
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1281
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1282
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1283
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1284
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1285
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1286
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1287
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1288
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1289
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1290
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1291
|
+
all: t.UnknownC;
|
|
1292
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1131
1293
|
type: t.LiteralC<"Text">;
|
|
1132
1294
|
value: t.Type<string, string, unknown>;
|
|
1133
1295
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1366,7 +1528,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1366
1528
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1367
1529
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1368
1530
|
type: t.LiteralC<"embed">;
|
|
1369
|
-
data: t.
|
|
1531
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1532
|
+
embed_url: t.StringC;
|
|
1533
|
+
type: t.StringC;
|
|
1534
|
+
}>, t.PartialC<{
|
|
1535
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1536
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1537
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1538
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1539
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1540
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1541
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1542
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1543
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1544
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1545
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1546
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1547
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1548
|
+
all: t.UnknownC;
|
|
1549
|
+
}>>]>;
|
|
1370
1550
|
}>, t.PartialC<{
|
|
1371
1551
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1372
1552
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1404,7 +1584,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1404
1584
|
}>>, t.ExactC<t.TypeC<{
|
|
1405
1585
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1406
1586
|
value: t.BooleanC;
|
|
1407
|
-
}>>, t.
|
|
1587
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1588
|
+
embed_url: t.StringC;
|
|
1589
|
+
type: t.StringC;
|
|
1590
|
+
}>, t.PartialC<{
|
|
1591
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1592
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1593
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1594
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1595
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1596
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1597
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1598
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1599
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1600
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1601
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1602
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1603
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1604
|
+
all: t.UnknownC;
|
|
1605
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1408
1606
|
type: t.LiteralC<"Text">;
|
|
1409
1607
|
value: t.Type<string, string, unknown>;
|
|
1410
1608
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1643,7 +1841,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1643
1841
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1644
1842
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1645
1843
|
type: t.LiteralC<"embed">;
|
|
1646
|
-
data: t.
|
|
1844
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1845
|
+
embed_url: t.StringC;
|
|
1846
|
+
type: t.StringC;
|
|
1847
|
+
}>, t.PartialC<{
|
|
1848
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1849
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1850
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1851
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1852
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1853
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1854
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1855
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1856
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1857
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1858
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1859
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1860
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1861
|
+
all: t.UnknownC;
|
|
1862
|
+
}>>]>;
|
|
1647
1863
|
}>, t.PartialC<{
|
|
1648
1864
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1649
1865
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1680,7 +1896,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1680
1896
|
}>>, t.ExactC<t.TypeC<{
|
|
1681
1897
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1682
1898
|
value: t.BooleanC;
|
|
1683
|
-
}>>, t.
|
|
1899
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1900
|
+
embed_url: t.StringC;
|
|
1901
|
+
type: t.StringC;
|
|
1902
|
+
}>, t.PartialC<{
|
|
1903
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1904
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1905
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1906
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1907
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1908
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1909
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1910
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1911
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1912
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1913
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1914
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1915
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1916
|
+
all: t.UnknownC;
|
|
1917
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1684
1918
|
type: t.LiteralC<"Text">;
|
|
1685
1919
|
value: t.Type<string, string, unknown>;
|
|
1686
1920
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1919,7 +2153,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1919
2153
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1920
2154
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1921
2155
|
type: t.LiteralC<"embed">;
|
|
1922
|
-
data: t.
|
|
2156
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2157
|
+
embed_url: t.StringC;
|
|
2158
|
+
type: t.StringC;
|
|
2159
|
+
}>, t.PartialC<{
|
|
2160
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2161
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2162
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2163
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2164
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2165
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2166
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2167
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2168
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2169
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2170
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2171
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2172
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2173
|
+
all: t.UnknownC;
|
|
2174
|
+
}>>]>;
|
|
1923
2175
|
}>, t.PartialC<{
|
|
1924
2176
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1925
2177
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1958,7 +2210,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1958
2210
|
}>>, t.ExactC<t.TypeC<{
|
|
1959
2211
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1960
2212
|
value: t.BooleanC;
|
|
1961
|
-
}>>, t.
|
|
2213
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2214
|
+
embed_url: t.StringC;
|
|
2215
|
+
type: t.StringC;
|
|
2216
|
+
}>, t.PartialC<{
|
|
2217
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2218
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2219
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2220
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2221
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2222
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2223
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2224
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2225
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2226
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2227
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2228
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2229
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2230
|
+
all: t.UnknownC;
|
|
2231
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1962
2232
|
type: t.LiteralC<"Text">;
|
|
1963
2233
|
value: t.Type<string, string, unknown>;
|
|
1964
2234
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -2197,7 +2467,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2197
2467
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2198
2468
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2199
2469
|
type: t.LiteralC<"embed">;
|
|
2200
|
-
data: t.
|
|
2470
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2471
|
+
embed_url: t.StringC;
|
|
2472
|
+
type: t.StringC;
|
|
2473
|
+
}>, t.PartialC<{
|
|
2474
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2475
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2476
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2477
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2478
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2479
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2480
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2481
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2482
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2483
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2484
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2485
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2486
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2487
|
+
all: t.UnknownC;
|
|
2488
|
+
}>>]>;
|
|
2201
2489
|
}>, t.PartialC<{
|
|
2202
2490
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2203
2491
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -2234,7 +2522,25 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2234
2522
|
export declare const isWidgetContent: (u: unknown) => u is {
|
|
2235
2523
|
__TYPE__: "BooleanContent";
|
|
2236
2524
|
value: boolean;
|
|
2237
|
-
} |
|
|
2525
|
+
} | ({
|
|
2526
|
+
embed_url: string;
|
|
2527
|
+
type: string;
|
|
2528
|
+
} & {
|
|
2529
|
+
version?: string | number | null;
|
|
2530
|
+
title?: string | null | undefined;
|
|
2531
|
+
author_name?: string | null | undefined;
|
|
2532
|
+
author_url?: string | null | undefined;
|
|
2533
|
+
provider_name?: string | null | undefined;
|
|
2534
|
+
provider_url?: string | null | undefined;
|
|
2535
|
+
cache_age?: string | number | null;
|
|
2536
|
+
thumbnail_url?: string | null | undefined;
|
|
2537
|
+
thumbnail_width?: number | null | undefined;
|
|
2538
|
+
thumbnail_height?: number | null | undefined;
|
|
2539
|
+
html?: string | null | undefined;
|
|
2540
|
+
} & {
|
|
2541
|
+
__TYPE__: "EmbedContent";
|
|
2542
|
+
all: unknown;
|
|
2543
|
+
}) | {
|
|
2238
2544
|
type: "Color";
|
|
2239
2545
|
value: string;
|
|
2240
2546
|
__TYPE__: "FieldContent";
|
|
@@ -2438,7 +2744,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
2438
2744
|
direction?: string | null | undefined;
|
|
2439
2745
|
}) | ({
|
|
2440
2746
|
type: "embed";
|
|
2441
|
-
data:
|
|
2747
|
+
data: {
|
|
2748
|
+
embed_url: string;
|
|
2749
|
+
type: string;
|
|
2750
|
+
} & {
|
|
2751
|
+
version?: string | number | null;
|
|
2752
|
+
title?: string | null | undefined;
|
|
2753
|
+
author_name?: string | null | undefined;
|
|
2754
|
+
author_url?: string | null | undefined;
|
|
2755
|
+
provider_name?: string | null | undefined;
|
|
2756
|
+
provider_url?: string | null | undefined;
|
|
2757
|
+
cache_age?: string | number | null;
|
|
2758
|
+
thumbnail_url?: string | null | undefined;
|
|
2759
|
+
thumbnail_width?: number | null | undefined;
|
|
2760
|
+
thumbnail_height?: number | null | undefined;
|
|
2761
|
+
html?: string | null | undefined;
|
|
2762
|
+
} & {
|
|
2763
|
+
__TYPE__: "EmbedContent";
|
|
2764
|
+
all: unknown;
|
|
2765
|
+
};
|
|
2442
2766
|
} & {
|
|
2443
2767
|
label?: string | null | undefined;
|
|
2444
2768
|
direction?: string | null | undefined;
|
|
@@ -2468,7 +2792,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
2468
2792
|
value: [string, {
|
|
2469
2793
|
__TYPE__: "BooleanContent";
|
|
2470
2794
|
value: boolean;
|
|
2471
|
-
} |
|
|
2795
|
+
} | ({
|
|
2796
|
+
embed_url: string;
|
|
2797
|
+
type: string;
|
|
2798
|
+
} & {
|
|
2799
|
+
version?: string | number | null;
|
|
2800
|
+
title?: string | null | undefined;
|
|
2801
|
+
author_name?: string | null | undefined;
|
|
2802
|
+
author_url?: string | null | undefined;
|
|
2803
|
+
provider_name?: string | null | undefined;
|
|
2804
|
+
provider_url?: string | null | undefined;
|
|
2805
|
+
cache_age?: string | number | null;
|
|
2806
|
+
thumbnail_url?: string | null | undefined;
|
|
2807
|
+
thumbnail_width?: number | null | undefined;
|
|
2808
|
+
thumbnail_height?: number | null | undefined;
|
|
2809
|
+
html?: string | null | undefined;
|
|
2810
|
+
} & {
|
|
2811
|
+
__TYPE__: "EmbedContent";
|
|
2812
|
+
all: unknown;
|
|
2813
|
+
}) | {
|
|
2472
2814
|
type: "Color";
|
|
2473
2815
|
value: string;
|
|
2474
2816
|
__TYPE__: "FieldContent";
|
|
@@ -2672,7 +3014,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
2672
3014
|
direction?: string | null | undefined;
|
|
2673
3015
|
}) | ({
|
|
2674
3016
|
type: "embed";
|
|
2675
|
-
data:
|
|
3017
|
+
data: {
|
|
3018
|
+
embed_url: string;
|
|
3019
|
+
type: string;
|
|
3020
|
+
} & {
|
|
3021
|
+
version?: string | number | null;
|
|
3022
|
+
title?: string | null | undefined;
|
|
3023
|
+
author_name?: string | null | undefined;
|
|
3024
|
+
author_url?: string | null | undefined;
|
|
3025
|
+
provider_name?: string | null | undefined;
|
|
3026
|
+
provider_url?: string | null | undefined;
|
|
3027
|
+
cache_age?: string | number | null;
|
|
3028
|
+
thumbnail_url?: string | null | undefined;
|
|
3029
|
+
thumbnail_width?: number | null | undefined;
|
|
3030
|
+
thumbnail_height?: number | null | undefined;
|
|
3031
|
+
html?: string | null | undefined;
|
|
3032
|
+
} & {
|
|
3033
|
+
__TYPE__: "EmbedContent";
|
|
3034
|
+
all: unknown;
|
|
3035
|
+
};
|
|
2676
3036
|
} & {
|
|
2677
3037
|
label?: string | null | undefined;
|
|
2678
3038
|
direction?: string | null | undefined;
|
|
@@ -2706,7 +3066,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
2706
3066
|
widget: {
|
|
2707
3067
|
__TYPE__: "BooleanContent";
|
|
2708
3068
|
value: boolean;
|
|
2709
|
-
} |
|
|
3069
|
+
} | ({
|
|
3070
|
+
embed_url: string;
|
|
3071
|
+
type: string;
|
|
3072
|
+
} & {
|
|
3073
|
+
version?: string | number | null;
|
|
3074
|
+
title?: string | null | undefined;
|
|
3075
|
+
author_name?: string | null | undefined;
|
|
3076
|
+
author_url?: string | null | undefined;
|
|
3077
|
+
provider_name?: string | null | undefined;
|
|
3078
|
+
provider_url?: string | null | undefined;
|
|
3079
|
+
cache_age?: string | number | null;
|
|
3080
|
+
thumbnail_url?: string | null | undefined;
|
|
3081
|
+
thumbnail_width?: number | null | undefined;
|
|
3082
|
+
thumbnail_height?: number | null | undefined;
|
|
3083
|
+
html?: string | null | undefined;
|
|
3084
|
+
} & {
|
|
3085
|
+
__TYPE__: "EmbedContent";
|
|
3086
|
+
all: unknown;
|
|
3087
|
+
}) | {
|
|
2710
3088
|
type: "Color";
|
|
2711
3089
|
value: string;
|
|
2712
3090
|
__TYPE__: "FieldContent";
|
|
@@ -2910,7 +3288,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
2910
3288
|
direction?: string | null | undefined;
|
|
2911
3289
|
}) | ({
|
|
2912
3290
|
type: "embed";
|
|
2913
|
-
data:
|
|
3291
|
+
data: {
|
|
3292
|
+
embed_url: string;
|
|
3293
|
+
type: string;
|
|
3294
|
+
} & {
|
|
3295
|
+
version?: string | number | null;
|
|
3296
|
+
title?: string | null | undefined;
|
|
3297
|
+
author_name?: string | null | undefined;
|
|
3298
|
+
author_url?: string | null | undefined;
|
|
3299
|
+
provider_name?: string | null | undefined;
|
|
3300
|
+
provider_url?: string | null | undefined;
|
|
3301
|
+
cache_age?: string | number | null;
|
|
3302
|
+
thumbnail_url?: string | null | undefined;
|
|
3303
|
+
thumbnail_width?: number | null | undefined;
|
|
3304
|
+
thumbnail_height?: number | null | undefined;
|
|
3305
|
+
html?: string | null | undefined;
|
|
3306
|
+
} & {
|
|
3307
|
+
__TYPE__: "EmbedContent";
|
|
3308
|
+
all: unknown;
|
|
3309
|
+
};
|
|
2914
3310
|
} & {
|
|
2915
3311
|
label?: string | null | undefined;
|
|
2916
3312
|
direction?: string | null | undefined;
|
|
@@ -2940,7 +3336,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
2940
3336
|
value: [string, {
|
|
2941
3337
|
__TYPE__: "BooleanContent";
|
|
2942
3338
|
value: boolean;
|
|
2943
|
-
} |
|
|
3339
|
+
} | ({
|
|
3340
|
+
embed_url: string;
|
|
3341
|
+
type: string;
|
|
3342
|
+
} & {
|
|
3343
|
+
version?: string | number | null;
|
|
3344
|
+
title?: string | null | undefined;
|
|
3345
|
+
author_name?: string | null | undefined;
|
|
3346
|
+
author_url?: string | null | undefined;
|
|
3347
|
+
provider_name?: string | null | undefined;
|
|
3348
|
+
provider_url?: string | null | undefined;
|
|
3349
|
+
cache_age?: string | number | null;
|
|
3350
|
+
thumbnail_url?: string | null | undefined;
|
|
3351
|
+
thumbnail_width?: number | null | undefined;
|
|
3352
|
+
thumbnail_height?: number | null | undefined;
|
|
3353
|
+
html?: string | null | undefined;
|
|
3354
|
+
} & {
|
|
3355
|
+
__TYPE__: "EmbedContent";
|
|
3356
|
+
all: unknown;
|
|
3357
|
+
}) | {
|
|
2944
3358
|
type: "Color";
|
|
2945
3359
|
value: string;
|
|
2946
3360
|
__TYPE__: "FieldContent";
|
|
@@ -3144,7 +3558,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3144
3558
|
direction?: string | null | undefined;
|
|
3145
3559
|
}) | ({
|
|
3146
3560
|
type: "embed";
|
|
3147
|
-
data:
|
|
3561
|
+
data: {
|
|
3562
|
+
embed_url: string;
|
|
3563
|
+
type: string;
|
|
3564
|
+
} & {
|
|
3565
|
+
version?: string | number | null;
|
|
3566
|
+
title?: string | null | undefined;
|
|
3567
|
+
author_name?: string | null | undefined;
|
|
3568
|
+
author_url?: string | null | undefined;
|
|
3569
|
+
provider_name?: string | null | undefined;
|
|
3570
|
+
provider_url?: string | null | undefined;
|
|
3571
|
+
cache_age?: string | number | null;
|
|
3572
|
+
thumbnail_url?: string | null | undefined;
|
|
3573
|
+
thumbnail_width?: number | null | undefined;
|
|
3574
|
+
thumbnail_height?: number | null | undefined;
|
|
3575
|
+
html?: string | null | undefined;
|
|
3576
|
+
} & {
|
|
3577
|
+
__TYPE__: "EmbedContent";
|
|
3578
|
+
all: unknown;
|
|
3579
|
+
};
|
|
3148
3580
|
} & {
|
|
3149
3581
|
label?: string | null | undefined;
|
|
3150
3582
|
direction?: string | null | undefined;
|
|
@@ -3175,7 +3607,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3175
3607
|
[x: string]: {
|
|
3176
3608
|
__TYPE__: "BooleanContent";
|
|
3177
3609
|
value: boolean;
|
|
3178
|
-
} |
|
|
3610
|
+
} | ({
|
|
3611
|
+
embed_url: string;
|
|
3612
|
+
type: string;
|
|
3613
|
+
} & {
|
|
3614
|
+
version?: string | number | null;
|
|
3615
|
+
title?: string | null | undefined;
|
|
3616
|
+
author_name?: string | null | undefined;
|
|
3617
|
+
author_url?: string | null | undefined;
|
|
3618
|
+
provider_name?: string | null | undefined;
|
|
3619
|
+
provider_url?: string | null | undefined;
|
|
3620
|
+
cache_age?: string | number | null;
|
|
3621
|
+
thumbnail_url?: string | null | undefined;
|
|
3622
|
+
thumbnail_width?: number | null | undefined;
|
|
3623
|
+
thumbnail_height?: number | null | undefined;
|
|
3624
|
+
html?: string | null | undefined;
|
|
3625
|
+
} & {
|
|
3626
|
+
__TYPE__: "EmbedContent";
|
|
3627
|
+
all: unknown;
|
|
3628
|
+
}) | {
|
|
3179
3629
|
type: "Color";
|
|
3180
3630
|
value: string;
|
|
3181
3631
|
__TYPE__: "FieldContent";
|
|
@@ -3379,7 +3829,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3379
3829
|
direction?: string | null | undefined;
|
|
3380
3830
|
}) | ({
|
|
3381
3831
|
type: "embed";
|
|
3382
|
-
data:
|
|
3832
|
+
data: {
|
|
3833
|
+
embed_url: string;
|
|
3834
|
+
type: string;
|
|
3835
|
+
} & {
|
|
3836
|
+
version?: string | number | null;
|
|
3837
|
+
title?: string | null | undefined;
|
|
3838
|
+
author_name?: string | null | undefined;
|
|
3839
|
+
author_url?: string | null | undefined;
|
|
3840
|
+
provider_name?: string | null | undefined;
|
|
3841
|
+
provider_url?: string | null | undefined;
|
|
3842
|
+
cache_age?: string | number | null;
|
|
3843
|
+
thumbnail_url?: string | null | undefined;
|
|
3844
|
+
thumbnail_width?: number | null | undefined;
|
|
3845
|
+
thumbnail_height?: number | null | undefined;
|
|
3846
|
+
html?: string | null | undefined;
|
|
3847
|
+
} & {
|
|
3848
|
+
__TYPE__: "EmbedContent";
|
|
3849
|
+
all: unknown;
|
|
3850
|
+
};
|
|
3383
3851
|
} & {
|
|
3384
3852
|
label?: string | null | undefined;
|
|
3385
3853
|
direction?: string | null | undefined;
|
|
@@ -3409,7 +3877,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3409
3877
|
value: [string, {
|
|
3410
3878
|
__TYPE__: "BooleanContent";
|
|
3411
3879
|
value: boolean;
|
|
3412
|
-
} |
|
|
3880
|
+
} | ({
|
|
3881
|
+
embed_url: string;
|
|
3882
|
+
type: string;
|
|
3883
|
+
} & {
|
|
3884
|
+
version?: string | number | null;
|
|
3885
|
+
title?: string | null | undefined;
|
|
3886
|
+
author_name?: string | null | undefined;
|
|
3887
|
+
author_url?: string | null | undefined;
|
|
3888
|
+
provider_name?: string | null | undefined;
|
|
3889
|
+
provider_url?: string | null | undefined;
|
|
3890
|
+
cache_age?: string | number | null;
|
|
3891
|
+
thumbnail_url?: string | null | undefined;
|
|
3892
|
+
thumbnail_width?: number | null | undefined;
|
|
3893
|
+
thumbnail_height?: number | null | undefined;
|
|
3894
|
+
html?: string | null | undefined;
|
|
3895
|
+
} & {
|
|
3896
|
+
__TYPE__: "EmbedContent";
|
|
3897
|
+
all: unknown;
|
|
3898
|
+
}) | {
|
|
3413
3899
|
type: "Color";
|
|
3414
3900
|
value: string;
|
|
3415
3901
|
__TYPE__: "FieldContent";
|
|
@@ -3613,7 +4099,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3613
4099
|
direction?: string | null | undefined;
|
|
3614
4100
|
}) | ({
|
|
3615
4101
|
type: "embed";
|
|
3616
|
-
data:
|
|
4102
|
+
data: {
|
|
4103
|
+
embed_url: string;
|
|
4104
|
+
type: string;
|
|
4105
|
+
} & {
|
|
4106
|
+
version?: string | number | null;
|
|
4107
|
+
title?: string | null | undefined;
|
|
4108
|
+
author_name?: string | null | undefined;
|
|
4109
|
+
author_url?: string | null | undefined;
|
|
4110
|
+
provider_name?: string | null | undefined;
|
|
4111
|
+
provider_url?: string | null | undefined;
|
|
4112
|
+
cache_age?: string | number | null;
|
|
4113
|
+
thumbnail_url?: string | null | undefined;
|
|
4114
|
+
thumbnail_width?: number | null | undefined;
|
|
4115
|
+
thumbnail_height?: number | null | undefined;
|
|
4116
|
+
html?: string | null | undefined;
|
|
4117
|
+
} & {
|
|
4118
|
+
__TYPE__: "EmbedContent";
|
|
4119
|
+
all: unknown;
|
|
4120
|
+
};
|
|
3617
4121
|
} & {
|
|
3618
4122
|
label?: string | null | undefined;
|
|
3619
4123
|
direction?: string | null | undefined;
|
|
@@ -3645,7 +4149,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3645
4149
|
[x: string]: {
|
|
3646
4150
|
__TYPE__: "BooleanContent";
|
|
3647
4151
|
value: boolean;
|
|
3648
|
-
} |
|
|
4152
|
+
} | ({
|
|
4153
|
+
embed_url: string;
|
|
4154
|
+
type: string;
|
|
4155
|
+
} & {
|
|
4156
|
+
version?: string | number | null;
|
|
4157
|
+
title?: string | null | undefined;
|
|
4158
|
+
author_name?: string | null | undefined;
|
|
4159
|
+
author_url?: string | null | undefined;
|
|
4160
|
+
provider_name?: string | null | undefined;
|
|
4161
|
+
provider_url?: string | null | undefined;
|
|
4162
|
+
cache_age?: string | number | null;
|
|
4163
|
+
thumbnail_url?: string | null | undefined;
|
|
4164
|
+
thumbnail_width?: number | null | undefined;
|
|
4165
|
+
thumbnail_height?: number | null | undefined;
|
|
4166
|
+
html?: string | null | undefined;
|
|
4167
|
+
} & {
|
|
4168
|
+
__TYPE__: "EmbedContent";
|
|
4169
|
+
all: unknown;
|
|
4170
|
+
}) | {
|
|
3649
4171
|
type: "Color";
|
|
3650
4172
|
value: string;
|
|
3651
4173
|
__TYPE__: "FieldContent";
|
|
@@ -3849,7 +4371,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3849
4371
|
direction?: string | null | undefined;
|
|
3850
4372
|
}) | ({
|
|
3851
4373
|
type: "embed";
|
|
3852
|
-
data:
|
|
4374
|
+
data: {
|
|
4375
|
+
embed_url: string;
|
|
4376
|
+
type: string;
|
|
4377
|
+
} & {
|
|
4378
|
+
version?: string | number | null;
|
|
4379
|
+
title?: string | null | undefined;
|
|
4380
|
+
author_name?: string | null | undefined;
|
|
4381
|
+
author_url?: string | null | undefined;
|
|
4382
|
+
provider_name?: string | null | undefined;
|
|
4383
|
+
provider_url?: string | null | undefined;
|
|
4384
|
+
cache_age?: string | number | null;
|
|
4385
|
+
thumbnail_url?: string | null | undefined;
|
|
4386
|
+
thumbnail_width?: number | null | undefined;
|
|
4387
|
+
thumbnail_height?: number | null | undefined;
|
|
4388
|
+
html?: string | null | undefined;
|
|
4389
|
+
} & {
|
|
4390
|
+
__TYPE__: "EmbedContent";
|
|
4391
|
+
all: unknown;
|
|
4392
|
+
};
|
|
3853
4393
|
} & {
|
|
3854
4394
|
label?: string | null | undefined;
|
|
3855
4395
|
direction?: string | null | undefined;
|
|
@@ -3879,7 +4419,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3879
4419
|
value: [string, {
|
|
3880
4420
|
__TYPE__: "BooleanContent";
|
|
3881
4421
|
value: boolean;
|
|
3882
|
-
} |
|
|
4422
|
+
} | ({
|
|
4423
|
+
embed_url: string;
|
|
4424
|
+
type: string;
|
|
4425
|
+
} & {
|
|
4426
|
+
version?: string | number | null;
|
|
4427
|
+
title?: string | null | undefined;
|
|
4428
|
+
author_name?: string | null | undefined;
|
|
4429
|
+
author_url?: string | null | undefined;
|
|
4430
|
+
provider_name?: string | null | undefined;
|
|
4431
|
+
provider_url?: string | null | undefined;
|
|
4432
|
+
cache_age?: string | number | null;
|
|
4433
|
+
thumbnail_url?: string | null | undefined;
|
|
4434
|
+
thumbnail_width?: number | null | undefined;
|
|
4435
|
+
thumbnail_height?: number | null | undefined;
|
|
4436
|
+
html?: string | null | undefined;
|
|
4437
|
+
} & {
|
|
4438
|
+
__TYPE__: "EmbedContent";
|
|
4439
|
+
all: unknown;
|
|
4440
|
+
}) | {
|
|
3883
4441
|
type: "Color";
|
|
3884
4442
|
value: string;
|
|
3885
4443
|
__TYPE__: "FieldContent";
|
|
@@ -4083,7 +4641,25 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4083
4641
|
direction?: string | null | undefined;
|
|
4084
4642
|
}) | ({
|
|
4085
4643
|
type: "embed";
|
|
4086
|
-
data:
|
|
4644
|
+
data: {
|
|
4645
|
+
embed_url: string;
|
|
4646
|
+
type: string;
|
|
4647
|
+
} & {
|
|
4648
|
+
version?: string | number | null;
|
|
4649
|
+
title?: string | null | undefined;
|
|
4650
|
+
author_name?: string | null | undefined;
|
|
4651
|
+
author_url?: string | null | undefined;
|
|
4652
|
+
provider_name?: string | null | undefined;
|
|
4653
|
+
provider_url?: string | null | undefined;
|
|
4654
|
+
cache_age?: string | number | null;
|
|
4655
|
+
thumbnail_url?: string | null | undefined;
|
|
4656
|
+
thumbnail_width?: number | null | undefined;
|
|
4657
|
+
thumbnail_height?: number | null | undefined;
|
|
4658
|
+
html?: string | null | undefined;
|
|
4659
|
+
} & {
|
|
4660
|
+
__TYPE__: "EmbedContent";
|
|
4661
|
+
all: unknown;
|
|
4662
|
+
};
|
|
4087
4663
|
} & {
|
|
4088
4664
|
label?: string | null | undefined;
|
|
4089
4665
|
direction?: string | null | undefined;
|
|
@@ -4120,7 +4696,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
4120
4696
|
decode(value: unknown): import("fp-ts/lib/Either").Left<t.Errors> | import("fp-ts/lib/Either").Right<{
|
|
4121
4697
|
__TYPE__: "BooleanContent";
|
|
4122
4698
|
value: boolean;
|
|
4123
|
-
}> | import("fp-ts/lib/Either").Right<
|
|
4699
|
+
}> | import("fp-ts/lib/Either").Right<{
|
|
4700
|
+
embed_url: string;
|
|
4701
|
+
type: string;
|
|
4702
|
+
} & {
|
|
4703
|
+
version?: string | number | null;
|
|
4704
|
+
title?: string | null | undefined;
|
|
4705
|
+
author_name?: string | null | undefined;
|
|
4706
|
+
author_url?: string | null | undefined;
|
|
4707
|
+
provider_name?: string | null | undefined;
|
|
4708
|
+
provider_url?: string | null | undefined;
|
|
4709
|
+
cache_age?: string | number | null;
|
|
4710
|
+
thumbnail_url?: string | null | undefined;
|
|
4711
|
+
thumbnail_width?: number | null | undefined;
|
|
4712
|
+
thumbnail_height?: number | null | undefined;
|
|
4713
|
+
html?: string | null | undefined;
|
|
4714
|
+
} & {
|
|
4715
|
+
__TYPE__: "EmbedContent";
|
|
4716
|
+
all: unknown;
|
|
4717
|
+
}> | import("fp-ts/lib/Either").Right<{
|
|
4124
4718
|
type: "Color";
|
|
4125
4719
|
value: string;
|
|
4126
4720
|
__TYPE__: "FieldContent";
|
|
@@ -4324,7 +4918,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
4324
4918
|
direction?: string | null | undefined;
|
|
4325
4919
|
}) | ({
|
|
4326
4920
|
type: "embed";
|
|
4327
|
-
data:
|
|
4921
|
+
data: {
|
|
4922
|
+
embed_url: string;
|
|
4923
|
+
type: string;
|
|
4924
|
+
} & {
|
|
4925
|
+
version?: string | number | null;
|
|
4926
|
+
title?: string | null | undefined;
|
|
4927
|
+
author_name?: string | null | undefined;
|
|
4928
|
+
author_url?: string | null | undefined;
|
|
4929
|
+
provider_name?: string | null | undefined;
|
|
4930
|
+
provider_url?: string | null | undefined;
|
|
4931
|
+
cache_age?: string | number | null;
|
|
4932
|
+
thumbnail_url?: string | null | undefined;
|
|
4933
|
+
thumbnail_width?: number | null | undefined;
|
|
4934
|
+
thumbnail_height?: number | null | undefined;
|
|
4935
|
+
html?: string | null | undefined;
|
|
4936
|
+
} & {
|
|
4937
|
+
__TYPE__: "EmbedContent";
|
|
4938
|
+
all: unknown;
|
|
4939
|
+
};
|
|
4328
4940
|
} & {
|
|
4329
4941
|
label?: string | null | undefined;
|
|
4330
4942
|
direction?: string | null | undefined;
|
|
@@ -4354,7 +4966,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
4354
4966
|
value: [string, {
|
|
4355
4967
|
__TYPE__: "BooleanContent";
|
|
4356
4968
|
value: boolean;
|
|
4357
|
-
} |
|
|
4969
|
+
} | ({
|
|
4970
|
+
embed_url: string;
|
|
4971
|
+
type: string;
|
|
4972
|
+
} & {
|
|
4973
|
+
version?: string | number | null;
|
|
4974
|
+
title?: string | null | undefined;
|
|
4975
|
+
author_name?: string | null | undefined;
|
|
4976
|
+
author_url?: string | null | undefined;
|
|
4977
|
+
provider_name?: string | null | undefined;
|
|
4978
|
+
provider_url?: string | null | undefined;
|
|
4979
|
+
cache_age?: string | number | null;
|
|
4980
|
+
thumbnail_url?: string | null | undefined;
|
|
4981
|
+
thumbnail_width?: number | null | undefined;
|
|
4982
|
+
thumbnail_height?: number | null | undefined;
|
|
4983
|
+
html?: string | null | undefined;
|
|
4984
|
+
} & {
|
|
4985
|
+
__TYPE__: "EmbedContent";
|
|
4986
|
+
all: unknown;
|
|
4987
|
+
}) | {
|
|
4358
4988
|
type: "Color";
|
|
4359
4989
|
value: string;
|
|
4360
4990
|
__TYPE__: "FieldContent";
|
|
@@ -4558,7 +5188,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
4558
5188
|
direction?: string | null | undefined;
|
|
4559
5189
|
}) | ({
|
|
4560
5190
|
type: "embed";
|
|
4561
|
-
data:
|
|
5191
|
+
data: {
|
|
5192
|
+
embed_url: string;
|
|
5193
|
+
type: string;
|
|
5194
|
+
} & {
|
|
5195
|
+
version?: string | number | null;
|
|
5196
|
+
title?: string | null | undefined;
|
|
5197
|
+
author_name?: string | null | undefined;
|
|
5198
|
+
author_url?: string | null | undefined;
|
|
5199
|
+
provider_name?: string | null | undefined;
|
|
5200
|
+
provider_url?: string | null | undefined;
|
|
5201
|
+
cache_age?: string | number | null;
|
|
5202
|
+
thumbnail_url?: string | null | undefined;
|
|
5203
|
+
thumbnail_width?: number | null | undefined;
|
|
5204
|
+
thumbnail_height?: number | null | undefined;
|
|
5205
|
+
html?: string | null | undefined;
|
|
5206
|
+
} & {
|
|
5207
|
+
__TYPE__: "EmbedContent";
|
|
5208
|
+
all: unknown;
|
|
5209
|
+
};
|
|
4562
5210
|
} & {
|
|
4563
5211
|
label?: string | null | undefined;
|
|
4564
5212
|
direction?: string | null | undefined;
|
|
@@ -4592,7 +5240,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
4592
5240
|
widget: {
|
|
4593
5241
|
__TYPE__: "BooleanContent";
|
|
4594
5242
|
value: boolean;
|
|
4595
|
-
} |
|
|
5243
|
+
} | ({
|
|
5244
|
+
embed_url: string;
|
|
5245
|
+
type: string;
|
|
5246
|
+
} & {
|
|
5247
|
+
version?: string | number | null;
|
|
5248
|
+
title?: string | null | undefined;
|
|
5249
|
+
author_name?: string | null | undefined;
|
|
5250
|
+
author_url?: string | null | undefined;
|
|
5251
|
+
provider_name?: string | null | undefined;
|
|
5252
|
+
provider_url?: string | null | undefined;
|
|
5253
|
+
cache_age?: string | number | null;
|
|
5254
|
+
thumbnail_url?: string | null | undefined;
|
|
5255
|
+
thumbnail_width?: number | null | undefined;
|
|
5256
|
+
thumbnail_height?: number | null | undefined;
|
|
5257
|
+
html?: string | null | undefined;
|
|
5258
|
+
} & {
|
|
5259
|
+
__TYPE__: "EmbedContent";
|
|
5260
|
+
all: unknown;
|
|
5261
|
+
}) | {
|
|
4596
5262
|
type: "Color";
|
|
4597
5263
|
value: string;
|
|
4598
5264
|
__TYPE__: "FieldContent";
|
|
@@ -4796,7 +5462,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
4796
5462
|
direction?: string | null | undefined;
|
|
4797
5463
|
}) | ({
|
|
4798
5464
|
type: "embed";
|
|
4799
|
-
data:
|
|
5465
|
+
data: {
|
|
5466
|
+
embed_url: string;
|
|
5467
|
+
type: string;
|
|
5468
|
+
} & {
|
|
5469
|
+
version?: string | number | null;
|
|
5470
|
+
title?: string | null | undefined;
|
|
5471
|
+
author_name?: string | null | undefined;
|
|
5472
|
+
author_url?: string | null | undefined;
|
|
5473
|
+
provider_name?: string | null | undefined;
|
|
5474
|
+
provider_url?: string | null | undefined;
|
|
5475
|
+
cache_age?: string | number | null;
|
|
5476
|
+
thumbnail_url?: string | null | undefined;
|
|
5477
|
+
thumbnail_width?: number | null | undefined;
|
|
5478
|
+
thumbnail_height?: number | null | undefined;
|
|
5479
|
+
html?: string | null | undefined;
|
|
5480
|
+
} & {
|
|
5481
|
+
__TYPE__: "EmbedContent";
|
|
5482
|
+
all: unknown;
|
|
5483
|
+
};
|
|
4800
5484
|
} & {
|
|
4801
5485
|
label?: string | null | undefined;
|
|
4802
5486
|
direction?: string | null | undefined;
|
|
@@ -4826,7 +5510,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
4826
5510
|
value: [string, {
|
|
4827
5511
|
__TYPE__: "BooleanContent";
|
|
4828
5512
|
value: boolean;
|
|
4829
|
-
} |
|
|
5513
|
+
} | ({
|
|
5514
|
+
embed_url: string;
|
|
5515
|
+
type: string;
|
|
5516
|
+
} & {
|
|
5517
|
+
version?: string | number | null;
|
|
5518
|
+
title?: string | null | undefined;
|
|
5519
|
+
author_name?: string | null | undefined;
|
|
5520
|
+
author_url?: string | null | undefined;
|
|
5521
|
+
provider_name?: string | null | undefined;
|
|
5522
|
+
provider_url?: string | null | undefined;
|
|
5523
|
+
cache_age?: string | number | null;
|
|
5524
|
+
thumbnail_url?: string | null | undefined;
|
|
5525
|
+
thumbnail_width?: number | null | undefined;
|
|
5526
|
+
thumbnail_height?: number | null | undefined;
|
|
5527
|
+
html?: string | null | undefined;
|
|
5528
|
+
} & {
|
|
5529
|
+
__TYPE__: "EmbedContent";
|
|
5530
|
+
all: unknown;
|
|
5531
|
+
}) | {
|
|
4830
5532
|
type: "Color";
|
|
4831
5533
|
value: string;
|
|
4832
5534
|
__TYPE__: "FieldContent";
|
|
@@ -5030,7 +5732,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5030
5732
|
direction?: string | null | undefined;
|
|
5031
5733
|
}) | ({
|
|
5032
5734
|
type: "embed";
|
|
5033
|
-
data:
|
|
5735
|
+
data: {
|
|
5736
|
+
embed_url: string;
|
|
5737
|
+
type: string;
|
|
5738
|
+
} & {
|
|
5739
|
+
version?: string | number | null;
|
|
5740
|
+
title?: string | null | undefined;
|
|
5741
|
+
author_name?: string | null | undefined;
|
|
5742
|
+
author_url?: string | null | undefined;
|
|
5743
|
+
provider_name?: string | null | undefined;
|
|
5744
|
+
provider_url?: string | null | undefined;
|
|
5745
|
+
cache_age?: string | number | null;
|
|
5746
|
+
thumbnail_url?: string | null | undefined;
|
|
5747
|
+
thumbnail_width?: number | null | undefined;
|
|
5748
|
+
thumbnail_height?: number | null | undefined;
|
|
5749
|
+
html?: string | null | undefined;
|
|
5750
|
+
} & {
|
|
5751
|
+
__TYPE__: "EmbedContent";
|
|
5752
|
+
all: unknown;
|
|
5753
|
+
};
|
|
5034
5754
|
} & {
|
|
5035
5755
|
label?: string | null | undefined;
|
|
5036
5756
|
direction?: string | null | undefined;
|
|
@@ -5061,7 +5781,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5061
5781
|
[x: string]: {
|
|
5062
5782
|
__TYPE__: "BooleanContent";
|
|
5063
5783
|
value: boolean;
|
|
5064
|
-
} |
|
|
5784
|
+
} | ({
|
|
5785
|
+
embed_url: string;
|
|
5786
|
+
type: string;
|
|
5787
|
+
} & {
|
|
5788
|
+
version?: string | number | null;
|
|
5789
|
+
title?: string | null | undefined;
|
|
5790
|
+
author_name?: string | null | undefined;
|
|
5791
|
+
author_url?: string | null | undefined;
|
|
5792
|
+
provider_name?: string | null | undefined;
|
|
5793
|
+
provider_url?: string | null | undefined;
|
|
5794
|
+
cache_age?: string | number | null;
|
|
5795
|
+
thumbnail_url?: string | null | undefined;
|
|
5796
|
+
thumbnail_width?: number | null | undefined;
|
|
5797
|
+
thumbnail_height?: number | null | undefined;
|
|
5798
|
+
html?: string | null | undefined;
|
|
5799
|
+
} & {
|
|
5800
|
+
__TYPE__: "EmbedContent";
|
|
5801
|
+
all: unknown;
|
|
5802
|
+
}) | {
|
|
5065
5803
|
type: "Color";
|
|
5066
5804
|
value: string;
|
|
5067
5805
|
__TYPE__: "FieldContent";
|
|
@@ -5265,7 +6003,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5265
6003
|
direction?: string | null | undefined;
|
|
5266
6004
|
}) | ({
|
|
5267
6005
|
type: "embed";
|
|
5268
|
-
data:
|
|
6006
|
+
data: {
|
|
6007
|
+
embed_url: string;
|
|
6008
|
+
type: string;
|
|
6009
|
+
} & {
|
|
6010
|
+
version?: string | number | null;
|
|
6011
|
+
title?: string | null | undefined;
|
|
6012
|
+
author_name?: string | null | undefined;
|
|
6013
|
+
author_url?: string | null | undefined;
|
|
6014
|
+
provider_name?: string | null | undefined;
|
|
6015
|
+
provider_url?: string | null | undefined;
|
|
6016
|
+
cache_age?: string | number | null;
|
|
6017
|
+
thumbnail_url?: string | null | undefined;
|
|
6018
|
+
thumbnail_width?: number | null | undefined;
|
|
6019
|
+
thumbnail_height?: number | null | undefined;
|
|
6020
|
+
html?: string | null | undefined;
|
|
6021
|
+
} & {
|
|
6022
|
+
__TYPE__: "EmbedContent";
|
|
6023
|
+
all: unknown;
|
|
6024
|
+
};
|
|
5269
6025
|
} & {
|
|
5270
6026
|
label?: string | null | undefined;
|
|
5271
6027
|
direction?: string | null | undefined;
|
|
@@ -5295,7 +6051,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5295
6051
|
value: [string, {
|
|
5296
6052
|
__TYPE__: "BooleanContent";
|
|
5297
6053
|
value: boolean;
|
|
5298
|
-
} |
|
|
6054
|
+
} | ({
|
|
6055
|
+
embed_url: string;
|
|
6056
|
+
type: string;
|
|
6057
|
+
} & {
|
|
6058
|
+
version?: string | number | null;
|
|
6059
|
+
title?: string | null | undefined;
|
|
6060
|
+
author_name?: string | null | undefined;
|
|
6061
|
+
author_url?: string | null | undefined;
|
|
6062
|
+
provider_name?: string | null | undefined;
|
|
6063
|
+
provider_url?: string | null | undefined;
|
|
6064
|
+
cache_age?: string | number | null;
|
|
6065
|
+
thumbnail_url?: string | null | undefined;
|
|
6066
|
+
thumbnail_width?: number | null | undefined;
|
|
6067
|
+
thumbnail_height?: number | null | undefined;
|
|
6068
|
+
html?: string | null | undefined;
|
|
6069
|
+
} & {
|
|
6070
|
+
__TYPE__: "EmbedContent";
|
|
6071
|
+
all: unknown;
|
|
6072
|
+
}) | {
|
|
5299
6073
|
type: "Color";
|
|
5300
6074
|
value: string;
|
|
5301
6075
|
__TYPE__: "FieldContent";
|
|
@@ -5499,7 +6273,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5499
6273
|
direction?: string | null | undefined;
|
|
5500
6274
|
}) | ({
|
|
5501
6275
|
type: "embed";
|
|
5502
|
-
data:
|
|
6276
|
+
data: {
|
|
6277
|
+
embed_url: string;
|
|
6278
|
+
type: string;
|
|
6279
|
+
} & {
|
|
6280
|
+
version?: string | number | null;
|
|
6281
|
+
title?: string | null | undefined;
|
|
6282
|
+
author_name?: string | null | undefined;
|
|
6283
|
+
author_url?: string | null | undefined;
|
|
6284
|
+
provider_name?: string | null | undefined;
|
|
6285
|
+
provider_url?: string | null | undefined;
|
|
6286
|
+
cache_age?: string | number | null;
|
|
6287
|
+
thumbnail_url?: string | null | undefined;
|
|
6288
|
+
thumbnail_width?: number | null | undefined;
|
|
6289
|
+
thumbnail_height?: number | null | undefined;
|
|
6290
|
+
html?: string | null | undefined;
|
|
6291
|
+
} & {
|
|
6292
|
+
__TYPE__: "EmbedContent";
|
|
6293
|
+
all: unknown;
|
|
6294
|
+
};
|
|
5503
6295
|
} & {
|
|
5504
6296
|
label?: string | null | undefined;
|
|
5505
6297
|
direction?: string | null | undefined;
|
|
@@ -5531,7 +6323,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5531
6323
|
[x: string]: {
|
|
5532
6324
|
__TYPE__: "BooleanContent";
|
|
5533
6325
|
value: boolean;
|
|
5534
|
-
} |
|
|
6326
|
+
} | ({
|
|
6327
|
+
embed_url: string;
|
|
6328
|
+
type: string;
|
|
6329
|
+
} & {
|
|
6330
|
+
version?: string | number | null;
|
|
6331
|
+
title?: string | null | undefined;
|
|
6332
|
+
author_name?: string | null | undefined;
|
|
6333
|
+
author_url?: string | null | undefined;
|
|
6334
|
+
provider_name?: string | null | undefined;
|
|
6335
|
+
provider_url?: string | null | undefined;
|
|
6336
|
+
cache_age?: string | number | null;
|
|
6337
|
+
thumbnail_url?: string | null | undefined;
|
|
6338
|
+
thumbnail_width?: number | null | undefined;
|
|
6339
|
+
thumbnail_height?: number | null | undefined;
|
|
6340
|
+
html?: string | null | undefined;
|
|
6341
|
+
} & {
|
|
6342
|
+
__TYPE__: "EmbedContent";
|
|
6343
|
+
all: unknown;
|
|
6344
|
+
}) | {
|
|
5535
6345
|
type: "Color";
|
|
5536
6346
|
value: string;
|
|
5537
6347
|
__TYPE__: "FieldContent";
|
|
@@ -5735,7 +6545,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5735
6545
|
direction?: string | null | undefined;
|
|
5736
6546
|
}) | ({
|
|
5737
6547
|
type: "embed";
|
|
5738
|
-
data:
|
|
6548
|
+
data: {
|
|
6549
|
+
embed_url: string;
|
|
6550
|
+
type: string;
|
|
6551
|
+
} & {
|
|
6552
|
+
version?: string | number | null;
|
|
6553
|
+
title?: string | null | undefined;
|
|
6554
|
+
author_name?: string | null | undefined;
|
|
6555
|
+
author_url?: string | null | undefined;
|
|
6556
|
+
provider_name?: string | null | undefined;
|
|
6557
|
+
provider_url?: string | null | undefined;
|
|
6558
|
+
cache_age?: string | number | null;
|
|
6559
|
+
thumbnail_url?: string | null | undefined;
|
|
6560
|
+
thumbnail_width?: number | null | undefined;
|
|
6561
|
+
thumbnail_height?: number | null | undefined;
|
|
6562
|
+
html?: string | null | undefined;
|
|
6563
|
+
} & {
|
|
6564
|
+
__TYPE__: "EmbedContent";
|
|
6565
|
+
all: unknown;
|
|
6566
|
+
};
|
|
5739
6567
|
} & {
|
|
5740
6568
|
label?: string | null | undefined;
|
|
5741
6569
|
direction?: string | null | undefined;
|
|
@@ -5765,7 +6593,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5765
6593
|
value: [string, {
|
|
5766
6594
|
__TYPE__: "BooleanContent";
|
|
5767
6595
|
value: boolean;
|
|
5768
|
-
} |
|
|
6596
|
+
} | ({
|
|
6597
|
+
embed_url: string;
|
|
6598
|
+
type: string;
|
|
6599
|
+
} & {
|
|
6600
|
+
version?: string | number | null;
|
|
6601
|
+
title?: string | null | undefined;
|
|
6602
|
+
author_name?: string | null | undefined;
|
|
6603
|
+
author_url?: string | null | undefined;
|
|
6604
|
+
provider_name?: string | null | undefined;
|
|
6605
|
+
provider_url?: string | null | undefined;
|
|
6606
|
+
cache_age?: string | number | null;
|
|
6607
|
+
thumbnail_url?: string | null | undefined;
|
|
6608
|
+
thumbnail_width?: number | null | undefined;
|
|
6609
|
+
thumbnail_height?: number | null | undefined;
|
|
6610
|
+
html?: string | null | undefined;
|
|
6611
|
+
} & {
|
|
6612
|
+
__TYPE__: "EmbedContent";
|
|
6613
|
+
all: unknown;
|
|
6614
|
+
}) | {
|
|
5769
6615
|
type: "Color";
|
|
5770
6616
|
value: string;
|
|
5771
6617
|
__TYPE__: "FieldContent";
|
|
@@ -5969,7 +6815,25 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5969
6815
|
direction?: string | null | undefined;
|
|
5970
6816
|
}) | ({
|
|
5971
6817
|
type: "embed";
|
|
5972
|
-
data:
|
|
6818
|
+
data: {
|
|
6819
|
+
embed_url: string;
|
|
6820
|
+
type: string;
|
|
6821
|
+
} & {
|
|
6822
|
+
version?: string | number | null;
|
|
6823
|
+
title?: string | null | undefined;
|
|
6824
|
+
author_name?: string | null | undefined;
|
|
6825
|
+
author_url?: string | null | undefined;
|
|
6826
|
+
provider_name?: string | null | undefined;
|
|
6827
|
+
provider_url?: string | null | undefined;
|
|
6828
|
+
cache_age?: string | number | null;
|
|
6829
|
+
thumbnail_url?: string | null | undefined;
|
|
6830
|
+
thumbnail_width?: number | null | undefined;
|
|
6831
|
+
thumbnail_height?: number | null | undefined;
|
|
6832
|
+
html?: string | null | undefined;
|
|
6833
|
+
} & {
|
|
6834
|
+
__TYPE__: "EmbedContent";
|
|
6835
|
+
all: unknown;
|
|
6836
|
+
};
|
|
5973
6837
|
} & {
|
|
5974
6838
|
label?: string | null | undefined;
|
|
5975
6839
|
direction?: string | null | undefined;
|