@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
|
@@ -4,24 +4,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
4
4
|
decode: (value: unknown) => import("fp-ts/lib/Either").Left<t.Errors> | import("fp-ts/lib/Either").Right<{
|
|
5
5
|
__TYPE__: "BooleanContent";
|
|
6
6
|
value: boolean;
|
|
7
|
-
}> | import("fp-ts/lib/Either").Right<{
|
|
8
|
-
embed_url: string;
|
|
9
|
-
type: string;
|
|
10
|
-
} & {
|
|
11
|
-
version?: string | number | null;
|
|
12
|
-
title?: string | null | undefined;
|
|
13
|
-
author_name?: string | null | undefined;
|
|
14
|
-
author_url?: string | null | undefined;
|
|
15
|
-
provider_name?: string | null | undefined;
|
|
16
|
-
provider_url?: string | null | undefined;
|
|
17
|
-
cache_age?: string | number | null;
|
|
18
|
-
thumbnail_url?: string | null | undefined;
|
|
19
|
-
thumbnail_width?: number | null | undefined;
|
|
20
|
-
thumbnail_height?: number | null | undefined;
|
|
21
|
-
html?: string | null | undefined;
|
|
22
|
-
} & {
|
|
23
|
-
__TYPE__: "EmbedContent";
|
|
24
|
-
}> | import("fp-ts/lib/Either").Right<{
|
|
7
|
+
}> | import("fp-ts/lib/Either").Right<import("../..").EmbedContent> | import("fp-ts/lib/Either").Right<{
|
|
25
8
|
type: "Color";
|
|
26
9
|
value: string;
|
|
27
10
|
__TYPE__: "FieldContent";
|
|
@@ -128,9 +111,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
128
111
|
url: string;
|
|
129
112
|
name: string;
|
|
130
113
|
kind: string;
|
|
114
|
+
size: string;
|
|
131
115
|
} & {
|
|
132
116
|
date?: string | null | undefined;
|
|
133
|
-
size?: string;
|
|
134
117
|
} & {
|
|
135
118
|
__TYPE__: "FileLink";
|
|
136
119
|
} & {
|
|
@@ -197,9 +180,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
197
180
|
url: string;
|
|
198
181
|
name: string;
|
|
199
182
|
kind: string;
|
|
183
|
+
size: string;
|
|
200
184
|
} & {
|
|
201
185
|
date?: string | null | undefined;
|
|
202
|
-
size?: string;
|
|
203
186
|
} & {
|
|
204
187
|
__TYPE__: "FileLink";
|
|
205
188
|
} & {
|
|
@@ -225,24 +208,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
225
208
|
direction?: string | null | undefined;
|
|
226
209
|
}) | ({
|
|
227
210
|
type: "embed";
|
|
228
|
-
data:
|
|
229
|
-
embed_url: string;
|
|
230
|
-
type: string;
|
|
231
|
-
} & {
|
|
232
|
-
version?: string | number | null;
|
|
233
|
-
title?: string | null | undefined;
|
|
234
|
-
author_name?: string | null | undefined;
|
|
235
|
-
author_url?: string | null | undefined;
|
|
236
|
-
provider_name?: string | null | undefined;
|
|
237
|
-
provider_url?: string | null | undefined;
|
|
238
|
-
cache_age?: string | number | null;
|
|
239
|
-
thumbnail_url?: string | null | undefined;
|
|
240
|
-
thumbnail_width?: number | null | undefined;
|
|
241
|
-
thumbnail_height?: number | null | undefined;
|
|
242
|
-
html?: string | null | undefined;
|
|
243
|
-
} & {
|
|
244
|
-
__TYPE__: "EmbedContent";
|
|
245
|
-
};
|
|
211
|
+
data: import("../..").EmbedContent;
|
|
246
212
|
} & {
|
|
247
213
|
label?: string | null | undefined;
|
|
248
214
|
direction?: string | null | undefined;
|
|
@@ -271,24 +237,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
271
237
|
[x: string]: {
|
|
272
238
|
__TYPE__: "BooleanContent";
|
|
273
239
|
value: boolean;
|
|
274
|
-
} | ({
|
|
275
|
-
embed_url: string;
|
|
276
|
-
type: string;
|
|
277
|
-
} & {
|
|
278
|
-
version?: string | number | null;
|
|
279
|
-
title?: string | null | undefined;
|
|
280
|
-
author_name?: string | null | undefined;
|
|
281
|
-
author_url?: string | null | undefined;
|
|
282
|
-
provider_name?: string | null | undefined;
|
|
283
|
-
provider_url?: string | null | undefined;
|
|
284
|
-
cache_age?: string | number | null;
|
|
285
|
-
thumbnail_url?: string | null | undefined;
|
|
286
|
-
thumbnail_width?: number | null | undefined;
|
|
287
|
-
thumbnail_height?: number | null | undefined;
|
|
288
|
-
html?: string | null | undefined;
|
|
289
|
-
} & {
|
|
290
|
-
__TYPE__: "EmbedContent";
|
|
291
|
-
}) | {
|
|
240
|
+
} | import("../..").EmbedContent | {
|
|
292
241
|
type: "Color";
|
|
293
242
|
value: string;
|
|
294
243
|
__TYPE__: "FieldContent";
|
|
@@ -395,9 +344,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
395
344
|
url: string;
|
|
396
345
|
name: string;
|
|
397
346
|
kind: string;
|
|
347
|
+
size: string;
|
|
398
348
|
} & {
|
|
399
349
|
date?: string | null | undefined;
|
|
400
|
-
size?: string;
|
|
401
350
|
} & {
|
|
402
351
|
__TYPE__: "FileLink";
|
|
403
352
|
} & {
|
|
@@ -464,9 +413,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
464
413
|
url: string;
|
|
465
414
|
name: string;
|
|
466
415
|
kind: string;
|
|
416
|
+
size: string;
|
|
467
417
|
} & {
|
|
468
418
|
date?: string | null | undefined;
|
|
469
|
-
size?: string;
|
|
470
419
|
} & {
|
|
471
420
|
__TYPE__: "FileLink";
|
|
472
421
|
} & {
|
|
@@ -492,24 +441,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
492
441
|
direction?: string | null | undefined;
|
|
493
442
|
}) | ({
|
|
494
443
|
type: "embed";
|
|
495
|
-
data:
|
|
496
|
-
embed_url: string;
|
|
497
|
-
type: string;
|
|
498
|
-
} & {
|
|
499
|
-
version?: string | number | null;
|
|
500
|
-
title?: string | null | undefined;
|
|
501
|
-
author_name?: string | null | undefined;
|
|
502
|
-
author_url?: string | null | undefined;
|
|
503
|
-
provider_name?: string | null | undefined;
|
|
504
|
-
provider_url?: string | null | undefined;
|
|
505
|
-
cache_age?: string | number | null;
|
|
506
|
-
thumbnail_url?: string | null | undefined;
|
|
507
|
-
thumbnail_width?: number | null | undefined;
|
|
508
|
-
thumbnail_height?: number | null | undefined;
|
|
509
|
-
html?: string | null | undefined;
|
|
510
|
-
} & {
|
|
511
|
-
__TYPE__: "EmbedContent";
|
|
512
|
-
};
|
|
444
|
+
data: import("../..").EmbedContent;
|
|
513
445
|
} & {
|
|
514
446
|
label?: string | null | undefined;
|
|
515
447
|
direction?: string | null | undefined;
|
|
@@ -539,24 +471,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
539
471
|
value: [string, {
|
|
540
472
|
__TYPE__: "BooleanContent";
|
|
541
473
|
value: boolean;
|
|
542
|
-
} | ({
|
|
543
|
-
embed_url: string;
|
|
544
|
-
type: string;
|
|
545
|
-
} & {
|
|
546
|
-
version?: string | number | null;
|
|
547
|
-
title?: string | null | undefined;
|
|
548
|
-
author_name?: string | null | undefined;
|
|
549
|
-
author_url?: string | null | undefined;
|
|
550
|
-
provider_name?: string | null | undefined;
|
|
551
|
-
provider_url?: string | null | undefined;
|
|
552
|
-
cache_age?: string | number | null;
|
|
553
|
-
thumbnail_url?: string | null | undefined;
|
|
554
|
-
thumbnail_width?: number | null | undefined;
|
|
555
|
-
thumbnail_height?: number | null | undefined;
|
|
556
|
-
html?: string | null | undefined;
|
|
557
|
-
} & {
|
|
558
|
-
__TYPE__: "EmbedContent";
|
|
559
|
-
}) | {
|
|
474
|
+
} | import("../..").EmbedContent | {
|
|
560
475
|
type: "Color";
|
|
561
476
|
value: string;
|
|
562
477
|
__TYPE__: "FieldContent";
|
|
@@ -663,9 +578,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
663
578
|
url: string;
|
|
664
579
|
name: string;
|
|
665
580
|
kind: string;
|
|
581
|
+
size: string;
|
|
666
582
|
} & {
|
|
667
583
|
date?: string | null | undefined;
|
|
668
|
-
size?: string;
|
|
669
584
|
} & {
|
|
670
585
|
__TYPE__: "FileLink";
|
|
671
586
|
} & {
|
|
@@ -732,9 +647,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
732
647
|
url: string;
|
|
733
648
|
name: string;
|
|
734
649
|
kind: string;
|
|
650
|
+
size: string;
|
|
735
651
|
} & {
|
|
736
652
|
date?: string | null | undefined;
|
|
737
|
-
size?: string;
|
|
738
653
|
} & {
|
|
739
654
|
__TYPE__: "FileLink";
|
|
740
655
|
} & {
|
|
@@ -760,24 +675,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
760
675
|
direction?: string | null | undefined;
|
|
761
676
|
}) | ({
|
|
762
677
|
type: "embed";
|
|
763
|
-
data:
|
|
764
|
-
embed_url: string;
|
|
765
|
-
type: string;
|
|
766
|
-
} & {
|
|
767
|
-
version?: string | number | null;
|
|
768
|
-
title?: string | null | undefined;
|
|
769
|
-
author_name?: string | null | undefined;
|
|
770
|
-
author_url?: string | null | undefined;
|
|
771
|
-
provider_name?: string | null | undefined;
|
|
772
|
-
provider_url?: string | null | undefined;
|
|
773
|
-
cache_age?: string | number | null;
|
|
774
|
-
thumbnail_url?: string | null | undefined;
|
|
775
|
-
thumbnail_width?: number | null | undefined;
|
|
776
|
-
thumbnail_height?: number | null | undefined;
|
|
777
|
-
html?: string | null | undefined;
|
|
778
|
-
} & {
|
|
779
|
-
__TYPE__: "EmbedContent";
|
|
780
|
-
};
|
|
678
|
+
data: import("../..").EmbedContent;
|
|
781
679
|
} & {
|
|
782
680
|
label?: string | null | undefined;
|
|
783
681
|
direction?: string | null | undefined;
|
|
@@ -809,24 +707,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
809
707
|
[x: string]: {
|
|
810
708
|
__TYPE__: "BooleanContent";
|
|
811
709
|
value: boolean;
|
|
812
|
-
} | ({
|
|
813
|
-
embed_url: string;
|
|
814
|
-
type: string;
|
|
815
|
-
} & {
|
|
816
|
-
version?: string | number | null;
|
|
817
|
-
title?: string | null | undefined;
|
|
818
|
-
author_name?: string | null | undefined;
|
|
819
|
-
author_url?: string | null | undefined;
|
|
820
|
-
provider_name?: string | null | undefined;
|
|
821
|
-
provider_url?: string | null | undefined;
|
|
822
|
-
cache_age?: string | number | null;
|
|
823
|
-
thumbnail_url?: string | null | undefined;
|
|
824
|
-
thumbnail_width?: number | null | undefined;
|
|
825
|
-
thumbnail_height?: number | null | undefined;
|
|
826
|
-
html?: string | null | undefined;
|
|
827
|
-
} & {
|
|
828
|
-
__TYPE__: "EmbedContent";
|
|
829
|
-
}) | {
|
|
710
|
+
} | import("../..").EmbedContent | {
|
|
830
711
|
type: "Color";
|
|
831
712
|
value: string;
|
|
832
713
|
__TYPE__: "FieldContent";
|
|
@@ -933,9 +814,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
933
814
|
url: string;
|
|
934
815
|
name: string;
|
|
935
816
|
kind: string;
|
|
817
|
+
size: string;
|
|
936
818
|
} & {
|
|
937
819
|
date?: string | null | undefined;
|
|
938
|
-
size?: string;
|
|
939
820
|
} & {
|
|
940
821
|
__TYPE__: "FileLink";
|
|
941
822
|
} & {
|
|
@@ -1002,9 +883,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1002
883
|
url: string;
|
|
1003
884
|
name: string;
|
|
1004
885
|
kind: string;
|
|
886
|
+
size: string;
|
|
1005
887
|
} & {
|
|
1006
888
|
date?: string | null | undefined;
|
|
1007
|
-
size?: string;
|
|
1008
889
|
} & {
|
|
1009
890
|
__TYPE__: "FileLink";
|
|
1010
891
|
} & {
|
|
@@ -1030,24 +911,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1030
911
|
direction?: string | null | undefined;
|
|
1031
912
|
}) | ({
|
|
1032
913
|
type: "embed";
|
|
1033
|
-
data:
|
|
1034
|
-
embed_url: string;
|
|
1035
|
-
type: string;
|
|
1036
|
-
} & {
|
|
1037
|
-
version?: string | number | null;
|
|
1038
|
-
title?: string | null | undefined;
|
|
1039
|
-
author_name?: string | null | undefined;
|
|
1040
|
-
author_url?: string | null | undefined;
|
|
1041
|
-
provider_name?: string | null | undefined;
|
|
1042
|
-
provider_url?: string | null | undefined;
|
|
1043
|
-
cache_age?: string | number | null;
|
|
1044
|
-
thumbnail_url?: string | null | undefined;
|
|
1045
|
-
thumbnail_width?: number | null | undefined;
|
|
1046
|
-
thumbnail_height?: number | null | undefined;
|
|
1047
|
-
html?: string | null | undefined;
|
|
1048
|
-
} & {
|
|
1049
|
-
__TYPE__: "EmbedContent";
|
|
1050
|
-
};
|
|
914
|
+
data: import("../..").EmbedContent;
|
|
1051
915
|
} & {
|
|
1052
916
|
label?: string | null | undefined;
|
|
1053
917
|
direction?: string | null | undefined;
|
|
@@ -1077,24 +941,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1077
941
|
value: [string, {
|
|
1078
942
|
__TYPE__: "BooleanContent";
|
|
1079
943
|
value: boolean;
|
|
1080
|
-
} | ({
|
|
1081
|
-
embed_url: string;
|
|
1082
|
-
type: string;
|
|
1083
|
-
} & {
|
|
1084
|
-
version?: string | number | null;
|
|
1085
|
-
title?: string | null | undefined;
|
|
1086
|
-
author_name?: string | null | undefined;
|
|
1087
|
-
author_url?: string | null | undefined;
|
|
1088
|
-
provider_name?: string | null | undefined;
|
|
1089
|
-
provider_url?: string | null | undefined;
|
|
1090
|
-
cache_age?: string | number | null;
|
|
1091
|
-
thumbnail_url?: string | null | undefined;
|
|
1092
|
-
thumbnail_width?: number | null | undefined;
|
|
1093
|
-
thumbnail_height?: number | null | undefined;
|
|
1094
|
-
html?: string | null | undefined;
|
|
1095
|
-
} & {
|
|
1096
|
-
__TYPE__: "EmbedContent";
|
|
1097
|
-
}) | {
|
|
944
|
+
} | import("../..").EmbedContent | {
|
|
1098
945
|
type: "Color";
|
|
1099
946
|
value: string;
|
|
1100
947
|
__TYPE__: "FieldContent";
|
|
@@ -1201,9 +1048,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1201
1048
|
url: string;
|
|
1202
1049
|
name: string;
|
|
1203
1050
|
kind: string;
|
|
1051
|
+
size: string;
|
|
1204
1052
|
} & {
|
|
1205
1053
|
date?: string | null | undefined;
|
|
1206
|
-
size?: string;
|
|
1207
1054
|
} & {
|
|
1208
1055
|
__TYPE__: "FileLink";
|
|
1209
1056
|
} & {
|
|
@@ -1270,9 +1117,9 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1270
1117
|
url: string;
|
|
1271
1118
|
name: string;
|
|
1272
1119
|
kind: string;
|
|
1120
|
+
size: string;
|
|
1273
1121
|
} & {
|
|
1274
1122
|
date?: string | null | undefined;
|
|
1275
|
-
size?: string;
|
|
1276
1123
|
} & {
|
|
1277
1124
|
__TYPE__: "FileLink";
|
|
1278
1125
|
} & {
|
|
@@ -1298,24 +1145,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1298
1145
|
direction?: string | null | undefined;
|
|
1299
1146
|
}) | ({
|
|
1300
1147
|
type: "embed";
|
|
1301
|
-
data:
|
|
1302
|
-
embed_url: string;
|
|
1303
|
-
type: string;
|
|
1304
|
-
} & {
|
|
1305
|
-
version?: string | number | null;
|
|
1306
|
-
title?: string | null | undefined;
|
|
1307
|
-
author_name?: string | null | undefined;
|
|
1308
|
-
author_url?: string | null | undefined;
|
|
1309
|
-
provider_name?: string | null | undefined;
|
|
1310
|
-
provider_url?: string | null | undefined;
|
|
1311
|
-
cache_age?: string | number | null;
|
|
1312
|
-
thumbnail_url?: string | null | undefined;
|
|
1313
|
-
thumbnail_width?: number | null | undefined;
|
|
1314
|
-
thumbnail_height?: number | null | undefined;
|
|
1315
|
-
html?: string | null | undefined;
|
|
1316
|
-
} & {
|
|
1317
|
-
__TYPE__: "EmbedContent";
|
|
1318
|
-
};
|
|
1148
|
+
data: import("../..").EmbedContent;
|
|
1319
1149
|
} & {
|
|
1320
1150
|
label?: string | null | undefined;
|
|
1321
1151
|
direction?: string | null | undefined;
|
|
@@ -1351,24 +1181,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1351
1181
|
}>>, t.ExactC<t.TypeC<{
|
|
1352
1182
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1353
1183
|
value: t.BooleanC;
|
|
1354
|
-
}>>, t.
|
|
1355
|
-
embed_url: t.StringC;
|
|
1356
|
-
type: t.StringC;
|
|
1357
|
-
}>, t.PartialC<{
|
|
1358
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1359
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1360
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1361
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1362
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1363
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1364
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1365
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1366
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1367
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1368
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1369
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1370
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1371
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
1184
|
+
}>>, t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
1372
1185
|
type: t.LiteralC<"Text">;
|
|
1373
1186
|
value: t.Type<string, string, unknown>;
|
|
1374
1187
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1473,9 +1286,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1473
1286
|
url: t.StringC;
|
|
1474
1287
|
name: t.StringC;
|
|
1475
1288
|
kind: t.StringC;
|
|
1289
|
+
size: t.StringC;
|
|
1476
1290
|
}>, t.PartialC<{
|
|
1477
1291
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1478
|
-
size: t.StringC;
|
|
1479
1292
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1480
1293
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1481
1294
|
}>, t.PartialC<{
|
|
@@ -1541,9 +1354,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1541
1354
|
url: string;
|
|
1542
1355
|
name: string;
|
|
1543
1356
|
kind: string;
|
|
1357
|
+
size: string;
|
|
1544
1358
|
} & {
|
|
1545
1359
|
date?: string | null | undefined;
|
|
1546
|
-
size?: string;
|
|
1547
1360
|
} & {
|
|
1548
1361
|
__TYPE__: "FileLink";
|
|
1549
1362
|
} & {
|
|
@@ -1579,9 +1392,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1579
1392
|
url: string;
|
|
1580
1393
|
name: string;
|
|
1581
1394
|
kind: string;
|
|
1395
|
+
size: string;
|
|
1582
1396
|
} & {
|
|
1583
1397
|
date?: string | null | undefined;
|
|
1584
|
-
size?: string;
|
|
1585
1398
|
} & {
|
|
1586
1399
|
__TYPE__: "FileLink";
|
|
1587
1400
|
} & {
|
|
@@ -1607,24 +1420,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1607
1420
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1608
1421
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1609
1422
|
type: t.LiteralC<"embed">;
|
|
1610
|
-
data: t.
|
|
1611
|
-
embed_url: t.StringC;
|
|
1612
|
-
type: t.StringC;
|
|
1613
|
-
}>, t.PartialC<{
|
|
1614
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1615
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1616
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1617
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1618
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1619
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1620
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1621
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1622
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1623
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1624
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1625
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1626
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1627
|
-
}>>]>;
|
|
1423
|
+
data: t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>;
|
|
1628
1424
|
}>, t.PartialC<{
|
|
1629
1425
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1630
1426
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1662,24 +1458,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1662
1458
|
}>>, t.ExactC<t.TypeC<{
|
|
1663
1459
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1664
1460
|
value: t.BooleanC;
|
|
1665
|
-
}>>, t.
|
|
1666
|
-
embed_url: t.StringC;
|
|
1667
|
-
type: t.StringC;
|
|
1668
|
-
}>, t.PartialC<{
|
|
1669
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1670
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1671
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1672
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1673
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1674
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1675
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1676
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1677
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1678
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1679
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1680
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1681
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1682
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
1461
|
+
}>>, t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
1683
1462
|
type: t.LiteralC<"Text">;
|
|
1684
1463
|
value: t.Type<string, string, unknown>;
|
|
1685
1464
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -1784,9 +1563,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1784
1563
|
url: t.StringC;
|
|
1785
1564
|
name: t.StringC;
|
|
1786
1565
|
kind: t.StringC;
|
|
1566
|
+
size: t.StringC;
|
|
1787
1567
|
}>, t.PartialC<{
|
|
1788
1568
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1789
|
-
size: t.StringC;
|
|
1790
1569
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1791
1570
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1792
1571
|
}>, t.PartialC<{
|
|
@@ -1852,9 +1631,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1852
1631
|
url: string;
|
|
1853
1632
|
name: string;
|
|
1854
1633
|
kind: string;
|
|
1634
|
+
size: string;
|
|
1855
1635
|
} & {
|
|
1856
1636
|
date?: string | null | undefined;
|
|
1857
|
-
size?: string;
|
|
1858
1637
|
} & {
|
|
1859
1638
|
__TYPE__: "FileLink";
|
|
1860
1639
|
} & {
|
|
@@ -1890,9 +1669,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1890
1669
|
url: string;
|
|
1891
1670
|
name: string;
|
|
1892
1671
|
kind: string;
|
|
1672
|
+
size: string;
|
|
1893
1673
|
} & {
|
|
1894
1674
|
date?: string | null | undefined;
|
|
1895
|
-
size?: string;
|
|
1896
1675
|
} & {
|
|
1897
1676
|
__TYPE__: "FileLink";
|
|
1898
1677
|
} & {
|
|
@@ -1918,24 +1697,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1918
1697
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1919
1698
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1920
1699
|
type: t.LiteralC<"embed">;
|
|
1921
|
-
data: t.
|
|
1922
|
-
embed_url: t.StringC;
|
|
1923
|
-
type: t.StringC;
|
|
1924
|
-
}>, t.PartialC<{
|
|
1925
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1926
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1927
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1928
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1929
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1930
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1931
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1932
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1933
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1934
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1935
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1936
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1937
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1938
|
-
}>>]>;
|
|
1700
|
+
data: t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>;
|
|
1939
1701
|
}>, t.PartialC<{
|
|
1940
1702
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1941
1703
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1975,24 +1737,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1975
1737
|
}>>, t.ExactC<t.TypeC<{
|
|
1976
1738
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1977
1739
|
value: t.BooleanC;
|
|
1978
|
-
}>>, t.
|
|
1979
|
-
embed_url: t.StringC;
|
|
1980
|
-
type: t.StringC;
|
|
1981
|
-
}>, t.PartialC<{
|
|
1982
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1983
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1984
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1985
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1986
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1987
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1988
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1989
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1990
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1991
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1992
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1993
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1994
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1995
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
1740
|
+
}>>, t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
1996
1741
|
type: t.LiteralC<"Text">;
|
|
1997
1742
|
value: t.Type<string, string, unknown>;
|
|
1998
1743
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -2097,9 +1842,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2097
1842
|
url: t.StringC;
|
|
2098
1843
|
name: t.StringC;
|
|
2099
1844
|
kind: t.StringC;
|
|
1845
|
+
size: t.StringC;
|
|
2100
1846
|
}>, t.PartialC<{
|
|
2101
1847
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2102
|
-
size: t.StringC;
|
|
2103
1848
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2104
1849
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2105
1850
|
}>, t.PartialC<{
|
|
@@ -2165,9 +1910,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2165
1910
|
url: string;
|
|
2166
1911
|
name: string;
|
|
2167
1912
|
kind: string;
|
|
1913
|
+
size: string;
|
|
2168
1914
|
} & {
|
|
2169
1915
|
date?: string | null | undefined;
|
|
2170
|
-
size?: string;
|
|
2171
1916
|
} & {
|
|
2172
1917
|
__TYPE__: "FileLink";
|
|
2173
1918
|
} & {
|
|
@@ -2203,9 +1948,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2203
1948
|
url: string;
|
|
2204
1949
|
name: string;
|
|
2205
1950
|
kind: string;
|
|
1951
|
+
size: string;
|
|
2206
1952
|
} & {
|
|
2207
1953
|
date?: string | null | undefined;
|
|
2208
|
-
size?: string;
|
|
2209
1954
|
} & {
|
|
2210
1955
|
__TYPE__: "FileLink";
|
|
2211
1956
|
} & {
|
|
@@ -2231,24 +1976,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2231
1976
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2232
1977
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2233
1978
|
type: t.LiteralC<"embed">;
|
|
2234
|
-
data: t.
|
|
2235
|
-
embed_url: t.StringC;
|
|
2236
|
-
type: t.StringC;
|
|
2237
|
-
}>, t.PartialC<{
|
|
2238
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2239
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2240
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2241
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2242
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2243
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2244
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2245
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2246
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2247
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2248
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2249
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2250
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2251
|
-
}>>]>;
|
|
1979
|
+
data: t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>;
|
|
2252
1980
|
}>, t.PartialC<{
|
|
2253
1981
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2254
1982
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -2286,24 +2014,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2286
2014
|
}>>, t.ExactC<t.TypeC<{
|
|
2287
2015
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
2288
2016
|
value: t.BooleanC;
|
|
2289
|
-
}>>, t.
|
|
2290
|
-
embed_url: t.StringC;
|
|
2291
|
-
type: t.StringC;
|
|
2292
|
-
}>, t.PartialC<{
|
|
2293
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2294
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2295
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2296
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2297
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2298
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2299
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2300
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2301
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2302
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2303
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2304
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2305
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2306
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2017
|
+
}>>, t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
2307
2018
|
type: t.LiteralC<"Text">;
|
|
2308
2019
|
value: t.Type<string, string, unknown>;
|
|
2309
2020
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -2408,9 +2119,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2408
2119
|
url: t.StringC;
|
|
2409
2120
|
name: t.StringC;
|
|
2410
2121
|
kind: t.StringC;
|
|
2122
|
+
size: t.StringC;
|
|
2411
2123
|
}>, t.PartialC<{
|
|
2412
2124
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2413
|
-
size: t.StringC;
|
|
2414
2125
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2415
2126
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2416
2127
|
}>, t.PartialC<{
|
|
@@ -2476,9 +2187,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2476
2187
|
url: string;
|
|
2477
2188
|
name: string;
|
|
2478
2189
|
kind: string;
|
|
2190
|
+
size: string;
|
|
2479
2191
|
} & {
|
|
2480
2192
|
date?: string | null | undefined;
|
|
2481
|
-
size?: string;
|
|
2482
2193
|
} & {
|
|
2483
2194
|
__TYPE__: "FileLink";
|
|
2484
2195
|
} & {
|
|
@@ -2514,9 +2225,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2514
2225
|
url: string;
|
|
2515
2226
|
name: string;
|
|
2516
2227
|
kind: string;
|
|
2228
|
+
size: string;
|
|
2517
2229
|
} & {
|
|
2518
2230
|
date?: string | null | undefined;
|
|
2519
|
-
size?: string;
|
|
2520
2231
|
} & {
|
|
2521
2232
|
__TYPE__: "FileLink";
|
|
2522
2233
|
} & {
|
|
@@ -2542,24 +2253,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2542
2253
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2543
2254
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2544
2255
|
type: t.LiteralC<"embed">;
|
|
2545
|
-
data: t.
|
|
2546
|
-
embed_url: t.StringC;
|
|
2547
|
-
type: t.StringC;
|
|
2548
|
-
}>, t.PartialC<{
|
|
2549
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2550
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2551
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2552
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2553
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2554
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2555
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2556
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2557
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2558
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2559
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2560
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2561
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2562
|
-
}>>]>;
|
|
2256
|
+
data: t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>;
|
|
2563
2257
|
}>, t.PartialC<{
|
|
2564
2258
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2565
2259
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -2596,24 +2290,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2596
2290
|
}>>, t.ExactC<t.TypeC<{
|
|
2597
2291
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
2598
2292
|
value: t.BooleanC;
|
|
2599
|
-
}>>, t.
|
|
2600
|
-
embed_url: t.StringC;
|
|
2601
|
-
type: t.StringC;
|
|
2602
|
-
}>, t.PartialC<{
|
|
2603
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2604
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2605
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2606
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2607
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2608
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2609
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2610
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2611
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2612
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2613
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2614
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2615
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2616
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2293
|
+
}>>, t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
2617
2294
|
type: t.LiteralC<"Text">;
|
|
2618
2295
|
value: t.Type<string, string, unknown>;
|
|
2619
2296
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -2718,9 +2395,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2718
2395
|
url: t.StringC;
|
|
2719
2396
|
name: t.StringC;
|
|
2720
2397
|
kind: t.StringC;
|
|
2398
|
+
size: t.StringC;
|
|
2721
2399
|
}>, t.PartialC<{
|
|
2722
2400
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2723
|
-
size: t.StringC;
|
|
2724
2401
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2725
2402
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2726
2403
|
}>, t.PartialC<{
|
|
@@ -2786,9 +2463,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2786
2463
|
url: string;
|
|
2787
2464
|
name: string;
|
|
2788
2465
|
kind: string;
|
|
2466
|
+
size: string;
|
|
2789
2467
|
} & {
|
|
2790
2468
|
date?: string | null | undefined;
|
|
2791
|
-
size?: string;
|
|
2792
2469
|
} & {
|
|
2793
2470
|
__TYPE__: "FileLink";
|
|
2794
2471
|
} & {
|
|
@@ -2824,9 +2501,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2824
2501
|
url: string;
|
|
2825
2502
|
name: string;
|
|
2826
2503
|
kind: string;
|
|
2504
|
+
size: string;
|
|
2827
2505
|
} & {
|
|
2828
2506
|
date?: string | null | undefined;
|
|
2829
|
-
size?: string;
|
|
2830
2507
|
} & {
|
|
2831
2508
|
__TYPE__: "FileLink";
|
|
2832
2509
|
} & {
|
|
@@ -2852,24 +2529,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2852
2529
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2853
2530
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2854
2531
|
type: t.LiteralC<"embed">;
|
|
2855
|
-
data: t.
|
|
2856
|
-
embed_url: t.StringC;
|
|
2857
|
-
type: t.StringC;
|
|
2858
|
-
}>, t.PartialC<{
|
|
2859
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2860
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2861
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2862
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2863
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2864
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2865
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2866
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2867
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2868
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2869
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2870
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2871
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2872
|
-
}>>]>;
|
|
2532
|
+
data: t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>;
|
|
2873
2533
|
}>, t.PartialC<{
|
|
2874
2534
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2875
2535
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -2908,24 +2568,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2908
2568
|
}>>, t.ExactC<t.TypeC<{
|
|
2909
2569
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
2910
2570
|
value: t.BooleanC;
|
|
2911
|
-
}>>, t.
|
|
2912
|
-
embed_url: t.StringC;
|
|
2913
|
-
type: t.StringC;
|
|
2914
|
-
}>, t.PartialC<{
|
|
2915
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2916
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2917
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2918
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2919
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2920
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2921
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2922
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2923
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2924
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2925
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2926
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2927
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2928
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2571
|
+
}>>, t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>, t.ExactC<t.TypeC<{
|
|
2929
2572
|
type: t.LiteralC<"Text">;
|
|
2930
2573
|
value: t.Type<string, string, unknown>;
|
|
2931
2574
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -3030,9 +2673,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3030
2673
|
url: t.StringC;
|
|
3031
2674
|
name: t.StringC;
|
|
3032
2675
|
kind: t.StringC;
|
|
2676
|
+
size: t.StringC;
|
|
3033
2677
|
}>, t.PartialC<{
|
|
3034
2678
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3035
|
-
size: t.StringC;
|
|
3036
2679
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3037
2680
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
3038
2681
|
}>, t.PartialC<{
|
|
@@ -3098,9 +2741,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3098
2741
|
url: string;
|
|
3099
2742
|
name: string;
|
|
3100
2743
|
kind: string;
|
|
2744
|
+
size: string;
|
|
3101
2745
|
} & {
|
|
3102
2746
|
date?: string | null | undefined;
|
|
3103
|
-
size?: string;
|
|
3104
2747
|
} & {
|
|
3105
2748
|
__TYPE__: "FileLink";
|
|
3106
2749
|
} & {
|
|
@@ -3136,9 +2779,9 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3136
2779
|
url: string;
|
|
3137
2780
|
name: string;
|
|
3138
2781
|
kind: string;
|
|
2782
|
+
size: string;
|
|
3139
2783
|
} & {
|
|
3140
2784
|
date?: string | null | undefined;
|
|
3141
|
-
size?: string;
|
|
3142
2785
|
} & {
|
|
3143
2786
|
__TYPE__: "FileLink";
|
|
3144
2787
|
} & {
|
|
@@ -3164,24 +2807,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3164
2807
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3165
2808
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3166
2809
|
type: t.LiteralC<"embed">;
|
|
3167
|
-
data: t.
|
|
3168
|
-
embed_url: t.StringC;
|
|
3169
|
-
type: t.StringC;
|
|
3170
|
-
}>, t.PartialC<{
|
|
3171
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3172
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3173
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3174
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3175
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3176
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3177
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3178
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3179
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3180
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3181
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3182
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
3183
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
3184
|
-
}>>]>;
|
|
2810
|
+
data: t.Type<import("../..").EmbedContent, import("../..").EmbedContent, unknown>;
|
|
3185
2811
|
}>, t.PartialC<{
|
|
3186
2812
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3187
2813
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|