@prismicio/types-internal 2.7.0-alpha.2 → 2.7.0-alpha.3
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 +13 -409
- package/lib/content/fields/WidgetContent.d.ts +12 -408
- package/lib/content/fields/nestable/LinkContent.d.ts +8 -54
- package/lib/content/fields/nestable/LinkContent.js +1 -10
- package/lib/content/fields/nestable/NestableContent.d.ts +2 -68
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +6 -129
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +0 -60
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +4 -136
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +2 -32
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +4 -136
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +2 -68
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +2 -68
- package/lib/content/fields/slices/Slice/index.d.ts +10 -250
- package/lib/content/fields/slices/SliceItem.d.ts +10 -250
- package/lib/content/fields/slices/SlicesContent.d.ts +10 -340
- package/lib/customtypes/CustomType.d.ts +484 -344
- package/lib/customtypes/Section.d.ts +484 -344
- package/lib/customtypes/diff/SharedSlice.d.ts +232 -152
- package/lib/customtypes/diff/Variation.d.ts +232 -152
- package/lib/customtypes/widgets/Group.d.ts +315 -72
- package/lib/customtypes/widgets/Group.js +43 -5
- package/lib/customtypes/widgets/Widget.d.ts +520 -330
- package/lib/customtypes/widgets/nestable/Link.d.ts +0 -20
- package/lib/customtypes/widgets/nestable/Link.js +0 -2
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +0 -10
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +0 -20
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +42 -22
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +168 -88
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +191 -91
- package/lib/customtypes/widgets/slices/Slices.d.ts +523 -443
- package/package.json +1 -1
- package/src/content/fields/nestable/LinkContent.ts +1 -12
- package/src/customtypes/widgets/Group.ts +52 -6
- package/src/customtypes/widgets/nestable/Link.ts +0 -2
- package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +0 -727
- package/lib/content/fields/nestable/RichTextContent/TextBlock.js +0 -80
- package/lib/customtypes/widgets/slices/SliceWidget.d.ts +0 -327
- package/lib/customtypes/widgets/slices/SliceWidget.js +0 -8
|
@@ -135,7 +135,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
135
135
|
kind: string;
|
|
136
136
|
} & {
|
|
137
137
|
date?: string | null | undefined;
|
|
138
|
-
text?: string;
|
|
139
138
|
}) | ({
|
|
140
139
|
id: string;
|
|
141
140
|
url: string;
|
|
@@ -144,18 +143,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
144
143
|
size: string;
|
|
145
144
|
} & {
|
|
146
145
|
date?: string | null | undefined;
|
|
147
|
-
text?: string;
|
|
148
146
|
} & {
|
|
149
147
|
__TYPE__: "FileLink";
|
|
150
148
|
} & {
|
|
151
149
|
size?: string;
|
|
152
|
-
text?: string;
|
|
153
150
|
}) | ({
|
|
154
151
|
__TYPE__: "DocumentLink";
|
|
155
152
|
} & {
|
|
156
153
|
id: string;
|
|
157
|
-
} & {
|
|
158
|
-
text?: string;
|
|
159
154
|
}) | ({
|
|
160
155
|
__TYPE__: "ExternalLink";
|
|
161
156
|
} & {
|
|
@@ -166,7 +161,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
166
161
|
preview?: {
|
|
167
162
|
title?: string;
|
|
168
163
|
} | null | undefined;
|
|
169
|
-
text?: string;
|
|
170
164
|
});
|
|
171
165
|
} | {
|
|
172
166
|
__TYPE__: "StructuredTextContent";
|
|
@@ -207,7 +201,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
207
201
|
kind: string;
|
|
208
202
|
} & {
|
|
209
203
|
date?: string | null | undefined;
|
|
210
|
-
text?: string;
|
|
211
204
|
}) | ({
|
|
212
205
|
id: string;
|
|
213
206
|
url: string;
|
|
@@ -216,18 +209,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
216
209
|
size: string;
|
|
217
210
|
} & {
|
|
218
211
|
date?: string | null | undefined;
|
|
219
|
-
text?: string;
|
|
220
212
|
} & {
|
|
221
213
|
__TYPE__: "FileLink";
|
|
222
214
|
} & {
|
|
223
215
|
size?: string;
|
|
224
|
-
text?: string;
|
|
225
216
|
}) | ({
|
|
226
217
|
__TYPE__: "DocumentLink";
|
|
227
218
|
} & {
|
|
228
219
|
id: string;
|
|
229
|
-
} & {
|
|
230
|
-
text?: string;
|
|
231
220
|
}) | ({
|
|
232
221
|
__TYPE__: "ExternalLink";
|
|
233
222
|
} & {
|
|
@@ -238,7 +227,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
238
227
|
preview?: {
|
|
239
228
|
title?: string;
|
|
240
229
|
} | null | undefined;
|
|
241
|
-
text?: string;
|
|
242
230
|
}) | null | undefined;
|
|
243
231
|
};
|
|
244
232
|
} & {
|
|
@@ -286,7 +274,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
286
274
|
kind: string;
|
|
287
275
|
} & {
|
|
288
276
|
date?: string | null | undefined;
|
|
289
|
-
text?: string;
|
|
290
277
|
}) | ({
|
|
291
278
|
id: string;
|
|
292
279
|
url: string;
|
|
@@ -295,18 +282,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
295
282
|
size: string;
|
|
296
283
|
} & {
|
|
297
284
|
date?: string | null | undefined;
|
|
298
|
-
text?: string;
|
|
299
285
|
} & {
|
|
300
286
|
__TYPE__: "FileLink";
|
|
301
287
|
} & {
|
|
302
288
|
size?: string;
|
|
303
|
-
text?: string;
|
|
304
289
|
}) | ({
|
|
305
290
|
__TYPE__: "DocumentLink";
|
|
306
291
|
} & {
|
|
307
292
|
id: string;
|
|
308
|
-
} & {
|
|
309
|
-
text?: string;
|
|
310
293
|
}) | ({
|
|
311
294
|
__TYPE__: "ExternalLink";
|
|
312
295
|
} & {
|
|
@@ -317,7 +300,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
317
300
|
preview?: {
|
|
318
301
|
title?: string;
|
|
319
302
|
} | null | undefined;
|
|
320
|
-
text?: string;
|
|
321
303
|
});
|
|
322
304
|
start: number;
|
|
323
305
|
end: number;
|
|
@@ -468,7 +450,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
468
450
|
kind: string;
|
|
469
451
|
} & {
|
|
470
452
|
date?: string | null | undefined;
|
|
471
|
-
text?: string;
|
|
472
453
|
}) | ({
|
|
473
454
|
id: string;
|
|
474
455
|
url: string;
|
|
@@ -477,18 +458,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
477
458
|
size: string;
|
|
478
459
|
} & {
|
|
479
460
|
date?: string | null | undefined;
|
|
480
|
-
text?: string;
|
|
481
461
|
} & {
|
|
482
462
|
__TYPE__: "FileLink";
|
|
483
463
|
} & {
|
|
484
464
|
size?: string;
|
|
485
|
-
text?: string;
|
|
486
465
|
}) | ({
|
|
487
466
|
__TYPE__: "DocumentLink";
|
|
488
467
|
} & {
|
|
489
468
|
id: string;
|
|
490
|
-
} & {
|
|
491
|
-
text?: string;
|
|
492
469
|
}) | ({
|
|
493
470
|
__TYPE__: "ExternalLink";
|
|
494
471
|
} & {
|
|
@@ -499,7 +476,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
499
476
|
preview?: {
|
|
500
477
|
title?: string;
|
|
501
478
|
} | null | undefined;
|
|
502
|
-
text?: string;
|
|
503
479
|
});
|
|
504
480
|
} | {
|
|
505
481
|
__TYPE__: "StructuredTextContent";
|
|
@@ -540,7 +516,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
540
516
|
kind: string;
|
|
541
517
|
} & {
|
|
542
518
|
date?: string | null | undefined;
|
|
543
|
-
text?: string;
|
|
544
519
|
}) | ({
|
|
545
520
|
id: string;
|
|
546
521
|
url: string;
|
|
@@ -549,18 +524,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
549
524
|
size: string;
|
|
550
525
|
} & {
|
|
551
526
|
date?: string | null | undefined;
|
|
552
|
-
text?: string;
|
|
553
527
|
} & {
|
|
554
528
|
__TYPE__: "FileLink";
|
|
555
529
|
} & {
|
|
556
530
|
size?: string;
|
|
557
|
-
text?: string;
|
|
558
531
|
}) | ({
|
|
559
532
|
__TYPE__: "DocumentLink";
|
|
560
533
|
} & {
|
|
561
534
|
id: string;
|
|
562
|
-
} & {
|
|
563
|
-
text?: string;
|
|
564
535
|
}) | ({
|
|
565
536
|
__TYPE__: "ExternalLink";
|
|
566
537
|
} & {
|
|
@@ -571,7 +542,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
571
542
|
preview?: {
|
|
572
543
|
title?: string;
|
|
573
544
|
} | null | undefined;
|
|
574
|
-
text?: string;
|
|
575
545
|
}) | null | undefined;
|
|
576
546
|
};
|
|
577
547
|
} & {
|
|
@@ -619,7 +589,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
619
589
|
kind: string;
|
|
620
590
|
} & {
|
|
621
591
|
date?: string | null | undefined;
|
|
622
|
-
text?: string;
|
|
623
592
|
}) | ({
|
|
624
593
|
id: string;
|
|
625
594
|
url: string;
|
|
@@ -628,18 +597,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
628
597
|
size: string;
|
|
629
598
|
} & {
|
|
630
599
|
date?: string | null | undefined;
|
|
631
|
-
text?: string;
|
|
632
600
|
} & {
|
|
633
601
|
__TYPE__: "FileLink";
|
|
634
602
|
} & {
|
|
635
603
|
size?: string;
|
|
636
|
-
text?: string;
|
|
637
604
|
}) | ({
|
|
638
605
|
__TYPE__: "DocumentLink";
|
|
639
606
|
} & {
|
|
640
607
|
id: string;
|
|
641
|
-
} & {
|
|
642
|
-
text?: string;
|
|
643
608
|
}) | ({
|
|
644
609
|
__TYPE__: "ExternalLink";
|
|
645
610
|
} & {
|
|
@@ -650,7 +615,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
650
615
|
preview?: {
|
|
651
616
|
title?: string;
|
|
652
617
|
} | null | undefined;
|
|
653
|
-
text?: string;
|
|
654
618
|
});
|
|
655
619
|
start: number;
|
|
656
620
|
end: number;
|
|
@@ -802,7 +766,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
802
766
|
kind: string;
|
|
803
767
|
} & {
|
|
804
768
|
date?: string | null | undefined;
|
|
805
|
-
text?: string;
|
|
806
769
|
}) | ({
|
|
807
770
|
id: string;
|
|
808
771
|
url: string;
|
|
@@ -811,18 +774,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
811
774
|
size: string;
|
|
812
775
|
} & {
|
|
813
776
|
date?: string | null | undefined;
|
|
814
|
-
text?: string;
|
|
815
777
|
} & {
|
|
816
778
|
__TYPE__: "FileLink";
|
|
817
779
|
} & {
|
|
818
780
|
size?: string;
|
|
819
|
-
text?: string;
|
|
820
781
|
}) | ({
|
|
821
782
|
__TYPE__: "DocumentLink";
|
|
822
783
|
} & {
|
|
823
784
|
id: string;
|
|
824
|
-
} & {
|
|
825
|
-
text?: string;
|
|
826
785
|
}) | ({
|
|
827
786
|
__TYPE__: "ExternalLink";
|
|
828
787
|
} & {
|
|
@@ -833,7 +792,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
833
792
|
preview?: {
|
|
834
793
|
title?: string;
|
|
835
794
|
} | null | undefined;
|
|
836
|
-
text?: string;
|
|
837
795
|
});
|
|
838
796
|
} | {
|
|
839
797
|
__TYPE__: "StructuredTextContent";
|
|
@@ -874,7 +832,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
874
832
|
kind: string;
|
|
875
833
|
} & {
|
|
876
834
|
date?: string | null | undefined;
|
|
877
|
-
text?: string;
|
|
878
835
|
}) | ({
|
|
879
836
|
id: string;
|
|
880
837
|
url: string;
|
|
@@ -883,18 +840,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
883
840
|
size: string;
|
|
884
841
|
} & {
|
|
885
842
|
date?: string | null | undefined;
|
|
886
|
-
text?: string;
|
|
887
843
|
} & {
|
|
888
844
|
__TYPE__: "FileLink";
|
|
889
845
|
} & {
|
|
890
846
|
size?: string;
|
|
891
|
-
text?: string;
|
|
892
847
|
}) | ({
|
|
893
848
|
__TYPE__: "DocumentLink";
|
|
894
849
|
} & {
|
|
895
850
|
id: string;
|
|
896
|
-
} & {
|
|
897
|
-
text?: string;
|
|
898
851
|
}) | ({
|
|
899
852
|
__TYPE__: "ExternalLink";
|
|
900
853
|
} & {
|
|
@@ -905,7 +858,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
905
858
|
preview?: {
|
|
906
859
|
title?: string;
|
|
907
860
|
} | null | undefined;
|
|
908
|
-
text?: string;
|
|
909
861
|
}) | null | undefined;
|
|
910
862
|
};
|
|
911
863
|
} & {
|
|
@@ -953,7 +905,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
953
905
|
kind: string;
|
|
954
906
|
} & {
|
|
955
907
|
date?: string | null | undefined;
|
|
956
|
-
text?: string;
|
|
957
908
|
}) | ({
|
|
958
909
|
id: string;
|
|
959
910
|
url: string;
|
|
@@ -962,18 +913,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
962
913
|
size: string;
|
|
963
914
|
} & {
|
|
964
915
|
date?: string | null | undefined;
|
|
965
|
-
text?: string;
|
|
966
916
|
} & {
|
|
967
917
|
__TYPE__: "FileLink";
|
|
968
918
|
} & {
|
|
969
919
|
size?: string;
|
|
970
|
-
text?: string;
|
|
971
920
|
}) | ({
|
|
972
921
|
__TYPE__: "DocumentLink";
|
|
973
922
|
} & {
|
|
974
923
|
id: string;
|
|
975
|
-
} & {
|
|
976
|
-
text?: string;
|
|
977
924
|
}) | ({
|
|
978
925
|
__TYPE__: "ExternalLink";
|
|
979
926
|
} & {
|
|
@@ -984,7 +931,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
984
931
|
preview?: {
|
|
985
932
|
title?: string;
|
|
986
933
|
} | null | undefined;
|
|
987
|
-
text?: string;
|
|
988
934
|
});
|
|
989
935
|
start: number;
|
|
990
936
|
end: number;
|
|
@@ -1138,7 +1084,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1138
1084
|
kind: string;
|
|
1139
1085
|
} & {
|
|
1140
1086
|
date?: string | null | undefined;
|
|
1141
|
-
text?: string;
|
|
1142
1087
|
}) | ({
|
|
1143
1088
|
id: string;
|
|
1144
1089
|
url: string;
|
|
@@ -1147,18 +1092,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1147
1092
|
size: string;
|
|
1148
1093
|
} & {
|
|
1149
1094
|
date?: string | null | undefined;
|
|
1150
|
-
text?: string;
|
|
1151
1095
|
} & {
|
|
1152
1096
|
__TYPE__: "FileLink";
|
|
1153
1097
|
} & {
|
|
1154
1098
|
size?: string;
|
|
1155
|
-
text?: string;
|
|
1156
1099
|
}) | ({
|
|
1157
1100
|
__TYPE__: "DocumentLink";
|
|
1158
1101
|
} & {
|
|
1159
1102
|
id: string;
|
|
1160
|
-
} & {
|
|
1161
|
-
text?: string;
|
|
1162
1103
|
}) | ({
|
|
1163
1104
|
__TYPE__: "ExternalLink";
|
|
1164
1105
|
} & {
|
|
@@ -1169,7 +1110,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1169
1110
|
preview?: {
|
|
1170
1111
|
title?: string;
|
|
1171
1112
|
} | null | undefined;
|
|
1172
|
-
text?: string;
|
|
1173
1113
|
});
|
|
1174
1114
|
} | {
|
|
1175
1115
|
__TYPE__: "StructuredTextContent";
|
|
@@ -1210,7 +1150,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1210
1150
|
kind: string;
|
|
1211
1151
|
} & {
|
|
1212
1152
|
date?: string | null | undefined;
|
|
1213
|
-
text?: string;
|
|
1214
1153
|
}) | ({
|
|
1215
1154
|
id: string;
|
|
1216
1155
|
url: string;
|
|
@@ -1219,18 +1158,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1219
1158
|
size: string;
|
|
1220
1159
|
} & {
|
|
1221
1160
|
date?: string | null | undefined;
|
|
1222
|
-
text?: string;
|
|
1223
1161
|
} & {
|
|
1224
1162
|
__TYPE__: "FileLink";
|
|
1225
1163
|
} & {
|
|
1226
1164
|
size?: string;
|
|
1227
|
-
text?: string;
|
|
1228
1165
|
}) | ({
|
|
1229
1166
|
__TYPE__: "DocumentLink";
|
|
1230
1167
|
} & {
|
|
1231
1168
|
id: string;
|
|
1232
|
-
} & {
|
|
1233
|
-
text?: string;
|
|
1234
1169
|
}) | ({
|
|
1235
1170
|
__TYPE__: "ExternalLink";
|
|
1236
1171
|
} & {
|
|
@@ -1241,7 +1176,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1241
1176
|
preview?: {
|
|
1242
1177
|
title?: string;
|
|
1243
1178
|
} | null | undefined;
|
|
1244
|
-
text?: string;
|
|
1245
1179
|
}) | null | undefined;
|
|
1246
1180
|
};
|
|
1247
1181
|
} & {
|
|
@@ -1289,7 +1223,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1289
1223
|
kind: string;
|
|
1290
1224
|
} & {
|
|
1291
1225
|
date?: string | null | undefined;
|
|
1292
|
-
text?: string;
|
|
1293
1226
|
}) | ({
|
|
1294
1227
|
id: string;
|
|
1295
1228
|
url: string;
|
|
@@ -1298,18 +1231,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1298
1231
|
size: string;
|
|
1299
1232
|
} & {
|
|
1300
1233
|
date?: string | null | undefined;
|
|
1301
|
-
text?: string;
|
|
1302
1234
|
} & {
|
|
1303
1235
|
__TYPE__: "FileLink";
|
|
1304
1236
|
} & {
|
|
1305
1237
|
size?: string;
|
|
1306
|
-
text?: string;
|
|
1307
1238
|
}) | ({
|
|
1308
1239
|
__TYPE__: "DocumentLink";
|
|
1309
1240
|
} & {
|
|
1310
1241
|
id: string;
|
|
1311
|
-
} & {
|
|
1312
|
-
text?: string;
|
|
1313
1242
|
}) | ({
|
|
1314
1243
|
__TYPE__: "ExternalLink";
|
|
1315
1244
|
} & {
|
|
@@ -1320,7 +1249,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1320
1249
|
preview?: {
|
|
1321
1250
|
title?: string;
|
|
1322
1251
|
} | null | undefined;
|
|
1323
|
-
text?: string;
|
|
1324
1252
|
});
|
|
1325
1253
|
start: number;
|
|
1326
1254
|
end: number;
|
|
@@ -1472,7 +1400,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1472
1400
|
kind: string;
|
|
1473
1401
|
} & {
|
|
1474
1402
|
date?: string | null | undefined;
|
|
1475
|
-
text?: string;
|
|
1476
1403
|
}) | ({
|
|
1477
1404
|
id: string;
|
|
1478
1405
|
url: string;
|
|
@@ -1481,18 +1408,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1481
1408
|
size: string;
|
|
1482
1409
|
} & {
|
|
1483
1410
|
date?: string | null | undefined;
|
|
1484
|
-
text?: string;
|
|
1485
1411
|
} & {
|
|
1486
1412
|
__TYPE__: "FileLink";
|
|
1487
1413
|
} & {
|
|
1488
1414
|
size?: string;
|
|
1489
|
-
text?: string;
|
|
1490
1415
|
}) | ({
|
|
1491
1416
|
__TYPE__: "DocumentLink";
|
|
1492
1417
|
} & {
|
|
1493
1418
|
id: string;
|
|
1494
|
-
} & {
|
|
1495
|
-
text?: string;
|
|
1496
1419
|
}) | ({
|
|
1497
1420
|
__TYPE__: "ExternalLink";
|
|
1498
1421
|
} & {
|
|
@@ -1503,7 +1426,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1503
1426
|
preview?: {
|
|
1504
1427
|
title?: string;
|
|
1505
1428
|
} | null | undefined;
|
|
1506
|
-
text?: string;
|
|
1507
1429
|
});
|
|
1508
1430
|
} | {
|
|
1509
1431
|
__TYPE__: "StructuredTextContent";
|
|
@@ -1544,7 +1466,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1544
1466
|
kind: string;
|
|
1545
1467
|
} & {
|
|
1546
1468
|
date?: string | null | undefined;
|
|
1547
|
-
text?: string;
|
|
1548
1469
|
}) | ({
|
|
1549
1470
|
id: string;
|
|
1550
1471
|
url: string;
|
|
@@ -1553,18 +1474,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1553
1474
|
size: string;
|
|
1554
1475
|
} & {
|
|
1555
1476
|
date?: string | null | undefined;
|
|
1556
|
-
text?: string;
|
|
1557
1477
|
} & {
|
|
1558
1478
|
__TYPE__: "FileLink";
|
|
1559
1479
|
} & {
|
|
1560
1480
|
size?: string;
|
|
1561
|
-
text?: string;
|
|
1562
1481
|
}) | ({
|
|
1563
1482
|
__TYPE__: "DocumentLink";
|
|
1564
1483
|
} & {
|
|
1565
1484
|
id: string;
|
|
1566
|
-
} & {
|
|
1567
|
-
text?: string;
|
|
1568
1485
|
}) | ({
|
|
1569
1486
|
__TYPE__: "ExternalLink";
|
|
1570
1487
|
} & {
|
|
@@ -1575,7 +1492,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1575
1492
|
preview?: {
|
|
1576
1493
|
title?: string;
|
|
1577
1494
|
} | null | undefined;
|
|
1578
|
-
text?: string;
|
|
1579
1495
|
}) | null | undefined;
|
|
1580
1496
|
};
|
|
1581
1497
|
} & {
|
|
@@ -1623,7 +1539,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1623
1539
|
kind: string;
|
|
1624
1540
|
} & {
|
|
1625
1541
|
date?: string | null | undefined;
|
|
1626
|
-
text?: string;
|
|
1627
1542
|
}) | ({
|
|
1628
1543
|
id: string;
|
|
1629
1544
|
url: string;
|
|
@@ -1632,18 +1547,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1632
1547
|
size: string;
|
|
1633
1548
|
} & {
|
|
1634
1549
|
date?: string | null | undefined;
|
|
1635
|
-
text?: string;
|
|
1636
1550
|
} & {
|
|
1637
1551
|
__TYPE__: "FileLink";
|
|
1638
1552
|
} & {
|
|
1639
1553
|
size?: string;
|
|
1640
|
-
text?: string;
|
|
1641
1554
|
}) | ({
|
|
1642
1555
|
__TYPE__: "DocumentLink";
|
|
1643
1556
|
} & {
|
|
1644
1557
|
id: string;
|
|
1645
|
-
} & {
|
|
1646
|
-
text?: string;
|
|
1647
1558
|
}) | ({
|
|
1648
1559
|
__TYPE__: "ExternalLink";
|
|
1649
1560
|
} & {
|
|
@@ -1654,7 +1565,6 @@ export declare const isSlicesContent: (u: unknown) => u is {
|
|
|
1654
1565
|
preview?: {
|
|
1655
1566
|
title?: string;
|
|
1656
1567
|
} | null | undefined;
|
|
1657
|
-
text?: string;
|
|
1658
1568
|
});
|
|
1659
1569
|
start: number;
|
|
1660
1570
|
end: number;
|
|
@@ -1814,7 +1724,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1814
1724
|
kind: string;
|
|
1815
1725
|
} & {
|
|
1816
1726
|
date?: string | null | undefined;
|
|
1817
|
-
text?: string;
|
|
1818
1727
|
}) | ({
|
|
1819
1728
|
id: string;
|
|
1820
1729
|
url: string;
|
|
@@ -1823,18 +1732,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1823
1732
|
size: string;
|
|
1824
1733
|
} & {
|
|
1825
1734
|
date?: string | null | undefined;
|
|
1826
|
-
text?: string;
|
|
1827
1735
|
} & {
|
|
1828
1736
|
__TYPE__: "FileLink";
|
|
1829
1737
|
} & {
|
|
1830
1738
|
size?: string;
|
|
1831
|
-
text?: string;
|
|
1832
1739
|
}) | ({
|
|
1833
1740
|
__TYPE__: "DocumentLink";
|
|
1834
1741
|
} & {
|
|
1835
1742
|
id: string;
|
|
1836
|
-
} & {
|
|
1837
|
-
text?: string;
|
|
1838
1743
|
}) | ({
|
|
1839
1744
|
__TYPE__: "ExternalLink";
|
|
1840
1745
|
} & {
|
|
@@ -1845,7 +1750,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1845
1750
|
preview?: {
|
|
1846
1751
|
title?: string;
|
|
1847
1752
|
} | null | undefined;
|
|
1848
|
-
text?: string;
|
|
1849
1753
|
});
|
|
1850
1754
|
} | {
|
|
1851
1755
|
__TYPE__: "StructuredTextContent";
|
|
@@ -1886,7 +1790,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1886
1790
|
kind: string;
|
|
1887
1791
|
} & {
|
|
1888
1792
|
date?: string | null | undefined;
|
|
1889
|
-
text?: string;
|
|
1890
1793
|
}) | ({
|
|
1891
1794
|
id: string;
|
|
1892
1795
|
url: string;
|
|
@@ -1895,18 +1798,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1895
1798
|
size: string;
|
|
1896
1799
|
} & {
|
|
1897
1800
|
date?: string | null | undefined;
|
|
1898
|
-
text?: string;
|
|
1899
1801
|
} & {
|
|
1900
1802
|
__TYPE__: "FileLink";
|
|
1901
1803
|
} & {
|
|
1902
1804
|
size?: string;
|
|
1903
|
-
text?: string;
|
|
1904
1805
|
}) | ({
|
|
1905
1806
|
__TYPE__: "DocumentLink";
|
|
1906
1807
|
} & {
|
|
1907
1808
|
id: string;
|
|
1908
|
-
} & {
|
|
1909
|
-
text?: string;
|
|
1910
1809
|
}) | ({
|
|
1911
1810
|
__TYPE__: "ExternalLink";
|
|
1912
1811
|
} & {
|
|
@@ -1917,7 +1816,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1917
1816
|
preview?: {
|
|
1918
1817
|
title?: string;
|
|
1919
1818
|
} | null | undefined;
|
|
1920
|
-
text?: string;
|
|
1921
1819
|
}) | null | undefined;
|
|
1922
1820
|
};
|
|
1923
1821
|
} & {
|
|
@@ -1965,7 +1863,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1965
1863
|
kind: string;
|
|
1966
1864
|
} & {
|
|
1967
1865
|
date?: string | null | undefined;
|
|
1968
|
-
text?: string;
|
|
1969
1866
|
}) | ({
|
|
1970
1867
|
id: string;
|
|
1971
1868
|
url: string;
|
|
@@ -1974,18 +1871,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1974
1871
|
size: string;
|
|
1975
1872
|
} & {
|
|
1976
1873
|
date?: string | null | undefined;
|
|
1977
|
-
text?: string;
|
|
1978
1874
|
} & {
|
|
1979
1875
|
__TYPE__: "FileLink";
|
|
1980
1876
|
} & {
|
|
1981
1877
|
size?: string;
|
|
1982
|
-
text?: string;
|
|
1983
1878
|
}) | ({
|
|
1984
1879
|
__TYPE__: "DocumentLink";
|
|
1985
1880
|
} & {
|
|
1986
1881
|
id: string;
|
|
1987
|
-
} & {
|
|
1988
|
-
text?: string;
|
|
1989
1882
|
}) | ({
|
|
1990
1883
|
__TYPE__: "ExternalLink";
|
|
1991
1884
|
} & {
|
|
@@ -1996,7 +1889,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1996
1889
|
preview?: {
|
|
1997
1890
|
title?: string;
|
|
1998
1891
|
} | null | undefined;
|
|
1999
|
-
text?: string;
|
|
2000
1892
|
});
|
|
2001
1893
|
start: number;
|
|
2002
1894
|
end: number;
|
|
@@ -2147,7 +2039,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2147
2039
|
kind: string;
|
|
2148
2040
|
} & {
|
|
2149
2041
|
date?: string | null | undefined;
|
|
2150
|
-
text?: string;
|
|
2151
2042
|
}) | ({
|
|
2152
2043
|
id: string;
|
|
2153
2044
|
url: string;
|
|
@@ -2156,18 +2047,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2156
2047
|
size: string;
|
|
2157
2048
|
} & {
|
|
2158
2049
|
date?: string | null | undefined;
|
|
2159
|
-
text?: string;
|
|
2160
2050
|
} & {
|
|
2161
2051
|
__TYPE__: "FileLink";
|
|
2162
2052
|
} & {
|
|
2163
2053
|
size?: string;
|
|
2164
|
-
text?: string;
|
|
2165
2054
|
}) | ({
|
|
2166
2055
|
__TYPE__: "DocumentLink";
|
|
2167
2056
|
} & {
|
|
2168
2057
|
id: string;
|
|
2169
|
-
} & {
|
|
2170
|
-
text?: string;
|
|
2171
2058
|
}) | ({
|
|
2172
2059
|
__TYPE__: "ExternalLink";
|
|
2173
2060
|
} & {
|
|
@@ -2178,7 +2065,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2178
2065
|
preview?: {
|
|
2179
2066
|
title?: string;
|
|
2180
2067
|
} | null | undefined;
|
|
2181
|
-
text?: string;
|
|
2182
2068
|
});
|
|
2183
2069
|
} | {
|
|
2184
2070
|
__TYPE__: "StructuredTextContent";
|
|
@@ -2219,7 +2105,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2219
2105
|
kind: string;
|
|
2220
2106
|
} & {
|
|
2221
2107
|
date?: string | null | undefined;
|
|
2222
|
-
text?: string;
|
|
2223
2108
|
}) | ({
|
|
2224
2109
|
id: string;
|
|
2225
2110
|
url: string;
|
|
@@ -2228,18 +2113,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2228
2113
|
size: string;
|
|
2229
2114
|
} & {
|
|
2230
2115
|
date?: string | null | undefined;
|
|
2231
|
-
text?: string;
|
|
2232
2116
|
} & {
|
|
2233
2117
|
__TYPE__: "FileLink";
|
|
2234
2118
|
} & {
|
|
2235
2119
|
size?: string;
|
|
2236
|
-
text?: string;
|
|
2237
2120
|
}) | ({
|
|
2238
2121
|
__TYPE__: "DocumentLink";
|
|
2239
2122
|
} & {
|
|
2240
2123
|
id: string;
|
|
2241
|
-
} & {
|
|
2242
|
-
text?: string;
|
|
2243
2124
|
}) | ({
|
|
2244
2125
|
__TYPE__: "ExternalLink";
|
|
2245
2126
|
} & {
|
|
@@ -2250,7 +2131,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2250
2131
|
preview?: {
|
|
2251
2132
|
title?: string;
|
|
2252
2133
|
} | null | undefined;
|
|
2253
|
-
text?: string;
|
|
2254
2134
|
}) | null | undefined;
|
|
2255
2135
|
};
|
|
2256
2136
|
} & {
|
|
@@ -2298,7 +2178,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2298
2178
|
kind: string;
|
|
2299
2179
|
} & {
|
|
2300
2180
|
date?: string | null | undefined;
|
|
2301
|
-
text?: string;
|
|
2302
2181
|
}) | ({
|
|
2303
2182
|
id: string;
|
|
2304
2183
|
url: string;
|
|
@@ -2307,18 +2186,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2307
2186
|
size: string;
|
|
2308
2187
|
} & {
|
|
2309
2188
|
date?: string | null | undefined;
|
|
2310
|
-
text?: string;
|
|
2311
2189
|
} & {
|
|
2312
2190
|
__TYPE__: "FileLink";
|
|
2313
2191
|
} & {
|
|
2314
2192
|
size?: string;
|
|
2315
|
-
text?: string;
|
|
2316
2193
|
}) | ({
|
|
2317
2194
|
__TYPE__: "DocumentLink";
|
|
2318
2195
|
} & {
|
|
2319
2196
|
id: string;
|
|
2320
|
-
} & {
|
|
2321
|
-
text?: string;
|
|
2322
2197
|
}) | ({
|
|
2323
2198
|
__TYPE__: "ExternalLink";
|
|
2324
2199
|
} & {
|
|
@@ -2329,7 +2204,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2329
2204
|
preview?: {
|
|
2330
2205
|
title?: string;
|
|
2331
2206
|
} | null | undefined;
|
|
2332
|
-
text?: string;
|
|
2333
2207
|
});
|
|
2334
2208
|
start: number;
|
|
2335
2209
|
end: number;
|
|
@@ -2481,7 +2355,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2481
2355
|
kind: string;
|
|
2482
2356
|
} & {
|
|
2483
2357
|
date?: string | null | undefined;
|
|
2484
|
-
text?: string;
|
|
2485
2358
|
}) | ({
|
|
2486
2359
|
id: string;
|
|
2487
2360
|
url: string;
|
|
@@ -2490,18 +2363,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2490
2363
|
size: string;
|
|
2491
2364
|
} & {
|
|
2492
2365
|
date?: string | null | undefined;
|
|
2493
|
-
text?: string;
|
|
2494
2366
|
} & {
|
|
2495
2367
|
__TYPE__: "FileLink";
|
|
2496
2368
|
} & {
|
|
2497
2369
|
size?: string;
|
|
2498
|
-
text?: string;
|
|
2499
2370
|
}) | ({
|
|
2500
2371
|
__TYPE__: "DocumentLink";
|
|
2501
2372
|
} & {
|
|
2502
2373
|
id: string;
|
|
2503
|
-
} & {
|
|
2504
|
-
text?: string;
|
|
2505
2374
|
}) | ({
|
|
2506
2375
|
__TYPE__: "ExternalLink";
|
|
2507
2376
|
} & {
|
|
@@ -2512,7 +2381,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2512
2381
|
preview?: {
|
|
2513
2382
|
title?: string;
|
|
2514
2383
|
} | null | undefined;
|
|
2515
|
-
text?: string;
|
|
2516
2384
|
});
|
|
2517
2385
|
} | {
|
|
2518
2386
|
__TYPE__: "StructuredTextContent";
|
|
@@ -2553,7 +2421,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2553
2421
|
kind: string;
|
|
2554
2422
|
} & {
|
|
2555
2423
|
date?: string | null | undefined;
|
|
2556
|
-
text?: string;
|
|
2557
2424
|
}) | ({
|
|
2558
2425
|
id: string;
|
|
2559
2426
|
url: string;
|
|
@@ -2562,18 +2429,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2562
2429
|
size: string;
|
|
2563
2430
|
} & {
|
|
2564
2431
|
date?: string | null | undefined;
|
|
2565
|
-
text?: string;
|
|
2566
2432
|
} & {
|
|
2567
2433
|
__TYPE__: "FileLink";
|
|
2568
2434
|
} & {
|
|
2569
2435
|
size?: string;
|
|
2570
|
-
text?: string;
|
|
2571
2436
|
}) | ({
|
|
2572
2437
|
__TYPE__: "DocumentLink";
|
|
2573
2438
|
} & {
|
|
2574
2439
|
id: string;
|
|
2575
|
-
} & {
|
|
2576
|
-
text?: string;
|
|
2577
2440
|
}) | ({
|
|
2578
2441
|
__TYPE__: "ExternalLink";
|
|
2579
2442
|
} & {
|
|
@@ -2584,7 +2447,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2584
2447
|
preview?: {
|
|
2585
2448
|
title?: string;
|
|
2586
2449
|
} | null | undefined;
|
|
2587
|
-
text?: string;
|
|
2588
2450
|
}) | null | undefined;
|
|
2589
2451
|
};
|
|
2590
2452
|
} & {
|
|
@@ -2632,7 +2494,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2632
2494
|
kind: string;
|
|
2633
2495
|
} & {
|
|
2634
2496
|
date?: string | null | undefined;
|
|
2635
|
-
text?: string;
|
|
2636
2497
|
}) | ({
|
|
2637
2498
|
id: string;
|
|
2638
2499
|
url: string;
|
|
@@ -2641,18 +2502,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2641
2502
|
size: string;
|
|
2642
2503
|
} & {
|
|
2643
2504
|
date?: string | null | undefined;
|
|
2644
|
-
text?: string;
|
|
2645
2505
|
} & {
|
|
2646
2506
|
__TYPE__: "FileLink";
|
|
2647
2507
|
} & {
|
|
2648
2508
|
size?: string;
|
|
2649
|
-
text?: string;
|
|
2650
2509
|
}) | ({
|
|
2651
2510
|
__TYPE__: "DocumentLink";
|
|
2652
2511
|
} & {
|
|
2653
2512
|
id: string;
|
|
2654
|
-
} & {
|
|
2655
|
-
text?: string;
|
|
2656
2513
|
}) | ({
|
|
2657
2514
|
__TYPE__: "ExternalLink";
|
|
2658
2515
|
} & {
|
|
@@ -2663,7 +2520,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2663
2520
|
preview?: {
|
|
2664
2521
|
title?: string;
|
|
2665
2522
|
} | null | undefined;
|
|
2666
|
-
text?: string;
|
|
2667
2523
|
});
|
|
2668
2524
|
start: number;
|
|
2669
2525
|
end: number;
|
|
@@ -2817,7 +2673,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2817
2673
|
kind: string;
|
|
2818
2674
|
} & {
|
|
2819
2675
|
date?: string | null | undefined;
|
|
2820
|
-
text?: string;
|
|
2821
2676
|
}) | ({
|
|
2822
2677
|
id: string;
|
|
2823
2678
|
url: string;
|
|
@@ -2826,18 +2681,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2826
2681
|
size: string;
|
|
2827
2682
|
} & {
|
|
2828
2683
|
date?: string | null | undefined;
|
|
2829
|
-
text?: string;
|
|
2830
2684
|
} & {
|
|
2831
2685
|
__TYPE__: "FileLink";
|
|
2832
2686
|
} & {
|
|
2833
2687
|
size?: string;
|
|
2834
|
-
text?: string;
|
|
2835
2688
|
}) | ({
|
|
2836
2689
|
__TYPE__: "DocumentLink";
|
|
2837
2690
|
} & {
|
|
2838
2691
|
id: string;
|
|
2839
|
-
} & {
|
|
2840
|
-
text?: string;
|
|
2841
2692
|
}) | ({
|
|
2842
2693
|
__TYPE__: "ExternalLink";
|
|
2843
2694
|
} & {
|
|
@@ -2848,7 +2699,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2848
2699
|
preview?: {
|
|
2849
2700
|
title?: string;
|
|
2850
2701
|
} | null | undefined;
|
|
2851
|
-
text?: string;
|
|
2852
2702
|
});
|
|
2853
2703
|
} | {
|
|
2854
2704
|
__TYPE__: "StructuredTextContent";
|
|
@@ -2889,7 +2739,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2889
2739
|
kind: string;
|
|
2890
2740
|
} & {
|
|
2891
2741
|
date?: string | null | undefined;
|
|
2892
|
-
text?: string;
|
|
2893
2742
|
}) | ({
|
|
2894
2743
|
id: string;
|
|
2895
2744
|
url: string;
|
|
@@ -2898,18 +2747,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2898
2747
|
size: string;
|
|
2899
2748
|
} & {
|
|
2900
2749
|
date?: string | null | undefined;
|
|
2901
|
-
text?: string;
|
|
2902
2750
|
} & {
|
|
2903
2751
|
__TYPE__: "FileLink";
|
|
2904
2752
|
} & {
|
|
2905
2753
|
size?: string;
|
|
2906
|
-
text?: string;
|
|
2907
2754
|
}) | ({
|
|
2908
2755
|
__TYPE__: "DocumentLink";
|
|
2909
2756
|
} & {
|
|
2910
2757
|
id: string;
|
|
2911
|
-
} & {
|
|
2912
|
-
text?: string;
|
|
2913
2758
|
}) | ({
|
|
2914
2759
|
__TYPE__: "ExternalLink";
|
|
2915
2760
|
} & {
|
|
@@ -2920,7 +2765,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2920
2765
|
preview?: {
|
|
2921
2766
|
title?: string;
|
|
2922
2767
|
} | null | undefined;
|
|
2923
|
-
text?: string;
|
|
2924
2768
|
}) | null | undefined;
|
|
2925
2769
|
};
|
|
2926
2770
|
} & {
|
|
@@ -2968,7 +2812,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2968
2812
|
kind: string;
|
|
2969
2813
|
} & {
|
|
2970
2814
|
date?: string | null | undefined;
|
|
2971
|
-
text?: string;
|
|
2972
2815
|
}) | ({
|
|
2973
2816
|
id: string;
|
|
2974
2817
|
url: string;
|
|
@@ -2977,18 +2820,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2977
2820
|
size: string;
|
|
2978
2821
|
} & {
|
|
2979
2822
|
date?: string | null | undefined;
|
|
2980
|
-
text?: string;
|
|
2981
2823
|
} & {
|
|
2982
2824
|
__TYPE__: "FileLink";
|
|
2983
2825
|
} & {
|
|
2984
2826
|
size?: string;
|
|
2985
|
-
text?: string;
|
|
2986
2827
|
}) | ({
|
|
2987
2828
|
__TYPE__: "DocumentLink";
|
|
2988
2829
|
} & {
|
|
2989
2830
|
id: string;
|
|
2990
|
-
} & {
|
|
2991
|
-
text?: string;
|
|
2992
2831
|
}) | ({
|
|
2993
2832
|
__TYPE__: "ExternalLink";
|
|
2994
2833
|
} & {
|
|
@@ -2999,7 +2838,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2999
2838
|
preview?: {
|
|
3000
2839
|
title?: string;
|
|
3001
2840
|
} | null | undefined;
|
|
3002
|
-
text?: string;
|
|
3003
2841
|
});
|
|
3004
2842
|
start: number;
|
|
3005
2843
|
end: number;
|
|
@@ -3151,7 +2989,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3151
2989
|
kind: string;
|
|
3152
2990
|
} & {
|
|
3153
2991
|
date?: string | null | undefined;
|
|
3154
|
-
text?: string;
|
|
3155
2992
|
}) | ({
|
|
3156
2993
|
id: string;
|
|
3157
2994
|
url: string;
|
|
@@ -3160,18 +2997,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3160
2997
|
size: string;
|
|
3161
2998
|
} & {
|
|
3162
2999
|
date?: string | null | undefined;
|
|
3163
|
-
text?: string;
|
|
3164
3000
|
} & {
|
|
3165
3001
|
__TYPE__: "FileLink";
|
|
3166
3002
|
} & {
|
|
3167
3003
|
size?: string;
|
|
3168
|
-
text?: string;
|
|
3169
3004
|
}) | ({
|
|
3170
3005
|
__TYPE__: "DocumentLink";
|
|
3171
3006
|
} & {
|
|
3172
3007
|
id: string;
|
|
3173
|
-
} & {
|
|
3174
|
-
text?: string;
|
|
3175
3008
|
}) | ({
|
|
3176
3009
|
__TYPE__: "ExternalLink";
|
|
3177
3010
|
} & {
|
|
@@ -3182,7 +3015,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3182
3015
|
preview?: {
|
|
3183
3016
|
title?: string;
|
|
3184
3017
|
} | null | undefined;
|
|
3185
|
-
text?: string;
|
|
3186
3018
|
});
|
|
3187
3019
|
} | {
|
|
3188
3020
|
__TYPE__: "StructuredTextContent";
|
|
@@ -3223,7 +3055,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3223
3055
|
kind: string;
|
|
3224
3056
|
} & {
|
|
3225
3057
|
date?: string | null | undefined;
|
|
3226
|
-
text?: string;
|
|
3227
3058
|
}) | ({
|
|
3228
3059
|
id: string;
|
|
3229
3060
|
url: string;
|
|
@@ -3232,18 +3063,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3232
3063
|
size: string;
|
|
3233
3064
|
} & {
|
|
3234
3065
|
date?: string | null | undefined;
|
|
3235
|
-
text?: string;
|
|
3236
3066
|
} & {
|
|
3237
3067
|
__TYPE__: "FileLink";
|
|
3238
3068
|
} & {
|
|
3239
3069
|
size?: string;
|
|
3240
|
-
text?: string;
|
|
3241
3070
|
}) | ({
|
|
3242
3071
|
__TYPE__: "DocumentLink";
|
|
3243
3072
|
} & {
|
|
3244
3073
|
id: string;
|
|
3245
|
-
} & {
|
|
3246
|
-
text?: string;
|
|
3247
3074
|
}) | ({
|
|
3248
3075
|
__TYPE__: "ExternalLink";
|
|
3249
3076
|
} & {
|
|
@@ -3254,7 +3081,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3254
3081
|
preview?: {
|
|
3255
3082
|
title?: string;
|
|
3256
3083
|
} | null | undefined;
|
|
3257
|
-
text?: string;
|
|
3258
3084
|
}) | null | undefined;
|
|
3259
3085
|
};
|
|
3260
3086
|
} & {
|
|
@@ -3302,7 +3128,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3302
3128
|
kind: string;
|
|
3303
3129
|
} & {
|
|
3304
3130
|
date?: string | null | undefined;
|
|
3305
|
-
text?: string;
|
|
3306
3131
|
}) | ({
|
|
3307
3132
|
id: string;
|
|
3308
3133
|
url: string;
|
|
@@ -3311,18 +3136,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3311
3136
|
size: string;
|
|
3312
3137
|
} & {
|
|
3313
3138
|
date?: string | null | undefined;
|
|
3314
|
-
text?: string;
|
|
3315
3139
|
} & {
|
|
3316
3140
|
__TYPE__: "FileLink";
|
|
3317
3141
|
} & {
|
|
3318
3142
|
size?: string;
|
|
3319
|
-
text?: string;
|
|
3320
3143
|
}) | ({
|
|
3321
3144
|
__TYPE__: "DocumentLink";
|
|
3322
3145
|
} & {
|
|
3323
3146
|
id: string;
|
|
3324
|
-
} & {
|
|
3325
|
-
text?: string;
|
|
3326
3147
|
}) | ({
|
|
3327
3148
|
__TYPE__: "ExternalLink";
|
|
3328
3149
|
} & {
|
|
@@ -3333,7 +3154,6 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3333
3154
|
preview?: {
|
|
3334
3155
|
title?: string;
|
|
3335
3156
|
} | null | undefined;
|
|
3336
|
-
text?: string;
|
|
3337
3157
|
});
|
|
3338
3158
|
start: number;
|
|
3339
3159
|
end: number;
|
|
@@ -3492,7 +3312,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3492
3312
|
kind: t.StringC;
|
|
3493
3313
|
}>, t.PartialC<{
|
|
3494
3314
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3495
|
-
text: t.StringC;
|
|
3496
3315
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3497
3316
|
id: t.StringC;
|
|
3498
3317
|
url: t.StringC;
|
|
@@ -3501,19 +3320,15 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3501
3320
|
size: t.StringC;
|
|
3502
3321
|
}>, t.PartialC<{
|
|
3503
3322
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3504
|
-
text: t.StringC;
|
|
3505
3323
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3506
3324
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
3507
3325
|
}>, t.PartialC<{
|
|
3508
3326
|
size: t.StringC;
|
|
3509
|
-
text: t.StringC;
|
|
3510
3327
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3511
3328
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
3512
|
-
}>>, t.ExactC<t.
|
|
3329
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3513
3330
|
id: t.Type<string, string, unknown>;
|
|
3514
|
-
}>, t.
|
|
3515
|
-
text: t.StringC;
|
|
3516
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3331
|
+
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3517
3332
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
3518
3333
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3519
3334
|
url: t.StringC;
|
|
@@ -3525,7 +3340,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3525
3340
|
}, {
|
|
3526
3341
|
title?: string;
|
|
3527
3342
|
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
3528
|
-
text: t.StringC;
|
|
3529
3343
|
}>]>>]>]>;
|
|
3530
3344
|
}>>, t.ExactC<t.TypeC<{
|
|
3531
3345
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -3566,7 +3380,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3566
3380
|
kind: string;
|
|
3567
3381
|
} & {
|
|
3568
3382
|
date?: string | null | undefined;
|
|
3569
|
-
text?: string;
|
|
3570
3383
|
}) | ({
|
|
3571
3384
|
id: string;
|
|
3572
3385
|
url: string;
|
|
@@ -3575,18 +3388,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3575
3388
|
size: string;
|
|
3576
3389
|
} & {
|
|
3577
3390
|
date?: string | null | undefined;
|
|
3578
|
-
text?: string;
|
|
3579
3391
|
} & {
|
|
3580
3392
|
__TYPE__: "FileLink";
|
|
3581
3393
|
} & {
|
|
3582
3394
|
size?: string;
|
|
3583
|
-
text?: string;
|
|
3584
3395
|
}) | ({
|
|
3585
3396
|
__TYPE__: "DocumentLink";
|
|
3586
3397
|
} & {
|
|
3587
3398
|
id: string;
|
|
3588
|
-
} & {
|
|
3589
|
-
text?: string;
|
|
3590
3399
|
}) | ({
|
|
3591
3400
|
__TYPE__: "ExternalLink";
|
|
3592
3401
|
} & {
|
|
@@ -3597,7 +3406,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3597
3406
|
preview?: {
|
|
3598
3407
|
title?: string;
|
|
3599
3408
|
} | null | undefined;
|
|
3600
|
-
text?: string;
|
|
3601
3409
|
}), ({
|
|
3602
3410
|
__TYPE__: "ImageLink";
|
|
3603
3411
|
} & {
|
|
@@ -3610,7 +3418,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3610
3418
|
kind: string;
|
|
3611
3419
|
} & {
|
|
3612
3420
|
date?: string | null | undefined;
|
|
3613
|
-
text?: string;
|
|
3614
3421
|
}) | ({
|
|
3615
3422
|
id: string;
|
|
3616
3423
|
url: string;
|
|
@@ -3619,18 +3426,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3619
3426
|
size: string;
|
|
3620
3427
|
} & {
|
|
3621
3428
|
date?: string | null | undefined;
|
|
3622
|
-
text?: string;
|
|
3623
3429
|
} & {
|
|
3624
3430
|
__TYPE__: "FileLink";
|
|
3625
3431
|
} & {
|
|
3626
3432
|
size?: string;
|
|
3627
|
-
text?: string;
|
|
3628
3433
|
}) | ({
|
|
3629
3434
|
__TYPE__: "DocumentLink";
|
|
3630
3435
|
} & {
|
|
3631
3436
|
id: string;
|
|
3632
|
-
} & {
|
|
3633
|
-
text?: string;
|
|
3634
3437
|
}) | ({
|
|
3635
3438
|
__TYPE__: "ExternalLink";
|
|
3636
3439
|
} & {
|
|
@@ -3641,7 +3444,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3641
3444
|
preview?: {
|
|
3642
3445
|
title?: string;
|
|
3643
3446
|
} | null | undefined;
|
|
3644
|
-
text?: string;
|
|
3645
3447
|
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
3646
3448
|
}>]>;
|
|
3647
3449
|
}>, t.PartialC<{
|
|
@@ -3689,7 +3491,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3689
3491
|
kind: string;
|
|
3690
3492
|
} & {
|
|
3691
3493
|
date?: string | null | undefined;
|
|
3692
|
-
text?: string;
|
|
3693
3494
|
}) | ({
|
|
3694
3495
|
id: string;
|
|
3695
3496
|
url: string;
|
|
@@ -3698,18 +3499,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3698
3499
|
size: string;
|
|
3699
3500
|
} & {
|
|
3700
3501
|
date?: string | null | undefined;
|
|
3701
|
-
text?: string;
|
|
3702
3502
|
} & {
|
|
3703
3503
|
__TYPE__: "FileLink";
|
|
3704
3504
|
} & {
|
|
3705
3505
|
size?: string;
|
|
3706
|
-
text?: string;
|
|
3707
3506
|
}) | ({
|
|
3708
3507
|
__TYPE__: "DocumentLink";
|
|
3709
3508
|
} & {
|
|
3710
3509
|
id: string;
|
|
3711
|
-
} & {
|
|
3712
|
-
text?: string;
|
|
3713
3510
|
}) | ({
|
|
3714
3511
|
__TYPE__: "ExternalLink";
|
|
3715
3512
|
} & {
|
|
@@ -3720,7 +3517,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3720
3517
|
preview?: {
|
|
3721
3518
|
title?: string;
|
|
3722
3519
|
} | null | undefined;
|
|
3723
|
-
text?: string;
|
|
3724
3520
|
});
|
|
3725
3521
|
start: number;
|
|
3726
3522
|
end: number;
|
|
@@ -3747,7 +3543,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3747
3543
|
kind: string;
|
|
3748
3544
|
} & {
|
|
3749
3545
|
date?: string | null | undefined;
|
|
3750
|
-
text?: string;
|
|
3751
3546
|
}) | ({
|
|
3752
3547
|
id: string;
|
|
3753
3548
|
url: string;
|
|
@@ -3756,18 +3551,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3756
3551
|
size: string;
|
|
3757
3552
|
} & {
|
|
3758
3553
|
date?: string | null | undefined;
|
|
3759
|
-
text?: string;
|
|
3760
3554
|
} & {
|
|
3761
3555
|
__TYPE__: "FileLink";
|
|
3762
3556
|
} & {
|
|
3763
3557
|
size?: string;
|
|
3764
|
-
text?: string;
|
|
3765
3558
|
}) | ({
|
|
3766
3559
|
__TYPE__: "DocumentLink";
|
|
3767
3560
|
} & {
|
|
3768
3561
|
id: string;
|
|
3769
|
-
} & {
|
|
3770
|
-
text?: string;
|
|
3771
3562
|
}) | ({
|
|
3772
3563
|
__TYPE__: "ExternalLink";
|
|
3773
3564
|
} & {
|
|
@@ -3778,7 +3569,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3778
3569
|
preview?: {
|
|
3779
3570
|
title?: string;
|
|
3780
3571
|
} | null | undefined;
|
|
3781
|
-
text?: string;
|
|
3782
3572
|
});
|
|
3783
3573
|
start: number;
|
|
3784
3574
|
end: number;
|
|
@@ -3927,7 +3717,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3927
3717
|
kind: t.StringC;
|
|
3928
3718
|
}>, t.PartialC<{
|
|
3929
3719
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3930
|
-
text: t.StringC;
|
|
3931
3720
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3932
3721
|
id: t.StringC;
|
|
3933
3722
|
url: t.StringC;
|
|
@@ -3936,19 +3725,15 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3936
3725
|
size: t.StringC;
|
|
3937
3726
|
}>, t.PartialC<{
|
|
3938
3727
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
3939
|
-
text: t.StringC;
|
|
3940
3728
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3941
3729
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
3942
3730
|
}>, t.PartialC<{
|
|
3943
3731
|
size: t.StringC;
|
|
3944
|
-
text: t.StringC;
|
|
3945
3732
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3946
3733
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
3947
|
-
}>>, t.ExactC<t.
|
|
3734
|
+
}>>, t.ExactC<t.TypeC<{
|
|
3948
3735
|
id: t.Type<string, string, unknown>;
|
|
3949
|
-
}>, t.
|
|
3950
|
-
text: t.StringC;
|
|
3951
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3736
|
+
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3952
3737
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
3953
3738
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3954
3739
|
url: t.StringC;
|
|
@@ -3960,7 +3745,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
3960
3745
|
}, {
|
|
3961
3746
|
title?: string;
|
|
3962
3747
|
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
3963
|
-
text: t.StringC;
|
|
3964
3748
|
}>]>>]>]>;
|
|
3965
3749
|
}>>, t.ExactC<t.TypeC<{
|
|
3966
3750
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -4001,7 +3785,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4001
3785
|
kind: string;
|
|
4002
3786
|
} & {
|
|
4003
3787
|
date?: string | null | undefined;
|
|
4004
|
-
text?: string;
|
|
4005
3788
|
}) | ({
|
|
4006
3789
|
id: string;
|
|
4007
3790
|
url: string;
|
|
@@ -4010,18 +3793,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4010
3793
|
size: string;
|
|
4011
3794
|
} & {
|
|
4012
3795
|
date?: string | null | undefined;
|
|
4013
|
-
text?: string;
|
|
4014
3796
|
} & {
|
|
4015
3797
|
__TYPE__: "FileLink";
|
|
4016
3798
|
} & {
|
|
4017
3799
|
size?: string;
|
|
4018
|
-
text?: string;
|
|
4019
3800
|
}) | ({
|
|
4020
3801
|
__TYPE__: "DocumentLink";
|
|
4021
3802
|
} & {
|
|
4022
3803
|
id: string;
|
|
4023
|
-
} & {
|
|
4024
|
-
text?: string;
|
|
4025
3804
|
}) | ({
|
|
4026
3805
|
__TYPE__: "ExternalLink";
|
|
4027
3806
|
} & {
|
|
@@ -4032,7 +3811,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4032
3811
|
preview?: {
|
|
4033
3812
|
title?: string;
|
|
4034
3813
|
} | null | undefined;
|
|
4035
|
-
text?: string;
|
|
4036
3814
|
}), ({
|
|
4037
3815
|
__TYPE__: "ImageLink";
|
|
4038
3816
|
} & {
|
|
@@ -4045,7 +3823,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4045
3823
|
kind: string;
|
|
4046
3824
|
} & {
|
|
4047
3825
|
date?: string | null | undefined;
|
|
4048
|
-
text?: string;
|
|
4049
3826
|
}) | ({
|
|
4050
3827
|
id: string;
|
|
4051
3828
|
url: string;
|
|
@@ -4054,18 +3831,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4054
3831
|
size: string;
|
|
4055
3832
|
} & {
|
|
4056
3833
|
date?: string | null | undefined;
|
|
4057
|
-
text?: string;
|
|
4058
3834
|
} & {
|
|
4059
3835
|
__TYPE__: "FileLink";
|
|
4060
3836
|
} & {
|
|
4061
3837
|
size?: string;
|
|
4062
|
-
text?: string;
|
|
4063
3838
|
}) | ({
|
|
4064
3839
|
__TYPE__: "DocumentLink";
|
|
4065
3840
|
} & {
|
|
4066
3841
|
id: string;
|
|
4067
|
-
} & {
|
|
4068
|
-
text?: string;
|
|
4069
3842
|
}) | ({
|
|
4070
3843
|
__TYPE__: "ExternalLink";
|
|
4071
3844
|
} & {
|
|
@@ -4076,7 +3849,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4076
3849
|
preview?: {
|
|
4077
3850
|
title?: string;
|
|
4078
3851
|
} | null | undefined;
|
|
4079
|
-
text?: string;
|
|
4080
3852
|
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
4081
3853
|
}>]>;
|
|
4082
3854
|
}>, t.PartialC<{
|
|
@@ -4124,7 +3896,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4124
3896
|
kind: string;
|
|
4125
3897
|
} & {
|
|
4126
3898
|
date?: string | null | undefined;
|
|
4127
|
-
text?: string;
|
|
4128
3899
|
}) | ({
|
|
4129
3900
|
id: string;
|
|
4130
3901
|
url: string;
|
|
@@ -4133,18 +3904,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4133
3904
|
size: string;
|
|
4134
3905
|
} & {
|
|
4135
3906
|
date?: string | null | undefined;
|
|
4136
|
-
text?: string;
|
|
4137
3907
|
} & {
|
|
4138
3908
|
__TYPE__: "FileLink";
|
|
4139
3909
|
} & {
|
|
4140
3910
|
size?: string;
|
|
4141
|
-
text?: string;
|
|
4142
3911
|
}) | ({
|
|
4143
3912
|
__TYPE__: "DocumentLink";
|
|
4144
3913
|
} & {
|
|
4145
3914
|
id: string;
|
|
4146
|
-
} & {
|
|
4147
|
-
text?: string;
|
|
4148
3915
|
}) | ({
|
|
4149
3916
|
__TYPE__: "ExternalLink";
|
|
4150
3917
|
} & {
|
|
@@ -4155,7 +3922,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4155
3922
|
preview?: {
|
|
4156
3923
|
title?: string;
|
|
4157
3924
|
} | null | undefined;
|
|
4158
|
-
text?: string;
|
|
4159
3925
|
});
|
|
4160
3926
|
start: number;
|
|
4161
3927
|
end: number;
|
|
@@ -4182,7 +3948,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4182
3948
|
kind: string;
|
|
4183
3949
|
} & {
|
|
4184
3950
|
date?: string | null | undefined;
|
|
4185
|
-
text?: string;
|
|
4186
3951
|
}) | ({
|
|
4187
3952
|
id: string;
|
|
4188
3953
|
url: string;
|
|
@@ -4191,18 +3956,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4191
3956
|
size: string;
|
|
4192
3957
|
} & {
|
|
4193
3958
|
date?: string | null | undefined;
|
|
4194
|
-
text?: string;
|
|
4195
3959
|
} & {
|
|
4196
3960
|
__TYPE__: "FileLink";
|
|
4197
3961
|
} & {
|
|
4198
3962
|
size?: string;
|
|
4199
|
-
text?: string;
|
|
4200
3963
|
}) | ({
|
|
4201
3964
|
__TYPE__: "DocumentLink";
|
|
4202
3965
|
} & {
|
|
4203
3966
|
id: string;
|
|
4204
|
-
} & {
|
|
4205
|
-
text?: string;
|
|
4206
3967
|
}) | ({
|
|
4207
3968
|
__TYPE__: "ExternalLink";
|
|
4208
3969
|
} & {
|
|
@@ -4213,7 +3974,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4213
3974
|
preview?: {
|
|
4214
3975
|
title?: string;
|
|
4215
3976
|
} | null | undefined;
|
|
4216
|
-
text?: string;
|
|
4217
3977
|
});
|
|
4218
3978
|
start: number;
|
|
4219
3979
|
end: number;
|
|
@@ -4364,7 +4124,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4364
4124
|
kind: t.StringC;
|
|
4365
4125
|
}>, t.PartialC<{
|
|
4366
4126
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4367
|
-
text: t.StringC;
|
|
4368
4127
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4369
4128
|
id: t.StringC;
|
|
4370
4129
|
url: t.StringC;
|
|
@@ -4373,19 +4132,15 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4373
4132
|
size: t.StringC;
|
|
4374
4133
|
}>, t.PartialC<{
|
|
4375
4134
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4376
|
-
text: t.StringC;
|
|
4377
4135
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4378
4136
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
4379
4137
|
}>, t.PartialC<{
|
|
4380
4138
|
size: t.StringC;
|
|
4381
|
-
text: t.StringC;
|
|
4382
4139
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4383
4140
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
4384
|
-
}>>, t.ExactC<t.
|
|
4141
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4385
4142
|
id: t.Type<string, string, unknown>;
|
|
4386
|
-
}>, t.
|
|
4387
|
-
text: t.StringC;
|
|
4388
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4143
|
+
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4389
4144
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
4390
4145
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4391
4146
|
url: t.StringC;
|
|
@@ -4397,7 +4152,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4397
4152
|
}, {
|
|
4398
4153
|
title?: string;
|
|
4399
4154
|
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
4400
|
-
text: t.StringC;
|
|
4401
4155
|
}>]>>]>]>;
|
|
4402
4156
|
}>>, t.ExactC<t.TypeC<{
|
|
4403
4157
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -4438,7 +4192,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4438
4192
|
kind: string;
|
|
4439
4193
|
} & {
|
|
4440
4194
|
date?: string | null | undefined;
|
|
4441
|
-
text?: string;
|
|
4442
4195
|
}) | ({
|
|
4443
4196
|
id: string;
|
|
4444
4197
|
url: string;
|
|
@@ -4447,18 +4200,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4447
4200
|
size: string;
|
|
4448
4201
|
} & {
|
|
4449
4202
|
date?: string | null | undefined;
|
|
4450
|
-
text?: string;
|
|
4451
4203
|
} & {
|
|
4452
4204
|
__TYPE__: "FileLink";
|
|
4453
4205
|
} & {
|
|
4454
4206
|
size?: string;
|
|
4455
|
-
text?: string;
|
|
4456
4207
|
}) | ({
|
|
4457
4208
|
__TYPE__: "DocumentLink";
|
|
4458
4209
|
} & {
|
|
4459
4210
|
id: string;
|
|
4460
|
-
} & {
|
|
4461
|
-
text?: string;
|
|
4462
4211
|
}) | ({
|
|
4463
4212
|
__TYPE__: "ExternalLink";
|
|
4464
4213
|
} & {
|
|
@@ -4469,7 +4218,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4469
4218
|
preview?: {
|
|
4470
4219
|
title?: string;
|
|
4471
4220
|
} | null | undefined;
|
|
4472
|
-
text?: string;
|
|
4473
4221
|
}), ({
|
|
4474
4222
|
__TYPE__: "ImageLink";
|
|
4475
4223
|
} & {
|
|
@@ -4482,7 +4230,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4482
4230
|
kind: string;
|
|
4483
4231
|
} & {
|
|
4484
4232
|
date?: string | null | undefined;
|
|
4485
|
-
text?: string;
|
|
4486
4233
|
}) | ({
|
|
4487
4234
|
id: string;
|
|
4488
4235
|
url: string;
|
|
@@ -4491,18 +4238,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4491
4238
|
size: string;
|
|
4492
4239
|
} & {
|
|
4493
4240
|
date?: string | null | undefined;
|
|
4494
|
-
text?: string;
|
|
4495
4241
|
} & {
|
|
4496
4242
|
__TYPE__: "FileLink";
|
|
4497
4243
|
} & {
|
|
4498
4244
|
size?: string;
|
|
4499
|
-
text?: string;
|
|
4500
4245
|
}) | ({
|
|
4501
4246
|
__TYPE__: "DocumentLink";
|
|
4502
4247
|
} & {
|
|
4503
4248
|
id: string;
|
|
4504
|
-
} & {
|
|
4505
|
-
text?: string;
|
|
4506
4249
|
}) | ({
|
|
4507
4250
|
__TYPE__: "ExternalLink";
|
|
4508
4251
|
} & {
|
|
@@ -4513,7 +4256,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4513
4256
|
preview?: {
|
|
4514
4257
|
title?: string;
|
|
4515
4258
|
} | null | undefined;
|
|
4516
|
-
text?: string;
|
|
4517
4259
|
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
4518
4260
|
}>]>;
|
|
4519
4261
|
}>, t.PartialC<{
|
|
@@ -4561,7 +4303,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4561
4303
|
kind: string;
|
|
4562
4304
|
} & {
|
|
4563
4305
|
date?: string | null | undefined;
|
|
4564
|
-
text?: string;
|
|
4565
4306
|
}) | ({
|
|
4566
4307
|
id: string;
|
|
4567
4308
|
url: string;
|
|
@@ -4570,18 +4311,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4570
4311
|
size: string;
|
|
4571
4312
|
} & {
|
|
4572
4313
|
date?: string | null | undefined;
|
|
4573
|
-
text?: string;
|
|
4574
4314
|
} & {
|
|
4575
4315
|
__TYPE__: "FileLink";
|
|
4576
4316
|
} & {
|
|
4577
4317
|
size?: string;
|
|
4578
|
-
text?: string;
|
|
4579
4318
|
}) | ({
|
|
4580
4319
|
__TYPE__: "DocumentLink";
|
|
4581
4320
|
} & {
|
|
4582
4321
|
id: string;
|
|
4583
|
-
} & {
|
|
4584
|
-
text?: string;
|
|
4585
4322
|
}) | ({
|
|
4586
4323
|
__TYPE__: "ExternalLink";
|
|
4587
4324
|
} & {
|
|
@@ -4592,7 +4329,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4592
4329
|
preview?: {
|
|
4593
4330
|
title?: string;
|
|
4594
4331
|
} | null | undefined;
|
|
4595
|
-
text?: string;
|
|
4596
4332
|
});
|
|
4597
4333
|
start: number;
|
|
4598
4334
|
end: number;
|
|
@@ -4619,7 +4355,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4619
4355
|
kind: string;
|
|
4620
4356
|
} & {
|
|
4621
4357
|
date?: string | null | undefined;
|
|
4622
|
-
text?: string;
|
|
4623
4358
|
}) | ({
|
|
4624
4359
|
id: string;
|
|
4625
4360
|
url: string;
|
|
@@ -4628,18 +4363,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4628
4363
|
size: string;
|
|
4629
4364
|
} & {
|
|
4630
4365
|
date?: string | null | undefined;
|
|
4631
|
-
text?: string;
|
|
4632
4366
|
} & {
|
|
4633
4367
|
__TYPE__: "FileLink";
|
|
4634
4368
|
} & {
|
|
4635
4369
|
size?: string;
|
|
4636
|
-
text?: string;
|
|
4637
4370
|
}) | ({
|
|
4638
4371
|
__TYPE__: "DocumentLink";
|
|
4639
4372
|
} & {
|
|
4640
4373
|
id: string;
|
|
4641
|
-
} & {
|
|
4642
|
-
text?: string;
|
|
4643
4374
|
}) | ({
|
|
4644
4375
|
__TYPE__: "ExternalLink";
|
|
4645
4376
|
} & {
|
|
@@ -4650,7 +4381,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4650
4381
|
preview?: {
|
|
4651
4382
|
title?: string;
|
|
4652
4383
|
} | null | undefined;
|
|
4653
|
-
text?: string;
|
|
4654
4384
|
});
|
|
4655
4385
|
start: number;
|
|
4656
4386
|
end: number;
|
|
@@ -4799,7 +4529,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4799
4529
|
kind: t.StringC;
|
|
4800
4530
|
}>, t.PartialC<{
|
|
4801
4531
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4802
|
-
text: t.StringC;
|
|
4803
4532
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4804
4533
|
id: t.StringC;
|
|
4805
4534
|
url: t.StringC;
|
|
@@ -4808,19 +4537,15 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4808
4537
|
size: t.StringC;
|
|
4809
4538
|
}>, t.PartialC<{
|
|
4810
4539
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
4811
|
-
text: t.StringC;
|
|
4812
4540
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4813
4541
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
4814
4542
|
}>, t.PartialC<{
|
|
4815
4543
|
size: t.StringC;
|
|
4816
|
-
text: t.StringC;
|
|
4817
4544
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4818
4545
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
4819
|
-
}>>, t.ExactC<t.
|
|
4546
|
+
}>>, t.ExactC<t.TypeC<{
|
|
4820
4547
|
id: t.Type<string, string, unknown>;
|
|
4821
|
-
}>, t.
|
|
4822
|
-
text: t.StringC;
|
|
4823
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4548
|
+
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4824
4549
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
4825
4550
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
4826
4551
|
url: t.StringC;
|
|
@@ -4832,7 +4557,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4832
4557
|
}, {
|
|
4833
4558
|
title?: string;
|
|
4834
4559
|
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
4835
|
-
text: t.StringC;
|
|
4836
4560
|
}>]>>]>]>;
|
|
4837
4561
|
}>>, t.ExactC<t.TypeC<{
|
|
4838
4562
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -4873,7 +4597,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4873
4597
|
kind: string;
|
|
4874
4598
|
} & {
|
|
4875
4599
|
date?: string | null | undefined;
|
|
4876
|
-
text?: string;
|
|
4877
4600
|
}) | ({
|
|
4878
4601
|
id: string;
|
|
4879
4602
|
url: string;
|
|
@@ -4882,18 +4605,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4882
4605
|
size: string;
|
|
4883
4606
|
} & {
|
|
4884
4607
|
date?: string | null | undefined;
|
|
4885
|
-
text?: string;
|
|
4886
4608
|
} & {
|
|
4887
4609
|
__TYPE__: "FileLink";
|
|
4888
4610
|
} & {
|
|
4889
4611
|
size?: string;
|
|
4890
|
-
text?: string;
|
|
4891
4612
|
}) | ({
|
|
4892
4613
|
__TYPE__: "DocumentLink";
|
|
4893
4614
|
} & {
|
|
4894
4615
|
id: string;
|
|
4895
|
-
} & {
|
|
4896
|
-
text?: string;
|
|
4897
4616
|
}) | ({
|
|
4898
4617
|
__TYPE__: "ExternalLink";
|
|
4899
4618
|
} & {
|
|
@@ -4904,7 +4623,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4904
4623
|
preview?: {
|
|
4905
4624
|
title?: string;
|
|
4906
4625
|
} | null | undefined;
|
|
4907
|
-
text?: string;
|
|
4908
4626
|
}), ({
|
|
4909
4627
|
__TYPE__: "ImageLink";
|
|
4910
4628
|
} & {
|
|
@@ -4917,7 +4635,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4917
4635
|
kind: string;
|
|
4918
4636
|
} & {
|
|
4919
4637
|
date?: string | null | undefined;
|
|
4920
|
-
text?: string;
|
|
4921
4638
|
}) | ({
|
|
4922
4639
|
id: string;
|
|
4923
4640
|
url: string;
|
|
@@ -4926,18 +4643,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4926
4643
|
size: string;
|
|
4927
4644
|
} & {
|
|
4928
4645
|
date?: string | null | undefined;
|
|
4929
|
-
text?: string;
|
|
4930
4646
|
} & {
|
|
4931
4647
|
__TYPE__: "FileLink";
|
|
4932
4648
|
} & {
|
|
4933
4649
|
size?: string;
|
|
4934
|
-
text?: string;
|
|
4935
4650
|
}) | ({
|
|
4936
4651
|
__TYPE__: "DocumentLink";
|
|
4937
4652
|
} & {
|
|
4938
4653
|
id: string;
|
|
4939
|
-
} & {
|
|
4940
|
-
text?: string;
|
|
4941
4654
|
}) | ({
|
|
4942
4655
|
__TYPE__: "ExternalLink";
|
|
4943
4656
|
} & {
|
|
@@ -4948,7 +4661,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4948
4661
|
preview?: {
|
|
4949
4662
|
title?: string;
|
|
4950
4663
|
} | null | undefined;
|
|
4951
|
-
text?: string;
|
|
4952
4664
|
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
4953
4665
|
}>]>;
|
|
4954
4666
|
}>, t.PartialC<{
|
|
@@ -4996,7 +4708,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
4996
4708
|
kind: string;
|
|
4997
4709
|
} & {
|
|
4998
4710
|
date?: string | null | undefined;
|
|
4999
|
-
text?: string;
|
|
5000
4711
|
}) | ({
|
|
5001
4712
|
id: string;
|
|
5002
4713
|
url: string;
|
|
@@ -5005,18 +4716,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5005
4716
|
size: string;
|
|
5006
4717
|
} & {
|
|
5007
4718
|
date?: string | null | undefined;
|
|
5008
|
-
text?: string;
|
|
5009
4719
|
} & {
|
|
5010
4720
|
__TYPE__: "FileLink";
|
|
5011
4721
|
} & {
|
|
5012
4722
|
size?: string;
|
|
5013
|
-
text?: string;
|
|
5014
4723
|
}) | ({
|
|
5015
4724
|
__TYPE__: "DocumentLink";
|
|
5016
4725
|
} & {
|
|
5017
4726
|
id: string;
|
|
5018
|
-
} & {
|
|
5019
|
-
text?: string;
|
|
5020
4727
|
}) | ({
|
|
5021
4728
|
__TYPE__: "ExternalLink";
|
|
5022
4729
|
} & {
|
|
@@ -5027,7 +4734,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5027
4734
|
preview?: {
|
|
5028
4735
|
title?: string;
|
|
5029
4736
|
} | null | undefined;
|
|
5030
|
-
text?: string;
|
|
5031
4737
|
});
|
|
5032
4738
|
start: number;
|
|
5033
4739
|
end: number;
|
|
@@ -5054,7 +4760,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5054
4760
|
kind: string;
|
|
5055
4761
|
} & {
|
|
5056
4762
|
date?: string | null | undefined;
|
|
5057
|
-
text?: string;
|
|
5058
4763
|
}) | ({
|
|
5059
4764
|
id: string;
|
|
5060
4765
|
url: string;
|
|
@@ -5063,18 +4768,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5063
4768
|
size: string;
|
|
5064
4769
|
} & {
|
|
5065
4770
|
date?: string | null | undefined;
|
|
5066
|
-
text?: string;
|
|
5067
4771
|
} & {
|
|
5068
4772
|
__TYPE__: "FileLink";
|
|
5069
4773
|
} & {
|
|
5070
4774
|
size?: string;
|
|
5071
|
-
text?: string;
|
|
5072
4775
|
}) | ({
|
|
5073
4776
|
__TYPE__: "DocumentLink";
|
|
5074
4777
|
} & {
|
|
5075
4778
|
id: string;
|
|
5076
|
-
} & {
|
|
5077
|
-
text?: string;
|
|
5078
4779
|
}) | ({
|
|
5079
4780
|
__TYPE__: "ExternalLink";
|
|
5080
4781
|
} & {
|
|
@@ -5085,7 +4786,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5085
4786
|
preview?: {
|
|
5086
4787
|
title?: string;
|
|
5087
4788
|
} | null | undefined;
|
|
5088
|
-
text?: string;
|
|
5089
4789
|
});
|
|
5090
4790
|
start: number;
|
|
5091
4791
|
end: number;
|
|
@@ -5233,7 +4933,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5233
4933
|
kind: t.StringC;
|
|
5234
4934
|
}>, t.PartialC<{
|
|
5235
4935
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5236
|
-
text: t.StringC;
|
|
5237
4936
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5238
4937
|
id: t.StringC;
|
|
5239
4938
|
url: t.StringC;
|
|
@@ -5242,19 +4941,15 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5242
4941
|
size: t.StringC;
|
|
5243
4942
|
}>, t.PartialC<{
|
|
5244
4943
|
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
5245
|
-
text: t.StringC;
|
|
5246
4944
|
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5247
4945
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
5248
4946
|
}>, t.PartialC<{
|
|
5249
4947
|
size: t.StringC;
|
|
5250
|
-
text: t.StringC;
|
|
5251
4948
|
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
5252
4949
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
5253
|
-
}>>, t.ExactC<t.
|
|
4950
|
+
}>>, t.ExactC<t.TypeC<{
|
|
5254
4951
|
id: t.Type<string, string, unknown>;
|
|
5255
|
-
}>, t.
|
|
5256
|
-
text: t.StringC;
|
|
5257
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
4952
|
+
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
5258
4953
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
5259
4954
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
5260
4955
|
url: t.StringC;
|
|
@@ -5266,7 +4961,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5266
4961
|
}, {
|
|
5267
4962
|
title?: string;
|
|
5268
4963
|
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
5269
|
-
text: t.StringC;
|
|
5270
4964
|
}>]>>]>]>;
|
|
5271
4965
|
}>>, t.ExactC<t.TypeC<{
|
|
5272
4966
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -5307,7 +5001,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5307
5001
|
kind: string;
|
|
5308
5002
|
} & {
|
|
5309
5003
|
date?: string | null | undefined;
|
|
5310
|
-
text?: string;
|
|
5311
5004
|
}) | ({
|
|
5312
5005
|
id: string;
|
|
5313
5006
|
url: string;
|
|
@@ -5316,18 +5009,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5316
5009
|
size: string;
|
|
5317
5010
|
} & {
|
|
5318
5011
|
date?: string | null | undefined;
|
|
5319
|
-
text?: string;
|
|
5320
5012
|
} & {
|
|
5321
5013
|
__TYPE__: "FileLink";
|
|
5322
5014
|
} & {
|
|
5323
5015
|
size?: string;
|
|
5324
|
-
text?: string;
|
|
5325
5016
|
}) | ({
|
|
5326
5017
|
__TYPE__: "DocumentLink";
|
|
5327
5018
|
} & {
|
|
5328
5019
|
id: string;
|
|
5329
|
-
} & {
|
|
5330
|
-
text?: string;
|
|
5331
5020
|
}) | ({
|
|
5332
5021
|
__TYPE__: "ExternalLink";
|
|
5333
5022
|
} & {
|
|
@@ -5338,7 +5027,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5338
5027
|
preview?: {
|
|
5339
5028
|
title?: string;
|
|
5340
5029
|
} | null | undefined;
|
|
5341
|
-
text?: string;
|
|
5342
5030
|
}), ({
|
|
5343
5031
|
__TYPE__: "ImageLink";
|
|
5344
5032
|
} & {
|
|
@@ -5351,7 +5039,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5351
5039
|
kind: string;
|
|
5352
5040
|
} & {
|
|
5353
5041
|
date?: string | null | undefined;
|
|
5354
|
-
text?: string;
|
|
5355
5042
|
}) | ({
|
|
5356
5043
|
id: string;
|
|
5357
5044
|
url: string;
|
|
@@ -5360,18 +5047,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5360
5047
|
size: string;
|
|
5361
5048
|
} & {
|
|
5362
5049
|
date?: string | null | undefined;
|
|
5363
|
-
text?: string;
|
|
5364
5050
|
} & {
|
|
5365
5051
|
__TYPE__: "FileLink";
|
|
5366
5052
|
} & {
|
|
5367
5053
|
size?: string;
|
|
5368
|
-
text?: string;
|
|
5369
5054
|
}) | ({
|
|
5370
5055
|
__TYPE__: "DocumentLink";
|
|
5371
5056
|
} & {
|
|
5372
5057
|
id: string;
|
|
5373
|
-
} & {
|
|
5374
|
-
text?: string;
|
|
5375
5058
|
}) | ({
|
|
5376
5059
|
__TYPE__: "ExternalLink";
|
|
5377
5060
|
} & {
|
|
@@ -5382,7 +5065,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5382
5065
|
preview?: {
|
|
5383
5066
|
title?: string;
|
|
5384
5067
|
} | null | undefined;
|
|
5385
|
-
text?: string;
|
|
5386
5068
|
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
5387
5069
|
}>]>;
|
|
5388
5070
|
}>, t.PartialC<{
|
|
@@ -5430,7 +5112,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5430
5112
|
kind: string;
|
|
5431
5113
|
} & {
|
|
5432
5114
|
date?: string | null | undefined;
|
|
5433
|
-
text?: string;
|
|
5434
5115
|
}) | ({
|
|
5435
5116
|
id: string;
|
|
5436
5117
|
url: string;
|
|
@@ -5439,18 +5120,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5439
5120
|
size: string;
|
|
5440
5121
|
} & {
|
|
5441
5122
|
date?: string | null | undefined;
|
|
5442
|
-
text?: string;
|
|
5443
5123
|
} & {
|
|
5444
5124
|
__TYPE__: "FileLink";
|
|
5445
5125
|
} & {
|
|
5446
5126
|
size?: string;
|
|
5447
|
-
text?: string;
|
|
5448
5127
|
}) | ({
|
|
5449
5128
|
__TYPE__: "DocumentLink";
|
|
5450
5129
|
} & {
|
|
5451
5130
|
id: string;
|
|
5452
|
-
} & {
|
|
5453
|
-
text?: string;
|
|
5454
5131
|
}) | ({
|
|
5455
5132
|
__TYPE__: "ExternalLink";
|
|
5456
5133
|
} & {
|
|
@@ -5461,7 +5138,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5461
5138
|
preview?: {
|
|
5462
5139
|
title?: string;
|
|
5463
5140
|
} | null | undefined;
|
|
5464
|
-
text?: string;
|
|
5465
5141
|
});
|
|
5466
5142
|
start: number;
|
|
5467
5143
|
end: number;
|
|
@@ -5488,7 +5164,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5488
5164
|
kind: string;
|
|
5489
5165
|
} & {
|
|
5490
5166
|
date?: string | null | undefined;
|
|
5491
|
-
text?: string;
|
|
5492
5167
|
}) | ({
|
|
5493
5168
|
id: string;
|
|
5494
5169
|
url: string;
|
|
@@ -5497,18 +5172,14 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5497
5172
|
size: string;
|
|
5498
5173
|
} & {
|
|
5499
5174
|
date?: string | null | undefined;
|
|
5500
|
-
text?: string;
|
|
5501
5175
|
} & {
|
|
5502
5176
|
__TYPE__: "FileLink";
|
|
5503
5177
|
} & {
|
|
5504
5178
|
size?: string;
|
|
5505
|
-
text?: string;
|
|
5506
5179
|
}) | ({
|
|
5507
5180
|
__TYPE__: "DocumentLink";
|
|
5508
5181
|
} & {
|
|
5509
5182
|
id: string;
|
|
5510
|
-
} & {
|
|
5511
|
-
text?: string;
|
|
5512
5183
|
}) | ({
|
|
5513
5184
|
__TYPE__: "ExternalLink";
|
|
5514
5185
|
} & {
|
|
@@ -5519,7 +5190,6 @@ export declare const SlicesContent: t.TypeC<{
|
|
|
5519
5190
|
preview?: {
|
|
5520
5191
|
title?: string;
|
|
5521
5192
|
} | null | undefined;
|
|
5522
|
-
text?: string;
|
|
5523
5193
|
});
|
|
5524
5194
|
start: number;
|
|
5525
5195
|
end: number;
|