@prismicio/types-internal 2.0.0-alpha.4 → 2.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/content/Document.d.ts +72 -616
- package/lib/content/Document.js +4 -3
- package/lib/content/fields/GroupContent.d.ts +23 -193
- package/lib/content/fields/GroupContent.js +3 -3
- package/lib/content/fields/WidgetContent.d.ts +104 -920
- package/lib/content/fields/nestable/EmbedContent.d.ts +30 -45
- package/lib/content/fields/nestable/EmbedContent.js +25 -12
- package/lib/content/fields/nestable/LinkContent.d.ts +8 -8
- package/lib/content/fields/nestable/LinkContent.js +1 -1
- package/lib/content/fields/nestable/NestableContent.d.ts +14 -115
- package/lib/content/fields/nestable/NestableContent.js +2 -1
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +11 -78
- package/lib/content/fields/nestable/RichTextContent/Blocks.js +5 -5
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +9 -77
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +26 -230
- package/lib/content/fields/slices/Slice/CompositeSliceContent.js +4 -4
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +9 -77
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +26 -230
- package/lib/content/fields/slices/Slice/SharedSliceContent.js +4 -4
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +22 -192
- package/lib/content/fields/slices/Slice/index.d.ts +50 -424
- package/lib/content/fields/slices/SliceItem.d.ts +54 -462
- package/lib/content/fields/slices/SliceItem.js +2 -1
- package/lib/content/fields/slices/SlicesContent.d.ts +78 -690
- package/lib/content/utils.js +3 -3
- package/lib/customtypes/index.d.ts +2 -2
- package/lib/customtypes/index.js +2 -3
- package/lib/customtypes/widgets/nestable/RichText.d.ts +1 -1
- package/lib/customtypes/widgets/nestable/RichText.js +10 -10
- package/lib/customtypes/widgets/slices/Slices.d.ts +12 -3
- package/lib/customtypes/widgets/slices/Slices.js +4 -4
- package/lib/customtypes/widgets/slices/index.d.ts +6 -6
- package/lib/customtypes/widgets/slices/index.js +6 -11
- package/package.json +1 -1
- package/src/content/Document.ts +4 -3
- package/src/content/fields/GroupContent.ts +4 -4
- package/src/content/fields/nestable/EmbedContent.ts +52 -28
- package/src/content/fields/nestable/LinkContent.ts +1 -1
- package/src/content/fields/nestable/NestableContent.ts +2 -1
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +6 -5
- package/src/content/fields/slices/Slice/CompositeSliceContent.ts +4 -3
- package/src/content/fields/slices/Slice/SharedSliceContent.ts +4 -3
- package/src/content/fields/slices/SliceItem.ts +2 -2
- package/src/content/utils.ts +4 -5
- package/src/customtypes/index.ts +2 -2
- package/src/customtypes/widgets/nestable/RichText.ts +16 -16
- package/src/customtypes/widgets/slices/Slices.ts +4 -4
- package/src/customtypes/widgets/slices/index.ts +6 -6
|
@@ -12,24 +12,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
12
12
|
}>>, t.ExactC<t.TypeC<{
|
|
13
13
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
14
14
|
value: t.BooleanC;
|
|
15
|
-
}>>, t.
|
|
16
|
-
embed_url: t.StringC;
|
|
17
|
-
type: t.StringC;
|
|
18
|
-
}>, t.PartialC<{
|
|
19
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
20
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
21
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
22
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
23
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
24
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
25
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
26
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
27
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
28
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
29
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
30
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
31
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
32
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
15
|
+
}>>, t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
33
16
|
type: t.LiteralC<"Text">;
|
|
34
17
|
value: t.Type<string, string, unknown>;
|
|
35
18
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -134,9 +117,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
134
117
|
url: t.StringC;
|
|
135
118
|
name: t.StringC;
|
|
136
119
|
kind: t.StringC;
|
|
120
|
+
size: t.StringC;
|
|
137
121
|
}>, t.PartialC<{
|
|
138
122
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
139
|
-
size: t.StringC;
|
|
140
123
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
141
124
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
142
125
|
}>, t.PartialC<{
|
|
@@ -202,9 +185,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
202
185
|
url: string;
|
|
203
186
|
name: string;
|
|
204
187
|
kind: string;
|
|
188
|
+
size: string;
|
|
205
189
|
} & {
|
|
206
190
|
date?: string | null | undefined;
|
|
207
|
-
size?: string;
|
|
208
191
|
} & {
|
|
209
192
|
__TYPE__: "FileLink";
|
|
210
193
|
} & {
|
|
@@ -240,9 +223,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
240
223
|
url: string;
|
|
241
224
|
name: string;
|
|
242
225
|
kind: string;
|
|
226
|
+
size: string;
|
|
243
227
|
} & {
|
|
244
228
|
date?: string | null | undefined;
|
|
245
|
-
size?: string;
|
|
246
229
|
} & {
|
|
247
230
|
__TYPE__: "FileLink";
|
|
248
231
|
} & {
|
|
@@ -268,24 +251,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
268
251
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
269
252
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
270
253
|
type: t.LiteralC<"embed">;
|
|
271
|
-
data: t.
|
|
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
|
-
}>>]>;
|
|
254
|
+
data: t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>;
|
|
289
255
|
}>, t.PartialC<{
|
|
290
256
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
291
257
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -323,24 +289,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
323
289
|
}>>, t.ExactC<t.TypeC<{
|
|
324
290
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
325
291
|
value: t.BooleanC;
|
|
326
|
-
}>>, t.
|
|
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
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
292
|
+
}>>, t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
344
293
|
type: t.LiteralC<"Text">;
|
|
345
294
|
value: t.Type<string, string, unknown>;
|
|
346
295
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -445,9 +394,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
445
394
|
url: t.StringC;
|
|
446
395
|
name: t.StringC;
|
|
447
396
|
kind: t.StringC;
|
|
397
|
+
size: t.StringC;
|
|
448
398
|
}>, t.PartialC<{
|
|
449
399
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
450
|
-
size: t.StringC;
|
|
451
400
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
452
401
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
453
402
|
}>, t.PartialC<{
|
|
@@ -513,9 +462,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
513
462
|
url: string;
|
|
514
463
|
name: string;
|
|
515
464
|
kind: string;
|
|
465
|
+
size: string;
|
|
516
466
|
} & {
|
|
517
467
|
date?: string | null | undefined;
|
|
518
|
-
size?: string;
|
|
519
468
|
} & {
|
|
520
469
|
__TYPE__: "FileLink";
|
|
521
470
|
} & {
|
|
@@ -551,9 +500,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
551
500
|
url: string;
|
|
552
501
|
name: string;
|
|
553
502
|
kind: string;
|
|
503
|
+
size: string;
|
|
554
504
|
} & {
|
|
555
505
|
date?: string | null | undefined;
|
|
556
|
-
size?: string;
|
|
557
506
|
} & {
|
|
558
507
|
__TYPE__: "FileLink";
|
|
559
508
|
} & {
|
|
@@ -579,24 +528,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
579
528
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
580
529
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
581
530
|
type: t.LiteralC<"embed">;
|
|
582
|
-
data: t.
|
|
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
|
-
}>>]>;
|
|
531
|
+
data: t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>;
|
|
600
532
|
}>, t.PartialC<{
|
|
601
533
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
602
534
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -636,24 +568,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
636
568
|
}>>, t.ExactC<t.TypeC<{
|
|
637
569
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
638
570
|
value: t.BooleanC;
|
|
639
|
-
}>>, t.
|
|
640
|
-
embed_url: t.StringC;
|
|
641
|
-
type: t.StringC;
|
|
642
|
-
}>, t.PartialC<{
|
|
643
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
644
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
645
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
646
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
647
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
648
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
649
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
650
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
651
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
652
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
653
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
654
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
655
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
656
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
571
|
+
}>>, t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
657
572
|
type: t.LiteralC<"Text">;
|
|
658
573
|
value: t.Type<string, string, unknown>;
|
|
659
574
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -758,9 +673,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
758
673
|
url: t.StringC;
|
|
759
674
|
name: t.StringC;
|
|
760
675
|
kind: t.StringC;
|
|
676
|
+
size: t.StringC;
|
|
761
677
|
}>, t.PartialC<{
|
|
762
678
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
763
|
-
size: t.StringC;
|
|
764
679
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
765
680
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
766
681
|
}>, t.PartialC<{
|
|
@@ -826,9 +741,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
826
741
|
url: string;
|
|
827
742
|
name: string;
|
|
828
743
|
kind: string;
|
|
744
|
+
size: string;
|
|
829
745
|
} & {
|
|
830
746
|
date?: string | null | undefined;
|
|
831
|
-
size?: string;
|
|
832
747
|
} & {
|
|
833
748
|
__TYPE__: "FileLink";
|
|
834
749
|
} & {
|
|
@@ -864,9 +779,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
864
779
|
url: string;
|
|
865
780
|
name: string;
|
|
866
781
|
kind: string;
|
|
782
|
+
size: string;
|
|
867
783
|
} & {
|
|
868
784
|
date?: string | null | undefined;
|
|
869
|
-
size?: string;
|
|
870
785
|
} & {
|
|
871
786
|
__TYPE__: "FileLink";
|
|
872
787
|
} & {
|
|
@@ -892,24 +807,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
892
807
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
893
808
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
894
809
|
type: t.LiteralC<"embed">;
|
|
895
|
-
data: t.
|
|
896
|
-
embed_url: t.StringC;
|
|
897
|
-
type: t.StringC;
|
|
898
|
-
}>, t.PartialC<{
|
|
899
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
900
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
901
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
902
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
903
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
904
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
905
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
906
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
907
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
908
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
909
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
910
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
911
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
912
|
-
}>>]>;
|
|
810
|
+
data: t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>;
|
|
913
811
|
}>, t.PartialC<{
|
|
914
812
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
915
813
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -947,24 +845,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
947
845
|
}>>, t.ExactC<t.TypeC<{
|
|
948
846
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
949
847
|
value: t.BooleanC;
|
|
950
|
-
}>>, t.
|
|
951
|
-
embed_url: t.StringC;
|
|
952
|
-
type: t.StringC;
|
|
953
|
-
}>, t.PartialC<{
|
|
954
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
955
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
956
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
957
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
958
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
959
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
960
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
961
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
962
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
963
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
964
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
965
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
966
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
967
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
848
|
+
}>>, t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
968
849
|
type: t.LiteralC<"Text">;
|
|
969
850
|
value: t.Type<string, string, unknown>;
|
|
970
851
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1069,9 +950,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1069
950
|
url: t.StringC;
|
|
1070
951
|
name: t.StringC;
|
|
1071
952
|
kind: t.StringC;
|
|
953
|
+
size: t.StringC;
|
|
1072
954
|
}>, t.PartialC<{
|
|
1073
955
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1074
|
-
size: t.StringC;
|
|
1075
956
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1076
957
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1077
958
|
}>, t.PartialC<{
|
|
@@ -1137,9 +1018,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1137
1018
|
url: string;
|
|
1138
1019
|
name: string;
|
|
1139
1020
|
kind: string;
|
|
1021
|
+
size: string;
|
|
1140
1022
|
} & {
|
|
1141
1023
|
date?: string | null | undefined;
|
|
1142
|
-
size?: string;
|
|
1143
1024
|
} & {
|
|
1144
1025
|
__TYPE__: "FileLink";
|
|
1145
1026
|
} & {
|
|
@@ -1175,9 +1056,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1175
1056
|
url: string;
|
|
1176
1057
|
name: string;
|
|
1177
1058
|
kind: string;
|
|
1059
|
+
size: string;
|
|
1178
1060
|
} & {
|
|
1179
1061
|
date?: string | null | undefined;
|
|
1180
|
-
size?: string;
|
|
1181
1062
|
} & {
|
|
1182
1063
|
__TYPE__: "FileLink";
|
|
1183
1064
|
} & {
|
|
@@ -1203,24 +1084,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1203
1084
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1204
1085
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1205
1086
|
type: t.LiteralC<"embed">;
|
|
1206
|
-
data: t.
|
|
1207
|
-
embed_url: t.StringC;
|
|
1208
|
-
type: t.StringC;
|
|
1209
|
-
}>, t.PartialC<{
|
|
1210
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1211
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1212
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1213
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1214
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1215
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1216
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1217
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1218
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1219
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1220
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1221
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1222
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1223
|
-
}>>]>;
|
|
1087
|
+
data: t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>;
|
|
1224
1088
|
}>, t.PartialC<{
|
|
1225
1089
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1226
1090
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1257,24 +1121,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1257
1121
|
}>>, t.ExactC<t.TypeC<{
|
|
1258
1122
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1259
1123
|
value: t.BooleanC;
|
|
1260
|
-
}>>, t.
|
|
1261
|
-
embed_url: t.StringC;
|
|
1262
|
-
type: t.StringC;
|
|
1263
|
-
}>, t.PartialC<{
|
|
1264
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1265
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1266
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1267
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1268
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1269
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1270
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1271
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1272
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1273
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1274
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1275
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1276
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1277
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
1124
|
+
}>>, t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
1278
1125
|
type: t.LiteralC<"Text">;
|
|
1279
1126
|
value: t.Type<string, string, unknown>;
|
|
1280
1127
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1379,9 +1226,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1379
1226
|
url: t.StringC;
|
|
1380
1227
|
name: t.StringC;
|
|
1381
1228
|
kind: t.StringC;
|
|
1229
|
+
size: t.StringC;
|
|
1382
1230
|
}>, t.PartialC<{
|
|
1383
1231
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1384
|
-
size: t.StringC;
|
|
1385
1232
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1386
1233
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1387
1234
|
}>, t.PartialC<{
|
|
@@ -1447,9 +1294,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1447
1294
|
url: string;
|
|
1448
1295
|
name: string;
|
|
1449
1296
|
kind: string;
|
|
1297
|
+
size: string;
|
|
1450
1298
|
} & {
|
|
1451
1299
|
date?: string | null | undefined;
|
|
1452
|
-
size?: string;
|
|
1453
1300
|
} & {
|
|
1454
1301
|
__TYPE__: "FileLink";
|
|
1455
1302
|
} & {
|
|
@@ -1485,9 +1332,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1485
1332
|
url: string;
|
|
1486
1333
|
name: string;
|
|
1487
1334
|
kind: string;
|
|
1335
|
+
size: string;
|
|
1488
1336
|
} & {
|
|
1489
1337
|
date?: string | null | undefined;
|
|
1490
|
-
size?: string;
|
|
1491
1338
|
} & {
|
|
1492
1339
|
__TYPE__: "FileLink";
|
|
1493
1340
|
} & {
|
|
@@ -1513,24 +1360,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1513
1360
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1514
1361
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1515
1362
|
type: t.LiteralC<"embed">;
|
|
1516
|
-
data: t.
|
|
1517
|
-
embed_url: t.StringC;
|
|
1518
|
-
type: t.StringC;
|
|
1519
|
-
}>, t.PartialC<{
|
|
1520
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1521
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1522
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1523
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1524
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1525
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1526
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1527
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1528
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1529
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1530
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1531
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1532
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1533
|
-
}>>]>;
|
|
1363
|
+
data: t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>;
|
|
1534
1364
|
}>, t.PartialC<{
|
|
1535
1365
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1536
1366
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1569,24 +1399,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1569
1399
|
}>>, t.ExactC<t.TypeC<{
|
|
1570
1400
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1571
1401
|
value: t.BooleanC;
|
|
1572
|
-
}>>, t.
|
|
1573
|
-
embed_url: t.StringC;
|
|
1574
|
-
type: t.StringC;
|
|
1575
|
-
}>, t.PartialC<{
|
|
1576
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1577
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1578
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1579
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1580
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1581
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1582
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1583
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1584
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1585
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1586
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1587
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1588
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1589
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
1402
|
+
}>>, t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
1590
1403
|
type: t.LiteralC<"Text">;
|
|
1591
1404
|
value: t.Type<string, string, unknown>;
|
|
1592
1405
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1691,9 +1504,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1691
1504
|
url: t.StringC;
|
|
1692
1505
|
name: t.StringC;
|
|
1693
1506
|
kind: t.StringC;
|
|
1507
|
+
size: t.StringC;
|
|
1694
1508
|
}>, t.PartialC<{
|
|
1695
1509
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1696
|
-
size: t.StringC;
|
|
1697
1510
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1698
1511
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1699
1512
|
}>, t.PartialC<{
|
|
@@ -1759,9 +1572,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1759
1572
|
url: string;
|
|
1760
1573
|
name: string;
|
|
1761
1574
|
kind: string;
|
|
1575
|
+
size: string;
|
|
1762
1576
|
} & {
|
|
1763
1577
|
date?: string | null | undefined;
|
|
1764
|
-
size?: string;
|
|
1765
1578
|
} & {
|
|
1766
1579
|
__TYPE__: "FileLink";
|
|
1767
1580
|
} & {
|
|
@@ -1797,9 +1610,9 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1797
1610
|
url: string;
|
|
1798
1611
|
name: string;
|
|
1799
1612
|
kind: string;
|
|
1613
|
+
size: string;
|
|
1800
1614
|
} & {
|
|
1801
1615
|
date?: string | null | undefined;
|
|
1802
|
-
size?: string;
|
|
1803
1616
|
} & {
|
|
1804
1617
|
__TYPE__: "FileLink";
|
|
1805
1618
|
} & {
|
|
@@ -1825,24 +1638,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1825
1638
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1826
1639
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1827
1640
|
type: t.LiteralC<"embed">;
|
|
1828
|
-
data: t.
|
|
1829
|
-
embed_url: t.StringC;
|
|
1830
|
-
type: t.StringC;
|
|
1831
|
-
}>, t.PartialC<{
|
|
1832
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1833
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1834
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1835
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1836
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1837
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1838
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1839
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1840
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1841
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1842
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1843
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1844
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1845
|
-
}>>]>;
|
|
1641
|
+
data: t.Type<import("..").EmbedContent, import("..").EmbedContent, unknown>;
|
|
1846
1642
|
}>, t.PartialC<{
|
|
1847
1643
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1848
1644
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1883,24 +1679,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1883
1679
|
widget: {
|
|
1884
1680
|
__TYPE__: "BooleanContent";
|
|
1885
1681
|
value: boolean;
|
|
1886
|
-
} | ({
|
|
1887
|
-
embed_url: string;
|
|
1888
|
-
type: string;
|
|
1889
|
-
} & {
|
|
1890
|
-
version?: string | number | null;
|
|
1891
|
-
title?: string | null | undefined;
|
|
1892
|
-
author_name?: string | null | undefined;
|
|
1893
|
-
author_url?: string | null | undefined;
|
|
1894
|
-
provider_name?: string | null | undefined;
|
|
1895
|
-
provider_url?: string | null | undefined;
|
|
1896
|
-
cache_age?: string | number | null;
|
|
1897
|
-
thumbnail_url?: string | null | undefined;
|
|
1898
|
-
thumbnail_width?: number | null | undefined;
|
|
1899
|
-
thumbnail_height?: number | null | undefined;
|
|
1900
|
-
html?: string | null | undefined;
|
|
1901
|
-
} & {
|
|
1902
|
-
__TYPE__: "EmbedContent";
|
|
1903
|
-
}) | {
|
|
1682
|
+
} | import("..").EmbedContent | {
|
|
1904
1683
|
type: "Color";
|
|
1905
1684
|
value: string;
|
|
1906
1685
|
__TYPE__: "FieldContent";
|
|
@@ -2007,9 +1786,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2007
1786
|
url: string;
|
|
2008
1787
|
name: string;
|
|
2009
1788
|
kind: string;
|
|
1789
|
+
size: string;
|
|
2010
1790
|
} & {
|
|
2011
1791
|
date?: string | null | undefined;
|
|
2012
|
-
size?: string;
|
|
2013
1792
|
} & {
|
|
2014
1793
|
__TYPE__: "FileLink";
|
|
2015
1794
|
} & {
|
|
@@ -2076,9 +1855,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2076
1855
|
url: string;
|
|
2077
1856
|
name: string;
|
|
2078
1857
|
kind: string;
|
|
1858
|
+
size: string;
|
|
2079
1859
|
} & {
|
|
2080
1860
|
date?: string | null | undefined;
|
|
2081
|
-
size?: string;
|
|
2082
1861
|
} & {
|
|
2083
1862
|
__TYPE__: "FileLink";
|
|
2084
1863
|
} & {
|
|
@@ -2104,24 +1883,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2104
1883
|
direction?: string | null | undefined;
|
|
2105
1884
|
}) | ({
|
|
2106
1885
|
type: "embed";
|
|
2107
|
-
data:
|
|
2108
|
-
embed_url: string;
|
|
2109
|
-
type: string;
|
|
2110
|
-
} & {
|
|
2111
|
-
version?: string | number | null;
|
|
2112
|
-
title?: string | null | undefined;
|
|
2113
|
-
author_name?: string | null | undefined;
|
|
2114
|
-
author_url?: string | null | undefined;
|
|
2115
|
-
provider_name?: string | null | undefined;
|
|
2116
|
-
provider_url?: string | null | undefined;
|
|
2117
|
-
cache_age?: string | number | null;
|
|
2118
|
-
thumbnail_url?: string | null | undefined;
|
|
2119
|
-
thumbnail_width?: number | null | undefined;
|
|
2120
|
-
thumbnail_height?: number | null | undefined;
|
|
2121
|
-
html?: string | null | undefined;
|
|
2122
|
-
} & {
|
|
2123
|
-
__TYPE__: "EmbedContent";
|
|
2124
|
-
};
|
|
1886
|
+
data: import("..").EmbedContent;
|
|
2125
1887
|
} & {
|
|
2126
1888
|
label?: string | null | undefined;
|
|
2127
1889
|
direction?: string | null | undefined;
|
|
@@ -2151,24 +1913,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2151
1913
|
value: [string, {
|
|
2152
1914
|
__TYPE__: "BooleanContent";
|
|
2153
1915
|
value: boolean;
|
|
2154
|
-
} | ({
|
|
2155
|
-
embed_url: string;
|
|
2156
|
-
type: string;
|
|
2157
|
-
} & {
|
|
2158
|
-
version?: string | number | null;
|
|
2159
|
-
title?: string | null | undefined;
|
|
2160
|
-
author_name?: string | null | undefined;
|
|
2161
|
-
author_url?: string | null | undefined;
|
|
2162
|
-
provider_name?: string | null | undefined;
|
|
2163
|
-
provider_url?: string | null | undefined;
|
|
2164
|
-
cache_age?: string | number | null;
|
|
2165
|
-
thumbnail_url?: string | null | undefined;
|
|
2166
|
-
thumbnail_width?: number | null | undefined;
|
|
2167
|
-
thumbnail_height?: number | null | undefined;
|
|
2168
|
-
html?: string | null | undefined;
|
|
2169
|
-
} & {
|
|
2170
|
-
__TYPE__: "EmbedContent";
|
|
2171
|
-
}) | {
|
|
1916
|
+
} | import("..").EmbedContent | {
|
|
2172
1917
|
type: "Color";
|
|
2173
1918
|
value: string;
|
|
2174
1919
|
__TYPE__: "FieldContent";
|
|
@@ -2275,9 +2020,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2275
2020
|
url: string;
|
|
2276
2021
|
name: string;
|
|
2277
2022
|
kind: string;
|
|
2023
|
+
size: string;
|
|
2278
2024
|
} & {
|
|
2279
2025
|
date?: string | null | undefined;
|
|
2280
|
-
size?: string;
|
|
2281
2026
|
} & {
|
|
2282
2027
|
__TYPE__: "FileLink";
|
|
2283
2028
|
} & {
|
|
@@ -2344,9 +2089,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2344
2089
|
url: string;
|
|
2345
2090
|
name: string;
|
|
2346
2091
|
kind: string;
|
|
2092
|
+
size: string;
|
|
2347
2093
|
} & {
|
|
2348
2094
|
date?: string | null | undefined;
|
|
2349
|
-
size?: string;
|
|
2350
2095
|
} & {
|
|
2351
2096
|
__TYPE__: "FileLink";
|
|
2352
2097
|
} & {
|
|
@@ -2372,24 +2117,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2372
2117
|
direction?: string | null | undefined;
|
|
2373
2118
|
}) | ({
|
|
2374
2119
|
type: "embed";
|
|
2375
|
-
data:
|
|
2376
|
-
embed_url: string;
|
|
2377
|
-
type: string;
|
|
2378
|
-
} & {
|
|
2379
|
-
version?: string | number | null;
|
|
2380
|
-
title?: string | null | undefined;
|
|
2381
|
-
author_name?: string | null | undefined;
|
|
2382
|
-
author_url?: string | null | undefined;
|
|
2383
|
-
provider_name?: string | null | undefined;
|
|
2384
|
-
provider_url?: string | null | undefined;
|
|
2385
|
-
cache_age?: string | number | null;
|
|
2386
|
-
thumbnail_url?: string | null | undefined;
|
|
2387
|
-
thumbnail_width?: number | null | undefined;
|
|
2388
|
-
thumbnail_height?: number | null | undefined;
|
|
2389
|
-
html?: string | null | undefined;
|
|
2390
|
-
} & {
|
|
2391
|
-
__TYPE__: "EmbedContent";
|
|
2392
|
-
};
|
|
2120
|
+
data: import("..").EmbedContent;
|
|
2393
2121
|
} & {
|
|
2394
2122
|
label?: string | null | undefined;
|
|
2395
2123
|
direction?: string | null | undefined;
|
|
@@ -2420,24 +2148,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2420
2148
|
[x: string]: {
|
|
2421
2149
|
__TYPE__: "BooleanContent";
|
|
2422
2150
|
value: boolean;
|
|
2423
|
-
} | ({
|
|
2424
|
-
embed_url: string;
|
|
2425
|
-
type: string;
|
|
2426
|
-
} & {
|
|
2427
|
-
version?: string | number | null;
|
|
2428
|
-
title?: string | null | undefined;
|
|
2429
|
-
author_name?: string | null | undefined;
|
|
2430
|
-
author_url?: string | null | undefined;
|
|
2431
|
-
provider_name?: string | null | undefined;
|
|
2432
|
-
provider_url?: string | null | undefined;
|
|
2433
|
-
cache_age?: string | number | null;
|
|
2434
|
-
thumbnail_url?: string | null | undefined;
|
|
2435
|
-
thumbnail_width?: number | null | undefined;
|
|
2436
|
-
thumbnail_height?: number | null | undefined;
|
|
2437
|
-
html?: string | null | undefined;
|
|
2438
|
-
} & {
|
|
2439
|
-
__TYPE__: "EmbedContent";
|
|
2440
|
-
}) | {
|
|
2151
|
+
} | import("..").EmbedContent | {
|
|
2441
2152
|
type: "Color";
|
|
2442
2153
|
value: string;
|
|
2443
2154
|
__TYPE__: "FieldContent";
|
|
@@ -2544,9 +2255,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2544
2255
|
url: string;
|
|
2545
2256
|
name: string;
|
|
2546
2257
|
kind: string;
|
|
2258
|
+
size: string;
|
|
2547
2259
|
} & {
|
|
2548
2260
|
date?: string | null | undefined;
|
|
2549
|
-
size?: string;
|
|
2550
2261
|
} & {
|
|
2551
2262
|
__TYPE__: "FileLink";
|
|
2552
2263
|
} & {
|
|
@@ -2613,9 +2324,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2613
2324
|
url: string;
|
|
2614
2325
|
name: string;
|
|
2615
2326
|
kind: string;
|
|
2327
|
+
size: string;
|
|
2616
2328
|
} & {
|
|
2617
2329
|
date?: string | null | undefined;
|
|
2618
|
-
size?: string;
|
|
2619
2330
|
} & {
|
|
2620
2331
|
__TYPE__: "FileLink";
|
|
2621
2332
|
} & {
|
|
@@ -2641,24 +2352,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2641
2352
|
direction?: string | null | undefined;
|
|
2642
2353
|
}) | ({
|
|
2643
2354
|
type: "embed";
|
|
2644
|
-
data:
|
|
2645
|
-
embed_url: string;
|
|
2646
|
-
type: string;
|
|
2647
|
-
} & {
|
|
2648
|
-
version?: string | number | null;
|
|
2649
|
-
title?: string | null | undefined;
|
|
2650
|
-
author_name?: string | null | undefined;
|
|
2651
|
-
author_url?: string | null | undefined;
|
|
2652
|
-
provider_name?: string | null | undefined;
|
|
2653
|
-
provider_url?: string | null | undefined;
|
|
2654
|
-
cache_age?: string | number | null;
|
|
2655
|
-
thumbnail_url?: string | null | undefined;
|
|
2656
|
-
thumbnail_width?: number | null | undefined;
|
|
2657
|
-
thumbnail_height?: number | null | undefined;
|
|
2658
|
-
html?: string | null | undefined;
|
|
2659
|
-
} & {
|
|
2660
|
-
__TYPE__: "EmbedContent";
|
|
2661
|
-
};
|
|
2355
|
+
data: import("..").EmbedContent;
|
|
2662
2356
|
} & {
|
|
2663
2357
|
label?: string | null | undefined;
|
|
2664
2358
|
direction?: string | null | undefined;
|
|
@@ -2688,24 +2382,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2688
2382
|
value: [string, {
|
|
2689
2383
|
__TYPE__: "BooleanContent";
|
|
2690
2384
|
value: boolean;
|
|
2691
|
-
} | ({
|
|
2692
|
-
embed_url: string;
|
|
2693
|
-
type: string;
|
|
2694
|
-
} & {
|
|
2695
|
-
version?: string | number | null;
|
|
2696
|
-
title?: string | null | undefined;
|
|
2697
|
-
author_name?: string | null | undefined;
|
|
2698
|
-
author_url?: string | null | undefined;
|
|
2699
|
-
provider_name?: string | null | undefined;
|
|
2700
|
-
provider_url?: string | null | undefined;
|
|
2701
|
-
cache_age?: string | number | null;
|
|
2702
|
-
thumbnail_url?: string | null | undefined;
|
|
2703
|
-
thumbnail_width?: number | null | undefined;
|
|
2704
|
-
thumbnail_height?: number | null | undefined;
|
|
2705
|
-
html?: string | null | undefined;
|
|
2706
|
-
} & {
|
|
2707
|
-
__TYPE__: "EmbedContent";
|
|
2708
|
-
}) | {
|
|
2385
|
+
} | import("..").EmbedContent | {
|
|
2709
2386
|
type: "Color";
|
|
2710
2387
|
value: string;
|
|
2711
2388
|
__TYPE__: "FieldContent";
|
|
@@ -2812,9 +2489,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2812
2489
|
url: string;
|
|
2813
2490
|
name: string;
|
|
2814
2491
|
kind: string;
|
|
2492
|
+
size: string;
|
|
2815
2493
|
} & {
|
|
2816
2494
|
date?: string | null | undefined;
|
|
2817
|
-
size?: string;
|
|
2818
2495
|
} & {
|
|
2819
2496
|
__TYPE__: "FileLink";
|
|
2820
2497
|
} & {
|
|
@@ -2881,9 +2558,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2881
2558
|
url: string;
|
|
2882
2559
|
name: string;
|
|
2883
2560
|
kind: string;
|
|
2561
|
+
size: string;
|
|
2884
2562
|
} & {
|
|
2885
2563
|
date?: string | null | undefined;
|
|
2886
|
-
size?: string;
|
|
2887
2564
|
} & {
|
|
2888
2565
|
__TYPE__: "FileLink";
|
|
2889
2566
|
} & {
|
|
@@ -2909,24 +2586,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2909
2586
|
direction?: string | null | undefined;
|
|
2910
2587
|
}) | ({
|
|
2911
2588
|
type: "embed";
|
|
2912
|
-
data:
|
|
2913
|
-
embed_url: string;
|
|
2914
|
-
type: string;
|
|
2915
|
-
} & {
|
|
2916
|
-
version?: string | number | null;
|
|
2917
|
-
title?: string | null | undefined;
|
|
2918
|
-
author_name?: string | null | undefined;
|
|
2919
|
-
author_url?: string | null | undefined;
|
|
2920
|
-
provider_name?: string | null | undefined;
|
|
2921
|
-
provider_url?: string | null | undefined;
|
|
2922
|
-
cache_age?: string | number | null;
|
|
2923
|
-
thumbnail_url?: string | null | undefined;
|
|
2924
|
-
thumbnail_width?: number | null | undefined;
|
|
2925
|
-
thumbnail_height?: number | null | undefined;
|
|
2926
|
-
html?: string | null | undefined;
|
|
2927
|
-
} & {
|
|
2928
|
-
__TYPE__: "EmbedContent";
|
|
2929
|
-
};
|
|
2589
|
+
data: import("..").EmbedContent;
|
|
2930
2590
|
} & {
|
|
2931
2591
|
label?: string | null | undefined;
|
|
2932
2592
|
direction?: string | null | undefined;
|
|
@@ -2958,24 +2618,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2958
2618
|
[x: string]: {
|
|
2959
2619
|
__TYPE__: "BooleanContent";
|
|
2960
2620
|
value: boolean;
|
|
2961
|
-
} | ({
|
|
2962
|
-
embed_url: string;
|
|
2963
|
-
type: string;
|
|
2964
|
-
} & {
|
|
2965
|
-
version?: string | number | null;
|
|
2966
|
-
title?: string | null | undefined;
|
|
2967
|
-
author_name?: string | null | undefined;
|
|
2968
|
-
author_url?: string | null | undefined;
|
|
2969
|
-
provider_name?: string | null | undefined;
|
|
2970
|
-
provider_url?: string | null | undefined;
|
|
2971
|
-
cache_age?: string | number | null;
|
|
2972
|
-
thumbnail_url?: string | null | undefined;
|
|
2973
|
-
thumbnail_width?: number | null | undefined;
|
|
2974
|
-
thumbnail_height?: number | null | undefined;
|
|
2975
|
-
html?: string | null | undefined;
|
|
2976
|
-
} & {
|
|
2977
|
-
__TYPE__: "EmbedContent";
|
|
2978
|
-
}) | {
|
|
2621
|
+
} | import("..").EmbedContent | {
|
|
2979
2622
|
type: "Color";
|
|
2980
2623
|
value: string;
|
|
2981
2624
|
__TYPE__: "FieldContent";
|
|
@@ -3082,9 +2725,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3082
2725
|
url: string;
|
|
3083
2726
|
name: string;
|
|
3084
2727
|
kind: string;
|
|
2728
|
+
size: string;
|
|
3085
2729
|
} & {
|
|
3086
2730
|
date?: string | null | undefined;
|
|
3087
|
-
size?: string;
|
|
3088
2731
|
} & {
|
|
3089
2732
|
__TYPE__: "FileLink";
|
|
3090
2733
|
} & {
|
|
@@ -3151,9 +2794,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3151
2794
|
url: string;
|
|
3152
2795
|
name: string;
|
|
3153
2796
|
kind: string;
|
|
2797
|
+
size: string;
|
|
3154
2798
|
} & {
|
|
3155
2799
|
date?: string | null | undefined;
|
|
3156
|
-
size?: string;
|
|
3157
2800
|
} & {
|
|
3158
2801
|
__TYPE__: "FileLink";
|
|
3159
2802
|
} & {
|
|
@@ -3179,24 +2822,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3179
2822
|
direction?: string | null | undefined;
|
|
3180
2823
|
}) | ({
|
|
3181
2824
|
type: "embed";
|
|
3182
|
-
data:
|
|
3183
|
-
embed_url: string;
|
|
3184
|
-
type: string;
|
|
3185
|
-
} & {
|
|
3186
|
-
version?: string | number | null;
|
|
3187
|
-
title?: string | null | undefined;
|
|
3188
|
-
author_name?: string | null | undefined;
|
|
3189
|
-
author_url?: string | null | undefined;
|
|
3190
|
-
provider_name?: string | null | undefined;
|
|
3191
|
-
provider_url?: string | null | undefined;
|
|
3192
|
-
cache_age?: string | number | null;
|
|
3193
|
-
thumbnail_url?: string | null | undefined;
|
|
3194
|
-
thumbnail_width?: number | null | undefined;
|
|
3195
|
-
thumbnail_height?: number | null | undefined;
|
|
3196
|
-
html?: string | null | undefined;
|
|
3197
|
-
} & {
|
|
3198
|
-
__TYPE__: "EmbedContent";
|
|
3199
|
-
};
|
|
2825
|
+
data: import("..").EmbedContent;
|
|
3200
2826
|
} & {
|
|
3201
2827
|
label?: string | null | undefined;
|
|
3202
2828
|
direction?: string | null | undefined;
|
|
@@ -3226,24 +2852,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3226
2852
|
value: [string, {
|
|
3227
2853
|
__TYPE__: "BooleanContent";
|
|
3228
2854
|
value: boolean;
|
|
3229
|
-
} | ({
|
|
3230
|
-
embed_url: string;
|
|
3231
|
-
type: string;
|
|
3232
|
-
} & {
|
|
3233
|
-
version?: string | number | null;
|
|
3234
|
-
title?: string | null | undefined;
|
|
3235
|
-
author_name?: string | null | undefined;
|
|
3236
|
-
author_url?: string | null | undefined;
|
|
3237
|
-
provider_name?: string | null | undefined;
|
|
3238
|
-
provider_url?: string | null | undefined;
|
|
3239
|
-
cache_age?: string | number | null;
|
|
3240
|
-
thumbnail_url?: string | null | undefined;
|
|
3241
|
-
thumbnail_width?: number | null | undefined;
|
|
3242
|
-
thumbnail_height?: number | null | undefined;
|
|
3243
|
-
html?: string | null | undefined;
|
|
3244
|
-
} & {
|
|
3245
|
-
__TYPE__: "EmbedContent";
|
|
3246
|
-
}) | {
|
|
2855
|
+
} | import("..").EmbedContent | {
|
|
3247
2856
|
type: "Color";
|
|
3248
2857
|
value: string;
|
|
3249
2858
|
__TYPE__: "FieldContent";
|
|
@@ -3350,9 +2959,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3350
2959
|
url: string;
|
|
3351
2960
|
name: string;
|
|
3352
2961
|
kind: string;
|
|
2962
|
+
size: string;
|
|
3353
2963
|
} & {
|
|
3354
2964
|
date?: string | null | undefined;
|
|
3355
|
-
size?: string;
|
|
3356
2965
|
} & {
|
|
3357
2966
|
__TYPE__: "FileLink";
|
|
3358
2967
|
} & {
|
|
@@ -3419,9 +3028,9 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3419
3028
|
url: string;
|
|
3420
3029
|
name: string;
|
|
3421
3030
|
kind: string;
|
|
3031
|
+
size: string;
|
|
3422
3032
|
} & {
|
|
3423
3033
|
date?: string | null | undefined;
|
|
3424
|
-
size?: string;
|
|
3425
3034
|
} & {
|
|
3426
3035
|
__TYPE__: "FileLink";
|
|
3427
3036
|
} & {
|
|
@@ -3447,24 +3056,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3447
3056
|
direction?: string | null | undefined;
|
|
3448
3057
|
}) | ({
|
|
3449
3058
|
type: "embed";
|
|
3450
|
-
data:
|
|
3451
|
-
embed_url: string;
|
|
3452
|
-
type: string;
|
|
3453
|
-
} & {
|
|
3454
|
-
version?: string | number | null;
|
|
3455
|
-
title?: string | null | undefined;
|
|
3456
|
-
author_name?: string | null | undefined;
|
|
3457
|
-
author_url?: string | null | undefined;
|
|
3458
|
-
provider_name?: string | null | undefined;
|
|
3459
|
-
provider_url?: string | null | undefined;
|
|
3460
|
-
cache_age?: string | number | null;
|
|
3461
|
-
thumbnail_url?: string | null | undefined;
|
|
3462
|
-
thumbnail_width?: number | null | undefined;
|
|
3463
|
-
thumbnail_height?: number | null | undefined;
|
|
3464
|
-
html?: string | null | undefined;
|
|
3465
|
-
} & {
|
|
3466
|
-
__TYPE__: "EmbedContent";
|
|
3467
|
-
};
|
|
3059
|
+
data: import("..").EmbedContent;
|
|
3468
3060
|
} & {
|
|
3469
3061
|
label?: string | null | undefined;
|
|
3470
3062
|
direction?: string | null | undefined;
|