@prismicio/types-internal 2.5.0-alpha.0 → 2.5.0-alpha.2
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 +3972 -7926
- package/lib/content/fields/GroupContent.d.ts +17 -1754
- package/lib/content/fields/GroupContent.js +62 -22
- package/lib/content/fields/WidgetContent.d.ts +3371 -7324
- package/lib/content/fields/nestable/NestableContent.d.ts +3 -145
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +4 -212
- package/lib/content/fields/nestable/RichTextContent/Blocks.js +2 -0
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +4 -184
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +6 -290
- package/lib/content/fields/slices/Slice/CompositeSliceContent.js +3 -0
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +2 -383
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +15 -1333
- package/lib/content/fields/slices/Slice/SharedSliceContent.js +2 -0
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +7 -1182
- package/lib/content/fields/slices/Slice/SimpleSliceContent.js +1 -0
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +7 -1182
- package/lib/content/fields/slices/Slice/index.d.ts +983 -2935
- package/lib/content/fields/slices/SliceItem.d.ts +148 -2100
- package/lib/content/fields/slices/SlicesContent.d.ts +866 -3644
- package/lib/content/fields/withDefaultValues.d.ts +4 -3
- package/lib/content/fields/withDefaultValues.js +17 -1
- package/lib/customtypes/CustomType.d.ts +70 -915
- package/lib/customtypes/Section.d.ts +70 -915
- package/lib/customtypes/diff/SharedSlice.d.ts +2 -340
- package/lib/customtypes/diff/Variation.d.ts +4 -351
- package/lib/customtypes/diff/Variation.js +4 -3
- package/lib/customtypes/diff/Widgets.d.ts +11 -0
- package/lib/customtypes/diff/Widgets.js +2 -0
- package/lib/customtypes/diff/index.d.ts +1 -0
- package/lib/customtypes/diff/index.js +1 -0
- package/lib/customtypes/widgets/Group.d.ts +15 -331
- package/lib/customtypes/widgets/Group.js +25 -5
- package/lib/customtypes/widgets/Widget.d.ts +7 -1014
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +2 -168
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +2 -336
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +3 -338
- package/lib/customtypes/widgets/slices/Slices.d.ts +7 -1184
- package/lib/validators/function.js +8 -1
- package/package.json +5 -5
- package/src/content/fields/GroupContent.ts +107 -32
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +3 -1
- package/src/content/fields/slices/Slice/CompositeSliceContent.ts +7 -4
- package/src/content/fields/slices/Slice/SharedSliceContent.ts +5 -3
- package/src/content/fields/slices/Slice/SimpleSliceContent.ts +3 -1
- package/src/content/fields/withDefaultValues.ts +27 -3
- package/src/customtypes/diff/Variation.ts +9 -20
- package/src/customtypes/diff/Widgets.ts +17 -0
- package/src/customtypes/diff/index.ts +1 -0
- package/src/customtypes/widgets/Group.ts +66 -20
- package/src/validators/function.ts +11 -1
|
@@ -181,45 +181,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
181
181
|
alt?: string | null;
|
|
182
182
|
provider?: string | null | undefined;
|
|
183
183
|
} & {
|
|
184
|
-
linkTo?:
|
|
185
|
-
__TYPE__: "ImageLink";
|
|
186
|
-
} & {
|
|
187
|
-
id: string;
|
|
188
|
-
url: string;
|
|
189
|
-
height: string;
|
|
190
|
-
width: string;
|
|
191
|
-
size: string;
|
|
192
|
-
name: string;
|
|
193
|
-
kind: string;
|
|
194
|
-
} & {
|
|
195
|
-
date?: string | null | undefined;
|
|
196
|
-
}) | ({
|
|
197
|
-
id: string;
|
|
198
|
-
url: string;
|
|
199
|
-
name: string;
|
|
200
|
-
kind: string;
|
|
201
|
-
size: string;
|
|
202
|
-
} & {
|
|
203
|
-
date?: string | null | undefined;
|
|
204
|
-
} & {
|
|
205
|
-
__TYPE__: "FileLink";
|
|
206
|
-
} & {
|
|
207
|
-
size?: string;
|
|
208
|
-
}) | ({
|
|
209
|
-
__TYPE__: "DocumentLink";
|
|
210
|
-
} & {
|
|
211
|
-
id: string;
|
|
212
|
-
}) | ({
|
|
213
|
-
__TYPE__: "ExternalLink";
|
|
214
|
-
} & {
|
|
215
|
-
url: string;
|
|
216
|
-
} & {
|
|
217
|
-
kind?: "web";
|
|
218
|
-
target?: string | null | undefined;
|
|
219
|
-
preview?: {
|
|
220
|
-
title?: string;
|
|
221
|
-
} | null | undefined;
|
|
222
|
-
}) | null | undefined;
|
|
184
|
+
linkTo?: any;
|
|
223
185
|
};
|
|
224
186
|
} & {
|
|
225
187
|
label?: string | null | undefined;
|
|
@@ -313,11 +275,10 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
313
275
|
}))[];
|
|
314
276
|
}> | import("fp-ts/lib/Either").Right<{
|
|
315
277
|
__TYPE__: "SeparatorContent";
|
|
316
|
-
}> | import("fp-ts/lib/Either").Right<{
|
|
317
|
-
__TYPE__: "
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
value: [string, {
|
|
278
|
+
}> | import("fp-ts/lib/Either").Right<import("../..").GroupContent> | import("fp-ts/lib/Either").Right<{
|
|
279
|
+
__TYPE__: "CompositeSliceContent";
|
|
280
|
+
nonRepeat: {
|
|
281
|
+
[x: string]: {
|
|
321
282
|
type: string;
|
|
322
283
|
__TYPE__: "EmptyContent";
|
|
323
284
|
} | {
|
|
@@ -497,45 +458,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
497
458
|
alt?: string | null;
|
|
498
459
|
provider?: string | null | undefined;
|
|
499
460
|
} & {
|
|
500
|
-
linkTo?:
|
|
501
|
-
__TYPE__: "ImageLink";
|
|
502
|
-
} & {
|
|
503
|
-
id: string;
|
|
504
|
-
url: string;
|
|
505
|
-
height: string;
|
|
506
|
-
width: string;
|
|
507
|
-
size: string;
|
|
508
|
-
name: string;
|
|
509
|
-
kind: string;
|
|
510
|
-
} & {
|
|
511
|
-
date?: string | null | undefined;
|
|
512
|
-
}) | ({
|
|
513
|
-
id: string;
|
|
514
|
-
url: string;
|
|
515
|
-
name: string;
|
|
516
|
-
kind: string;
|
|
517
|
-
size: string;
|
|
518
|
-
} & {
|
|
519
|
-
date?: string | null | undefined;
|
|
520
|
-
} & {
|
|
521
|
-
__TYPE__: "FileLink";
|
|
522
|
-
} & {
|
|
523
|
-
size?: string;
|
|
524
|
-
}) | ({
|
|
525
|
-
__TYPE__: "DocumentLink";
|
|
526
|
-
} & {
|
|
527
|
-
id: string;
|
|
528
|
-
}) | ({
|
|
529
|
-
__TYPE__: "ExternalLink";
|
|
530
|
-
} & {
|
|
531
|
-
url: string;
|
|
532
|
-
} & {
|
|
533
|
-
kind?: "web";
|
|
534
|
-
target?: string | null | undefined;
|
|
535
|
-
preview?: {
|
|
536
|
-
title?: string;
|
|
537
|
-
} | null | undefined;
|
|
538
|
-
}) | null | undefined;
|
|
461
|
+
linkTo?: any;
|
|
539
462
|
};
|
|
540
463
|
} & {
|
|
541
464
|
label?: string | null | undefined;
|
|
@@ -629,12 +552,11 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
629
552
|
}))[];
|
|
630
553
|
} | {
|
|
631
554
|
__TYPE__: "SeparatorContent";
|
|
632
|
-
}
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
[x: string]: {
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
repeat: {
|
|
558
|
+
__TYPE__: "GroupItemContent";
|
|
559
|
+
value: [string, {
|
|
638
560
|
type: string;
|
|
639
561
|
__TYPE__: "EmptyContent";
|
|
640
562
|
} | {
|
|
@@ -814,45 +736,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
814
736
|
alt?: string | null;
|
|
815
737
|
provider?: string | null | undefined;
|
|
816
738
|
} & {
|
|
817
|
-
linkTo?:
|
|
818
|
-
__TYPE__: "ImageLink";
|
|
819
|
-
} & {
|
|
820
|
-
id: string;
|
|
821
|
-
url: string;
|
|
822
|
-
height: string;
|
|
823
|
-
width: string;
|
|
824
|
-
size: string;
|
|
825
|
-
name: string;
|
|
826
|
-
kind: string;
|
|
827
|
-
} & {
|
|
828
|
-
date?: string | null | undefined;
|
|
829
|
-
}) | ({
|
|
830
|
-
id: string;
|
|
831
|
-
url: string;
|
|
832
|
-
name: string;
|
|
833
|
-
kind: string;
|
|
834
|
-
size: string;
|
|
835
|
-
} & {
|
|
836
|
-
date?: string | null | undefined;
|
|
837
|
-
} & {
|
|
838
|
-
__TYPE__: "FileLink";
|
|
839
|
-
} & {
|
|
840
|
-
size?: string;
|
|
841
|
-
}) | ({
|
|
842
|
-
__TYPE__: "DocumentLink";
|
|
843
|
-
} & {
|
|
844
|
-
id: string;
|
|
845
|
-
}) | ({
|
|
846
|
-
__TYPE__: "ExternalLink";
|
|
847
|
-
} & {
|
|
848
|
-
url: string;
|
|
849
|
-
} & {
|
|
850
|
-
kind?: "web";
|
|
851
|
-
target?: string | null | undefined;
|
|
852
|
-
preview?: {
|
|
853
|
-
title?: string;
|
|
854
|
-
} | null | undefined;
|
|
855
|
-
}) | null | undefined;
|
|
739
|
+
linkTo?: any;
|
|
856
740
|
};
|
|
857
741
|
} & {
|
|
858
742
|
label?: string | null | undefined;
|
|
@@ -946,11 +830,13 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
946
830
|
}))[];
|
|
947
831
|
} | {
|
|
948
832
|
__TYPE__: "SeparatorContent";
|
|
949
|
-
};
|
|
950
|
-
};
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
833
|
+
}][];
|
|
834
|
+
}[];
|
|
835
|
+
}> | import("fp-ts/lib/Either").Right<{
|
|
836
|
+
__TYPE__: "SharedSliceContent";
|
|
837
|
+
variation: string;
|
|
838
|
+
primary: {
|
|
839
|
+
[x: string]: {
|
|
954
840
|
type: string;
|
|
955
841
|
__TYPE__: "EmptyContent";
|
|
956
842
|
} | {
|
|
@@ -1130,45 +1016,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1130
1016
|
alt?: string | null;
|
|
1131
1017
|
provider?: string | null | undefined;
|
|
1132
1018
|
} & {
|
|
1133
|
-
linkTo?:
|
|
1134
|
-
__TYPE__: "ImageLink";
|
|
1135
|
-
} & {
|
|
1136
|
-
id: string;
|
|
1137
|
-
url: string;
|
|
1138
|
-
height: string;
|
|
1139
|
-
width: string;
|
|
1140
|
-
size: string;
|
|
1141
|
-
name: string;
|
|
1142
|
-
kind: string;
|
|
1143
|
-
} & {
|
|
1144
|
-
date?: string | null | undefined;
|
|
1145
|
-
}) | ({
|
|
1146
|
-
id: string;
|
|
1147
|
-
url: string;
|
|
1148
|
-
name: string;
|
|
1149
|
-
kind: string;
|
|
1150
|
-
size: string;
|
|
1151
|
-
} & {
|
|
1152
|
-
date?: string | null | undefined;
|
|
1153
|
-
} & {
|
|
1154
|
-
__TYPE__: "FileLink";
|
|
1155
|
-
} & {
|
|
1156
|
-
size?: string;
|
|
1157
|
-
}) | ({
|
|
1158
|
-
__TYPE__: "DocumentLink";
|
|
1159
|
-
} & {
|
|
1160
|
-
id: string;
|
|
1161
|
-
}) | ({
|
|
1162
|
-
__TYPE__: "ExternalLink";
|
|
1163
|
-
} & {
|
|
1164
|
-
url: string;
|
|
1165
|
-
} & {
|
|
1166
|
-
kind?: "web";
|
|
1167
|
-
target?: string | null | undefined;
|
|
1168
|
-
preview?: {
|
|
1169
|
-
title?: string;
|
|
1170
|
-
} | null | undefined;
|
|
1171
|
-
}) | null | undefined;
|
|
1019
|
+
linkTo?: any;
|
|
1172
1020
|
};
|
|
1173
1021
|
} & {
|
|
1174
1022
|
label?: string | null | undefined;
|
|
@@ -1262,13 +1110,11 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1262
1110
|
}))[];
|
|
1263
1111
|
} | {
|
|
1264
1112
|
__TYPE__: "SeparatorContent";
|
|
1265
|
-
}
|
|
1266
|
-
}
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
primary: {
|
|
1271
|
-
[x: string]: {
|
|
1113
|
+
} | import("../..").GroupContent;
|
|
1114
|
+
};
|
|
1115
|
+
items: {
|
|
1116
|
+
__TYPE__: "GroupItemContent";
|
|
1117
|
+
value: [string, {
|
|
1272
1118
|
type: string;
|
|
1273
1119
|
__TYPE__: "EmptyContent";
|
|
1274
1120
|
} | {
|
|
@@ -1448,45 +1294,7 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1448
1294
|
alt?: string | null;
|
|
1449
1295
|
provider?: string | null | undefined;
|
|
1450
1296
|
} & {
|
|
1451
|
-
linkTo?:
|
|
1452
|
-
__TYPE__: "ImageLink";
|
|
1453
|
-
} & {
|
|
1454
|
-
id: string;
|
|
1455
|
-
url: string;
|
|
1456
|
-
height: string;
|
|
1457
|
-
width: string;
|
|
1458
|
-
size: string;
|
|
1459
|
-
name: string;
|
|
1460
|
-
kind: string;
|
|
1461
|
-
} & {
|
|
1462
|
-
date?: string | null | undefined;
|
|
1463
|
-
}) | ({
|
|
1464
|
-
id: string;
|
|
1465
|
-
url: string;
|
|
1466
|
-
name: string;
|
|
1467
|
-
kind: string;
|
|
1468
|
-
size: string;
|
|
1469
|
-
} & {
|
|
1470
|
-
date?: string | null | undefined;
|
|
1471
|
-
} & {
|
|
1472
|
-
__TYPE__: "FileLink";
|
|
1473
|
-
} & {
|
|
1474
|
-
size?: string;
|
|
1475
|
-
}) | ({
|
|
1476
|
-
__TYPE__: "DocumentLink";
|
|
1477
|
-
} & {
|
|
1478
|
-
id: string;
|
|
1479
|
-
}) | ({
|
|
1480
|
-
__TYPE__: "ExternalLink";
|
|
1481
|
-
} & {
|
|
1482
|
-
url: string;
|
|
1483
|
-
} & {
|
|
1484
|
-
kind?: "web";
|
|
1485
|
-
target?: string | null | undefined;
|
|
1486
|
-
preview?: {
|
|
1487
|
-
title?: string;
|
|
1488
|
-
} | null | undefined;
|
|
1489
|
-
}) | null | undefined;
|
|
1297
|
+
linkTo?: any;
|
|
1490
1298
|
};
|
|
1491
1299
|
} & {
|
|
1492
1300
|
label?: string | null | undefined;
|
|
@@ -1580,730 +1388,402 @@ export declare const SliceLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1580
1388
|
}))[];
|
|
1581
1389
|
} | {
|
|
1582
1390
|
__TYPE__: "SeparatorContent";
|
|
1583
|
-
}
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1391
|
+
}][];
|
|
1392
|
+
}[];
|
|
1393
|
+
}> | undefined;
|
|
1394
|
+
encode: (value: SliceContent) => import("../../../LegacyContentCtx").WithTypes<unknown> | undefined;
|
|
1395
|
+
};
|
|
1396
|
+
export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
1397
|
+
__TYPE__: t.LiteralC<"CompositeSliceContent">;
|
|
1398
|
+
nonRepeat: t.RecordC<t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
1399
|
+
type: t.StringC;
|
|
1400
|
+
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
1401
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1402
|
+
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1403
|
+
value: t.BooleanC;
|
|
1404
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1405
|
+
embed_url: t.StringC;
|
|
1406
|
+
type: t.StringC;
|
|
1407
|
+
}>, t.PartialC<{
|
|
1408
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1409
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1410
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1411
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1412
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1413
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1414
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1415
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1416
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1417
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1418
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1419
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1420
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1421
|
+
all: t.UnknownC;
|
|
1422
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1423
|
+
type: t.LiteralC<"Text">;
|
|
1424
|
+
value: t.Type<string, string, unknown>;
|
|
1425
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1426
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1427
|
+
type: t.LiteralC<"Timestamp">;
|
|
1428
|
+
value: t.Type<string, string, unknown>;
|
|
1429
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1430
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1431
|
+
type: t.LiteralC<"Select">;
|
|
1432
|
+
value: t.Type<string, string, unknown>;
|
|
1433
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1434
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1435
|
+
type: t.LiteralC<"Range">;
|
|
1436
|
+
value: t.Type<string, string, unknown>;
|
|
1437
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1438
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1439
|
+
type: t.LiteralC<"Number">;
|
|
1440
|
+
value: t.Type<string, string, unknown>;
|
|
1441
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1442
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1443
|
+
type: t.LiteralC<"Date">;
|
|
1444
|
+
value: t.Type<string, string, unknown>;
|
|
1445
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1446
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1447
|
+
type: t.LiteralC<"Color">;
|
|
1448
|
+
value: t.Type<string, string, unknown>;
|
|
1449
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1450
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1451
|
+
position: t.ExactC<t.TypeC<{
|
|
1452
|
+
lat: t.NumberC;
|
|
1453
|
+
lng: t.NumberC;
|
|
1454
|
+
}>>;
|
|
1455
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1456
|
+
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
1457
|
+
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1458
|
+
origin: t.ExactC<t.TypeC<{
|
|
1459
|
+
id: t.StringC;
|
|
1460
|
+
url: t.StringC;
|
|
1461
|
+
width: t.NumberC;
|
|
1462
|
+
height: t.NumberC;
|
|
1463
|
+
}>>;
|
|
1464
|
+
width: t.NumberC;
|
|
1465
|
+
height: t.NumberC;
|
|
1466
|
+
edit: t.TypeC<{
|
|
1467
|
+
zoom: t.NumberC;
|
|
1468
|
+
crop: t.TypeC<{
|
|
1469
|
+
x: t.NumberC;
|
|
1470
|
+
y: t.NumberC;
|
|
1471
|
+
}>;
|
|
1472
|
+
background: t.StringC;
|
|
1473
|
+
}>;
|
|
1474
|
+
}>, t.PartialC<{
|
|
1475
|
+
url: t.StringC;
|
|
1476
|
+
credits: t.Type<string | null, string | null, unknown>;
|
|
1477
|
+
alt: t.Type<string | null, string | null, unknown>;
|
|
1478
|
+
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1479
|
+
}>]>>, t.PartialC<{
|
|
1480
|
+
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1481
|
+
origin: t.ExactC<t.TypeC<{
|
|
1482
|
+
id: t.StringC;
|
|
1483
|
+
url: t.StringC;
|
|
1484
|
+
width: t.NumberC;
|
|
1485
|
+
height: t.NumberC;
|
|
1486
|
+
}>>;
|
|
1487
|
+
width: t.NumberC;
|
|
1488
|
+
height: t.NumberC;
|
|
1489
|
+
edit: t.TypeC<{
|
|
1490
|
+
zoom: t.NumberC;
|
|
1491
|
+
crop: t.TypeC<{
|
|
1492
|
+
x: t.NumberC;
|
|
1493
|
+
y: t.NumberC;
|
|
1494
|
+
}>;
|
|
1495
|
+
background: t.StringC;
|
|
1496
|
+
}>;
|
|
1497
|
+
}>, t.PartialC<{
|
|
1498
|
+
url: t.StringC;
|
|
1499
|
+
credits: t.Type<string | null, string | null, unknown>;
|
|
1500
|
+
alt: t.Type<string | null, string | null, unknown>;
|
|
1501
|
+
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1502
|
+
}>]>>>;
|
|
1503
|
+
}>]>, t.ExactC<t.TypeC<{
|
|
1504
|
+
__TYPE__: t.LiteralC<"ImageContent">;
|
|
1505
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1506
|
+
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
1507
|
+
value: t.StringC;
|
|
1508
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1509
|
+
__TYPE__: t.LiteralC<"LinkContent">;
|
|
1510
|
+
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1511
|
+
__TYPE__: t.LiteralC<"ImageLink">;
|
|
1512
|
+
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1513
|
+
id: t.StringC;
|
|
1514
|
+
url: t.StringC;
|
|
1515
|
+
height: t.StringC;
|
|
1516
|
+
width: t.StringC;
|
|
1517
|
+
size: t.StringC;
|
|
1518
|
+
name: t.StringC;
|
|
1519
|
+
kind: t.StringC;
|
|
1520
|
+
}>, t.PartialC<{
|
|
1521
|
+
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1522
|
+
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1523
|
+
id: t.StringC;
|
|
1524
|
+
url: t.StringC;
|
|
1525
|
+
name: t.StringC;
|
|
1526
|
+
kind: t.StringC;
|
|
1527
|
+
size: t.StringC;
|
|
1528
|
+
}>, t.PartialC<{
|
|
1529
|
+
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1530
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1531
|
+
__TYPE__: t.LiteralC<"FileLink">;
|
|
1532
|
+
}>, t.PartialC<{
|
|
1533
|
+
size: t.StringC;
|
|
1534
|
+
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1535
|
+
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
1536
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1537
|
+
id: t.Type<string, string, unknown>;
|
|
1538
|
+
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1539
|
+
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
1540
|
+
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1541
|
+
url: t.StringC;
|
|
1542
|
+
}>, t.PartialC<{
|
|
1543
|
+
kind: t.LiteralC<"web">;
|
|
1544
|
+
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1545
|
+
preview: t.UnionC<[t.Type<{
|
|
1546
|
+
title?: string;
|
|
1547
|
+
}, {
|
|
1548
|
+
title?: string;
|
|
1549
|
+
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
1550
|
+
}>]>>]>]>;
|
|
1551
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1552
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
1553
|
+
value: t.ArrayC<t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1554
|
+
type: t.LiteralC<"image">;
|
|
1555
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1556
|
+
origin: t.ExactC<t.TypeC<{
|
|
1557
|
+
id: t.StringC;
|
|
1558
|
+
url: t.StringC;
|
|
1559
|
+
width: t.NumberC;
|
|
1560
|
+
height: t.NumberC;
|
|
1561
|
+
}>>;
|
|
1562
|
+
width: t.NumberC;
|
|
1563
|
+
height: t.NumberC;
|
|
1564
|
+
edit: t.TypeC<{
|
|
1565
|
+
zoom: t.NumberC;
|
|
1566
|
+
crop: t.TypeC<{
|
|
1567
|
+
x: t.NumberC;
|
|
1568
|
+
y: t.NumberC;
|
|
1569
|
+
}>;
|
|
1570
|
+
background: t.StringC;
|
|
1571
|
+
}>;
|
|
1572
|
+
}>, t.PartialC<{
|
|
1573
|
+
url: t.StringC;
|
|
1574
|
+
credits: t.Type<string | null, string | null, unknown>;
|
|
1575
|
+
alt: t.Type<string | null, string | null, unknown>;
|
|
1576
|
+
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1577
|
+
}>]>>, t.PartialC<{
|
|
1578
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
1579
|
+
}>]>;
|
|
1580
|
+
}>, t.PartialC<{
|
|
1581
|
+
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1582
|
+
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1583
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1584
|
+
type: t.LiteralC<"embed">;
|
|
1585
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1586
|
+
embed_url: t.StringC;
|
|
1587
|
+
type: t.StringC;
|
|
1588
|
+
}>, t.PartialC<{
|
|
1589
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1590
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1591
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1592
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1593
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1594
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1595
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1596
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1597
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1598
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1599
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1600
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1601
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1602
|
+
all: t.UnknownC;
|
|
1603
|
+
}>>]>;
|
|
1604
|
+
}>, t.PartialC<{
|
|
1605
|
+
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1606
|
+
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1607
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1608
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
1609
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
1610
|
+
text: t.StringC;
|
|
1611
|
+
}>, t.PartialC<{
|
|
1612
|
+
spans: t.Type<({
|
|
1613
|
+
data: ({
|
|
1614
|
+
__TYPE__: "ImageLink";
|
|
1668
1615
|
} & {
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
};
|
|
1677
|
-
width: number;
|
|
1678
|
-
height: number;
|
|
1679
|
-
edit: {
|
|
1680
|
-
zoom: number;
|
|
1681
|
-
crop: {
|
|
1682
|
-
x: number;
|
|
1683
|
-
y: number;
|
|
1684
|
-
};
|
|
1685
|
-
background: string;
|
|
1686
|
-
};
|
|
1687
|
-
} & {
|
|
1688
|
-
url?: string;
|
|
1689
|
-
credits?: string | null;
|
|
1690
|
-
alt?: string | null;
|
|
1691
|
-
provider?: string | null | undefined;
|
|
1692
|
-
};
|
|
1693
|
-
};
|
|
1616
|
+
id: string;
|
|
1617
|
+
url: string;
|
|
1618
|
+
height: string;
|
|
1619
|
+
width: string;
|
|
1620
|
+
size: string;
|
|
1621
|
+
name: string;
|
|
1622
|
+
kind: string;
|
|
1694
1623
|
} & {
|
|
1695
|
-
|
|
1696
|
-
}) | {
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
__TYPE__: "ImageLink";
|
|
1703
|
-
} & {
|
|
1704
|
-
id: string;
|
|
1705
|
-
url: string;
|
|
1706
|
-
height: string;
|
|
1707
|
-
width: string;
|
|
1708
|
-
size: string;
|
|
1709
|
-
name: string;
|
|
1710
|
-
kind: string;
|
|
1711
|
-
} & {
|
|
1712
|
-
date?: string | null | undefined;
|
|
1713
|
-
}) | ({
|
|
1714
|
-
id: string;
|
|
1715
|
-
url: string;
|
|
1716
|
-
name: string;
|
|
1717
|
-
kind: string;
|
|
1718
|
-
size: string;
|
|
1719
|
-
} & {
|
|
1720
|
-
date?: string | null | undefined;
|
|
1721
|
-
} & {
|
|
1722
|
-
__TYPE__: "FileLink";
|
|
1723
|
-
} & {
|
|
1724
|
-
size?: string;
|
|
1725
|
-
}) | ({
|
|
1726
|
-
__TYPE__: "DocumentLink";
|
|
1727
|
-
} & {
|
|
1728
|
-
id: string;
|
|
1729
|
-
}) | ({
|
|
1730
|
-
__TYPE__: "ExternalLink";
|
|
1731
|
-
} & {
|
|
1732
|
-
url: string;
|
|
1733
|
-
} & {
|
|
1734
|
-
kind?: "web";
|
|
1735
|
-
target?: string | null | undefined;
|
|
1736
|
-
preview?: {
|
|
1737
|
-
title?: string;
|
|
1738
|
-
} | null | undefined;
|
|
1739
|
-
});
|
|
1740
|
-
} | {
|
|
1741
|
-
__TYPE__: "StructuredTextContent";
|
|
1742
|
-
value: (({
|
|
1743
|
-
type: "image";
|
|
1744
|
-
data: {
|
|
1745
|
-
origin: {
|
|
1746
|
-
id: string;
|
|
1747
|
-
url: string;
|
|
1748
|
-
width: number;
|
|
1749
|
-
height: number;
|
|
1750
|
-
};
|
|
1751
|
-
width: number;
|
|
1752
|
-
height: number;
|
|
1753
|
-
edit: {
|
|
1754
|
-
zoom: number;
|
|
1755
|
-
crop: {
|
|
1756
|
-
x: number;
|
|
1757
|
-
y: number;
|
|
1758
|
-
};
|
|
1759
|
-
background: string;
|
|
1760
|
-
};
|
|
1761
|
-
} & {
|
|
1762
|
-
url?: string;
|
|
1763
|
-
credits?: string | null;
|
|
1764
|
-
alt?: string | null;
|
|
1765
|
-
provider?: string | null | undefined;
|
|
1766
|
-
} & {
|
|
1767
|
-
linkTo?: ({
|
|
1768
|
-
__TYPE__: "ImageLink";
|
|
1769
|
-
} & {
|
|
1770
|
-
id: string;
|
|
1771
|
-
url: string;
|
|
1772
|
-
height: string;
|
|
1773
|
-
width: string;
|
|
1774
|
-
size: string;
|
|
1775
|
-
name: string;
|
|
1776
|
-
kind: string;
|
|
1777
|
-
} & {
|
|
1778
|
-
date?: string | null | undefined;
|
|
1779
|
-
}) | ({
|
|
1780
|
-
id: string;
|
|
1781
|
-
url: string;
|
|
1782
|
-
name: string;
|
|
1783
|
-
kind: string;
|
|
1784
|
-
size: string;
|
|
1785
|
-
} & {
|
|
1786
|
-
date?: string | null | undefined;
|
|
1787
|
-
} & {
|
|
1788
|
-
__TYPE__: "FileLink";
|
|
1789
|
-
} & {
|
|
1790
|
-
size?: string;
|
|
1791
|
-
}) | ({
|
|
1792
|
-
__TYPE__: "DocumentLink";
|
|
1793
|
-
} & {
|
|
1794
|
-
id: string;
|
|
1795
|
-
}) | ({
|
|
1796
|
-
__TYPE__: "ExternalLink";
|
|
1797
|
-
} & {
|
|
1798
|
-
url: string;
|
|
1799
|
-
} & {
|
|
1800
|
-
kind?: "web";
|
|
1801
|
-
target?: string | null | undefined;
|
|
1802
|
-
preview?: {
|
|
1803
|
-
title?: string;
|
|
1804
|
-
} | null | undefined;
|
|
1805
|
-
}) | null | undefined;
|
|
1806
|
-
};
|
|
1807
|
-
} & {
|
|
1808
|
-
label?: string | null | undefined;
|
|
1809
|
-
direction?: string | null | undefined;
|
|
1810
|
-
}) | ({
|
|
1811
|
-
type: "embed";
|
|
1812
|
-
data: {
|
|
1813
|
-
embed_url: string;
|
|
1814
|
-
type: string;
|
|
1815
|
-
} & {
|
|
1816
|
-
version?: string | number | null;
|
|
1817
|
-
title?: string | null | undefined;
|
|
1818
|
-
author_name?: string | null | undefined;
|
|
1819
|
-
author_url?: string | null | undefined;
|
|
1820
|
-
provider_name?: string | null | undefined;
|
|
1821
|
-
provider_url?: string | null | undefined;
|
|
1822
|
-
cache_age?: string | number | null;
|
|
1823
|
-
thumbnail_url?: string | null | undefined;
|
|
1824
|
-
thumbnail_width?: number | null | undefined;
|
|
1825
|
-
thumbnail_height?: number | null | undefined;
|
|
1826
|
-
html?: string | null | undefined;
|
|
1827
|
-
} & {
|
|
1828
|
-
__TYPE__: "EmbedContent";
|
|
1829
|
-
all: unknown;
|
|
1830
|
-
};
|
|
1831
|
-
} & {
|
|
1832
|
-
label?: string | null | undefined;
|
|
1833
|
-
direction?: string | null | undefined;
|
|
1834
|
-
}) | ({
|
|
1835
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1836
|
-
content: {
|
|
1837
|
-
text: string;
|
|
1838
|
-
} & {
|
|
1839
|
-
spans?: ({
|
|
1840
|
-
data: ({
|
|
1841
|
-
__TYPE__: "ImageLink";
|
|
1842
|
-
} & {
|
|
1843
|
-
id: string;
|
|
1844
|
-
url: string;
|
|
1845
|
-
height: string;
|
|
1846
|
-
width: string;
|
|
1847
|
-
size: string;
|
|
1848
|
-
name: string;
|
|
1849
|
-
kind: string;
|
|
1850
|
-
} & {
|
|
1851
|
-
date?: string | null | undefined;
|
|
1852
|
-
}) | ({
|
|
1853
|
-
id: string;
|
|
1854
|
-
url: string;
|
|
1855
|
-
name: string;
|
|
1856
|
-
kind: string;
|
|
1857
|
-
size: string;
|
|
1858
|
-
} & {
|
|
1859
|
-
date?: string | null | undefined;
|
|
1860
|
-
} & {
|
|
1861
|
-
__TYPE__: "FileLink";
|
|
1862
|
-
} & {
|
|
1863
|
-
size?: string;
|
|
1864
|
-
}) | ({
|
|
1865
|
-
__TYPE__: "DocumentLink";
|
|
1866
|
-
} & {
|
|
1867
|
-
id: string;
|
|
1868
|
-
}) | ({
|
|
1869
|
-
__TYPE__: "ExternalLink";
|
|
1870
|
-
} & {
|
|
1871
|
-
url: string;
|
|
1872
|
-
} & {
|
|
1873
|
-
kind?: "web";
|
|
1874
|
-
target?: string | null | undefined;
|
|
1875
|
-
preview?: {
|
|
1876
|
-
title?: string;
|
|
1877
|
-
} | null | undefined;
|
|
1878
|
-
});
|
|
1879
|
-
start: number;
|
|
1880
|
-
end: number;
|
|
1881
|
-
type: "hyperlink";
|
|
1882
|
-
} | {
|
|
1883
|
-
data: string;
|
|
1884
|
-
start: number;
|
|
1885
|
-
end: number;
|
|
1886
|
-
type: "label";
|
|
1887
|
-
} | {
|
|
1888
|
-
start: number;
|
|
1889
|
-
end: number;
|
|
1890
|
-
type: "strong" | "em" | "list-item";
|
|
1891
|
-
})[];
|
|
1892
|
-
};
|
|
1893
|
-
} & {
|
|
1894
|
-
label?: string;
|
|
1895
|
-
direction?: string;
|
|
1896
|
-
}))[];
|
|
1897
|
-
} | {
|
|
1898
|
-
__TYPE__: "SeparatorContent";
|
|
1899
|
-
}][];
|
|
1900
|
-
}[];
|
|
1901
|
-
};
|
|
1902
|
-
};
|
|
1903
|
-
items: {
|
|
1904
|
-
__TYPE__: "GroupItemContent";
|
|
1905
|
-
value: [string, {
|
|
1906
|
-
type: string;
|
|
1907
|
-
__TYPE__: "EmptyContent";
|
|
1908
|
-
} | {
|
|
1909
|
-
__TYPE__: "BooleanContent";
|
|
1910
|
-
value: boolean;
|
|
1911
|
-
} | ({
|
|
1912
|
-
embed_url: string;
|
|
1913
|
-
type: string;
|
|
1914
|
-
} & {
|
|
1915
|
-
version?: string | number | null;
|
|
1916
|
-
title?: string | null | undefined;
|
|
1917
|
-
author_name?: string | null | undefined;
|
|
1918
|
-
author_url?: string | null | undefined;
|
|
1919
|
-
provider_name?: string | null | undefined;
|
|
1920
|
-
provider_url?: string | null | undefined;
|
|
1921
|
-
cache_age?: string | number | null;
|
|
1922
|
-
thumbnail_url?: string | null | undefined;
|
|
1923
|
-
thumbnail_width?: number | null | undefined;
|
|
1924
|
-
thumbnail_height?: number | null | undefined;
|
|
1925
|
-
html?: string | null | undefined;
|
|
1926
|
-
} & {
|
|
1927
|
-
__TYPE__: "EmbedContent";
|
|
1928
|
-
all: unknown;
|
|
1929
|
-
}) | {
|
|
1930
|
-
type: "Color";
|
|
1931
|
-
value: string;
|
|
1932
|
-
__TYPE__: "FieldContent";
|
|
1933
|
-
} | {
|
|
1934
|
-
type: "Date";
|
|
1935
|
-
value: string;
|
|
1936
|
-
__TYPE__: "FieldContent";
|
|
1937
|
-
} | {
|
|
1938
|
-
type: "Number";
|
|
1939
|
-
value: string;
|
|
1940
|
-
__TYPE__: "FieldContent";
|
|
1941
|
-
} | {
|
|
1942
|
-
type: "Range";
|
|
1943
|
-
value: string;
|
|
1944
|
-
__TYPE__: "FieldContent";
|
|
1945
|
-
} | {
|
|
1946
|
-
type: "Select";
|
|
1947
|
-
value: string;
|
|
1948
|
-
__TYPE__: "FieldContent";
|
|
1949
|
-
} | {
|
|
1950
|
-
type: "Text";
|
|
1951
|
-
value: string;
|
|
1952
|
-
__TYPE__: "FieldContent";
|
|
1953
|
-
} | {
|
|
1954
|
-
type: "Timestamp";
|
|
1955
|
-
value: string;
|
|
1956
|
-
__TYPE__: "FieldContent";
|
|
1957
|
-
} | ({
|
|
1958
|
-
position: {
|
|
1959
|
-
lat: number;
|
|
1960
|
-
lng: number;
|
|
1961
|
-
};
|
|
1962
|
-
} & {
|
|
1963
|
-
__TYPE__: "GeoPointContent";
|
|
1964
|
-
}) | ({
|
|
1965
|
-
origin: {
|
|
1966
|
-
id: string;
|
|
1967
|
-
url: string;
|
|
1968
|
-
width: number;
|
|
1969
|
-
height: number;
|
|
1970
|
-
};
|
|
1971
|
-
width: number;
|
|
1972
|
-
height: number;
|
|
1973
|
-
edit: {
|
|
1974
|
-
zoom: number;
|
|
1975
|
-
crop: {
|
|
1976
|
-
x: number;
|
|
1977
|
-
y: number;
|
|
1978
|
-
};
|
|
1979
|
-
background: string;
|
|
1980
|
-
};
|
|
1981
|
-
} & {
|
|
1982
|
-
url?: string;
|
|
1983
|
-
credits?: string | null;
|
|
1984
|
-
alt?: string | null;
|
|
1985
|
-
provider?: string | null | undefined;
|
|
1986
|
-
} & {
|
|
1987
|
-
thumbnails?: {
|
|
1988
|
-
[x: string]: {
|
|
1989
|
-
origin: {
|
|
1990
|
-
id: string;
|
|
1991
|
-
url: string;
|
|
1992
|
-
width: number;
|
|
1993
|
-
height: number;
|
|
1994
|
-
};
|
|
1995
|
-
width: number;
|
|
1996
|
-
height: number;
|
|
1997
|
-
edit: {
|
|
1998
|
-
zoom: number;
|
|
1999
|
-
crop: {
|
|
2000
|
-
x: number;
|
|
2001
|
-
y: number;
|
|
2002
|
-
};
|
|
2003
|
-
background: string;
|
|
2004
|
-
};
|
|
1624
|
+
date?: string | null | undefined;
|
|
1625
|
+
}) | ({
|
|
1626
|
+
id: string;
|
|
1627
|
+
url: string;
|
|
1628
|
+
name: string;
|
|
1629
|
+
kind: string;
|
|
1630
|
+
size: string;
|
|
2005
1631
|
} & {
|
|
2006
|
-
|
|
2007
|
-
credits?: string | null;
|
|
2008
|
-
alt?: string | null;
|
|
2009
|
-
provider?: string | null | undefined;
|
|
2010
|
-
};
|
|
2011
|
-
};
|
|
2012
|
-
} & {
|
|
2013
|
-
__TYPE__: "ImageContent";
|
|
2014
|
-
}) | {
|
|
2015
|
-
__TYPE__: "IntegrationFieldsContent";
|
|
2016
|
-
value: string;
|
|
2017
|
-
} | {
|
|
2018
|
-
__TYPE__: "LinkContent";
|
|
2019
|
-
value: ({
|
|
2020
|
-
__TYPE__: "ImageLink";
|
|
2021
|
-
} & {
|
|
2022
|
-
id: string;
|
|
2023
|
-
url: string;
|
|
2024
|
-
height: string;
|
|
2025
|
-
width: string;
|
|
2026
|
-
size: string;
|
|
2027
|
-
name: string;
|
|
2028
|
-
kind: string;
|
|
2029
|
-
} & {
|
|
2030
|
-
date?: string | null | undefined;
|
|
2031
|
-
}) | ({
|
|
2032
|
-
id: string;
|
|
2033
|
-
url: string;
|
|
2034
|
-
name: string;
|
|
2035
|
-
kind: string;
|
|
2036
|
-
size: string;
|
|
2037
|
-
} & {
|
|
2038
|
-
date?: string | null | undefined;
|
|
2039
|
-
} & {
|
|
2040
|
-
__TYPE__: "FileLink";
|
|
2041
|
-
} & {
|
|
2042
|
-
size?: string;
|
|
2043
|
-
}) | ({
|
|
2044
|
-
__TYPE__: "DocumentLink";
|
|
2045
|
-
} & {
|
|
2046
|
-
id: string;
|
|
2047
|
-
}) | ({
|
|
2048
|
-
__TYPE__: "ExternalLink";
|
|
2049
|
-
} & {
|
|
2050
|
-
url: string;
|
|
2051
|
-
} & {
|
|
2052
|
-
kind?: "web";
|
|
2053
|
-
target?: string | null | undefined;
|
|
2054
|
-
preview?: {
|
|
2055
|
-
title?: string;
|
|
2056
|
-
} | null | undefined;
|
|
2057
|
-
});
|
|
2058
|
-
} | {
|
|
2059
|
-
__TYPE__: "StructuredTextContent";
|
|
2060
|
-
value: (({
|
|
2061
|
-
type: "image";
|
|
2062
|
-
data: {
|
|
2063
|
-
origin: {
|
|
2064
|
-
id: string;
|
|
2065
|
-
url: string;
|
|
2066
|
-
width: number;
|
|
2067
|
-
height: number;
|
|
2068
|
-
};
|
|
2069
|
-
width: number;
|
|
2070
|
-
height: number;
|
|
2071
|
-
edit: {
|
|
2072
|
-
zoom: number;
|
|
2073
|
-
crop: {
|
|
2074
|
-
x: number;
|
|
2075
|
-
y: number;
|
|
2076
|
-
};
|
|
2077
|
-
background: string;
|
|
2078
|
-
};
|
|
1632
|
+
date?: string | null | undefined;
|
|
2079
1633
|
} & {
|
|
2080
|
-
|
|
2081
|
-
credits?: string | null;
|
|
2082
|
-
alt?: string | null;
|
|
2083
|
-
provider?: string | null | undefined;
|
|
1634
|
+
__TYPE__: "FileLink";
|
|
2084
1635
|
} & {
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
id: string;
|
|
2089
|
-
url: string;
|
|
2090
|
-
height: string;
|
|
2091
|
-
width: string;
|
|
2092
|
-
size: string;
|
|
2093
|
-
name: string;
|
|
2094
|
-
kind: string;
|
|
2095
|
-
} & {
|
|
2096
|
-
date?: string | null | undefined;
|
|
2097
|
-
}) | ({
|
|
2098
|
-
id: string;
|
|
2099
|
-
url: string;
|
|
2100
|
-
name: string;
|
|
2101
|
-
kind: string;
|
|
2102
|
-
size: string;
|
|
2103
|
-
} & {
|
|
2104
|
-
date?: string | null | undefined;
|
|
2105
|
-
} & {
|
|
2106
|
-
__TYPE__: "FileLink";
|
|
2107
|
-
} & {
|
|
2108
|
-
size?: string;
|
|
2109
|
-
}) | ({
|
|
2110
|
-
__TYPE__: "DocumentLink";
|
|
2111
|
-
} & {
|
|
2112
|
-
id: string;
|
|
2113
|
-
}) | ({
|
|
2114
|
-
__TYPE__: "ExternalLink";
|
|
2115
|
-
} & {
|
|
2116
|
-
url: string;
|
|
2117
|
-
} & {
|
|
2118
|
-
kind?: "web";
|
|
2119
|
-
target?: string | null | undefined;
|
|
2120
|
-
preview?: {
|
|
2121
|
-
title?: string;
|
|
2122
|
-
} | null | undefined;
|
|
2123
|
-
}) | null | undefined;
|
|
2124
|
-
};
|
|
2125
|
-
} & {
|
|
2126
|
-
label?: string | null | undefined;
|
|
2127
|
-
direction?: string | null | undefined;
|
|
2128
|
-
}) | ({
|
|
2129
|
-
type: "embed";
|
|
2130
|
-
data: {
|
|
2131
|
-
embed_url: string;
|
|
2132
|
-
type: string;
|
|
1636
|
+
size?: string;
|
|
1637
|
+
}) | ({
|
|
1638
|
+
__TYPE__: "DocumentLink";
|
|
2133
1639
|
} & {
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
author_url?: string | null | undefined;
|
|
2138
|
-
provider_name?: string | null | undefined;
|
|
2139
|
-
provider_url?: string | null | undefined;
|
|
2140
|
-
cache_age?: string | number | null;
|
|
2141
|
-
thumbnail_url?: string | null | undefined;
|
|
2142
|
-
thumbnail_width?: number | null | undefined;
|
|
2143
|
-
thumbnail_height?: number | null | undefined;
|
|
2144
|
-
html?: string | null | undefined;
|
|
1640
|
+
id: string;
|
|
1641
|
+
}) | ({
|
|
1642
|
+
__TYPE__: "ExternalLink";
|
|
2145
1643
|
} & {
|
|
2146
|
-
|
|
2147
|
-
all: unknown;
|
|
2148
|
-
};
|
|
2149
|
-
} & {
|
|
2150
|
-
label?: string | null | undefined;
|
|
2151
|
-
direction?: string | null | undefined;
|
|
2152
|
-
}) | ({
|
|
2153
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
2154
|
-
content: {
|
|
2155
|
-
text: string;
|
|
1644
|
+
url: string;
|
|
2156
1645
|
} & {
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
}>, t.PartialC<{
|
|
2234
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2235
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2236
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2237
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2238
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2239
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2240
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2241
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2242
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2243
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2244
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2245
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2246
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2247
|
-
all: t.UnknownC;
|
|
2248
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2249
|
-
type: t.LiteralC<"Text">;
|
|
2250
|
-
value: t.Type<string, string, unknown>;
|
|
2251
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2252
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2253
|
-
type: t.LiteralC<"Timestamp">;
|
|
2254
|
-
value: t.Type<string, string, unknown>;
|
|
2255
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2256
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2257
|
-
type: t.LiteralC<"Select">;
|
|
2258
|
-
value: t.Type<string, string, unknown>;
|
|
2259
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2260
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2261
|
-
type: t.LiteralC<"Range">;
|
|
2262
|
-
value: t.Type<string, string, unknown>;
|
|
2263
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2264
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2265
|
-
type: t.LiteralC<"Number">;
|
|
2266
|
-
value: t.Type<string, string, unknown>;
|
|
2267
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2268
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2269
|
-
type: t.LiteralC<"Date">;
|
|
2270
|
-
value: t.Type<string, string, unknown>;
|
|
2271
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1646
|
+
kind?: "web";
|
|
1647
|
+
target?: string | null | undefined;
|
|
1648
|
+
preview?: {
|
|
1649
|
+
title?: string;
|
|
1650
|
+
} | null | undefined;
|
|
1651
|
+
});
|
|
1652
|
+
start: number;
|
|
1653
|
+
end: number;
|
|
1654
|
+
type: "hyperlink";
|
|
1655
|
+
} | {
|
|
1656
|
+
data: string;
|
|
1657
|
+
start: number;
|
|
1658
|
+
end: number;
|
|
1659
|
+
type: "label";
|
|
1660
|
+
} | {
|
|
1661
|
+
start: number;
|
|
1662
|
+
end: number;
|
|
1663
|
+
type: "strong" | "em" | "list-item";
|
|
1664
|
+
})[], ({
|
|
1665
|
+
data: ({
|
|
1666
|
+
__TYPE__: "ImageLink";
|
|
1667
|
+
} & {
|
|
1668
|
+
id: string;
|
|
1669
|
+
url: string;
|
|
1670
|
+
height: string;
|
|
1671
|
+
width: string;
|
|
1672
|
+
size: string;
|
|
1673
|
+
name: string;
|
|
1674
|
+
kind: string;
|
|
1675
|
+
} & {
|
|
1676
|
+
date?: string | null | undefined;
|
|
1677
|
+
}) | ({
|
|
1678
|
+
id: string;
|
|
1679
|
+
url: string;
|
|
1680
|
+
name: string;
|
|
1681
|
+
kind: string;
|
|
1682
|
+
size: string;
|
|
1683
|
+
} & {
|
|
1684
|
+
date?: string | null | undefined;
|
|
1685
|
+
} & {
|
|
1686
|
+
__TYPE__: "FileLink";
|
|
1687
|
+
} & {
|
|
1688
|
+
size?: string;
|
|
1689
|
+
}) | ({
|
|
1690
|
+
__TYPE__: "DocumentLink";
|
|
1691
|
+
} & {
|
|
1692
|
+
id: string;
|
|
1693
|
+
}) | ({
|
|
1694
|
+
__TYPE__: "ExternalLink";
|
|
1695
|
+
} & {
|
|
1696
|
+
url: string;
|
|
1697
|
+
} & {
|
|
1698
|
+
kind?: "web";
|
|
1699
|
+
target?: string | null | undefined;
|
|
1700
|
+
preview?: {
|
|
1701
|
+
title?: string;
|
|
1702
|
+
} | null | undefined;
|
|
1703
|
+
});
|
|
1704
|
+
start: number;
|
|
1705
|
+
end: number;
|
|
1706
|
+
type: "hyperlink";
|
|
1707
|
+
} | {
|
|
1708
|
+
data: string;
|
|
1709
|
+
start: number;
|
|
1710
|
+
end: number;
|
|
1711
|
+
type: "label";
|
|
1712
|
+
} | {
|
|
1713
|
+
start: number;
|
|
1714
|
+
end: number;
|
|
1715
|
+
type: "strong" | "em" | "list-item";
|
|
1716
|
+
})[], unknown>;
|
|
1717
|
+
}>]>;
|
|
1718
|
+
}>, t.PartialC<{
|
|
1719
|
+
label: t.StringC;
|
|
1720
|
+
direction: t.StringC;
|
|
1721
|
+
}>]>>]>>;
|
|
2272
1722
|
}>>, t.ExactC<t.TypeC<{
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
}
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
1723
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1724
|
+
}>>]>>;
|
|
1725
|
+
repeat: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1726
|
+
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
1727
|
+
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
1728
|
+
type: t.StringC;
|
|
1729
|
+
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
1730
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1731
|
+
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1732
|
+
value: t.BooleanC;
|
|
1733
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1734
|
+
embed_url: t.StringC;
|
|
1735
|
+
type: t.StringC;
|
|
1736
|
+
}>, t.PartialC<{
|
|
1737
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1738
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1739
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1740
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1741
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1742
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1743
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1744
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1745
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1746
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1747
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1748
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
1749
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1750
|
+
all: t.UnknownC;
|
|
1751
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1752
|
+
type: t.LiteralC<"Text">;
|
|
1753
|
+
value: t.Type<string, string, unknown>;
|
|
1754
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1755
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1756
|
+
type: t.LiteralC<"Timestamp">;
|
|
1757
|
+
value: t.Type<string, string, unknown>;
|
|
1758
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1759
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1760
|
+
type: t.LiteralC<"Select">;
|
|
1761
|
+
value: t.Type<string, string, unknown>;
|
|
1762
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1763
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1764
|
+
type: t.LiteralC<"Range">;
|
|
1765
|
+
value: t.Type<string, string, unknown>;
|
|
1766
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1767
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1768
|
+
type: t.LiteralC<"Number">;
|
|
1769
|
+
value: t.Type<string, string, unknown>;
|
|
1770
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1771
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1772
|
+
type: t.LiteralC<"Date">;
|
|
1773
|
+
value: t.Type<string, string, unknown>;
|
|
1774
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1775
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1776
|
+
type: t.LiteralC<"Color">;
|
|
1777
|
+
value: t.Type<string, string, unknown>;
|
|
1778
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1779
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1780
|
+
position: t.ExactC<t.TypeC<{
|
|
1781
|
+
lat: t.NumberC;
|
|
1782
|
+
lng: t.NumberC;
|
|
1783
|
+
}>>;
|
|
1784
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1785
|
+
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
1786
|
+
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2307
1787
|
origin: t.ExactC<t.TypeC<{
|
|
2308
1788
|
id: t.StringC;
|
|
2309
1789
|
url: t.StringC;
|
|
@@ -2325,60 +1805,8 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2325
1805
|
credits: t.Type<string | null, string | null, unknown>;
|
|
2326
1806
|
alt: t.Type<string | null, string | null, unknown>;
|
|
2327
1807
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2328
|
-
}>]
|
|
2329
|
-
|
|
2330
|
-
__TYPE__: t.LiteralC<"ImageContent">;
|
|
2331
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2332
|
-
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
2333
|
-
value: t.StringC;
|
|
2334
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2335
|
-
__TYPE__: t.LiteralC<"LinkContent">;
|
|
2336
|
-
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2337
|
-
__TYPE__: t.LiteralC<"ImageLink">;
|
|
2338
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2339
|
-
id: t.StringC;
|
|
2340
|
-
url: t.StringC;
|
|
2341
|
-
height: t.StringC;
|
|
2342
|
-
width: t.StringC;
|
|
2343
|
-
size: t.StringC;
|
|
2344
|
-
name: t.StringC;
|
|
2345
|
-
kind: t.StringC;
|
|
2346
|
-
}>, t.PartialC<{
|
|
2347
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2348
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2349
|
-
id: t.StringC;
|
|
2350
|
-
url: t.StringC;
|
|
2351
|
-
name: t.StringC;
|
|
2352
|
-
kind: t.StringC;
|
|
2353
|
-
size: t.StringC;
|
|
2354
|
-
}>, t.PartialC<{
|
|
2355
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2356
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2357
|
-
__TYPE__: t.LiteralC<"FileLink">;
|
|
2358
|
-
}>, t.PartialC<{
|
|
2359
|
-
size: t.StringC;
|
|
2360
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2361
|
-
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2362
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2363
|
-
id: t.Type<string, string, unknown>;
|
|
2364
|
-
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2365
|
-
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2366
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2367
|
-
url: t.StringC;
|
|
2368
|
-
}>, t.PartialC<{
|
|
2369
|
-
kind: t.LiteralC<"web">;
|
|
2370
|
-
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2371
|
-
preview: t.UnionC<[t.Type<{
|
|
2372
|
-
title?: string;
|
|
2373
|
-
}, {
|
|
2374
|
-
title?: string;
|
|
2375
|
-
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
2376
|
-
}>]>>]>]>;
|
|
2377
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2378
|
-
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2379
|
-
value: t.ArrayC<t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2380
|
-
type: t.LiteralC<"image">;
|
|
2381
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1808
|
+
}>]>>, t.PartialC<{
|
|
1809
|
+
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2382
1810
|
origin: t.ExactC<t.TypeC<{
|
|
2383
1811
|
id: t.StringC;
|
|
2384
1812
|
url: t.StringC;
|
|
@@ -2400,344 +1828,24 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2400
1828
|
credits: t.Type<string | null, string | null, unknown>;
|
|
2401
1829
|
alt: t.Type<string | null, string | null, unknown>;
|
|
2402
1830
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2403
|
-
}>]
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
size: string;
|
|
2422
|
-
} & {
|
|
2423
|
-
date?: string | null | undefined;
|
|
2424
|
-
} & {
|
|
2425
|
-
__TYPE__: "FileLink";
|
|
2426
|
-
} & {
|
|
2427
|
-
size?: string;
|
|
2428
|
-
}) | ({
|
|
2429
|
-
__TYPE__: "DocumentLink";
|
|
2430
|
-
} & {
|
|
2431
|
-
id: string;
|
|
2432
|
-
}) | ({
|
|
2433
|
-
__TYPE__: "ExternalLink";
|
|
2434
|
-
} & {
|
|
2435
|
-
url: string;
|
|
2436
|
-
} & {
|
|
2437
|
-
kind?: "web";
|
|
2438
|
-
target?: string | null | undefined;
|
|
2439
|
-
preview?: {
|
|
2440
|
-
title?: string;
|
|
2441
|
-
} | null | undefined;
|
|
2442
|
-
}), ({
|
|
2443
|
-
id: string;
|
|
2444
|
-
url: string;
|
|
2445
|
-
height: string;
|
|
2446
|
-
width: string;
|
|
2447
|
-
size: string;
|
|
2448
|
-
name: string;
|
|
2449
|
-
kind: string;
|
|
2450
|
-
} & {
|
|
2451
|
-
date?: string | null | undefined;
|
|
2452
|
-
}) | ({
|
|
2453
|
-
id: string;
|
|
2454
|
-
url: string;
|
|
2455
|
-
name: string;
|
|
2456
|
-
kind: string;
|
|
2457
|
-
size: string;
|
|
2458
|
-
} & {
|
|
2459
|
-
date?: string | null | undefined;
|
|
2460
|
-
}) | {
|
|
2461
|
-
id: string;
|
|
2462
|
-
} | ({
|
|
2463
|
-
url: string;
|
|
2464
|
-
} & {
|
|
2465
|
-
kind?: "web";
|
|
2466
|
-
target?: string | null | undefined;
|
|
2467
|
-
preview?: {
|
|
2468
|
-
title?: string;
|
|
2469
|
-
} | null | undefined;
|
|
2470
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
2471
|
-
}>]>;
|
|
2472
|
-
}>, t.PartialC<{
|
|
2473
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2474
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2475
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2476
|
-
type: t.LiteralC<"embed">;
|
|
2477
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2478
|
-
embed_url: t.StringC;
|
|
2479
|
-
type: t.StringC;
|
|
2480
|
-
}>, t.PartialC<{
|
|
2481
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2482
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2483
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2484
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2485
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2486
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2487
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2488
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2489
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2490
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2491
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2492
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2493
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2494
|
-
all: t.UnknownC;
|
|
2495
|
-
}>>]>;
|
|
2496
|
-
}>, t.PartialC<{
|
|
2497
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2498
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2499
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2500
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
2501
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
2502
|
-
text: t.StringC;
|
|
2503
|
-
}>, t.PartialC<{
|
|
2504
|
-
spans: t.Type<({
|
|
2505
|
-
data: ({
|
|
2506
|
-
__TYPE__: "ImageLink";
|
|
2507
|
-
} & {
|
|
2508
|
-
id: string;
|
|
2509
|
-
url: string;
|
|
2510
|
-
height: string;
|
|
2511
|
-
width: string;
|
|
2512
|
-
size: string;
|
|
2513
|
-
name: string;
|
|
2514
|
-
kind: string;
|
|
2515
|
-
} & {
|
|
2516
|
-
date?: string | null | undefined;
|
|
2517
|
-
}) | ({
|
|
2518
|
-
id: string;
|
|
2519
|
-
url: string;
|
|
2520
|
-
name: string;
|
|
2521
|
-
kind: string;
|
|
2522
|
-
size: string;
|
|
2523
|
-
} & {
|
|
2524
|
-
date?: string | null | undefined;
|
|
2525
|
-
} & {
|
|
2526
|
-
__TYPE__: "FileLink";
|
|
2527
|
-
} & {
|
|
2528
|
-
size?: string;
|
|
2529
|
-
}) | ({
|
|
2530
|
-
__TYPE__: "DocumentLink";
|
|
2531
|
-
} & {
|
|
2532
|
-
id: string;
|
|
2533
|
-
}) | ({
|
|
2534
|
-
__TYPE__: "ExternalLink";
|
|
2535
|
-
} & {
|
|
2536
|
-
url: string;
|
|
2537
|
-
} & {
|
|
2538
|
-
kind?: "web";
|
|
2539
|
-
target?: string | null | undefined;
|
|
2540
|
-
preview?: {
|
|
2541
|
-
title?: string;
|
|
2542
|
-
} | null | undefined;
|
|
2543
|
-
});
|
|
2544
|
-
start: number;
|
|
2545
|
-
end: number;
|
|
2546
|
-
type: "hyperlink";
|
|
2547
|
-
} | {
|
|
2548
|
-
data: string;
|
|
2549
|
-
start: number;
|
|
2550
|
-
end: number;
|
|
2551
|
-
type: "label";
|
|
2552
|
-
} | {
|
|
2553
|
-
start: number;
|
|
2554
|
-
end: number;
|
|
2555
|
-
type: "strong" | "em" | "list-item";
|
|
2556
|
-
})[], ({
|
|
2557
|
-
data: ({
|
|
2558
|
-
__TYPE__: "ImageLink";
|
|
2559
|
-
} & {
|
|
2560
|
-
id: string;
|
|
2561
|
-
url: string;
|
|
2562
|
-
height: string;
|
|
2563
|
-
width: string;
|
|
2564
|
-
size: string;
|
|
2565
|
-
name: string;
|
|
2566
|
-
kind: string;
|
|
2567
|
-
} & {
|
|
2568
|
-
date?: string | null | undefined;
|
|
2569
|
-
}) | ({
|
|
2570
|
-
id: string;
|
|
2571
|
-
url: string;
|
|
2572
|
-
name: string;
|
|
2573
|
-
kind: string;
|
|
2574
|
-
size: string;
|
|
2575
|
-
} & {
|
|
2576
|
-
date?: string | null | undefined;
|
|
2577
|
-
} & {
|
|
2578
|
-
__TYPE__: "FileLink";
|
|
2579
|
-
} & {
|
|
2580
|
-
size?: string;
|
|
2581
|
-
}) | ({
|
|
2582
|
-
__TYPE__: "DocumentLink";
|
|
2583
|
-
} & {
|
|
2584
|
-
id: string;
|
|
2585
|
-
}) | ({
|
|
2586
|
-
__TYPE__: "ExternalLink";
|
|
2587
|
-
} & {
|
|
2588
|
-
url: string;
|
|
2589
|
-
} & {
|
|
2590
|
-
kind?: "web";
|
|
2591
|
-
target?: string | null | undefined;
|
|
2592
|
-
preview?: {
|
|
2593
|
-
title?: string;
|
|
2594
|
-
} | null | undefined;
|
|
2595
|
-
});
|
|
2596
|
-
start: number;
|
|
2597
|
-
end: number;
|
|
2598
|
-
type: "hyperlink";
|
|
2599
|
-
} | {
|
|
2600
|
-
data: string;
|
|
2601
|
-
start: number;
|
|
2602
|
-
end: number;
|
|
2603
|
-
type: "label";
|
|
2604
|
-
} | {
|
|
2605
|
-
start: number;
|
|
2606
|
-
end: number;
|
|
2607
|
-
type: "strong" | "em" | "list-item";
|
|
2608
|
-
})[], unknown>;
|
|
2609
|
-
}>]>;
|
|
2610
|
-
}>, t.PartialC<{
|
|
2611
|
-
label: t.StringC;
|
|
2612
|
-
direction: t.StringC;
|
|
2613
|
-
}>]>>]>>;
|
|
2614
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2615
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2616
|
-
}>>]>>;
|
|
2617
|
-
repeat: t.ArrayC<t.ExactC<t.TypeC<{
|
|
2618
|
-
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
2619
|
-
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
2620
|
-
type: t.StringC;
|
|
2621
|
-
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
2622
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2623
|
-
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
2624
|
-
value: t.BooleanC;
|
|
2625
|
-
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2626
|
-
embed_url: t.StringC;
|
|
2627
|
-
type: t.StringC;
|
|
2628
|
-
}>, t.PartialC<{
|
|
2629
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2630
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2631
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2632
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2633
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2634
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2635
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2636
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2637
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2638
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2639
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2640
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2641
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2642
|
-
all: t.UnknownC;
|
|
2643
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2644
|
-
type: t.LiteralC<"Text">;
|
|
2645
|
-
value: t.Type<string, string, unknown>;
|
|
2646
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2647
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2648
|
-
type: t.LiteralC<"Timestamp">;
|
|
2649
|
-
value: t.Type<string, string, unknown>;
|
|
2650
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2651
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2652
|
-
type: t.LiteralC<"Select">;
|
|
2653
|
-
value: t.Type<string, string, unknown>;
|
|
2654
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2655
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2656
|
-
type: t.LiteralC<"Range">;
|
|
2657
|
-
value: t.Type<string, string, unknown>;
|
|
2658
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2659
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2660
|
-
type: t.LiteralC<"Number">;
|
|
2661
|
-
value: t.Type<string, string, unknown>;
|
|
2662
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2663
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2664
|
-
type: t.LiteralC<"Date">;
|
|
2665
|
-
value: t.Type<string, string, unknown>;
|
|
2666
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2667
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2668
|
-
type: t.LiteralC<"Color">;
|
|
2669
|
-
value: t.Type<string, string, unknown>;
|
|
2670
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2671
|
-
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2672
|
-
position: t.ExactC<t.TypeC<{
|
|
2673
|
-
lat: t.NumberC;
|
|
2674
|
-
lng: t.NumberC;
|
|
2675
|
-
}>>;
|
|
2676
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2677
|
-
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
2678
|
-
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2679
|
-
origin: t.ExactC<t.TypeC<{
|
|
2680
|
-
id: t.StringC;
|
|
2681
|
-
url: t.StringC;
|
|
2682
|
-
width: t.NumberC;
|
|
2683
|
-
height: t.NumberC;
|
|
2684
|
-
}>>;
|
|
2685
|
-
width: t.NumberC;
|
|
2686
|
-
height: t.NumberC;
|
|
2687
|
-
edit: t.TypeC<{
|
|
2688
|
-
zoom: t.NumberC;
|
|
2689
|
-
crop: t.TypeC<{
|
|
2690
|
-
x: t.NumberC;
|
|
2691
|
-
y: t.NumberC;
|
|
2692
|
-
}>;
|
|
2693
|
-
background: t.StringC;
|
|
2694
|
-
}>;
|
|
2695
|
-
}>, t.PartialC<{
|
|
2696
|
-
url: t.StringC;
|
|
2697
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
2698
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
2699
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2700
|
-
}>]>>, t.PartialC<{
|
|
2701
|
-
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2702
|
-
origin: t.ExactC<t.TypeC<{
|
|
2703
|
-
id: t.StringC;
|
|
2704
|
-
url: t.StringC;
|
|
2705
|
-
width: t.NumberC;
|
|
2706
|
-
height: t.NumberC;
|
|
2707
|
-
}>>;
|
|
2708
|
-
width: t.NumberC;
|
|
2709
|
-
height: t.NumberC;
|
|
2710
|
-
edit: t.TypeC<{
|
|
2711
|
-
zoom: t.NumberC;
|
|
2712
|
-
crop: t.TypeC<{
|
|
2713
|
-
x: t.NumberC;
|
|
2714
|
-
y: t.NumberC;
|
|
2715
|
-
}>;
|
|
2716
|
-
background: t.StringC;
|
|
2717
|
-
}>;
|
|
2718
|
-
}>, t.PartialC<{
|
|
2719
|
-
url: t.StringC;
|
|
2720
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
2721
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
2722
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2723
|
-
}>]>>>;
|
|
2724
|
-
}>]>, t.ExactC<t.TypeC<{
|
|
2725
|
-
__TYPE__: t.LiteralC<"ImageContent">;
|
|
2726
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2727
|
-
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
2728
|
-
value: t.StringC;
|
|
2729
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2730
|
-
__TYPE__: t.LiteralC<"LinkContent">;
|
|
2731
|
-
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2732
|
-
__TYPE__: t.LiteralC<"ImageLink">;
|
|
2733
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2734
|
-
id: t.StringC;
|
|
2735
|
-
url: t.StringC;
|
|
2736
|
-
height: t.StringC;
|
|
2737
|
-
width: t.StringC;
|
|
2738
|
-
size: t.StringC;
|
|
2739
|
-
name: t.StringC;
|
|
2740
|
-
kind: t.StringC;
|
|
1831
|
+
}>]>>>;
|
|
1832
|
+
}>]>, t.ExactC<t.TypeC<{
|
|
1833
|
+
__TYPE__: t.LiteralC<"ImageContent">;
|
|
1834
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
1835
|
+
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
1836
|
+
value: t.StringC;
|
|
1837
|
+
}>>, t.ExactC<t.TypeC<{
|
|
1838
|
+
__TYPE__: t.LiteralC<"LinkContent">;
|
|
1839
|
+
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1840
|
+
__TYPE__: t.LiteralC<"ImageLink">;
|
|
1841
|
+
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1842
|
+
id: t.StringC;
|
|
1843
|
+
url: t.StringC;
|
|
1844
|
+
height: t.StringC;
|
|
1845
|
+
width: t.StringC;
|
|
1846
|
+
size: t.StringC;
|
|
1847
|
+
name: t.StringC;
|
|
1848
|
+
kind: t.StringC;
|
|
2741
1849
|
}>, t.PartialC<{
|
|
2742
1850
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2743
1851
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2796,73 +1904,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2796
1904
|
alt: t.Type<string | null, string | null, unknown>;
|
|
2797
1905
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2798
1906
|
}>]>>, t.PartialC<{
|
|
2799
|
-
linkTo: t.UnionC<[t.Type<
|
|
2800
|
-
__TYPE__: "ImageLink";
|
|
2801
|
-
} & {
|
|
2802
|
-
id: string;
|
|
2803
|
-
url: string;
|
|
2804
|
-
height: string;
|
|
2805
|
-
width: string;
|
|
2806
|
-
size: string;
|
|
2807
|
-
name: string;
|
|
2808
|
-
kind: string;
|
|
2809
|
-
} & {
|
|
2810
|
-
date?: string | null | undefined;
|
|
2811
|
-
}) | ({
|
|
2812
|
-
id: string;
|
|
2813
|
-
url: string;
|
|
2814
|
-
name: string;
|
|
2815
|
-
kind: string;
|
|
2816
|
-
size: string;
|
|
2817
|
-
} & {
|
|
2818
|
-
date?: string | null | undefined;
|
|
2819
|
-
} & {
|
|
2820
|
-
__TYPE__: "FileLink";
|
|
2821
|
-
} & {
|
|
2822
|
-
size?: string;
|
|
2823
|
-
}) | ({
|
|
2824
|
-
__TYPE__: "DocumentLink";
|
|
2825
|
-
} & {
|
|
2826
|
-
id: string;
|
|
2827
|
-
}) | ({
|
|
2828
|
-
__TYPE__: "ExternalLink";
|
|
2829
|
-
} & {
|
|
2830
|
-
url: string;
|
|
2831
|
-
} & {
|
|
2832
|
-
kind?: "web";
|
|
2833
|
-
target?: string | null | undefined;
|
|
2834
|
-
preview?: {
|
|
2835
|
-
title?: string;
|
|
2836
|
-
} | null | undefined;
|
|
2837
|
-
}), ({
|
|
2838
|
-
id: string;
|
|
2839
|
-
url: string;
|
|
2840
|
-
height: string;
|
|
2841
|
-
width: string;
|
|
2842
|
-
size: string;
|
|
2843
|
-
name: string;
|
|
2844
|
-
kind: string;
|
|
2845
|
-
} & {
|
|
2846
|
-
date?: string | null | undefined;
|
|
2847
|
-
}) | ({
|
|
2848
|
-
id: string;
|
|
2849
|
-
url: string;
|
|
2850
|
-
name: string;
|
|
2851
|
-
kind: string;
|
|
2852
|
-
size: string;
|
|
2853
|
-
} & {
|
|
2854
|
-
date?: string | null | undefined;
|
|
2855
|
-
}) | {
|
|
2856
|
-
id: string;
|
|
2857
|
-
} | ({
|
|
2858
|
-
url: string;
|
|
2859
|
-
} & {
|
|
2860
|
-
kind?: "web";
|
|
2861
|
-
target?: string | null | undefined;
|
|
2862
|
-
preview?: {
|
|
2863
|
-
title?: string;
|
|
2864
|
-
} | null | undefined;
|
|
2865
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
1907
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
2866
1908
|
}>]>;
|
|
2867
1909
|
}>, t.PartialC<{
|
|
2868
1910
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -3193,73 +2235,7 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3193
2235
|
alt: t.Type<string | null, string | null, unknown>;
|
|
3194
2236
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3195
2237
|
}>]>>, t.PartialC<{
|
|
3196
|
-
linkTo: t.UnionC<[t.Type<
|
|
3197
|
-
__TYPE__: "ImageLink";
|
|
3198
|
-
} & {
|
|
3199
|
-
id: string;
|
|
3200
|
-
url: string;
|
|
3201
|
-
height: string;
|
|
3202
|
-
width: string;
|
|
3203
|
-
size: string;
|
|
3204
|
-
name: string;
|
|
3205
|
-
kind: string;
|
|
3206
|
-
} & {
|
|
3207
|
-
date?: string | null | undefined;
|
|
3208
|
-
}) | ({
|
|
3209
|
-
id: string;
|
|
3210
|
-
url: string;
|
|
3211
|
-
name: string;
|
|
3212
|
-
kind: string;
|
|
3213
|
-
size: string;
|
|
3214
|
-
} & {
|
|
3215
|
-
date?: string | null | undefined;
|
|
3216
|
-
} & {
|
|
3217
|
-
__TYPE__: "FileLink";
|
|
3218
|
-
} & {
|
|
3219
|
-
size?: string;
|
|
3220
|
-
}) | ({
|
|
3221
|
-
__TYPE__: "DocumentLink";
|
|
3222
|
-
} & {
|
|
3223
|
-
id: string;
|
|
3224
|
-
}) | ({
|
|
3225
|
-
__TYPE__: "ExternalLink";
|
|
3226
|
-
} & {
|
|
3227
|
-
url: string;
|
|
3228
|
-
} & {
|
|
3229
|
-
kind?: "web";
|
|
3230
|
-
target?: string | null | undefined;
|
|
3231
|
-
preview?: {
|
|
3232
|
-
title?: string;
|
|
3233
|
-
} | null | undefined;
|
|
3234
|
-
}), ({
|
|
3235
|
-
id: string;
|
|
3236
|
-
url: string;
|
|
3237
|
-
height: string;
|
|
3238
|
-
width: string;
|
|
3239
|
-
size: string;
|
|
3240
|
-
name: string;
|
|
3241
|
-
kind: string;
|
|
3242
|
-
} & {
|
|
3243
|
-
date?: string | null | undefined;
|
|
3244
|
-
}) | ({
|
|
3245
|
-
id: string;
|
|
3246
|
-
url: string;
|
|
3247
|
-
name: string;
|
|
3248
|
-
kind: string;
|
|
3249
|
-
size: string;
|
|
3250
|
-
} & {
|
|
3251
|
-
date?: string | null | undefined;
|
|
3252
|
-
}) | {
|
|
3253
|
-
id: string;
|
|
3254
|
-
} | ({
|
|
3255
|
-
url: string;
|
|
3256
|
-
} & {
|
|
3257
|
-
kind?: "web";
|
|
3258
|
-
target?: string | null | undefined;
|
|
3259
|
-
preview?: {
|
|
3260
|
-
title?: string;
|
|
3261
|
-
} | null | undefined;
|
|
3262
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
2238
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
3263
2239
|
}>]>;
|
|
3264
2240
|
}>, t.PartialC<{
|
|
3265
2241
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -3405,70 +2381,92 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3405
2381
|
}>]>>]>>;
|
|
3406
2382
|
}>>, t.ExactC<t.TypeC<{
|
|
3407
2383
|
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3408
|
-
}>>]>, t.
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
2384
|
+
}>>]>, t.Type<import("../..").GroupContent, import("../..").GroupContent, unknown>]>>;
|
|
2385
|
+
items: t.ArrayC<t.ExactC<t.TypeC<{
|
|
2386
|
+
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
2387
|
+
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
2388
|
+
type: t.StringC;
|
|
2389
|
+
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
2390
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2391
|
+
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
2392
|
+
value: t.BooleanC;
|
|
2393
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2394
|
+
embed_url: t.StringC;
|
|
2395
|
+
type: t.StringC;
|
|
2396
|
+
}>, t.PartialC<{
|
|
2397
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2398
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2399
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2400
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2401
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2402
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2403
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2404
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2405
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2406
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2407
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2408
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2409
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2410
|
+
all: t.UnknownC;
|
|
2411
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
2412
|
+
type: t.LiteralC<"Text">;
|
|
2413
|
+
value: t.Type<string, string, unknown>;
|
|
2414
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2415
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2416
|
+
type: t.LiteralC<"Timestamp">;
|
|
2417
|
+
value: t.Type<string, string, unknown>;
|
|
2418
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2419
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2420
|
+
type: t.LiteralC<"Select">;
|
|
2421
|
+
value: t.Type<string, string, unknown>;
|
|
2422
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2423
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2424
|
+
type: t.LiteralC<"Range">;
|
|
2425
|
+
value: t.Type<string, string, unknown>;
|
|
2426
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2427
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2428
|
+
type: t.LiteralC<"Number">;
|
|
2429
|
+
value: t.Type<string, string, unknown>;
|
|
2430
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2431
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2432
|
+
type: t.LiteralC<"Date">;
|
|
2433
|
+
value: t.Type<string, string, unknown>;
|
|
2434
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2435
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2436
|
+
type: t.LiteralC<"Color">;
|
|
2437
|
+
value: t.Type<string, string, unknown>;
|
|
2438
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2439
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2440
|
+
position: t.ExactC<t.TypeC<{
|
|
2441
|
+
lat: t.NumberC;
|
|
2442
|
+
lng: t.NumberC;
|
|
2443
|
+
}>>;
|
|
2444
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2445
|
+
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
2446
|
+
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2447
|
+
origin: t.ExactC<t.TypeC<{
|
|
2448
|
+
id: t.StringC;
|
|
2449
|
+
url: t.StringC;
|
|
2450
|
+
width: t.NumberC;
|
|
2451
|
+
height: t.NumberC;
|
|
2452
|
+
}>>;
|
|
2453
|
+
width: t.NumberC;
|
|
2454
|
+
height: t.NumberC;
|
|
2455
|
+
edit: t.TypeC<{
|
|
2456
|
+
zoom: t.NumberC;
|
|
2457
|
+
crop: t.TypeC<{
|
|
2458
|
+
x: t.NumberC;
|
|
2459
|
+
y: t.NumberC;
|
|
2460
|
+
}>;
|
|
2461
|
+
background: t.StringC;
|
|
2462
|
+
}>;
|
|
2463
|
+
}>, t.PartialC<{
|
|
2464
|
+
url: t.StringC;
|
|
2465
|
+
credits: t.Type<string | null, string | null, unknown>;
|
|
2466
|
+
alt: t.Type<string | null, string | null, unknown>;
|
|
2467
|
+
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2468
|
+
}>]>>, t.PartialC<{
|
|
2469
|
+
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3472
2470
|
origin: t.ExactC<t.TypeC<{
|
|
3473
2471
|
id: t.StringC;
|
|
3474
2472
|
url: t.StringC;
|
|
@@ -3490,106 +2488,118 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3490
2488
|
credits: t.Type<string | null, string | null, unknown>;
|
|
3491
2489
|
alt: t.Type<string | null, string | null, unknown>;
|
|
3492
2490
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3493
|
-
}>]
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
}
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
id: t.StringC;
|
|
3528
|
-
url: t.StringC;
|
|
3529
|
-
height: t.StringC;
|
|
3530
|
-
width: t.StringC;
|
|
3531
|
-
size: t.StringC;
|
|
3532
|
-
name: t.StringC;
|
|
3533
|
-
kind: t.StringC;
|
|
3534
|
-
}>, t.PartialC<{
|
|
3535
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3536
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3537
|
-
id: t.StringC;
|
|
3538
|
-
url: t.StringC;
|
|
3539
|
-
name: t.StringC;
|
|
3540
|
-
kind: t.StringC;
|
|
3541
|
-
size: t.StringC;
|
|
3542
|
-
}>, t.PartialC<{
|
|
3543
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3544
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3545
|
-
__TYPE__: t.LiteralC<"FileLink">;
|
|
3546
|
-
}>, t.PartialC<{
|
|
3547
|
-
size: t.StringC;
|
|
3548
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3549
|
-
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
3550
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3551
|
-
id: t.Type<string, string, unknown>;
|
|
3552
|
-
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3553
|
-
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
3554
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3555
|
-
url: t.StringC;
|
|
3556
|
-
}>, t.PartialC<{
|
|
3557
|
-
kind: t.LiteralC<"web">;
|
|
3558
|
-
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3559
|
-
preview: t.UnionC<[t.Type<{
|
|
3560
|
-
title?: string;
|
|
3561
|
-
}, {
|
|
3562
|
-
title?: string;
|
|
3563
|
-
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
3564
|
-
}>]>>]>]>;
|
|
2491
|
+
}>]>>>;
|
|
2492
|
+
}>]>, t.ExactC<t.TypeC<{
|
|
2493
|
+
__TYPE__: t.LiteralC<"ImageContent">;
|
|
2494
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
2495
|
+
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
2496
|
+
value: t.StringC;
|
|
2497
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2498
|
+
__TYPE__: t.LiteralC<"LinkContent">;
|
|
2499
|
+
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2500
|
+
__TYPE__: t.LiteralC<"ImageLink">;
|
|
2501
|
+
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2502
|
+
id: t.StringC;
|
|
2503
|
+
url: t.StringC;
|
|
2504
|
+
height: t.StringC;
|
|
2505
|
+
width: t.StringC;
|
|
2506
|
+
size: t.StringC;
|
|
2507
|
+
name: t.StringC;
|
|
2508
|
+
kind: t.StringC;
|
|
2509
|
+
}>, t.PartialC<{
|
|
2510
|
+
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2511
|
+
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2512
|
+
id: t.StringC;
|
|
2513
|
+
url: t.StringC;
|
|
2514
|
+
name: t.StringC;
|
|
2515
|
+
kind: t.StringC;
|
|
2516
|
+
size: t.StringC;
|
|
2517
|
+
}>, t.PartialC<{
|
|
2518
|
+
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2519
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2520
|
+
__TYPE__: t.LiteralC<"FileLink">;
|
|
2521
|
+
}>, t.PartialC<{
|
|
2522
|
+
size: t.StringC;
|
|
2523
|
+
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2524
|
+
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
3565
2525
|
}>>, t.ExactC<t.TypeC<{
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
2526
|
+
id: t.Type<string, string, unknown>;
|
|
2527
|
+
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2528
|
+
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2529
|
+
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2530
|
+
url: t.StringC;
|
|
2531
|
+
}>, t.PartialC<{
|
|
2532
|
+
kind: t.LiteralC<"web">;
|
|
2533
|
+
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2534
|
+
preview: t.UnionC<[t.Type<{
|
|
2535
|
+
title?: string;
|
|
2536
|
+
}, {
|
|
2537
|
+
title?: string;
|
|
2538
|
+
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
2539
|
+
}>]>>]>]>;
|
|
2540
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2541
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2542
|
+
value: t.ArrayC<t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2543
|
+
type: t.LiteralC<"image">;
|
|
2544
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2545
|
+
origin: t.ExactC<t.TypeC<{
|
|
2546
|
+
id: t.StringC;
|
|
2547
|
+
url: t.StringC;
|
|
3576
2548
|
width: t.NumberC;
|
|
3577
2549
|
height: t.NumberC;
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
2550
|
+
}>>;
|
|
2551
|
+
width: t.NumberC;
|
|
2552
|
+
height: t.NumberC;
|
|
2553
|
+
edit: t.TypeC<{
|
|
2554
|
+
zoom: t.NumberC;
|
|
2555
|
+
crop: t.TypeC<{
|
|
2556
|
+
x: t.NumberC;
|
|
2557
|
+
y: t.NumberC;
|
|
3585
2558
|
}>;
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
2559
|
+
background: t.StringC;
|
|
2560
|
+
}>;
|
|
2561
|
+
}>, t.PartialC<{
|
|
2562
|
+
url: t.StringC;
|
|
2563
|
+
credits: t.Type<string | null, string | null, unknown>;
|
|
2564
|
+
alt: t.Type<string | null, string | null, unknown>;
|
|
2565
|
+
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2566
|
+
}>]>>, t.PartialC<{
|
|
2567
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
2568
|
+
}>]>;
|
|
2569
|
+
}>, t.PartialC<{
|
|
2570
|
+
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2571
|
+
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2572
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2573
|
+
type: t.LiteralC<"embed">;
|
|
2574
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2575
|
+
embed_url: t.StringC;
|
|
2576
|
+
type: t.StringC;
|
|
2577
|
+
}>, t.PartialC<{
|
|
2578
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2579
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2580
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2581
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2582
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2583
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2584
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2585
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2586
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2587
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2588
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2589
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2590
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2591
|
+
all: t.UnknownC;
|
|
2592
|
+
}>>]>;
|
|
2593
|
+
}>, t.PartialC<{
|
|
2594
|
+
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2595
|
+
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2596
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2597
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
2598
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
2599
|
+
text: t.StringC;
|
|
2600
|
+
}>, t.PartialC<{
|
|
2601
|
+
spans: t.Type<({
|
|
2602
|
+
data: ({
|
|
3593
2603
|
__TYPE__: "ImageLink";
|
|
3594
2604
|
} & {
|
|
3595
2605
|
id: string;
|
|
@@ -3627,7 +2637,23 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3627
2637
|
preview?: {
|
|
3628
2638
|
title?: string;
|
|
3629
2639
|
} | null | undefined;
|
|
3630
|
-
})
|
|
2640
|
+
});
|
|
2641
|
+
start: number;
|
|
2642
|
+
end: number;
|
|
2643
|
+
type: "hyperlink";
|
|
2644
|
+
} | {
|
|
2645
|
+
data: string;
|
|
2646
|
+
start: number;
|
|
2647
|
+
end: number;
|
|
2648
|
+
type: "label";
|
|
2649
|
+
} | {
|
|
2650
|
+
start: number;
|
|
2651
|
+
end: number;
|
|
2652
|
+
type: "strong" | "em" | "list-item";
|
|
2653
|
+
})[], ({
|
|
2654
|
+
data: ({
|
|
2655
|
+
__TYPE__: "ImageLink";
|
|
2656
|
+
} & {
|
|
3631
2657
|
id: string;
|
|
3632
2658
|
url: string;
|
|
3633
2659
|
height: string;
|
|
@@ -3645,9 +2671,17 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3645
2671
|
size: string;
|
|
3646
2672
|
} & {
|
|
3647
2673
|
date?: string | null | undefined;
|
|
3648
|
-
}
|
|
2674
|
+
} & {
|
|
2675
|
+
__TYPE__: "FileLink";
|
|
2676
|
+
} & {
|
|
2677
|
+
size?: string;
|
|
2678
|
+
}) | ({
|
|
2679
|
+
__TYPE__: "DocumentLink";
|
|
2680
|
+
} & {
|
|
3649
2681
|
id: string;
|
|
3650
|
-
} | ({
|
|
2682
|
+
}) | ({
|
|
2683
|
+
__TYPE__: "ExternalLink";
|
|
2684
|
+
} & {
|
|
3651
2685
|
url: string;
|
|
3652
2686
|
} & {
|
|
3653
2687
|
kind?: "web";
|
|
@@ -3655,217 +2689,187 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3655
2689
|
preview?: {
|
|
3656
2690
|
title?: string;
|
|
3657
2691
|
} | null | undefined;
|
|
3658
|
-
})
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3678
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3679
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3680
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
3681
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
3682
|
-
all: t.UnknownC;
|
|
3683
|
-
}>>]>;
|
|
3684
|
-
}>, t.PartialC<{
|
|
3685
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3686
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3687
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3688
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
3689
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
3690
|
-
text: t.StringC;
|
|
3691
|
-
}>, t.PartialC<{
|
|
3692
|
-
spans: t.Type<({
|
|
3693
|
-
data: ({
|
|
3694
|
-
__TYPE__: "ImageLink";
|
|
3695
|
-
} & {
|
|
3696
|
-
id: string;
|
|
3697
|
-
url: string;
|
|
3698
|
-
height: string;
|
|
3699
|
-
width: string;
|
|
3700
|
-
size: string;
|
|
3701
|
-
name: string;
|
|
3702
|
-
kind: string;
|
|
3703
|
-
} & {
|
|
3704
|
-
date?: string | null | undefined;
|
|
3705
|
-
}) | ({
|
|
3706
|
-
id: string;
|
|
3707
|
-
url: string;
|
|
3708
|
-
name: string;
|
|
3709
|
-
kind: string;
|
|
3710
|
-
size: string;
|
|
3711
|
-
} & {
|
|
3712
|
-
date?: string | null | undefined;
|
|
3713
|
-
} & {
|
|
3714
|
-
__TYPE__: "FileLink";
|
|
3715
|
-
} & {
|
|
3716
|
-
size?: string;
|
|
3717
|
-
}) | ({
|
|
3718
|
-
__TYPE__: "DocumentLink";
|
|
3719
|
-
} & {
|
|
3720
|
-
id: string;
|
|
3721
|
-
}) | ({
|
|
3722
|
-
__TYPE__: "ExternalLink";
|
|
3723
|
-
} & {
|
|
3724
|
-
url: string;
|
|
3725
|
-
} & {
|
|
3726
|
-
kind?: "web";
|
|
3727
|
-
target?: string | null | undefined;
|
|
3728
|
-
preview?: {
|
|
3729
|
-
title?: string;
|
|
3730
|
-
} | null | undefined;
|
|
3731
|
-
});
|
|
3732
|
-
start: number;
|
|
3733
|
-
end: number;
|
|
3734
|
-
type: "hyperlink";
|
|
3735
|
-
} | {
|
|
3736
|
-
data: string;
|
|
3737
|
-
start: number;
|
|
3738
|
-
end: number;
|
|
3739
|
-
type: "label";
|
|
3740
|
-
} | {
|
|
3741
|
-
start: number;
|
|
3742
|
-
end: number;
|
|
3743
|
-
type: "strong" | "em" | "list-item";
|
|
3744
|
-
})[], ({
|
|
3745
|
-
data: ({
|
|
3746
|
-
__TYPE__: "ImageLink";
|
|
3747
|
-
} & {
|
|
3748
|
-
id: string;
|
|
3749
|
-
url: string;
|
|
3750
|
-
height: string;
|
|
3751
|
-
width: string;
|
|
3752
|
-
size: string;
|
|
3753
|
-
name: string;
|
|
3754
|
-
kind: string;
|
|
3755
|
-
} & {
|
|
3756
|
-
date?: string | null | undefined;
|
|
3757
|
-
}) | ({
|
|
3758
|
-
id: string;
|
|
3759
|
-
url: string;
|
|
3760
|
-
name: string;
|
|
3761
|
-
kind: string;
|
|
3762
|
-
size: string;
|
|
3763
|
-
} & {
|
|
3764
|
-
date?: string | null | undefined;
|
|
3765
|
-
} & {
|
|
3766
|
-
__TYPE__: "FileLink";
|
|
3767
|
-
} & {
|
|
3768
|
-
size?: string;
|
|
3769
|
-
}) | ({
|
|
3770
|
-
__TYPE__: "DocumentLink";
|
|
3771
|
-
} & {
|
|
3772
|
-
id: string;
|
|
3773
|
-
}) | ({
|
|
3774
|
-
__TYPE__: "ExternalLink";
|
|
3775
|
-
} & {
|
|
3776
|
-
url: string;
|
|
3777
|
-
} & {
|
|
3778
|
-
kind?: "web";
|
|
3779
|
-
target?: string | null | undefined;
|
|
3780
|
-
preview?: {
|
|
3781
|
-
title?: string;
|
|
3782
|
-
} | null | undefined;
|
|
3783
|
-
});
|
|
3784
|
-
start: number;
|
|
3785
|
-
end: number;
|
|
3786
|
-
type: "hyperlink";
|
|
3787
|
-
} | {
|
|
3788
|
-
data: string;
|
|
3789
|
-
start: number;
|
|
3790
|
-
end: number;
|
|
3791
|
-
type: "label";
|
|
3792
|
-
} | {
|
|
3793
|
-
start: number;
|
|
3794
|
-
end: number;
|
|
3795
|
-
type: "strong" | "em" | "list-item";
|
|
3796
|
-
})[], unknown>;
|
|
3797
|
-
}>]>;
|
|
3798
|
-
}>, t.PartialC<{
|
|
3799
|
-
label: t.StringC;
|
|
3800
|
-
direction: t.StringC;
|
|
3801
|
-
}>]>>]>>;
|
|
3802
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3803
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3804
|
-
}>>]>]>>;
|
|
3805
|
-
}>>>;
|
|
3806
|
-
}>>]>>;
|
|
3807
|
-
items: t.ArrayC<t.ExactC<t.TypeC<{
|
|
3808
|
-
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
3809
|
-
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
3810
|
-
type: t.StringC;
|
|
3811
|
-
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
3812
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3813
|
-
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
3814
|
-
value: t.BooleanC;
|
|
3815
|
-
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3816
|
-
embed_url: t.StringC;
|
|
3817
|
-
type: t.StringC;
|
|
3818
|
-
}>, t.PartialC<{
|
|
3819
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3820
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3821
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3822
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3823
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3824
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3825
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
3826
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3827
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3828
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
3829
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3830
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
3831
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
3832
|
-
all: t.UnknownC;
|
|
3833
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
3834
|
-
type: t.LiteralC<"Text">;
|
|
3835
|
-
value: t.Type<string, string, unknown>;
|
|
3836
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
3837
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3838
|
-
type: t.LiteralC<"Timestamp">;
|
|
3839
|
-
value: t.Type<string, string, unknown>;
|
|
3840
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
3841
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3842
|
-
type: t.LiteralC<"Select">;
|
|
3843
|
-
value: t.Type<string, string, unknown>;
|
|
3844
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
3845
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3846
|
-
type: t.LiteralC<"Range">;
|
|
3847
|
-
value: t.Type<string, string, unknown>;
|
|
3848
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
3849
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3850
|
-
type: t.LiteralC<"Number">;
|
|
3851
|
-
value: t.Type<string, string, unknown>;
|
|
3852
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
3853
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3854
|
-
type: t.LiteralC<"Date">;
|
|
3855
|
-
value: t.Type<string, string, unknown>;
|
|
3856
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
3857
|
-
}>>, t.ExactC<t.TypeC<{
|
|
3858
|
-
type: t.LiteralC<"Color">;
|
|
3859
|
-
value: t.Type<string, string, unknown>;
|
|
3860
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
3861
|
-
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3862
|
-
position: t.ExactC<t.TypeC<{
|
|
3863
|
-
lat: t.NumberC;
|
|
3864
|
-
lng: t.NumberC;
|
|
3865
|
-
}>>;
|
|
2692
|
+
});
|
|
2693
|
+
start: number;
|
|
2694
|
+
end: number;
|
|
2695
|
+
type: "hyperlink";
|
|
2696
|
+
} | {
|
|
2697
|
+
data: string;
|
|
2698
|
+
start: number;
|
|
2699
|
+
end: number;
|
|
2700
|
+
type: "label";
|
|
2701
|
+
} | {
|
|
2702
|
+
start: number;
|
|
2703
|
+
end: number;
|
|
2704
|
+
type: "strong" | "em" | "list-item";
|
|
2705
|
+
})[], unknown>;
|
|
2706
|
+
}>]>;
|
|
2707
|
+
}>, t.PartialC<{
|
|
2708
|
+
label: t.StringC;
|
|
2709
|
+
direction: t.StringC;
|
|
2710
|
+
}>]>>]>>;
|
|
3866
2711
|
}>>, t.ExactC<t.TypeC<{
|
|
3867
|
-
__TYPE__: t.LiteralC<"
|
|
3868
|
-
}>>]
|
|
2712
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2713
|
+
}>>]>]>>;
|
|
2714
|
+
}>>>;
|
|
2715
|
+
}>>, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
2716
|
+
type: t.StringC;
|
|
2717
|
+
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
2718
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2719
|
+
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
2720
|
+
value: t.BooleanC;
|
|
2721
|
+
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2722
|
+
embed_url: t.StringC;
|
|
2723
|
+
type: t.StringC;
|
|
2724
|
+
}>, t.PartialC<{
|
|
2725
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2726
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2727
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2728
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2729
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2730
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2731
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2732
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2733
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2734
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2735
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2736
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2737
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2738
|
+
all: t.UnknownC;
|
|
2739
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
2740
|
+
type: t.LiteralC<"Text">;
|
|
2741
|
+
value: t.Type<string, string, unknown>;
|
|
2742
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2743
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2744
|
+
type: t.LiteralC<"Timestamp">;
|
|
2745
|
+
value: t.Type<string, string, unknown>;
|
|
2746
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2747
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2748
|
+
type: t.LiteralC<"Select">;
|
|
2749
|
+
value: t.Type<string, string, unknown>;
|
|
2750
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2751
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2752
|
+
type: t.LiteralC<"Range">;
|
|
2753
|
+
value: t.Type<string, string, unknown>;
|
|
2754
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2755
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2756
|
+
type: t.LiteralC<"Number">;
|
|
2757
|
+
value: t.Type<string, string, unknown>;
|
|
2758
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2759
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2760
|
+
type: t.LiteralC<"Date">;
|
|
2761
|
+
value: t.Type<string, string, unknown>;
|
|
2762
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2763
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2764
|
+
type: t.LiteralC<"Color">;
|
|
2765
|
+
value: t.Type<string, string, unknown>;
|
|
2766
|
+
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2767
|
+
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2768
|
+
position: t.ExactC<t.TypeC<{
|
|
2769
|
+
lat: t.NumberC;
|
|
2770
|
+
lng: t.NumberC;
|
|
2771
|
+
}>>;
|
|
2772
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2773
|
+
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
2774
|
+
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2775
|
+
origin: t.ExactC<t.TypeC<{
|
|
2776
|
+
id: t.StringC;
|
|
2777
|
+
url: t.StringC;
|
|
2778
|
+
width: t.NumberC;
|
|
2779
|
+
height: t.NumberC;
|
|
2780
|
+
}>>;
|
|
2781
|
+
width: t.NumberC;
|
|
2782
|
+
height: t.NumberC;
|
|
2783
|
+
edit: t.TypeC<{
|
|
2784
|
+
zoom: t.NumberC;
|
|
2785
|
+
crop: t.TypeC<{
|
|
2786
|
+
x: t.NumberC;
|
|
2787
|
+
y: t.NumberC;
|
|
2788
|
+
}>;
|
|
2789
|
+
background: t.StringC;
|
|
2790
|
+
}>;
|
|
2791
|
+
}>, t.PartialC<{
|
|
2792
|
+
url: t.StringC;
|
|
2793
|
+
credits: t.Type<string | null, string | null, unknown>;
|
|
2794
|
+
alt: t.Type<string | null, string | null, unknown>;
|
|
2795
|
+
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2796
|
+
}>]>>, t.PartialC<{
|
|
2797
|
+
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2798
|
+
origin: t.ExactC<t.TypeC<{
|
|
2799
|
+
id: t.StringC;
|
|
2800
|
+
url: t.StringC;
|
|
2801
|
+
width: t.NumberC;
|
|
2802
|
+
height: t.NumberC;
|
|
2803
|
+
}>>;
|
|
2804
|
+
width: t.NumberC;
|
|
2805
|
+
height: t.NumberC;
|
|
2806
|
+
edit: t.TypeC<{
|
|
2807
|
+
zoom: t.NumberC;
|
|
2808
|
+
crop: t.TypeC<{
|
|
2809
|
+
x: t.NumberC;
|
|
2810
|
+
y: t.NumberC;
|
|
2811
|
+
}>;
|
|
2812
|
+
background: t.StringC;
|
|
2813
|
+
}>;
|
|
2814
|
+
}>, t.PartialC<{
|
|
2815
|
+
url: t.StringC;
|
|
2816
|
+
credits: t.Type<string | null, string | null, unknown>;
|
|
2817
|
+
alt: t.Type<string | null, string | null, unknown>;
|
|
2818
|
+
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2819
|
+
}>]>>>;
|
|
2820
|
+
}>]>, t.ExactC<t.TypeC<{
|
|
2821
|
+
__TYPE__: t.LiteralC<"ImageContent">;
|
|
2822
|
+
}>>]>, t.ExactC<t.TypeC<{
|
|
2823
|
+
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
2824
|
+
value: t.StringC;
|
|
2825
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2826
|
+
__TYPE__: t.LiteralC<"LinkContent">;
|
|
2827
|
+
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2828
|
+
__TYPE__: t.LiteralC<"ImageLink">;
|
|
2829
|
+
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2830
|
+
id: t.StringC;
|
|
2831
|
+
url: t.StringC;
|
|
2832
|
+
height: t.StringC;
|
|
2833
|
+
width: t.StringC;
|
|
2834
|
+
size: t.StringC;
|
|
2835
|
+
name: t.StringC;
|
|
2836
|
+
kind: t.StringC;
|
|
2837
|
+
}>, t.PartialC<{
|
|
2838
|
+
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2839
|
+
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2840
|
+
id: t.StringC;
|
|
2841
|
+
url: t.StringC;
|
|
2842
|
+
name: t.StringC;
|
|
2843
|
+
kind: t.StringC;
|
|
2844
|
+
size: t.StringC;
|
|
2845
|
+
}>, t.PartialC<{
|
|
2846
|
+
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2847
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2848
|
+
__TYPE__: t.LiteralC<"FileLink">;
|
|
2849
|
+
}>, t.PartialC<{
|
|
2850
|
+
size: t.StringC;
|
|
2851
|
+
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2852
|
+
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2853
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2854
|
+
id: t.Type<string, string, unknown>;
|
|
2855
|
+
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2856
|
+
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2857
|
+
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2858
|
+
url: t.StringC;
|
|
2859
|
+
}>, t.PartialC<{
|
|
2860
|
+
kind: t.LiteralC<"web">;
|
|
2861
|
+
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2862
|
+
preview: t.UnionC<[t.Type<{
|
|
2863
|
+
title?: string;
|
|
2864
|
+
}, {
|
|
2865
|
+
title?: string;
|
|
2866
|
+
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
2867
|
+
}>]>>]>]>;
|
|
2868
|
+
}>>, t.ExactC<t.TypeC<{
|
|
2869
|
+
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2870
|
+
value: t.ArrayC<t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2871
|
+
type: t.LiteralC<"image">;
|
|
2872
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3869
2873
|
origin: t.ExactC<t.TypeC<{
|
|
3870
2874
|
id: t.StringC;
|
|
3871
2875
|
url: t.StringC;
|
|
@@ -3888,1109 +2892,153 @@ export declare const SliceContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3888
2892
|
alt: t.Type<string | null, string | null, unknown>;
|
|
3889
2893
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3890
2894
|
}>]>>, t.PartialC<{
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
}>>]
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
}
|
|
3959
|
-
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
}
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
}
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
id: string;
|
|
4039
|
-
url: string;
|
|
4040
|
-
name: string;
|
|
4041
|
-
kind: string;
|
|
4042
|
-
size: string;
|
|
4043
|
-
} & {
|
|
4044
|
-
date?: string | null | undefined;
|
|
4045
|
-
}) | {
|
|
4046
|
-
id: string;
|
|
4047
|
-
} | ({
|
|
4048
|
-
url: string;
|
|
4049
|
-
} & {
|
|
4050
|
-
kind?: "web";
|
|
4051
|
-
target?: string | null | undefined;
|
|
4052
|
-
preview?: {
|
|
4053
|
-
title?: string;
|
|
4054
|
-
} | null | undefined;
|
|
4055
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
4056
|
-
}>]>;
|
|
4057
|
-
}>, t.PartialC<{
|
|
4058
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4059
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4060
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4061
|
-
type: t.LiteralC<"embed">;
|
|
4062
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4063
|
-
embed_url: t.StringC;
|
|
4064
|
-
type: t.StringC;
|
|
4065
|
-
}>, t.PartialC<{
|
|
4066
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4067
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4068
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4069
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4070
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4071
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4072
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4073
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4074
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4075
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4076
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4077
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
4078
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4079
|
-
all: t.UnknownC;
|
|
4080
|
-
}>>]>;
|
|
4081
|
-
}>, t.PartialC<{
|
|
4082
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4083
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4084
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4085
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
4086
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
4087
|
-
text: t.StringC;
|
|
4088
|
-
}>, t.PartialC<{
|
|
4089
|
-
spans: t.Type<({
|
|
4090
|
-
data: ({
|
|
4091
|
-
__TYPE__: "ImageLink";
|
|
4092
|
-
} & {
|
|
4093
|
-
id: string;
|
|
4094
|
-
url: string;
|
|
4095
|
-
height: string;
|
|
4096
|
-
width: string;
|
|
4097
|
-
size: string;
|
|
4098
|
-
name: string;
|
|
4099
|
-
kind: string;
|
|
4100
|
-
} & {
|
|
4101
|
-
date?: string | null | undefined;
|
|
4102
|
-
}) | ({
|
|
4103
|
-
id: string;
|
|
4104
|
-
url: string;
|
|
4105
|
-
name: string;
|
|
4106
|
-
kind: string;
|
|
4107
|
-
size: string;
|
|
4108
|
-
} & {
|
|
4109
|
-
date?: string | null | undefined;
|
|
4110
|
-
} & {
|
|
4111
|
-
__TYPE__: "FileLink";
|
|
4112
|
-
} & {
|
|
4113
|
-
size?: string;
|
|
4114
|
-
}) | ({
|
|
4115
|
-
__TYPE__: "DocumentLink";
|
|
4116
|
-
} & {
|
|
4117
|
-
id: string;
|
|
4118
|
-
}) | ({
|
|
4119
|
-
__TYPE__: "ExternalLink";
|
|
4120
|
-
} & {
|
|
4121
|
-
url: string;
|
|
4122
|
-
} & {
|
|
4123
|
-
kind?: "web";
|
|
4124
|
-
target?: string | null | undefined;
|
|
4125
|
-
preview?: {
|
|
4126
|
-
title?: string;
|
|
4127
|
-
} | null | undefined;
|
|
4128
|
-
});
|
|
4129
|
-
start: number;
|
|
4130
|
-
end: number;
|
|
4131
|
-
type: "hyperlink";
|
|
4132
|
-
} | {
|
|
4133
|
-
data: string;
|
|
4134
|
-
start: number;
|
|
4135
|
-
end: number;
|
|
4136
|
-
type: "label";
|
|
4137
|
-
} | {
|
|
4138
|
-
start: number;
|
|
4139
|
-
end: number;
|
|
4140
|
-
type: "strong" | "em" | "list-item";
|
|
4141
|
-
})[], ({
|
|
4142
|
-
data: ({
|
|
4143
|
-
__TYPE__: "ImageLink";
|
|
4144
|
-
} & {
|
|
4145
|
-
id: string;
|
|
4146
|
-
url: string;
|
|
4147
|
-
height: string;
|
|
4148
|
-
width: string;
|
|
4149
|
-
size: string;
|
|
4150
|
-
name: string;
|
|
4151
|
-
kind: string;
|
|
4152
|
-
} & {
|
|
4153
|
-
date?: string | null | undefined;
|
|
4154
|
-
}) | ({
|
|
4155
|
-
id: string;
|
|
4156
|
-
url: string;
|
|
4157
|
-
name: string;
|
|
4158
|
-
kind: string;
|
|
4159
|
-
size: string;
|
|
4160
|
-
} & {
|
|
4161
|
-
date?: string | null | undefined;
|
|
4162
|
-
} & {
|
|
4163
|
-
__TYPE__: "FileLink";
|
|
4164
|
-
} & {
|
|
4165
|
-
size?: string;
|
|
4166
|
-
}) | ({
|
|
4167
|
-
__TYPE__: "DocumentLink";
|
|
4168
|
-
} & {
|
|
4169
|
-
id: string;
|
|
4170
|
-
}) | ({
|
|
4171
|
-
__TYPE__: "ExternalLink";
|
|
4172
|
-
} & {
|
|
4173
|
-
url: string;
|
|
4174
|
-
} & {
|
|
4175
|
-
kind?: "web";
|
|
4176
|
-
target?: string | null | undefined;
|
|
4177
|
-
preview?: {
|
|
4178
|
-
title?: string;
|
|
4179
|
-
} | null | undefined;
|
|
4180
|
-
});
|
|
4181
|
-
start: number;
|
|
4182
|
-
end: number;
|
|
4183
|
-
type: "hyperlink";
|
|
4184
|
-
} | {
|
|
4185
|
-
data: string;
|
|
4186
|
-
start: number;
|
|
4187
|
-
end: number;
|
|
4188
|
-
type: "label";
|
|
4189
|
-
} | {
|
|
4190
|
-
start: number;
|
|
4191
|
-
end: number;
|
|
4192
|
-
type: "strong" | "em" | "list-item";
|
|
4193
|
-
})[], unknown>;
|
|
4194
|
-
}>]>;
|
|
4195
|
-
}>, t.PartialC<{
|
|
4196
|
-
label: t.StringC;
|
|
4197
|
-
direction: t.StringC;
|
|
4198
|
-
}>]>>]>>;
|
|
4199
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4200
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4201
|
-
}>>]>]>>;
|
|
4202
|
-
}>>>;
|
|
4203
|
-
}>>, t.UnionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
4204
|
-
type: t.StringC;
|
|
4205
|
-
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
4206
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4207
|
-
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
4208
|
-
value: t.BooleanC;
|
|
4209
|
-
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4210
|
-
embed_url: t.StringC;
|
|
4211
|
-
type: t.StringC;
|
|
4212
|
-
}>, t.PartialC<{
|
|
4213
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4214
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4215
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4216
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4217
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4218
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4219
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4220
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4221
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4222
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4223
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4224
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
4225
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4226
|
-
all: t.UnknownC;
|
|
4227
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
4228
|
-
type: t.LiteralC<"Text">;
|
|
4229
|
-
value: t.Type<string, string, unknown>;
|
|
4230
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4231
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4232
|
-
type: t.LiteralC<"Timestamp">;
|
|
4233
|
-
value: t.Type<string, string, unknown>;
|
|
4234
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4235
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4236
|
-
type: t.LiteralC<"Select">;
|
|
4237
|
-
value: t.Type<string, string, unknown>;
|
|
4238
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4239
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4240
|
-
type: t.LiteralC<"Range">;
|
|
4241
|
-
value: t.Type<string, string, unknown>;
|
|
4242
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4243
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4244
|
-
type: t.LiteralC<"Number">;
|
|
4245
|
-
value: t.Type<string, string, unknown>;
|
|
4246
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4247
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4248
|
-
type: t.LiteralC<"Date">;
|
|
4249
|
-
value: t.Type<string, string, unknown>;
|
|
4250
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4251
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4252
|
-
type: t.LiteralC<"Color">;
|
|
4253
|
-
value: t.Type<string, string, unknown>;
|
|
4254
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4255
|
-
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4256
|
-
position: t.ExactC<t.TypeC<{
|
|
4257
|
-
lat: t.NumberC;
|
|
4258
|
-
lng: t.NumberC;
|
|
4259
|
-
}>>;
|
|
4260
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4261
|
-
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
4262
|
-
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4263
|
-
origin: t.ExactC<t.TypeC<{
|
|
4264
|
-
id: t.StringC;
|
|
4265
|
-
url: t.StringC;
|
|
4266
|
-
width: t.NumberC;
|
|
4267
|
-
height: t.NumberC;
|
|
4268
|
-
}>>;
|
|
4269
|
-
width: t.NumberC;
|
|
4270
|
-
height: t.NumberC;
|
|
4271
|
-
edit: t.TypeC<{
|
|
4272
|
-
zoom: t.NumberC;
|
|
4273
|
-
crop: t.TypeC<{
|
|
4274
|
-
x: t.NumberC;
|
|
4275
|
-
y: t.NumberC;
|
|
4276
|
-
}>;
|
|
4277
|
-
background: t.StringC;
|
|
4278
|
-
}>;
|
|
4279
|
-
}>, t.PartialC<{
|
|
4280
|
-
url: t.StringC;
|
|
4281
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
4282
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
4283
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4284
|
-
}>]>>, t.PartialC<{
|
|
4285
|
-
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4286
|
-
origin: t.ExactC<t.TypeC<{
|
|
4287
|
-
id: t.StringC;
|
|
4288
|
-
url: t.StringC;
|
|
4289
|
-
width: t.NumberC;
|
|
4290
|
-
height: t.NumberC;
|
|
4291
|
-
}>>;
|
|
4292
|
-
width: t.NumberC;
|
|
4293
|
-
height: t.NumberC;
|
|
4294
|
-
edit: t.TypeC<{
|
|
4295
|
-
zoom: t.NumberC;
|
|
4296
|
-
crop: t.TypeC<{
|
|
4297
|
-
x: t.NumberC;
|
|
4298
|
-
y: t.NumberC;
|
|
4299
|
-
}>;
|
|
4300
|
-
background: t.StringC;
|
|
4301
|
-
}>;
|
|
4302
|
-
}>, t.PartialC<{
|
|
4303
|
-
url: t.StringC;
|
|
4304
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
4305
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
4306
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4307
|
-
}>]>>>;
|
|
4308
|
-
}>]>, t.ExactC<t.TypeC<{
|
|
4309
|
-
__TYPE__: t.LiteralC<"ImageContent">;
|
|
4310
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
4311
|
-
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
4312
|
-
value: t.StringC;
|
|
4313
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4314
|
-
__TYPE__: t.LiteralC<"LinkContent">;
|
|
4315
|
-
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4316
|
-
__TYPE__: t.LiteralC<"ImageLink">;
|
|
4317
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4318
|
-
id: t.StringC;
|
|
4319
|
-
url: t.StringC;
|
|
4320
|
-
height: t.StringC;
|
|
4321
|
-
width: t.StringC;
|
|
4322
|
-
size: t.StringC;
|
|
4323
|
-
name: t.StringC;
|
|
4324
|
-
kind: t.StringC;
|
|
4325
|
-
}>, t.PartialC<{
|
|
4326
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4327
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4328
|
-
id: t.StringC;
|
|
4329
|
-
url: t.StringC;
|
|
4330
|
-
name: t.StringC;
|
|
4331
|
-
kind: t.StringC;
|
|
4332
|
-
size: t.StringC;
|
|
4333
|
-
}>, t.PartialC<{
|
|
4334
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4335
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4336
|
-
__TYPE__: t.LiteralC<"FileLink">;
|
|
4337
|
-
}>, t.PartialC<{
|
|
4338
|
-
size: t.StringC;
|
|
4339
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4340
|
-
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
4341
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4342
|
-
id: t.Type<string, string, unknown>;
|
|
4343
|
-
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4344
|
-
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
4345
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4346
|
-
url: t.StringC;
|
|
4347
|
-
}>, t.PartialC<{
|
|
4348
|
-
kind: t.LiteralC<"web">;
|
|
4349
|
-
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4350
|
-
preview: t.UnionC<[t.Type<{
|
|
4351
|
-
title?: string;
|
|
4352
|
-
}, {
|
|
4353
|
-
title?: string;
|
|
4354
|
-
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
4355
|
-
}>]>>]>]>;
|
|
4356
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4357
|
-
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4358
|
-
value: t.ArrayC<t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4359
|
-
type: t.LiteralC<"image">;
|
|
4360
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4361
|
-
origin: t.ExactC<t.TypeC<{
|
|
4362
|
-
id: t.StringC;
|
|
4363
|
-
url: t.StringC;
|
|
4364
|
-
width: t.NumberC;
|
|
4365
|
-
height: t.NumberC;
|
|
4366
|
-
}>>;
|
|
4367
|
-
width: t.NumberC;
|
|
4368
|
-
height: t.NumberC;
|
|
4369
|
-
edit: t.TypeC<{
|
|
4370
|
-
zoom: t.NumberC;
|
|
4371
|
-
crop: t.TypeC<{
|
|
4372
|
-
x: t.NumberC;
|
|
4373
|
-
y: t.NumberC;
|
|
4374
|
-
}>;
|
|
4375
|
-
background: t.StringC;
|
|
4376
|
-
}>;
|
|
4377
|
-
}>, t.PartialC<{
|
|
4378
|
-
url: t.StringC;
|
|
4379
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
4380
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
4381
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4382
|
-
}>]>>, t.PartialC<{
|
|
4383
|
-
linkTo: t.UnionC<[t.Type<({
|
|
4384
|
-
__TYPE__: "ImageLink";
|
|
4385
|
-
} & {
|
|
4386
|
-
id: string;
|
|
4387
|
-
url: string;
|
|
4388
|
-
height: string;
|
|
4389
|
-
width: string;
|
|
4390
|
-
size: string;
|
|
4391
|
-
name: string;
|
|
4392
|
-
kind: string;
|
|
4393
|
-
} & {
|
|
4394
|
-
date?: string | null | undefined;
|
|
4395
|
-
}) | ({
|
|
4396
|
-
id: string;
|
|
4397
|
-
url: string;
|
|
4398
|
-
name: string;
|
|
4399
|
-
kind: string;
|
|
4400
|
-
size: string;
|
|
4401
|
-
} & {
|
|
4402
|
-
date?: string | null | undefined;
|
|
4403
|
-
} & {
|
|
4404
|
-
__TYPE__: "FileLink";
|
|
4405
|
-
} & {
|
|
4406
|
-
size?: string;
|
|
4407
|
-
}) | ({
|
|
4408
|
-
__TYPE__: "DocumentLink";
|
|
4409
|
-
} & {
|
|
4410
|
-
id: string;
|
|
4411
|
-
}) | ({
|
|
4412
|
-
__TYPE__: "ExternalLink";
|
|
4413
|
-
} & {
|
|
4414
|
-
url: string;
|
|
4415
|
-
} & {
|
|
4416
|
-
kind?: "web";
|
|
4417
|
-
target?: string | null | undefined;
|
|
4418
|
-
preview?: {
|
|
4419
|
-
title?: string;
|
|
4420
|
-
} | null | undefined;
|
|
4421
|
-
}), ({
|
|
4422
|
-
id: string;
|
|
4423
|
-
url: string;
|
|
4424
|
-
height: string;
|
|
4425
|
-
width: string;
|
|
4426
|
-
size: string;
|
|
4427
|
-
name: string;
|
|
4428
|
-
kind: string;
|
|
4429
|
-
} & {
|
|
4430
|
-
date?: string | null | undefined;
|
|
4431
|
-
}) | ({
|
|
4432
|
-
id: string;
|
|
4433
|
-
url: string;
|
|
4434
|
-
name: string;
|
|
4435
|
-
kind: string;
|
|
4436
|
-
size: string;
|
|
4437
|
-
} & {
|
|
4438
|
-
date?: string | null | undefined;
|
|
4439
|
-
}) | {
|
|
4440
|
-
id: string;
|
|
4441
|
-
} | ({
|
|
4442
|
-
url: string;
|
|
4443
|
-
} & {
|
|
4444
|
-
kind?: "web";
|
|
4445
|
-
target?: string | null | undefined;
|
|
4446
|
-
preview?: {
|
|
4447
|
-
title?: string;
|
|
4448
|
-
} | null | undefined;
|
|
4449
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
4450
|
-
}>]>;
|
|
4451
|
-
}>, t.PartialC<{
|
|
4452
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4453
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4454
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4455
|
-
type: t.LiteralC<"embed">;
|
|
4456
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4457
|
-
embed_url: t.StringC;
|
|
4458
|
-
type: t.StringC;
|
|
4459
|
-
}>, t.PartialC<{
|
|
4460
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4461
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4462
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4463
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4464
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4465
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4466
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4467
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4468
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4469
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4470
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4471
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
4472
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4473
|
-
all: t.UnknownC;
|
|
4474
|
-
}>>]>;
|
|
4475
|
-
}>, t.PartialC<{
|
|
4476
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4477
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4478
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4479
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
4480
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
4481
|
-
text: t.StringC;
|
|
4482
|
-
}>, t.PartialC<{
|
|
4483
|
-
spans: t.Type<({
|
|
4484
|
-
data: ({
|
|
4485
|
-
__TYPE__: "ImageLink";
|
|
4486
|
-
} & {
|
|
4487
|
-
id: string;
|
|
4488
|
-
url: string;
|
|
4489
|
-
height: string;
|
|
4490
|
-
width: string;
|
|
4491
|
-
size: string;
|
|
4492
|
-
name: string;
|
|
4493
|
-
kind: string;
|
|
4494
|
-
} & {
|
|
4495
|
-
date?: string | null | undefined;
|
|
4496
|
-
}) | ({
|
|
4497
|
-
id: string;
|
|
4498
|
-
url: string;
|
|
4499
|
-
name: string;
|
|
4500
|
-
kind: string;
|
|
4501
|
-
size: string;
|
|
4502
|
-
} & {
|
|
4503
|
-
date?: string | null | undefined;
|
|
4504
|
-
} & {
|
|
4505
|
-
__TYPE__: "FileLink";
|
|
4506
|
-
} & {
|
|
4507
|
-
size?: string;
|
|
4508
|
-
}) | ({
|
|
4509
|
-
__TYPE__: "DocumentLink";
|
|
4510
|
-
} & {
|
|
4511
|
-
id: string;
|
|
4512
|
-
}) | ({
|
|
4513
|
-
__TYPE__: "ExternalLink";
|
|
4514
|
-
} & {
|
|
4515
|
-
url: string;
|
|
4516
|
-
} & {
|
|
4517
|
-
kind?: "web";
|
|
4518
|
-
target?: string | null | undefined;
|
|
4519
|
-
preview?: {
|
|
4520
|
-
title?: string;
|
|
4521
|
-
} | null | undefined;
|
|
4522
|
-
});
|
|
4523
|
-
start: number;
|
|
4524
|
-
end: number;
|
|
4525
|
-
type: "hyperlink";
|
|
4526
|
-
} | {
|
|
4527
|
-
data: string;
|
|
4528
|
-
start: number;
|
|
4529
|
-
end: number;
|
|
4530
|
-
type: "label";
|
|
4531
|
-
} | {
|
|
4532
|
-
start: number;
|
|
4533
|
-
end: number;
|
|
4534
|
-
type: "strong" | "em" | "list-item";
|
|
4535
|
-
})[], ({
|
|
4536
|
-
data: ({
|
|
4537
|
-
__TYPE__: "ImageLink";
|
|
4538
|
-
} & {
|
|
4539
|
-
id: string;
|
|
4540
|
-
url: string;
|
|
4541
|
-
height: string;
|
|
4542
|
-
width: string;
|
|
4543
|
-
size: string;
|
|
4544
|
-
name: string;
|
|
4545
|
-
kind: string;
|
|
4546
|
-
} & {
|
|
4547
|
-
date?: string | null | undefined;
|
|
4548
|
-
}) | ({
|
|
4549
|
-
id: string;
|
|
4550
|
-
url: string;
|
|
4551
|
-
name: string;
|
|
4552
|
-
kind: string;
|
|
4553
|
-
size: string;
|
|
4554
|
-
} & {
|
|
4555
|
-
date?: string | null | undefined;
|
|
4556
|
-
} & {
|
|
4557
|
-
__TYPE__: "FileLink";
|
|
4558
|
-
} & {
|
|
4559
|
-
size?: string;
|
|
4560
|
-
}) | ({
|
|
4561
|
-
__TYPE__: "DocumentLink";
|
|
4562
|
-
} & {
|
|
4563
|
-
id: string;
|
|
4564
|
-
}) | ({
|
|
4565
|
-
__TYPE__: "ExternalLink";
|
|
4566
|
-
} & {
|
|
4567
|
-
url: string;
|
|
4568
|
-
} & {
|
|
4569
|
-
kind?: "web";
|
|
4570
|
-
target?: string | null | undefined;
|
|
4571
|
-
preview?: {
|
|
4572
|
-
title?: string;
|
|
4573
|
-
} | null | undefined;
|
|
4574
|
-
});
|
|
4575
|
-
start: number;
|
|
4576
|
-
end: number;
|
|
4577
|
-
type: "hyperlink";
|
|
4578
|
-
} | {
|
|
4579
|
-
data: string;
|
|
4580
|
-
start: number;
|
|
4581
|
-
end: number;
|
|
4582
|
-
type: "label";
|
|
4583
|
-
} | {
|
|
4584
|
-
start: number;
|
|
4585
|
-
end: number;
|
|
4586
|
-
type: "strong" | "em" | "list-item";
|
|
4587
|
-
})[], unknown>;
|
|
4588
|
-
}>]>;
|
|
4589
|
-
}>, t.PartialC<{
|
|
4590
|
-
label: t.StringC;
|
|
4591
|
-
direction: t.StringC;
|
|
4592
|
-
}>]>>]>>;
|
|
4593
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4594
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4595
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
4596
|
-
__TYPE__: t.LiteralC<"GroupContentType">;
|
|
4597
|
-
value: t.ArrayC<t.ExactC<t.TypeC<{
|
|
4598
|
-
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
4599
|
-
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
4600
|
-
type: t.StringC;
|
|
4601
|
-
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
4602
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4603
|
-
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
4604
|
-
value: t.BooleanC;
|
|
4605
|
-
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4606
|
-
embed_url: t.StringC;
|
|
4607
|
-
type: t.StringC;
|
|
4608
|
-
}>, t.PartialC<{
|
|
4609
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4610
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4611
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4612
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4613
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4614
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4615
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4616
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4617
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4618
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4619
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4620
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
4621
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4622
|
-
all: t.UnknownC;
|
|
4623
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
4624
|
-
type: t.LiteralC<"Text">;
|
|
4625
|
-
value: t.Type<string, string, unknown>;
|
|
4626
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4627
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4628
|
-
type: t.LiteralC<"Timestamp">;
|
|
4629
|
-
value: t.Type<string, string, unknown>;
|
|
4630
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4631
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4632
|
-
type: t.LiteralC<"Select">;
|
|
4633
|
-
value: t.Type<string, string, unknown>;
|
|
4634
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4635
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4636
|
-
type: t.LiteralC<"Range">;
|
|
4637
|
-
value: t.Type<string, string, unknown>;
|
|
4638
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4639
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4640
|
-
type: t.LiteralC<"Number">;
|
|
4641
|
-
value: t.Type<string, string, unknown>;
|
|
4642
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4643
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4644
|
-
type: t.LiteralC<"Date">;
|
|
4645
|
-
value: t.Type<string, string, unknown>;
|
|
4646
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4647
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4648
|
-
type: t.LiteralC<"Color">;
|
|
4649
|
-
value: t.Type<string, string, unknown>;
|
|
4650
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
4651
|
-
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4652
|
-
position: t.ExactC<t.TypeC<{
|
|
4653
|
-
lat: t.NumberC;
|
|
4654
|
-
lng: t.NumberC;
|
|
4655
|
-
}>>;
|
|
4656
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4657
|
-
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
4658
|
-
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4659
|
-
origin: t.ExactC<t.TypeC<{
|
|
4660
|
-
id: t.StringC;
|
|
4661
|
-
url: t.StringC;
|
|
4662
|
-
width: t.NumberC;
|
|
4663
|
-
height: t.NumberC;
|
|
4664
|
-
}>>;
|
|
4665
|
-
width: t.NumberC;
|
|
4666
|
-
height: t.NumberC;
|
|
4667
|
-
edit: t.TypeC<{
|
|
4668
|
-
zoom: t.NumberC;
|
|
4669
|
-
crop: t.TypeC<{
|
|
4670
|
-
x: t.NumberC;
|
|
4671
|
-
y: t.NumberC;
|
|
4672
|
-
}>;
|
|
4673
|
-
background: t.StringC;
|
|
4674
|
-
}>;
|
|
4675
|
-
}>, t.PartialC<{
|
|
4676
|
-
url: t.StringC;
|
|
4677
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
4678
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
4679
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4680
|
-
}>]>>, t.PartialC<{
|
|
4681
|
-
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4682
|
-
origin: t.ExactC<t.TypeC<{
|
|
4683
|
-
id: t.StringC;
|
|
4684
|
-
url: t.StringC;
|
|
4685
|
-
width: t.NumberC;
|
|
4686
|
-
height: t.NumberC;
|
|
4687
|
-
}>>;
|
|
4688
|
-
width: t.NumberC;
|
|
4689
|
-
height: t.NumberC;
|
|
4690
|
-
edit: t.TypeC<{
|
|
4691
|
-
zoom: t.NumberC;
|
|
4692
|
-
crop: t.TypeC<{
|
|
4693
|
-
x: t.NumberC;
|
|
4694
|
-
y: t.NumberC;
|
|
4695
|
-
}>;
|
|
4696
|
-
background: t.StringC;
|
|
4697
|
-
}>;
|
|
4698
|
-
}>, t.PartialC<{
|
|
4699
|
-
url: t.StringC;
|
|
4700
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
4701
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
4702
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4703
|
-
}>]>>>;
|
|
4704
|
-
}>]>, t.ExactC<t.TypeC<{
|
|
4705
|
-
__TYPE__: t.LiteralC<"ImageContent">;
|
|
4706
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
4707
|
-
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
4708
|
-
value: t.StringC;
|
|
4709
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4710
|
-
__TYPE__: t.LiteralC<"LinkContent">;
|
|
4711
|
-
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4712
|
-
__TYPE__: t.LiteralC<"ImageLink">;
|
|
4713
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4714
|
-
id: t.StringC;
|
|
4715
|
-
url: t.StringC;
|
|
4716
|
-
height: t.StringC;
|
|
4717
|
-
width: t.StringC;
|
|
4718
|
-
size: t.StringC;
|
|
4719
|
-
name: t.StringC;
|
|
4720
|
-
kind: t.StringC;
|
|
4721
|
-
}>, t.PartialC<{
|
|
4722
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4723
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4724
|
-
id: t.StringC;
|
|
4725
|
-
url: t.StringC;
|
|
4726
|
-
name: t.StringC;
|
|
4727
|
-
kind: t.StringC;
|
|
4728
|
-
size: t.StringC;
|
|
4729
|
-
}>, t.PartialC<{
|
|
4730
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4731
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4732
|
-
__TYPE__: t.LiteralC<"FileLink">;
|
|
4733
|
-
}>, t.PartialC<{
|
|
4734
|
-
size: t.StringC;
|
|
4735
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4736
|
-
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
4737
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4738
|
-
id: t.Type<string, string, unknown>;
|
|
4739
|
-
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4740
|
-
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
4741
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4742
|
-
url: t.StringC;
|
|
4743
|
-
}>, t.PartialC<{
|
|
4744
|
-
kind: t.LiteralC<"web">;
|
|
4745
|
-
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4746
|
-
preview: t.UnionC<[t.Type<{
|
|
4747
|
-
title?: string;
|
|
4748
|
-
}, {
|
|
4749
|
-
title?: string;
|
|
4750
|
-
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
4751
|
-
}>]>>]>]>;
|
|
4752
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4753
|
-
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
4754
|
-
value: t.ArrayC<t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4755
|
-
type: t.LiteralC<"image">;
|
|
4756
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4757
|
-
origin: t.ExactC<t.TypeC<{
|
|
4758
|
-
id: t.StringC;
|
|
4759
|
-
url: t.StringC;
|
|
4760
|
-
width: t.NumberC;
|
|
4761
|
-
height: t.NumberC;
|
|
4762
|
-
}>>;
|
|
4763
|
-
width: t.NumberC;
|
|
4764
|
-
height: t.NumberC;
|
|
4765
|
-
edit: t.TypeC<{
|
|
4766
|
-
zoom: t.NumberC;
|
|
4767
|
-
crop: t.TypeC<{
|
|
4768
|
-
x: t.NumberC;
|
|
4769
|
-
y: t.NumberC;
|
|
4770
|
-
}>;
|
|
4771
|
-
background: t.StringC;
|
|
4772
|
-
}>;
|
|
4773
|
-
}>, t.PartialC<{
|
|
4774
|
-
url: t.StringC;
|
|
4775
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
4776
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
4777
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4778
|
-
}>]>>, t.PartialC<{
|
|
4779
|
-
linkTo: t.UnionC<[t.Type<({
|
|
4780
|
-
__TYPE__: "ImageLink";
|
|
4781
|
-
} & {
|
|
4782
|
-
id: string;
|
|
4783
|
-
url: string;
|
|
4784
|
-
height: string;
|
|
4785
|
-
width: string;
|
|
4786
|
-
size: string;
|
|
4787
|
-
name: string;
|
|
4788
|
-
kind: string;
|
|
4789
|
-
} & {
|
|
4790
|
-
date?: string | null | undefined;
|
|
4791
|
-
}) | ({
|
|
4792
|
-
id: string;
|
|
4793
|
-
url: string;
|
|
4794
|
-
name: string;
|
|
4795
|
-
kind: string;
|
|
4796
|
-
size: string;
|
|
4797
|
-
} & {
|
|
4798
|
-
date?: string | null | undefined;
|
|
4799
|
-
} & {
|
|
4800
|
-
__TYPE__: "FileLink";
|
|
4801
|
-
} & {
|
|
4802
|
-
size?: string;
|
|
4803
|
-
}) | ({
|
|
4804
|
-
__TYPE__: "DocumentLink";
|
|
4805
|
-
} & {
|
|
4806
|
-
id: string;
|
|
4807
|
-
}) | ({
|
|
4808
|
-
__TYPE__: "ExternalLink";
|
|
4809
|
-
} & {
|
|
4810
|
-
url: string;
|
|
4811
|
-
} & {
|
|
4812
|
-
kind?: "web";
|
|
4813
|
-
target?: string | null | undefined;
|
|
4814
|
-
preview?: {
|
|
4815
|
-
title?: string;
|
|
4816
|
-
} | null | undefined;
|
|
4817
|
-
}), ({
|
|
4818
|
-
id: string;
|
|
4819
|
-
url: string;
|
|
4820
|
-
height: string;
|
|
4821
|
-
width: string;
|
|
4822
|
-
size: string;
|
|
4823
|
-
name: string;
|
|
4824
|
-
kind: string;
|
|
4825
|
-
} & {
|
|
4826
|
-
date?: string | null | undefined;
|
|
4827
|
-
}) | ({
|
|
4828
|
-
id: string;
|
|
4829
|
-
url: string;
|
|
4830
|
-
name: string;
|
|
4831
|
-
kind: string;
|
|
4832
|
-
size: string;
|
|
4833
|
-
} & {
|
|
4834
|
-
date?: string | null | undefined;
|
|
4835
|
-
}) | {
|
|
4836
|
-
id: string;
|
|
4837
|
-
} | ({
|
|
4838
|
-
url: string;
|
|
4839
|
-
} & {
|
|
4840
|
-
kind?: "web";
|
|
4841
|
-
target?: string | null | undefined;
|
|
4842
|
-
preview?: {
|
|
4843
|
-
title?: string;
|
|
4844
|
-
} | null | undefined;
|
|
4845
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
4846
|
-
}>]>;
|
|
4847
|
-
}>, t.PartialC<{
|
|
4848
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4849
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4850
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4851
|
-
type: t.LiteralC<"embed">;
|
|
4852
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4853
|
-
embed_url: t.StringC;
|
|
4854
|
-
type: t.StringC;
|
|
4855
|
-
}>, t.PartialC<{
|
|
4856
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4857
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4858
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4859
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4860
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4861
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4862
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
4863
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4864
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4865
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
4866
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4867
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
4868
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
4869
|
-
all: t.UnknownC;
|
|
4870
|
-
}>>]>;
|
|
4871
|
-
}>, t.PartialC<{
|
|
4872
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4873
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4874
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4875
|
-
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
4876
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
4877
|
-
text: t.StringC;
|
|
4878
|
-
}>, t.PartialC<{
|
|
4879
|
-
spans: t.Type<({
|
|
4880
|
-
data: ({
|
|
4881
|
-
__TYPE__: "ImageLink";
|
|
4882
|
-
} & {
|
|
4883
|
-
id: string;
|
|
4884
|
-
url: string;
|
|
4885
|
-
height: string;
|
|
4886
|
-
width: string;
|
|
4887
|
-
size: string;
|
|
4888
|
-
name: string;
|
|
4889
|
-
kind: string;
|
|
4890
|
-
} & {
|
|
4891
|
-
date?: string | null | undefined;
|
|
4892
|
-
}) | ({
|
|
4893
|
-
id: string;
|
|
4894
|
-
url: string;
|
|
4895
|
-
name: string;
|
|
4896
|
-
kind: string;
|
|
4897
|
-
size: string;
|
|
4898
|
-
} & {
|
|
4899
|
-
date?: string | null | undefined;
|
|
4900
|
-
} & {
|
|
4901
|
-
__TYPE__: "FileLink";
|
|
4902
|
-
} & {
|
|
4903
|
-
size?: string;
|
|
4904
|
-
}) | ({
|
|
4905
|
-
__TYPE__: "DocumentLink";
|
|
4906
|
-
} & {
|
|
4907
|
-
id: string;
|
|
4908
|
-
}) | ({
|
|
4909
|
-
__TYPE__: "ExternalLink";
|
|
4910
|
-
} & {
|
|
4911
|
-
url: string;
|
|
4912
|
-
} & {
|
|
4913
|
-
kind?: "web";
|
|
4914
|
-
target?: string | null | undefined;
|
|
4915
|
-
preview?: {
|
|
4916
|
-
title?: string;
|
|
4917
|
-
} | null | undefined;
|
|
4918
|
-
});
|
|
4919
|
-
start: number;
|
|
4920
|
-
end: number;
|
|
4921
|
-
type: "hyperlink";
|
|
4922
|
-
} | {
|
|
4923
|
-
data: string;
|
|
4924
|
-
start: number;
|
|
4925
|
-
end: number;
|
|
4926
|
-
type: "label";
|
|
4927
|
-
} | {
|
|
4928
|
-
start: number;
|
|
4929
|
-
end: number;
|
|
4930
|
-
type: "strong" | "em" | "list-item";
|
|
4931
|
-
})[], ({
|
|
4932
|
-
data: ({
|
|
4933
|
-
__TYPE__: "ImageLink";
|
|
4934
|
-
} & {
|
|
4935
|
-
id: string;
|
|
4936
|
-
url: string;
|
|
4937
|
-
height: string;
|
|
4938
|
-
width: string;
|
|
4939
|
-
size: string;
|
|
4940
|
-
name: string;
|
|
4941
|
-
kind: string;
|
|
4942
|
-
} & {
|
|
4943
|
-
date?: string | null | undefined;
|
|
4944
|
-
}) | ({
|
|
4945
|
-
id: string;
|
|
4946
|
-
url: string;
|
|
4947
|
-
name: string;
|
|
4948
|
-
kind: string;
|
|
4949
|
-
size: string;
|
|
4950
|
-
} & {
|
|
4951
|
-
date?: string | null | undefined;
|
|
4952
|
-
} & {
|
|
4953
|
-
__TYPE__: "FileLink";
|
|
4954
|
-
} & {
|
|
4955
|
-
size?: string;
|
|
4956
|
-
}) | ({
|
|
4957
|
-
__TYPE__: "DocumentLink";
|
|
4958
|
-
} & {
|
|
4959
|
-
id: string;
|
|
4960
|
-
}) | ({
|
|
4961
|
-
__TYPE__: "ExternalLink";
|
|
4962
|
-
} & {
|
|
4963
|
-
url: string;
|
|
4964
|
-
} & {
|
|
4965
|
-
kind?: "web";
|
|
4966
|
-
target?: string | null | undefined;
|
|
4967
|
-
preview?: {
|
|
4968
|
-
title?: string;
|
|
4969
|
-
} | null | undefined;
|
|
4970
|
-
});
|
|
4971
|
-
start: number;
|
|
4972
|
-
end: number;
|
|
4973
|
-
type: "hyperlink";
|
|
4974
|
-
} | {
|
|
4975
|
-
data: string;
|
|
4976
|
-
start: number;
|
|
4977
|
-
end: number;
|
|
4978
|
-
type: "label";
|
|
4979
|
-
} | {
|
|
4980
|
-
start: number;
|
|
4981
|
-
end: number;
|
|
4982
|
-
type: "strong" | "em" | "list-item";
|
|
4983
|
-
})[], unknown>;
|
|
4984
|
-
}>]>;
|
|
4985
|
-
}>, t.PartialC<{
|
|
4986
|
-
label: t.StringC;
|
|
4987
|
-
direction: t.StringC;
|
|
4988
|
-
}>]>>]>>;
|
|
4989
|
-
}>>, t.ExactC<t.TypeC<{
|
|
4990
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
4991
|
-
}>>]>]>>;
|
|
4992
|
-
}>>>;
|
|
4993
|
-
}>>]>]>;
|
|
2895
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
2896
|
+
}>]>;
|
|
2897
|
+
}>, t.PartialC<{
|
|
2898
|
+
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2899
|
+
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2900
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2901
|
+
type: t.LiteralC<"embed">;
|
|
2902
|
+
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2903
|
+
embed_url: t.StringC;
|
|
2904
|
+
type: t.StringC;
|
|
2905
|
+
}>, t.PartialC<{
|
|
2906
|
+
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2907
|
+
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2908
|
+
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2909
|
+
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2910
|
+
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2911
|
+
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2912
|
+
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2913
|
+
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2914
|
+
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2915
|
+
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2916
|
+
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2917
|
+
}>]>>, t.ExactC<t.TypeC<{
|
|
2918
|
+
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2919
|
+
all: t.UnknownC;
|
|
2920
|
+
}>>]>;
|
|
2921
|
+
}>, t.PartialC<{
|
|
2922
|
+
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2923
|
+
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2924
|
+
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2925
|
+
type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
|
|
2926
|
+
content: t.IntersectionC<[t.TypeC<{
|
|
2927
|
+
text: t.StringC;
|
|
2928
|
+
}>, t.PartialC<{
|
|
2929
|
+
spans: t.Type<({
|
|
2930
|
+
data: ({
|
|
2931
|
+
__TYPE__: "ImageLink";
|
|
2932
|
+
} & {
|
|
2933
|
+
id: string;
|
|
2934
|
+
url: string;
|
|
2935
|
+
height: string;
|
|
2936
|
+
width: string;
|
|
2937
|
+
size: string;
|
|
2938
|
+
name: string;
|
|
2939
|
+
kind: string;
|
|
2940
|
+
} & {
|
|
2941
|
+
date?: string | null | undefined;
|
|
2942
|
+
}) | ({
|
|
2943
|
+
id: string;
|
|
2944
|
+
url: string;
|
|
2945
|
+
name: string;
|
|
2946
|
+
kind: string;
|
|
2947
|
+
size: string;
|
|
2948
|
+
} & {
|
|
2949
|
+
date?: string | null | undefined;
|
|
2950
|
+
} & {
|
|
2951
|
+
__TYPE__: "FileLink";
|
|
2952
|
+
} & {
|
|
2953
|
+
size?: string;
|
|
2954
|
+
}) | ({
|
|
2955
|
+
__TYPE__: "DocumentLink";
|
|
2956
|
+
} & {
|
|
2957
|
+
id: string;
|
|
2958
|
+
}) | ({
|
|
2959
|
+
__TYPE__: "ExternalLink";
|
|
2960
|
+
} & {
|
|
2961
|
+
url: string;
|
|
2962
|
+
} & {
|
|
2963
|
+
kind?: "web";
|
|
2964
|
+
target?: string | null | undefined;
|
|
2965
|
+
preview?: {
|
|
2966
|
+
title?: string;
|
|
2967
|
+
} | null | undefined;
|
|
2968
|
+
});
|
|
2969
|
+
start: number;
|
|
2970
|
+
end: number;
|
|
2971
|
+
type: "hyperlink";
|
|
2972
|
+
} | {
|
|
2973
|
+
data: string;
|
|
2974
|
+
start: number;
|
|
2975
|
+
end: number;
|
|
2976
|
+
type: "label";
|
|
2977
|
+
} | {
|
|
2978
|
+
start: number;
|
|
2979
|
+
end: number;
|
|
2980
|
+
type: "strong" | "em" | "list-item";
|
|
2981
|
+
})[], ({
|
|
2982
|
+
data: ({
|
|
2983
|
+
__TYPE__: "ImageLink";
|
|
2984
|
+
} & {
|
|
2985
|
+
id: string;
|
|
2986
|
+
url: string;
|
|
2987
|
+
height: string;
|
|
2988
|
+
width: string;
|
|
2989
|
+
size: string;
|
|
2990
|
+
name: string;
|
|
2991
|
+
kind: string;
|
|
2992
|
+
} & {
|
|
2993
|
+
date?: string | null | undefined;
|
|
2994
|
+
}) | ({
|
|
2995
|
+
id: string;
|
|
2996
|
+
url: string;
|
|
2997
|
+
name: string;
|
|
2998
|
+
kind: string;
|
|
2999
|
+
size: string;
|
|
3000
|
+
} & {
|
|
3001
|
+
date?: string | null | undefined;
|
|
3002
|
+
} & {
|
|
3003
|
+
__TYPE__: "FileLink";
|
|
3004
|
+
} & {
|
|
3005
|
+
size?: string;
|
|
3006
|
+
}) | ({
|
|
3007
|
+
__TYPE__: "DocumentLink";
|
|
3008
|
+
} & {
|
|
3009
|
+
id: string;
|
|
3010
|
+
}) | ({
|
|
3011
|
+
__TYPE__: "ExternalLink";
|
|
3012
|
+
} & {
|
|
3013
|
+
url: string;
|
|
3014
|
+
} & {
|
|
3015
|
+
kind?: "web";
|
|
3016
|
+
target?: string | null | undefined;
|
|
3017
|
+
preview?: {
|
|
3018
|
+
title?: string;
|
|
3019
|
+
} | null | undefined;
|
|
3020
|
+
});
|
|
3021
|
+
start: number;
|
|
3022
|
+
end: number;
|
|
3023
|
+
type: "hyperlink";
|
|
3024
|
+
} | {
|
|
3025
|
+
data: string;
|
|
3026
|
+
start: number;
|
|
3027
|
+
end: number;
|
|
3028
|
+
type: "label";
|
|
3029
|
+
} | {
|
|
3030
|
+
start: number;
|
|
3031
|
+
end: number;
|
|
3032
|
+
type: "strong" | "em" | "list-item";
|
|
3033
|
+
})[], unknown>;
|
|
3034
|
+
}>]>;
|
|
3035
|
+
}>, t.PartialC<{
|
|
3036
|
+
label: t.StringC;
|
|
3037
|
+
direction: t.StringC;
|
|
3038
|
+
}>]>>]>>;
|
|
3039
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3040
|
+
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
3041
|
+
}>>]>, t.Type<import("../..").GroupContent, import("../..").GroupContent, unknown>]>]>;
|
|
4994
3042
|
export declare type SliceContent = t.TypeOf<typeof SliceContent>;
|
|
4995
3043
|
export * from "./CompositeSliceContent";
|
|
4996
3044
|
export * from "./SharedSliceContent";
|