@prismicio/types-internal 2.0.0-alpha.7 → 2.0.0-alpha.9
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 +632 -56
- package/lib/content/fields/GroupContent.d.ts +199 -19
- package/lib/content/fields/WidgetContent.d.ts +960 -96
- package/lib/content/fields/index.d.ts +1 -0
- package/lib/content/fields/index.js +1 -0
- package/lib/content/fields/nestable/EmbedContent.d.ts +44 -41
- package/lib/content/fields/nestable/EmbedContent.js +15 -38
- package/lib/content/fields/nestable/NestableContent.d.ts +120 -13
- package/lib/content/fields/nestable/NestableContent.js +2 -1
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +76 -5
- package/lib/content/fields/nestable/RichTextContent/Blocks.js +15 -7
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +76 -4
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +240 -24
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +79 -7
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +240 -24
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +199 -19
- package/lib/content/fields/slices/Slice/index.d.ts +436 -37
- package/lib/content/fields/slices/Slice/index.js +3 -0
- package/lib/content/fields/slices/SliceItem.d.ts +474 -42
- package/lib/content/fields/slices/SliceItem.js +2 -2
- package/lib/content/fields/slices/SlicesContent.d.ts +720 -72
- package/lib/content/fields/slices/index.d.ts +1 -3
- package/lib/content/fields/slices/index.js +1 -3
- package/package.json +1 -1
- package/src/content/fields/index.ts +1 -0
- package/src/content/fields/nestable/EmbedContent.ts +20 -59
- package/src/content/fields/nestable/NestableContent.ts +3 -2
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +19 -8
- package/src/content/fields/slices/Slice/index.ts +4 -0
- package/src/content/fields/slices/SliceItem.ts +2 -2
- package/src/content/fields/slices/index.ts +1 -3
|
@@ -8,9 +8,30 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
8
8
|
name: string;
|
|
9
9
|
maybeLabel: string | undefined;
|
|
10
10
|
widget: {
|
|
11
|
+
type: string;
|
|
12
|
+
__TYPE__: "EmptyContent";
|
|
13
|
+
} | {
|
|
11
14
|
__TYPE__: "BooleanContent";
|
|
12
15
|
value: boolean;
|
|
13
|
-
} |
|
|
16
|
+
} | ({
|
|
17
|
+
embed_url: string;
|
|
18
|
+
type: string;
|
|
19
|
+
} & {
|
|
20
|
+
version?: string | number | null;
|
|
21
|
+
title?: string | null | undefined;
|
|
22
|
+
author_name?: string | null | undefined;
|
|
23
|
+
author_url?: string | null | undefined;
|
|
24
|
+
provider_name?: string | null | undefined;
|
|
25
|
+
provider_url?: string | null | undefined;
|
|
26
|
+
cache_age?: string | number | null;
|
|
27
|
+
thumbnail_url?: string | null | undefined;
|
|
28
|
+
thumbnail_width?: number | null | undefined;
|
|
29
|
+
thumbnail_height?: number | null | undefined;
|
|
30
|
+
html?: string | null | undefined;
|
|
31
|
+
} & {
|
|
32
|
+
__TYPE__: "EmbedContent";
|
|
33
|
+
all: unknown;
|
|
34
|
+
}) | {
|
|
14
35
|
type: "Color";
|
|
15
36
|
value: string;
|
|
16
37
|
__TYPE__: "FieldContent";
|
|
@@ -139,9 +160,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
139
160
|
title?: string;
|
|
140
161
|
} | null | undefined;
|
|
141
162
|
});
|
|
142
|
-
} | {
|
|
143
|
-
type: string;
|
|
144
|
-
__TYPE__: "EmptyContent";
|
|
145
163
|
} | {
|
|
146
164
|
__TYPE__: "StructuredTextContent";
|
|
147
165
|
value: (({
|
|
@@ -214,7 +232,25 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
214
232
|
direction?: string | null | undefined;
|
|
215
233
|
}) | ({
|
|
216
234
|
type: "embed";
|
|
217
|
-
data:
|
|
235
|
+
data: {
|
|
236
|
+
embed_url: string;
|
|
237
|
+
type: string;
|
|
238
|
+
} & {
|
|
239
|
+
version?: string | number | null;
|
|
240
|
+
title?: string | null | undefined;
|
|
241
|
+
author_name?: string | null | undefined;
|
|
242
|
+
author_url?: string | null | undefined;
|
|
243
|
+
provider_name?: string | null | undefined;
|
|
244
|
+
provider_url?: string | null | undefined;
|
|
245
|
+
cache_age?: string | number | null;
|
|
246
|
+
thumbnail_url?: string | null | undefined;
|
|
247
|
+
thumbnail_width?: number | null | undefined;
|
|
248
|
+
thumbnail_height?: number | null | undefined;
|
|
249
|
+
html?: string | null | undefined;
|
|
250
|
+
} & {
|
|
251
|
+
__TYPE__: "EmbedContent";
|
|
252
|
+
all: unknown;
|
|
253
|
+
};
|
|
218
254
|
} & {
|
|
219
255
|
label?: string | null | undefined;
|
|
220
256
|
direction?: string | null | undefined;
|
|
@@ -242,9 +278,30 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
242
278
|
value: {
|
|
243
279
|
__TYPE__: "GroupItemContent";
|
|
244
280
|
value: [string, {
|
|
281
|
+
type: string;
|
|
282
|
+
__TYPE__: "EmptyContent";
|
|
283
|
+
} | {
|
|
245
284
|
__TYPE__: "BooleanContent";
|
|
246
285
|
value: boolean;
|
|
247
|
-
} |
|
|
286
|
+
} | ({
|
|
287
|
+
embed_url: string;
|
|
288
|
+
type: string;
|
|
289
|
+
} & {
|
|
290
|
+
version?: string | number | null;
|
|
291
|
+
title?: string | null | undefined;
|
|
292
|
+
author_name?: string | null | undefined;
|
|
293
|
+
author_url?: string | null | undefined;
|
|
294
|
+
provider_name?: string | null | undefined;
|
|
295
|
+
provider_url?: string | null | undefined;
|
|
296
|
+
cache_age?: string | number | null;
|
|
297
|
+
thumbnail_url?: string | null | undefined;
|
|
298
|
+
thumbnail_width?: number | null | undefined;
|
|
299
|
+
thumbnail_height?: number | null | undefined;
|
|
300
|
+
html?: string | null | undefined;
|
|
301
|
+
} & {
|
|
302
|
+
__TYPE__: "EmbedContent";
|
|
303
|
+
all: unknown;
|
|
304
|
+
}) | {
|
|
248
305
|
type: "Color";
|
|
249
306
|
value: string;
|
|
250
307
|
__TYPE__: "FieldContent";
|
|
@@ -373,9 +430,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
373
430
|
title?: string;
|
|
374
431
|
} | null | undefined;
|
|
375
432
|
});
|
|
376
|
-
} | {
|
|
377
|
-
type: string;
|
|
378
|
-
__TYPE__: "EmptyContent";
|
|
379
433
|
} | {
|
|
380
434
|
__TYPE__: "StructuredTextContent";
|
|
381
435
|
value: (({
|
|
@@ -448,7 +502,25 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
448
502
|
direction?: string | null | undefined;
|
|
449
503
|
}) | ({
|
|
450
504
|
type: "embed";
|
|
451
|
-
data:
|
|
505
|
+
data: {
|
|
506
|
+
embed_url: string;
|
|
507
|
+
type: string;
|
|
508
|
+
} & {
|
|
509
|
+
version?: string | number | null;
|
|
510
|
+
title?: string | null | undefined;
|
|
511
|
+
author_name?: string | null | undefined;
|
|
512
|
+
author_url?: string | null | undefined;
|
|
513
|
+
provider_name?: string | null | undefined;
|
|
514
|
+
provider_url?: string | null | undefined;
|
|
515
|
+
cache_age?: string | number | null;
|
|
516
|
+
thumbnail_url?: string | null | undefined;
|
|
517
|
+
thumbnail_width?: number | null | undefined;
|
|
518
|
+
thumbnail_height?: number | null | undefined;
|
|
519
|
+
html?: string | null | undefined;
|
|
520
|
+
} & {
|
|
521
|
+
__TYPE__: "EmbedContent";
|
|
522
|
+
all: unknown;
|
|
523
|
+
};
|
|
452
524
|
} & {
|
|
453
525
|
label?: string | null | undefined;
|
|
454
526
|
direction?: string | null | undefined;
|
|
@@ -477,9 +549,30 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
477
549
|
__TYPE__: "CompositeSliceContent";
|
|
478
550
|
nonRepeat: {
|
|
479
551
|
[x: string]: {
|
|
552
|
+
type: string;
|
|
553
|
+
__TYPE__: "EmptyContent";
|
|
554
|
+
} | {
|
|
480
555
|
__TYPE__: "BooleanContent";
|
|
481
556
|
value: boolean;
|
|
482
|
-
} |
|
|
557
|
+
} | ({
|
|
558
|
+
embed_url: string;
|
|
559
|
+
type: string;
|
|
560
|
+
} & {
|
|
561
|
+
version?: string | number | null;
|
|
562
|
+
title?: string | null | undefined;
|
|
563
|
+
author_name?: string | null | undefined;
|
|
564
|
+
author_url?: string | null | undefined;
|
|
565
|
+
provider_name?: string | null | undefined;
|
|
566
|
+
provider_url?: string | null | undefined;
|
|
567
|
+
cache_age?: string | number | null;
|
|
568
|
+
thumbnail_url?: string | null | undefined;
|
|
569
|
+
thumbnail_width?: number | null | undefined;
|
|
570
|
+
thumbnail_height?: number | null | undefined;
|
|
571
|
+
html?: string | null | undefined;
|
|
572
|
+
} & {
|
|
573
|
+
__TYPE__: "EmbedContent";
|
|
574
|
+
all: unknown;
|
|
575
|
+
}) | {
|
|
483
576
|
type: "Color";
|
|
484
577
|
value: string;
|
|
485
578
|
__TYPE__: "FieldContent";
|
|
@@ -608,9 +701,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
608
701
|
title?: string;
|
|
609
702
|
} | null | undefined;
|
|
610
703
|
});
|
|
611
|
-
} | {
|
|
612
|
-
type: string;
|
|
613
|
-
__TYPE__: "EmptyContent";
|
|
614
704
|
} | {
|
|
615
705
|
__TYPE__: "StructuredTextContent";
|
|
616
706
|
value: (({
|
|
@@ -683,7 +773,25 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
683
773
|
direction?: string | null | undefined;
|
|
684
774
|
}) | ({
|
|
685
775
|
type: "embed";
|
|
686
|
-
data:
|
|
776
|
+
data: {
|
|
777
|
+
embed_url: string;
|
|
778
|
+
type: string;
|
|
779
|
+
} & {
|
|
780
|
+
version?: string | number | null;
|
|
781
|
+
title?: string | null | undefined;
|
|
782
|
+
author_name?: string | null | undefined;
|
|
783
|
+
author_url?: string | null | undefined;
|
|
784
|
+
provider_name?: string | null | undefined;
|
|
785
|
+
provider_url?: string | null | undefined;
|
|
786
|
+
cache_age?: string | number | null;
|
|
787
|
+
thumbnail_url?: string | null | undefined;
|
|
788
|
+
thumbnail_width?: number | null | undefined;
|
|
789
|
+
thumbnail_height?: number | null | undefined;
|
|
790
|
+
html?: string | null | undefined;
|
|
791
|
+
} & {
|
|
792
|
+
__TYPE__: "EmbedContent";
|
|
793
|
+
all: unknown;
|
|
794
|
+
};
|
|
687
795
|
} & {
|
|
688
796
|
label?: string | null | undefined;
|
|
689
797
|
direction?: string | null | undefined;
|
|
@@ -711,9 +819,30 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
711
819
|
repeat: {
|
|
712
820
|
__TYPE__: "GroupItemContent";
|
|
713
821
|
value: [string, {
|
|
822
|
+
type: string;
|
|
823
|
+
__TYPE__: "EmptyContent";
|
|
824
|
+
} | {
|
|
714
825
|
__TYPE__: "BooleanContent";
|
|
715
826
|
value: boolean;
|
|
716
|
-
} |
|
|
827
|
+
} | ({
|
|
828
|
+
embed_url: string;
|
|
829
|
+
type: string;
|
|
830
|
+
} & {
|
|
831
|
+
version?: string | number | null;
|
|
832
|
+
title?: string | null | undefined;
|
|
833
|
+
author_name?: string | null | undefined;
|
|
834
|
+
author_url?: string | null | undefined;
|
|
835
|
+
provider_name?: string | null | undefined;
|
|
836
|
+
provider_url?: string | null | undefined;
|
|
837
|
+
cache_age?: string | number | null;
|
|
838
|
+
thumbnail_url?: string | null | undefined;
|
|
839
|
+
thumbnail_width?: number | null | undefined;
|
|
840
|
+
thumbnail_height?: number | null | undefined;
|
|
841
|
+
html?: string | null | undefined;
|
|
842
|
+
} & {
|
|
843
|
+
__TYPE__: "EmbedContent";
|
|
844
|
+
all: unknown;
|
|
845
|
+
}) | {
|
|
717
846
|
type: "Color";
|
|
718
847
|
value: string;
|
|
719
848
|
__TYPE__: "FieldContent";
|
|
@@ -842,9 +971,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
842
971
|
title?: string;
|
|
843
972
|
} | null | undefined;
|
|
844
973
|
});
|
|
845
|
-
} | {
|
|
846
|
-
type: string;
|
|
847
|
-
__TYPE__: "EmptyContent";
|
|
848
974
|
} | {
|
|
849
975
|
__TYPE__: "StructuredTextContent";
|
|
850
976
|
value: (({
|
|
@@ -917,7 +1043,25 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
917
1043
|
direction?: string | null | undefined;
|
|
918
1044
|
}) | ({
|
|
919
1045
|
type: "embed";
|
|
920
|
-
data:
|
|
1046
|
+
data: {
|
|
1047
|
+
embed_url: string;
|
|
1048
|
+
type: string;
|
|
1049
|
+
} & {
|
|
1050
|
+
version?: string | number | null;
|
|
1051
|
+
title?: string | null | undefined;
|
|
1052
|
+
author_name?: string | null | undefined;
|
|
1053
|
+
author_url?: string | null | undefined;
|
|
1054
|
+
provider_name?: string | null | undefined;
|
|
1055
|
+
provider_url?: string | null | undefined;
|
|
1056
|
+
cache_age?: string | number | null;
|
|
1057
|
+
thumbnail_url?: string | null | undefined;
|
|
1058
|
+
thumbnail_width?: number | null | undefined;
|
|
1059
|
+
thumbnail_height?: number | null | undefined;
|
|
1060
|
+
html?: string | null | undefined;
|
|
1061
|
+
} & {
|
|
1062
|
+
__TYPE__: "EmbedContent";
|
|
1063
|
+
all: unknown;
|
|
1064
|
+
};
|
|
921
1065
|
} & {
|
|
922
1066
|
label?: string | null | undefined;
|
|
923
1067
|
direction?: string | null | undefined;
|
|
@@ -947,9 +1091,30 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
947
1091
|
variation: string;
|
|
948
1092
|
primary: {
|
|
949
1093
|
[x: string]: {
|
|
1094
|
+
type: string;
|
|
1095
|
+
__TYPE__: "EmptyContent";
|
|
1096
|
+
} | {
|
|
950
1097
|
__TYPE__: "BooleanContent";
|
|
951
1098
|
value: boolean;
|
|
952
|
-
} |
|
|
1099
|
+
} | ({
|
|
1100
|
+
embed_url: string;
|
|
1101
|
+
type: string;
|
|
1102
|
+
} & {
|
|
1103
|
+
version?: string | number | null;
|
|
1104
|
+
title?: string | null | undefined;
|
|
1105
|
+
author_name?: string | null | undefined;
|
|
1106
|
+
author_url?: string | null | undefined;
|
|
1107
|
+
provider_name?: string | null | undefined;
|
|
1108
|
+
provider_url?: string | null | undefined;
|
|
1109
|
+
cache_age?: string | number | null;
|
|
1110
|
+
thumbnail_url?: string | null | undefined;
|
|
1111
|
+
thumbnail_width?: number | null | undefined;
|
|
1112
|
+
thumbnail_height?: number | null | undefined;
|
|
1113
|
+
html?: string | null | undefined;
|
|
1114
|
+
} & {
|
|
1115
|
+
__TYPE__: "EmbedContent";
|
|
1116
|
+
all: unknown;
|
|
1117
|
+
}) | {
|
|
953
1118
|
type: "Color";
|
|
954
1119
|
value: string;
|
|
955
1120
|
__TYPE__: "FieldContent";
|
|
@@ -1078,9 +1243,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1078
1243
|
title?: string;
|
|
1079
1244
|
} | null | undefined;
|
|
1080
1245
|
});
|
|
1081
|
-
} | {
|
|
1082
|
-
type: string;
|
|
1083
|
-
__TYPE__: "EmptyContent";
|
|
1084
1246
|
} | {
|
|
1085
1247
|
__TYPE__: "StructuredTextContent";
|
|
1086
1248
|
value: (({
|
|
@@ -1153,7 +1315,25 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1153
1315
|
direction?: string | null | undefined;
|
|
1154
1316
|
}) | ({
|
|
1155
1317
|
type: "embed";
|
|
1156
|
-
data:
|
|
1318
|
+
data: {
|
|
1319
|
+
embed_url: string;
|
|
1320
|
+
type: string;
|
|
1321
|
+
} & {
|
|
1322
|
+
version?: string | number | null;
|
|
1323
|
+
title?: string | null | undefined;
|
|
1324
|
+
author_name?: string | null | undefined;
|
|
1325
|
+
author_url?: string | null | undefined;
|
|
1326
|
+
provider_name?: string | null | undefined;
|
|
1327
|
+
provider_url?: string | null | undefined;
|
|
1328
|
+
cache_age?: string | number | null;
|
|
1329
|
+
thumbnail_url?: string | null | undefined;
|
|
1330
|
+
thumbnail_width?: number | null | undefined;
|
|
1331
|
+
thumbnail_height?: number | null | undefined;
|
|
1332
|
+
html?: string | null | undefined;
|
|
1333
|
+
} & {
|
|
1334
|
+
__TYPE__: "EmbedContent";
|
|
1335
|
+
all: unknown;
|
|
1336
|
+
};
|
|
1157
1337
|
} & {
|
|
1158
1338
|
label?: string | null | undefined;
|
|
1159
1339
|
direction?: string | null | undefined;
|
|
@@ -1181,9 +1361,30 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1181
1361
|
items: {
|
|
1182
1362
|
__TYPE__: "GroupItemContent";
|
|
1183
1363
|
value: [string, {
|
|
1364
|
+
type: string;
|
|
1365
|
+
__TYPE__: "EmptyContent";
|
|
1366
|
+
} | {
|
|
1184
1367
|
__TYPE__: "BooleanContent";
|
|
1185
1368
|
value: boolean;
|
|
1186
|
-
} |
|
|
1369
|
+
} | ({
|
|
1370
|
+
embed_url: string;
|
|
1371
|
+
type: string;
|
|
1372
|
+
} & {
|
|
1373
|
+
version?: string | number | null;
|
|
1374
|
+
title?: string | null | undefined;
|
|
1375
|
+
author_name?: string | null | undefined;
|
|
1376
|
+
author_url?: string | null | undefined;
|
|
1377
|
+
provider_name?: string | null | undefined;
|
|
1378
|
+
provider_url?: string | null | undefined;
|
|
1379
|
+
cache_age?: string | number | null;
|
|
1380
|
+
thumbnail_url?: string | null | undefined;
|
|
1381
|
+
thumbnail_width?: number | null | undefined;
|
|
1382
|
+
thumbnail_height?: number | null | undefined;
|
|
1383
|
+
html?: string | null | undefined;
|
|
1384
|
+
} & {
|
|
1385
|
+
__TYPE__: "EmbedContent";
|
|
1386
|
+
all: unknown;
|
|
1387
|
+
}) | {
|
|
1187
1388
|
type: "Color";
|
|
1188
1389
|
value: string;
|
|
1189
1390
|
__TYPE__: "FieldContent";
|
|
@@ -1312,9 +1513,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1312
1513
|
title?: string;
|
|
1313
1514
|
} | null | undefined;
|
|
1314
1515
|
});
|
|
1315
|
-
} | {
|
|
1316
|
-
type: string;
|
|
1317
|
-
__TYPE__: "EmptyContent";
|
|
1318
1516
|
} | {
|
|
1319
1517
|
__TYPE__: "StructuredTextContent";
|
|
1320
1518
|
value: (({
|
|
@@ -1387,7 +1585,25 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1387
1585
|
direction?: string | null | undefined;
|
|
1388
1586
|
}) | ({
|
|
1389
1587
|
type: "embed";
|
|
1390
|
-
data:
|
|
1588
|
+
data: {
|
|
1589
|
+
embed_url: string;
|
|
1590
|
+
type: string;
|
|
1591
|
+
} & {
|
|
1592
|
+
version?: string | number | null;
|
|
1593
|
+
title?: string | null | undefined;
|
|
1594
|
+
author_name?: string | null | undefined;
|
|
1595
|
+
author_url?: string | null | undefined;
|
|
1596
|
+
provider_name?: string | null | undefined;
|
|
1597
|
+
provider_url?: string | null | undefined;
|
|
1598
|
+
cache_age?: string | number | null;
|
|
1599
|
+
thumbnail_url?: string | null | undefined;
|
|
1600
|
+
thumbnail_width?: number | null | undefined;
|
|
1601
|
+
thumbnail_height?: number | null | undefined;
|
|
1602
|
+
html?: string | null | undefined;
|
|
1603
|
+
} & {
|
|
1604
|
+
__TYPE__: "EmbedContent";
|
|
1605
|
+
all: unknown;
|
|
1606
|
+
};
|
|
1391
1607
|
} & {
|
|
1392
1608
|
label?: string | null | undefined;
|
|
1393
1609
|
direction?: string | null | undefined;
|
|
@@ -1423,9 +1639,30 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1423
1639
|
name: string;
|
|
1424
1640
|
maybeLabel: string | undefined;
|
|
1425
1641
|
widget: {
|
|
1642
|
+
type: string;
|
|
1643
|
+
__TYPE__: "EmptyContent";
|
|
1644
|
+
} | {
|
|
1426
1645
|
__TYPE__: "BooleanContent";
|
|
1427
1646
|
value: boolean;
|
|
1428
|
-
} |
|
|
1647
|
+
} | ({
|
|
1648
|
+
embed_url: string;
|
|
1649
|
+
type: string;
|
|
1650
|
+
} & {
|
|
1651
|
+
version?: string | number | null;
|
|
1652
|
+
title?: string | null | undefined;
|
|
1653
|
+
author_name?: string | null | undefined;
|
|
1654
|
+
author_url?: string | null | undefined;
|
|
1655
|
+
provider_name?: string | null | undefined;
|
|
1656
|
+
provider_url?: string | null | undefined;
|
|
1657
|
+
cache_age?: string | number | null;
|
|
1658
|
+
thumbnail_url?: string | null | undefined;
|
|
1659
|
+
thumbnail_width?: number | null | undefined;
|
|
1660
|
+
thumbnail_height?: number | null | undefined;
|
|
1661
|
+
html?: string | null | undefined;
|
|
1662
|
+
} & {
|
|
1663
|
+
__TYPE__: "EmbedContent";
|
|
1664
|
+
all: unknown;
|
|
1665
|
+
}) | {
|
|
1429
1666
|
type: "Color";
|
|
1430
1667
|
value: string;
|
|
1431
1668
|
__TYPE__: "FieldContent";
|
|
@@ -1554,9 +1791,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1554
1791
|
title?: string;
|
|
1555
1792
|
} | null | undefined;
|
|
1556
1793
|
});
|
|
1557
|
-
} | {
|
|
1558
|
-
type: string;
|
|
1559
|
-
__TYPE__: "EmptyContent";
|
|
1560
1794
|
} | {
|
|
1561
1795
|
__TYPE__: "StructuredTextContent";
|
|
1562
1796
|
value: (({
|
|
@@ -1629,7 +1863,25 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1629
1863
|
direction?: string | null | undefined;
|
|
1630
1864
|
}) | ({
|
|
1631
1865
|
type: "embed";
|
|
1632
|
-
data:
|
|
1866
|
+
data: {
|
|
1867
|
+
embed_url: string;
|
|
1868
|
+
type: string;
|
|
1869
|
+
} & {
|
|
1870
|
+
version?: string | number | null;
|
|
1871
|
+
title?: string | null | undefined;
|
|
1872
|
+
author_name?: string | null | undefined;
|
|
1873
|
+
author_url?: string | null | undefined;
|
|
1874
|
+
provider_name?: string | null | undefined;
|
|
1875
|
+
provider_url?: string | null | undefined;
|
|
1876
|
+
cache_age?: string | number | null;
|
|
1877
|
+
thumbnail_url?: string | null | undefined;
|
|
1878
|
+
thumbnail_width?: number | null | undefined;
|
|
1879
|
+
thumbnail_height?: number | null | undefined;
|
|
1880
|
+
html?: string | null | undefined;
|
|
1881
|
+
} & {
|
|
1882
|
+
__TYPE__: "EmbedContent";
|
|
1883
|
+
all: unknown;
|
|
1884
|
+
};
|
|
1633
1885
|
} & {
|
|
1634
1886
|
label?: string | null | undefined;
|
|
1635
1887
|
direction?: string | null | undefined;
|
|
@@ -1657,9 +1909,30 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1657
1909
|
value: {
|
|
1658
1910
|
__TYPE__: "GroupItemContent";
|
|
1659
1911
|
value: [string, {
|
|
1912
|
+
type: string;
|
|
1913
|
+
__TYPE__: "EmptyContent";
|
|
1914
|
+
} | {
|
|
1660
1915
|
__TYPE__: "BooleanContent";
|
|
1661
1916
|
value: boolean;
|
|
1662
|
-
} |
|
|
1917
|
+
} | ({
|
|
1918
|
+
embed_url: string;
|
|
1919
|
+
type: string;
|
|
1920
|
+
} & {
|
|
1921
|
+
version?: string | number | null;
|
|
1922
|
+
title?: string | null | undefined;
|
|
1923
|
+
author_name?: string | null | undefined;
|
|
1924
|
+
author_url?: string | null | undefined;
|
|
1925
|
+
provider_name?: string | null | undefined;
|
|
1926
|
+
provider_url?: string | null | undefined;
|
|
1927
|
+
cache_age?: string | number | null;
|
|
1928
|
+
thumbnail_url?: string | null | undefined;
|
|
1929
|
+
thumbnail_width?: number | null | undefined;
|
|
1930
|
+
thumbnail_height?: number | null | undefined;
|
|
1931
|
+
html?: string | null | undefined;
|
|
1932
|
+
} & {
|
|
1933
|
+
__TYPE__: "EmbedContent";
|
|
1934
|
+
all: unknown;
|
|
1935
|
+
}) | {
|
|
1663
1936
|
type: "Color";
|
|
1664
1937
|
value: string;
|
|
1665
1938
|
__TYPE__: "FieldContent";
|
|
@@ -1788,9 +2061,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1788
2061
|
title?: string;
|
|
1789
2062
|
} | null | undefined;
|
|
1790
2063
|
});
|
|
1791
|
-
} | {
|
|
1792
|
-
type: string;
|
|
1793
|
-
__TYPE__: "EmptyContent";
|
|
1794
2064
|
} | {
|
|
1795
2065
|
__TYPE__: "StructuredTextContent";
|
|
1796
2066
|
value: (({
|
|
@@ -1863,7 +2133,25 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1863
2133
|
direction?: string | null | undefined;
|
|
1864
2134
|
}) | ({
|
|
1865
2135
|
type: "embed";
|
|
1866
|
-
data:
|
|
2136
|
+
data: {
|
|
2137
|
+
embed_url: string;
|
|
2138
|
+
type: string;
|
|
2139
|
+
} & {
|
|
2140
|
+
version?: string | number | null;
|
|
2141
|
+
title?: string | null | undefined;
|
|
2142
|
+
author_name?: string | null | undefined;
|
|
2143
|
+
author_url?: string | null | undefined;
|
|
2144
|
+
provider_name?: string | null | undefined;
|
|
2145
|
+
provider_url?: string | null | undefined;
|
|
2146
|
+
cache_age?: string | number | null;
|
|
2147
|
+
thumbnail_url?: string | null | undefined;
|
|
2148
|
+
thumbnail_width?: number | null | undefined;
|
|
2149
|
+
thumbnail_height?: number | null | undefined;
|
|
2150
|
+
html?: string | null | undefined;
|
|
2151
|
+
} & {
|
|
2152
|
+
__TYPE__: "EmbedContent";
|
|
2153
|
+
all: unknown;
|
|
2154
|
+
};
|
|
1867
2155
|
} & {
|
|
1868
2156
|
label?: string | null | undefined;
|
|
1869
2157
|
direction?: string | null | undefined;
|
|
@@ -1892,9 +2180,30 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1892
2180
|
__TYPE__: "CompositeSliceContent";
|
|
1893
2181
|
nonRepeat: {
|
|
1894
2182
|
[x: string]: {
|
|
2183
|
+
type: string;
|
|
2184
|
+
__TYPE__: "EmptyContent";
|
|
2185
|
+
} | {
|
|
1895
2186
|
__TYPE__: "BooleanContent";
|
|
1896
2187
|
value: boolean;
|
|
1897
|
-
} |
|
|
2188
|
+
} | ({
|
|
2189
|
+
embed_url: string;
|
|
2190
|
+
type: string;
|
|
2191
|
+
} & {
|
|
2192
|
+
version?: string | number | null;
|
|
2193
|
+
title?: string | null | undefined;
|
|
2194
|
+
author_name?: string | null | undefined;
|
|
2195
|
+
author_url?: string | null | undefined;
|
|
2196
|
+
provider_name?: string | null | undefined;
|
|
2197
|
+
provider_url?: string | null | undefined;
|
|
2198
|
+
cache_age?: string | number | null;
|
|
2199
|
+
thumbnail_url?: string | null | undefined;
|
|
2200
|
+
thumbnail_width?: number | null | undefined;
|
|
2201
|
+
thumbnail_height?: number | null | undefined;
|
|
2202
|
+
html?: string | null | undefined;
|
|
2203
|
+
} & {
|
|
2204
|
+
__TYPE__: "EmbedContent";
|
|
2205
|
+
all: unknown;
|
|
2206
|
+
}) | {
|
|
1898
2207
|
type: "Color";
|
|
1899
2208
|
value: string;
|
|
1900
2209
|
__TYPE__: "FieldContent";
|
|
@@ -2023,9 +2332,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2023
2332
|
title?: string;
|
|
2024
2333
|
} | null | undefined;
|
|
2025
2334
|
});
|
|
2026
|
-
} | {
|
|
2027
|
-
type: string;
|
|
2028
|
-
__TYPE__: "EmptyContent";
|
|
2029
2335
|
} | {
|
|
2030
2336
|
__TYPE__: "StructuredTextContent";
|
|
2031
2337
|
value: (({
|
|
@@ -2098,7 +2404,25 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2098
2404
|
direction?: string | null | undefined;
|
|
2099
2405
|
}) | ({
|
|
2100
2406
|
type: "embed";
|
|
2101
|
-
data:
|
|
2407
|
+
data: {
|
|
2408
|
+
embed_url: string;
|
|
2409
|
+
type: string;
|
|
2410
|
+
} & {
|
|
2411
|
+
version?: string | number | null;
|
|
2412
|
+
title?: string | null | undefined;
|
|
2413
|
+
author_name?: string | null | undefined;
|
|
2414
|
+
author_url?: string | null | undefined;
|
|
2415
|
+
provider_name?: string | null | undefined;
|
|
2416
|
+
provider_url?: string | null | undefined;
|
|
2417
|
+
cache_age?: string | number | null;
|
|
2418
|
+
thumbnail_url?: string | null | undefined;
|
|
2419
|
+
thumbnail_width?: number | null | undefined;
|
|
2420
|
+
thumbnail_height?: number | null | undefined;
|
|
2421
|
+
html?: string | null | undefined;
|
|
2422
|
+
} & {
|
|
2423
|
+
__TYPE__: "EmbedContent";
|
|
2424
|
+
all: unknown;
|
|
2425
|
+
};
|
|
2102
2426
|
} & {
|
|
2103
2427
|
label?: string | null | undefined;
|
|
2104
2428
|
direction?: string | null | undefined;
|
|
@@ -2126,9 +2450,30 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2126
2450
|
repeat: {
|
|
2127
2451
|
__TYPE__: "GroupItemContent";
|
|
2128
2452
|
value: [string, {
|
|
2453
|
+
type: string;
|
|
2454
|
+
__TYPE__: "EmptyContent";
|
|
2455
|
+
} | {
|
|
2129
2456
|
__TYPE__: "BooleanContent";
|
|
2130
2457
|
value: boolean;
|
|
2131
|
-
} |
|
|
2458
|
+
} | ({
|
|
2459
|
+
embed_url: string;
|
|
2460
|
+
type: string;
|
|
2461
|
+
} & {
|
|
2462
|
+
version?: string | number | null;
|
|
2463
|
+
title?: string | null | undefined;
|
|
2464
|
+
author_name?: string | null | undefined;
|
|
2465
|
+
author_url?: string | null | undefined;
|
|
2466
|
+
provider_name?: string | null | undefined;
|
|
2467
|
+
provider_url?: string | null | undefined;
|
|
2468
|
+
cache_age?: string | number | null;
|
|
2469
|
+
thumbnail_url?: string | null | undefined;
|
|
2470
|
+
thumbnail_width?: number | null | undefined;
|
|
2471
|
+
thumbnail_height?: number | null | undefined;
|
|
2472
|
+
html?: string | null | undefined;
|
|
2473
|
+
} & {
|
|
2474
|
+
__TYPE__: "EmbedContent";
|
|
2475
|
+
all: unknown;
|
|
2476
|
+
}) | {
|
|
2132
2477
|
type: "Color";
|
|
2133
2478
|
value: string;
|
|
2134
2479
|
__TYPE__: "FieldContent";
|
|
@@ -2257,9 +2602,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2257
2602
|
title?: string;
|
|
2258
2603
|
} | null | undefined;
|
|
2259
2604
|
});
|
|
2260
|
-
} | {
|
|
2261
|
-
type: string;
|
|
2262
|
-
__TYPE__: "EmptyContent";
|
|
2263
2605
|
} | {
|
|
2264
2606
|
__TYPE__: "StructuredTextContent";
|
|
2265
2607
|
value: (({
|
|
@@ -2332,7 +2674,25 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2332
2674
|
direction?: string | null | undefined;
|
|
2333
2675
|
}) | ({
|
|
2334
2676
|
type: "embed";
|
|
2335
|
-
data:
|
|
2677
|
+
data: {
|
|
2678
|
+
embed_url: string;
|
|
2679
|
+
type: string;
|
|
2680
|
+
} & {
|
|
2681
|
+
version?: string | number | null;
|
|
2682
|
+
title?: string | null | undefined;
|
|
2683
|
+
author_name?: string | null | undefined;
|
|
2684
|
+
author_url?: string | null | undefined;
|
|
2685
|
+
provider_name?: string | null | undefined;
|
|
2686
|
+
provider_url?: string | null | undefined;
|
|
2687
|
+
cache_age?: string | number | null;
|
|
2688
|
+
thumbnail_url?: string | null | undefined;
|
|
2689
|
+
thumbnail_width?: number | null | undefined;
|
|
2690
|
+
thumbnail_height?: number | null | undefined;
|
|
2691
|
+
html?: string | null | undefined;
|
|
2692
|
+
} & {
|
|
2693
|
+
__TYPE__: "EmbedContent";
|
|
2694
|
+
all: unknown;
|
|
2695
|
+
};
|
|
2336
2696
|
} & {
|
|
2337
2697
|
label?: string | null | undefined;
|
|
2338
2698
|
direction?: string | null | undefined;
|
|
@@ -2362,9 +2722,30 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2362
2722
|
variation: string;
|
|
2363
2723
|
primary: {
|
|
2364
2724
|
[x: string]: {
|
|
2725
|
+
type: string;
|
|
2726
|
+
__TYPE__: "EmptyContent";
|
|
2727
|
+
} | {
|
|
2365
2728
|
__TYPE__: "BooleanContent";
|
|
2366
2729
|
value: boolean;
|
|
2367
|
-
} |
|
|
2730
|
+
} | ({
|
|
2731
|
+
embed_url: string;
|
|
2732
|
+
type: string;
|
|
2733
|
+
} & {
|
|
2734
|
+
version?: string | number | null;
|
|
2735
|
+
title?: string | null | undefined;
|
|
2736
|
+
author_name?: string | null | undefined;
|
|
2737
|
+
author_url?: string | null | undefined;
|
|
2738
|
+
provider_name?: string | null | undefined;
|
|
2739
|
+
provider_url?: string | null | undefined;
|
|
2740
|
+
cache_age?: string | number | null;
|
|
2741
|
+
thumbnail_url?: string | null | undefined;
|
|
2742
|
+
thumbnail_width?: number | null | undefined;
|
|
2743
|
+
thumbnail_height?: number | null | undefined;
|
|
2744
|
+
html?: string | null | undefined;
|
|
2745
|
+
} & {
|
|
2746
|
+
__TYPE__: "EmbedContent";
|
|
2747
|
+
all: unknown;
|
|
2748
|
+
}) | {
|
|
2368
2749
|
type: "Color";
|
|
2369
2750
|
value: string;
|
|
2370
2751
|
__TYPE__: "FieldContent";
|
|
@@ -2493,9 +2874,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2493
2874
|
title?: string;
|
|
2494
2875
|
} | null | undefined;
|
|
2495
2876
|
});
|
|
2496
|
-
} | {
|
|
2497
|
-
type: string;
|
|
2498
|
-
__TYPE__: "EmptyContent";
|
|
2499
2877
|
} | {
|
|
2500
2878
|
__TYPE__: "StructuredTextContent";
|
|
2501
2879
|
value: (({
|
|
@@ -2568,7 +2946,25 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2568
2946
|
direction?: string | null | undefined;
|
|
2569
2947
|
}) | ({
|
|
2570
2948
|
type: "embed";
|
|
2571
|
-
data:
|
|
2949
|
+
data: {
|
|
2950
|
+
embed_url: string;
|
|
2951
|
+
type: string;
|
|
2952
|
+
} & {
|
|
2953
|
+
version?: string | number | null;
|
|
2954
|
+
title?: string | null | undefined;
|
|
2955
|
+
author_name?: string | null | undefined;
|
|
2956
|
+
author_url?: string | null | undefined;
|
|
2957
|
+
provider_name?: string | null | undefined;
|
|
2958
|
+
provider_url?: string | null | undefined;
|
|
2959
|
+
cache_age?: string | number | null;
|
|
2960
|
+
thumbnail_url?: string | null | undefined;
|
|
2961
|
+
thumbnail_width?: number | null | undefined;
|
|
2962
|
+
thumbnail_height?: number | null | undefined;
|
|
2963
|
+
html?: string | null | undefined;
|
|
2964
|
+
} & {
|
|
2965
|
+
__TYPE__: "EmbedContent";
|
|
2966
|
+
all: unknown;
|
|
2967
|
+
};
|
|
2572
2968
|
} & {
|
|
2573
2969
|
label?: string | null | undefined;
|
|
2574
2970
|
direction?: string | null | undefined;
|
|
@@ -2596,9 +2992,30 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2596
2992
|
items: {
|
|
2597
2993
|
__TYPE__: "GroupItemContent";
|
|
2598
2994
|
value: [string, {
|
|
2995
|
+
type: string;
|
|
2996
|
+
__TYPE__: "EmptyContent";
|
|
2997
|
+
} | {
|
|
2599
2998
|
__TYPE__: "BooleanContent";
|
|
2600
2999
|
value: boolean;
|
|
2601
|
-
} |
|
|
3000
|
+
} | ({
|
|
3001
|
+
embed_url: string;
|
|
3002
|
+
type: string;
|
|
3003
|
+
} & {
|
|
3004
|
+
version?: string | number | null;
|
|
3005
|
+
title?: string | null | undefined;
|
|
3006
|
+
author_name?: string | null | undefined;
|
|
3007
|
+
author_url?: string | null | undefined;
|
|
3008
|
+
provider_name?: string | null | undefined;
|
|
3009
|
+
provider_url?: string | null | undefined;
|
|
3010
|
+
cache_age?: string | number | null;
|
|
3011
|
+
thumbnail_url?: string | null | undefined;
|
|
3012
|
+
thumbnail_width?: number | null | undefined;
|
|
3013
|
+
thumbnail_height?: number | null | undefined;
|
|
3014
|
+
html?: string | null | undefined;
|
|
3015
|
+
} & {
|
|
3016
|
+
__TYPE__: "EmbedContent";
|
|
3017
|
+
all: unknown;
|
|
3018
|
+
}) | {
|
|
2602
3019
|
type: "Color";
|
|
2603
3020
|
value: string;
|
|
2604
3021
|
__TYPE__: "FieldContent";
|
|
@@ -2727,9 +3144,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2727
3144
|
title?: string;
|
|
2728
3145
|
} | null | undefined;
|
|
2729
3146
|
});
|
|
2730
|
-
} | {
|
|
2731
|
-
type: string;
|
|
2732
|
-
__TYPE__: "EmptyContent";
|
|
2733
3147
|
} | {
|
|
2734
3148
|
__TYPE__: "StructuredTextContent";
|
|
2735
3149
|
value: (({
|
|
@@ -2802,7 +3216,25 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2802
3216
|
direction?: string | null | undefined;
|
|
2803
3217
|
}) | ({
|
|
2804
3218
|
type: "embed";
|
|
2805
|
-
data:
|
|
3219
|
+
data: {
|
|
3220
|
+
embed_url: string;
|
|
3221
|
+
type: string;
|
|
3222
|
+
} & {
|
|
3223
|
+
version?: string | number | null;
|
|
3224
|
+
title?: string | null | undefined;
|
|
3225
|
+
author_name?: string | null | undefined;
|
|
3226
|
+
author_url?: string | null | undefined;
|
|
3227
|
+
provider_name?: string | null | undefined;
|
|
3228
|
+
provider_url?: string | null | undefined;
|
|
3229
|
+
cache_age?: string | number | null;
|
|
3230
|
+
thumbnail_url?: string | null | undefined;
|
|
3231
|
+
thumbnail_width?: number | null | undefined;
|
|
3232
|
+
thumbnail_height?: number | null | undefined;
|
|
3233
|
+
html?: string | null | undefined;
|
|
3234
|
+
} & {
|
|
3235
|
+
__TYPE__: "EmbedContent";
|
|
3236
|
+
all: unknown;
|
|
3237
|
+
};
|
|
2806
3238
|
} & {
|
|
2807
3239
|
label?: string | null | undefined;
|
|
2808
3240
|
direction?: string | null | undefined;
|
|
@@ -2844,7 +3276,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
2844
3276
|
}>>, t.ExactC<t.TypeC<{
|
|
2845
3277
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
2846
3278
|
value: t.BooleanC;
|
|
2847
|
-
}>>, t.
|
|
3279
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3280
|
+
embed_url: t.StringC;
|
|
3281
|
+
type: t.StringC;
|
|
3282
|
+
}>, t.PartialC<{
|
|
3283
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3284
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3285
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3286
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3287
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3288
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3289
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3290
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3291
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3292
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3293
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3294
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
3295
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
3296
|
+
all: t.UnknownC;
|
|
3297
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
2848
3298
|
type: t.LiteralC<"Text">;
|
|
2849
3299
|
value: t.Type<string, string, unknown>;
|
|
2850
3300
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -3083,7 +3533,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3083
3533
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3084
3534
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3085
3535
|
type: t.LiteralC<"embed">;
|
|
3086
|
-
data: t.
|
|
3536
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3537
|
+
embed_url: t.StringC;
|
|
3538
|
+
type: t.StringC;
|
|
3539
|
+
}>, t.PartialC<{
|
|
3540
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3541
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3542
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3543
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3544
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3545
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3546
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3547
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3548
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3549
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3550
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3551
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
3552
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
3553
|
+
all: t.UnknownC;
|
|
3554
|
+
}>>]>;
|
|
3087
3555
|
}>, t.PartialC<{
|
|
3088
3556
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3089
3557
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -3121,7 +3589,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3121
3589
|
}>>, t.ExactC<t.TypeC<{
|
|
3122
3590
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
3123
3591
|
value: t.BooleanC;
|
|
3124
|
-
}>>, t.
|
|
3592
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3593
|
+
embed_url: t.StringC;
|
|
3594
|
+
type: t.StringC;
|
|
3595
|
+
}>, t.PartialC<{
|
|
3596
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3597
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3598
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3599
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3600
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3601
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3602
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3603
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3604
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3605
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3606
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3607
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
3608
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
3609
|
+
all: t.UnknownC;
|
|
3610
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
3125
3611
|
type: t.LiteralC<"Text">;
|
|
3126
3612
|
value: t.Type<string, string, unknown>;
|
|
3127
3613
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -3360,7 +3846,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3360
3846
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3361
3847
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3362
3848
|
type: t.LiteralC<"embed">;
|
|
3363
|
-
data: t.
|
|
3849
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3850
|
+
embed_url: t.StringC;
|
|
3851
|
+
type: t.StringC;
|
|
3852
|
+
}>, t.PartialC<{
|
|
3853
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3854
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3855
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3856
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3857
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3858
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3859
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3860
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3861
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3862
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3863
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3864
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
3865
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
3866
|
+
all: t.UnknownC;
|
|
3867
|
+
}>>]>;
|
|
3364
3868
|
}>, t.PartialC<{
|
|
3365
3869
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3366
3870
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -3400,7 +3904,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3400
3904
|
}>>, t.ExactC<t.TypeC<{
|
|
3401
3905
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
3402
3906
|
value: t.BooleanC;
|
|
3403
|
-
}>>, t.
|
|
3907
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3908
|
+
embed_url: t.StringC;
|
|
3909
|
+
type: t.StringC;
|
|
3910
|
+
}>, t.PartialC<{
|
|
3911
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3912
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3913
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3914
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3915
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3916
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3917
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3918
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3919
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3920
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3921
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3922
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
3923
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
3924
|
+
all: t.UnknownC;
|
|
3925
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
3404
3926
|
type: t.LiteralC<"Text">;
|
|
3405
3927
|
value: t.Type<string, string, unknown>;
|
|
3406
3928
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -3639,7 +4161,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3639
4161
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3640
4162
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3641
4163
|
type: t.LiteralC<"embed">;
|
|
3642
|
-
data: t.
|
|
4164
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4165
|
+
embed_url: t.StringC;
|
|
4166
|
+
type: t.StringC;
|
|
4167
|
+
}>, t.PartialC<{
|
|
4168
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4169
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4170
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4171
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4172
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4173
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4174
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4175
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4176
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4177
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4178
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4179
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
4180
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4181
|
+
all: t.UnknownC;
|
|
4182
|
+
}>>]>;
|
|
3643
4183
|
}>, t.PartialC<{
|
|
3644
4184
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3645
4185
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -3677,7 +4217,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3677
4217
|
}>>, t.ExactC<t.TypeC<{
|
|
3678
4218
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
3679
4219
|
value: t.BooleanC;
|
|
3680
|
-
}>>, t.
|
|
4220
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4221
|
+
embed_url: t.StringC;
|
|
4222
|
+
type: t.StringC;
|
|
4223
|
+
}>, t.PartialC<{
|
|
4224
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4225
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4226
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4227
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4228
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4229
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4230
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4231
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4232
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4233
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4234
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4235
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
4236
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4237
|
+
all: t.UnknownC;
|
|
4238
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
3681
4239
|
type: t.LiteralC<"Text">;
|
|
3682
4240
|
value: t.Type<string, string, unknown>;
|
|
3683
4241
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -3916,7 +4474,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3916
4474
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3917
4475
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3918
4476
|
type: t.LiteralC<"embed">;
|
|
3919
|
-
data: t.
|
|
4477
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4478
|
+
embed_url: t.StringC;
|
|
4479
|
+
type: t.StringC;
|
|
4480
|
+
}>, t.PartialC<{
|
|
4481
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4482
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4483
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4484
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4485
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4486
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4487
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4488
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4489
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4490
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4491
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4492
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
4493
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4494
|
+
all: t.UnknownC;
|
|
4495
|
+
}>>]>;
|
|
3920
4496
|
}>, t.PartialC<{
|
|
3921
4497
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3922
4498
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -3953,7 +4529,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3953
4529
|
}>>, t.ExactC<t.TypeC<{
|
|
3954
4530
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
3955
4531
|
value: t.BooleanC;
|
|
3956
|
-
}>>, t.
|
|
4532
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4533
|
+
embed_url: t.StringC;
|
|
4534
|
+
type: t.StringC;
|
|
4535
|
+
}>, t.PartialC<{
|
|
4536
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4537
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4538
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4539
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4540
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4541
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4542
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4543
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4544
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4545
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4546
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4547
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
4548
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4549
|
+
all: t.UnknownC;
|
|
4550
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
3957
4551
|
type: t.LiteralC<"Text">;
|
|
3958
4552
|
value: t.Type<string, string, unknown>;
|
|
3959
4553
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -4192,7 +4786,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4192
4786
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4193
4787
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4194
4788
|
type: t.LiteralC<"embed">;
|
|
4195
|
-
data: t.
|
|
4789
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4790
|
+
embed_url: t.StringC;
|
|
4791
|
+
type: t.StringC;
|
|
4792
|
+
}>, t.PartialC<{
|
|
4793
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4794
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4795
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4796
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4797
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4798
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4799
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4800
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4801
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4802
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4803
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4804
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
4805
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4806
|
+
all: t.UnknownC;
|
|
4807
|
+
}>>]>;
|
|
4196
4808
|
}>, t.PartialC<{
|
|
4197
4809
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4198
4810
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -4231,7 +4843,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4231
4843
|
}>>, t.ExactC<t.TypeC<{
|
|
4232
4844
|
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
4233
4845
|
value: t.BooleanC;
|
|
4234
|
-
}>>, t.
|
|
4846
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4847
|
+
embed_url: t.StringC;
|
|
4848
|
+
type: t.StringC;
|
|
4849
|
+
}>, t.PartialC<{
|
|
4850
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4851
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4852
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4853
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4854
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4855
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4856
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4857
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4858
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4859
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4860
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4861
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
4862
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4863
|
+
all: t.UnknownC;
|
|
4864
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
4235
4865
|
type: t.LiteralC<"Text">;
|
|
4236
4866
|
value: t.Type<string, string, unknown>;
|
|
4237
4867
|
__TYPE__: t.LiteralC<"FieldContent">;
|
|
@@ -4470,7 +5100,25 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4470
5100
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4471
5101
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4472
5102
|
type: t.LiteralC<"embed">;
|
|
4473
|
-
data: t.
|
|
5103
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5104
|
+
embed_url: t.StringC;
|
|
5105
|
+
type: t.StringC;
|
|
5106
|
+
}>, t.PartialC<{
|
|
5107
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
5108
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5109
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5110
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5111
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5112
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5113
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
5114
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5115
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
5116
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
5117
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5118
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
5119
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
5120
|
+
all: t.UnknownC;
|
|
5121
|
+
}>>]>;
|
|
4474
5122
|
}>, t.PartialC<{
|
|
4475
5123
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4476
5124
|
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|