@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
|
@@ -192,73 +192,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
192
192
|
alt: t.Type<string | null, string | null, unknown>;
|
|
193
193
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
194
194
|
}>]>>, t.PartialC<{
|
|
195
|
-
linkTo: t.UnionC<[t.Type<
|
|
196
|
-
__TYPE__: "ImageLink";
|
|
197
|
-
} & {
|
|
198
|
-
id: string;
|
|
199
|
-
url: string;
|
|
200
|
-
height: string;
|
|
201
|
-
width: string;
|
|
202
|
-
size: string;
|
|
203
|
-
name: string;
|
|
204
|
-
kind: string;
|
|
205
|
-
} & {
|
|
206
|
-
date?: string | null | undefined;
|
|
207
|
-
}) | ({
|
|
208
|
-
id: string;
|
|
209
|
-
url: string;
|
|
210
|
-
name: string;
|
|
211
|
-
kind: string;
|
|
212
|
-
size: string;
|
|
213
|
-
} & {
|
|
214
|
-
date?: string | null | undefined;
|
|
215
|
-
} & {
|
|
216
|
-
__TYPE__: "FileLink";
|
|
217
|
-
} & {
|
|
218
|
-
size?: string;
|
|
219
|
-
}) | ({
|
|
220
|
-
__TYPE__: "DocumentLink";
|
|
221
|
-
} & {
|
|
222
|
-
id: string;
|
|
223
|
-
}) | ({
|
|
224
|
-
__TYPE__: "ExternalLink";
|
|
225
|
-
} & {
|
|
226
|
-
url: string;
|
|
227
|
-
} & {
|
|
228
|
-
kind?: "web";
|
|
229
|
-
target?: string | null | undefined;
|
|
230
|
-
preview?: {
|
|
231
|
-
title?: string;
|
|
232
|
-
} | null | undefined;
|
|
233
|
-
}), ({
|
|
234
|
-
id: string;
|
|
235
|
-
url: string;
|
|
236
|
-
height: string;
|
|
237
|
-
width: string;
|
|
238
|
-
size: string;
|
|
239
|
-
name: string;
|
|
240
|
-
kind: string;
|
|
241
|
-
} & {
|
|
242
|
-
date?: string | null | undefined;
|
|
243
|
-
}) | ({
|
|
244
|
-
id: string;
|
|
245
|
-
url: string;
|
|
246
|
-
name: string;
|
|
247
|
-
kind: string;
|
|
248
|
-
size: string;
|
|
249
|
-
} & {
|
|
250
|
-
date?: string | null | undefined;
|
|
251
|
-
}) | {
|
|
252
|
-
id: string;
|
|
253
|
-
} | ({
|
|
254
|
-
url: string;
|
|
255
|
-
} & {
|
|
256
|
-
kind?: "web";
|
|
257
|
-
target?: string | null | undefined;
|
|
258
|
-
preview?: {
|
|
259
|
-
title?: string;
|
|
260
|
-
} | null | undefined;
|
|
261
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
195
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
262
196
|
}>]>;
|
|
263
197
|
}>, t.PartialC<{
|
|
264
198
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -587,73 +521,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
587
521
|
alt: t.Type<string | null, string | null, unknown>;
|
|
588
522
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
589
523
|
}>]>>, t.PartialC<{
|
|
590
|
-
linkTo: t.UnionC<[t.Type<
|
|
591
|
-
__TYPE__: "ImageLink";
|
|
592
|
-
} & {
|
|
593
|
-
id: string;
|
|
594
|
-
url: string;
|
|
595
|
-
height: string;
|
|
596
|
-
width: string;
|
|
597
|
-
size: string;
|
|
598
|
-
name: string;
|
|
599
|
-
kind: string;
|
|
600
|
-
} & {
|
|
601
|
-
date?: string | null | undefined;
|
|
602
|
-
}) | ({
|
|
603
|
-
id: string;
|
|
604
|
-
url: string;
|
|
605
|
-
name: string;
|
|
606
|
-
kind: string;
|
|
607
|
-
size: string;
|
|
608
|
-
} & {
|
|
609
|
-
date?: string | null | undefined;
|
|
610
|
-
} & {
|
|
611
|
-
__TYPE__: "FileLink";
|
|
612
|
-
} & {
|
|
613
|
-
size?: string;
|
|
614
|
-
}) | ({
|
|
615
|
-
__TYPE__: "DocumentLink";
|
|
616
|
-
} & {
|
|
617
|
-
id: string;
|
|
618
|
-
}) | ({
|
|
619
|
-
__TYPE__: "ExternalLink";
|
|
620
|
-
} & {
|
|
621
|
-
url: string;
|
|
622
|
-
} & {
|
|
623
|
-
kind?: "web";
|
|
624
|
-
target?: string | null | undefined;
|
|
625
|
-
preview?: {
|
|
626
|
-
title?: string;
|
|
627
|
-
} | null | undefined;
|
|
628
|
-
}), ({
|
|
629
|
-
id: string;
|
|
630
|
-
url: string;
|
|
631
|
-
height: string;
|
|
632
|
-
width: string;
|
|
633
|
-
size: string;
|
|
634
|
-
name: string;
|
|
635
|
-
kind: string;
|
|
636
|
-
} & {
|
|
637
|
-
date?: string | null | undefined;
|
|
638
|
-
}) | ({
|
|
639
|
-
id: string;
|
|
640
|
-
url: string;
|
|
641
|
-
name: string;
|
|
642
|
-
kind: string;
|
|
643
|
-
size: string;
|
|
644
|
-
} & {
|
|
645
|
-
date?: string | null | undefined;
|
|
646
|
-
}) | {
|
|
647
|
-
id: string;
|
|
648
|
-
} | ({
|
|
649
|
-
url: string;
|
|
650
|
-
} & {
|
|
651
|
-
kind?: "web";
|
|
652
|
-
target?: string | null | undefined;
|
|
653
|
-
preview?: {
|
|
654
|
-
title?: string;
|
|
655
|
-
} | null | undefined;
|
|
656
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
524
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
657
525
|
}>]>;
|
|
658
526
|
}>, t.PartialC<{
|
|
659
527
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -984,73 +852,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
984
852
|
alt: t.Type<string | null, string | null, unknown>;
|
|
985
853
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
986
854
|
}>]>>, t.PartialC<{
|
|
987
|
-
linkTo: t.UnionC<[t.Type<
|
|
988
|
-
__TYPE__: "ImageLink";
|
|
989
|
-
} & {
|
|
990
|
-
id: string;
|
|
991
|
-
url: string;
|
|
992
|
-
height: string;
|
|
993
|
-
width: string;
|
|
994
|
-
size: string;
|
|
995
|
-
name: string;
|
|
996
|
-
kind: string;
|
|
997
|
-
} & {
|
|
998
|
-
date?: string | null | undefined;
|
|
999
|
-
}) | ({
|
|
1000
|
-
id: string;
|
|
1001
|
-
url: string;
|
|
1002
|
-
name: string;
|
|
1003
|
-
kind: string;
|
|
1004
|
-
size: string;
|
|
1005
|
-
} & {
|
|
1006
|
-
date?: string | null | undefined;
|
|
1007
|
-
} & {
|
|
1008
|
-
__TYPE__: "FileLink";
|
|
1009
|
-
} & {
|
|
1010
|
-
size?: string;
|
|
1011
|
-
}) | ({
|
|
1012
|
-
__TYPE__: "DocumentLink";
|
|
1013
|
-
} & {
|
|
1014
|
-
id: string;
|
|
1015
|
-
}) | ({
|
|
1016
|
-
__TYPE__: "ExternalLink";
|
|
1017
|
-
} & {
|
|
1018
|
-
url: string;
|
|
1019
|
-
} & {
|
|
1020
|
-
kind?: "web";
|
|
1021
|
-
target?: string | null | undefined;
|
|
1022
|
-
preview?: {
|
|
1023
|
-
title?: string;
|
|
1024
|
-
} | null | undefined;
|
|
1025
|
-
}), ({
|
|
1026
|
-
id: string;
|
|
1027
|
-
url: string;
|
|
1028
|
-
height: string;
|
|
1029
|
-
width: string;
|
|
1030
|
-
size: string;
|
|
1031
|
-
name: string;
|
|
1032
|
-
kind: string;
|
|
1033
|
-
} & {
|
|
1034
|
-
date?: string | null | undefined;
|
|
1035
|
-
}) | ({
|
|
1036
|
-
id: string;
|
|
1037
|
-
url: string;
|
|
1038
|
-
name: string;
|
|
1039
|
-
kind: string;
|
|
1040
|
-
size: string;
|
|
1041
|
-
} & {
|
|
1042
|
-
date?: string | null | undefined;
|
|
1043
|
-
}) | {
|
|
1044
|
-
id: string;
|
|
1045
|
-
} | ({
|
|
1046
|
-
url: string;
|
|
1047
|
-
} & {
|
|
1048
|
-
kind?: "web";
|
|
1049
|
-
target?: string | null | undefined;
|
|
1050
|
-
preview?: {
|
|
1051
|
-
title?: string;
|
|
1052
|
-
} | null | undefined;
|
|
1053
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
855
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
1054
856
|
}>]>;
|
|
1055
857
|
}>, t.PartialC<{
|
|
1056
858
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1196,405 +998,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1196
998
|
}>]>>]>>;
|
|
1197
999
|
}>>, t.ExactC<t.TypeC<{
|
|
1198
1000
|
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1199
|
-
}>>]>, t.
|
|
1200
|
-
__TYPE__: t.LiteralC<"GroupContentType">;
|
|
1201
|
-
value: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1202
|
-
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
1203
|
-
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
1204
|
-
type: t.StringC;
|
|
1205
|
-
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
1206
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1207
|
-
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
1208
|
-
value: t.BooleanC;
|
|
1209
|
-
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1210
|
-
embed_url: t.StringC;
|
|
1211
|
-
type: t.StringC;
|
|
1212
|
-
}>, t.PartialC<{
|
|
1213
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1214
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1215
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1216
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1217
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1218
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1219
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1220
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1221
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1222
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1223
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1224
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1225
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1226
|
-
all: t.UnknownC;
|
|
1227
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
1228
|
-
type: t.LiteralC<"Text">;
|
|
1229
|
-
value: t.Type<string, string, unknown>;
|
|
1230
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1231
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1232
|
-
type: t.LiteralC<"Timestamp">;
|
|
1233
|
-
value: t.Type<string, string, unknown>;
|
|
1234
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1235
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1236
|
-
type: t.LiteralC<"Select">;
|
|
1237
|
-
value: t.Type<string, string, unknown>;
|
|
1238
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1239
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1240
|
-
type: t.LiteralC<"Range">;
|
|
1241
|
-
value: t.Type<string, string, unknown>;
|
|
1242
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1243
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1244
|
-
type: t.LiteralC<"Number">;
|
|
1245
|
-
value: t.Type<string, string, unknown>;
|
|
1246
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1247
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1248
|
-
type: t.LiteralC<"Date">;
|
|
1249
|
-
value: t.Type<string, string, unknown>;
|
|
1250
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1251
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1252
|
-
type: t.LiteralC<"Color">;
|
|
1253
|
-
value: t.Type<string, string, unknown>;
|
|
1254
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
1255
|
-
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1256
|
-
position: t.ExactC<t.TypeC<{
|
|
1257
|
-
lat: t.NumberC;
|
|
1258
|
-
lng: t.NumberC;
|
|
1259
|
-
}>>;
|
|
1260
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1261
|
-
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
1262
|
-
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1263
|
-
origin: t.ExactC<t.TypeC<{
|
|
1264
|
-
id: t.StringC;
|
|
1265
|
-
url: t.StringC;
|
|
1266
|
-
width: t.NumberC;
|
|
1267
|
-
height: t.NumberC;
|
|
1268
|
-
}>>;
|
|
1269
|
-
width: t.NumberC;
|
|
1270
|
-
height: t.NumberC;
|
|
1271
|
-
edit: t.TypeC<{
|
|
1272
|
-
zoom: t.NumberC;
|
|
1273
|
-
crop: t.TypeC<{
|
|
1274
|
-
x: t.NumberC;
|
|
1275
|
-
y: t.NumberC;
|
|
1276
|
-
}>;
|
|
1277
|
-
background: t.StringC;
|
|
1278
|
-
}>;
|
|
1279
|
-
}>, t.PartialC<{
|
|
1280
|
-
url: t.StringC;
|
|
1281
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
1282
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
1283
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1284
|
-
}>]>>, t.PartialC<{
|
|
1285
|
-
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1286
|
-
origin: t.ExactC<t.TypeC<{
|
|
1287
|
-
id: t.StringC;
|
|
1288
|
-
url: t.StringC;
|
|
1289
|
-
width: t.NumberC;
|
|
1290
|
-
height: t.NumberC;
|
|
1291
|
-
}>>;
|
|
1292
|
-
width: t.NumberC;
|
|
1293
|
-
height: t.NumberC;
|
|
1294
|
-
edit: t.TypeC<{
|
|
1295
|
-
zoom: t.NumberC;
|
|
1296
|
-
crop: t.TypeC<{
|
|
1297
|
-
x: t.NumberC;
|
|
1298
|
-
y: t.NumberC;
|
|
1299
|
-
}>;
|
|
1300
|
-
background: t.StringC;
|
|
1301
|
-
}>;
|
|
1302
|
-
}>, t.PartialC<{
|
|
1303
|
-
url: t.StringC;
|
|
1304
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
1305
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
1306
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1307
|
-
}>]>>>;
|
|
1308
|
-
}>]>, t.ExactC<t.TypeC<{
|
|
1309
|
-
__TYPE__: t.LiteralC<"ImageContent">;
|
|
1310
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
1311
|
-
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
1312
|
-
value: t.StringC;
|
|
1313
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1314
|
-
__TYPE__: t.LiteralC<"LinkContent">;
|
|
1315
|
-
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1316
|
-
__TYPE__: t.LiteralC<"ImageLink">;
|
|
1317
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1318
|
-
id: t.StringC;
|
|
1319
|
-
url: t.StringC;
|
|
1320
|
-
height: t.StringC;
|
|
1321
|
-
width: t.StringC;
|
|
1322
|
-
size: t.StringC;
|
|
1323
|
-
name: t.StringC;
|
|
1324
|
-
kind: t.StringC;
|
|
1325
|
-
}>, t.PartialC<{
|
|
1326
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1327
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1328
|
-
id: t.StringC;
|
|
1329
|
-
url: t.StringC;
|
|
1330
|
-
name: t.StringC;
|
|
1331
|
-
kind: t.StringC;
|
|
1332
|
-
size: t.StringC;
|
|
1333
|
-
}>, t.PartialC<{
|
|
1334
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1335
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1336
|
-
__TYPE__: t.LiteralC<"FileLink">;
|
|
1337
|
-
}>, t.PartialC<{
|
|
1338
|
-
size: t.StringC;
|
|
1339
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1340
|
-
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
1341
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1342
|
-
id: t.Type<string, string, unknown>;
|
|
1343
|
-
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1344
|
-
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
1345
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1346
|
-
url: t.StringC;
|
|
1347
|
-
}>, t.PartialC<{
|
|
1348
|
-
kind: t.LiteralC<"web">;
|
|
1349
|
-
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1350
|
-
preview: t.UnionC<[t.Type<{
|
|
1351
|
-
title?: string;
|
|
1352
|
-
}, {
|
|
1353
|
-
title?: string;
|
|
1354
|
-
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
1355
|
-
}>]>>]>]>;
|
|
1356
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1357
|
-
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
1358
|
-
value: t.ArrayC<t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1359
|
-
type: t.LiteralC<"image">;
|
|
1360
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1361
|
-
origin: t.ExactC<t.TypeC<{
|
|
1362
|
-
id: t.StringC;
|
|
1363
|
-
url: t.StringC;
|
|
1364
|
-
width: t.NumberC;
|
|
1365
|
-
height: t.NumberC;
|
|
1366
|
-
}>>;
|
|
1367
|
-
width: t.NumberC;
|
|
1368
|
-
height: t.NumberC;
|
|
1369
|
-
edit: t.TypeC<{
|
|
1370
|
-
zoom: t.NumberC;
|
|
1371
|
-
crop: t.TypeC<{
|
|
1372
|
-
x: t.NumberC;
|
|
1373
|
-
y: t.NumberC;
|
|
1374
|
-
}>;
|
|
1375
|
-
background: t.StringC;
|
|
1376
|
-
}>;
|
|
1377
|
-
}>, t.PartialC<{
|
|
1378
|
-
url: t.StringC;
|
|
1379
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
1380
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
1381
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1382
|
-
}>]>>, t.PartialC<{
|
|
1383
|
-
linkTo: t.UnionC<[t.Type<({
|
|
1384
|
-
__TYPE__: "ImageLink";
|
|
1385
|
-
} & {
|
|
1386
|
-
id: string;
|
|
1387
|
-
url: string;
|
|
1388
|
-
height: string;
|
|
1389
|
-
width: string;
|
|
1390
|
-
size: string;
|
|
1391
|
-
name: string;
|
|
1392
|
-
kind: string;
|
|
1393
|
-
} & {
|
|
1394
|
-
date?: string | null | undefined;
|
|
1395
|
-
}) | ({
|
|
1396
|
-
id: string;
|
|
1397
|
-
url: string;
|
|
1398
|
-
name: string;
|
|
1399
|
-
kind: string;
|
|
1400
|
-
size: string;
|
|
1401
|
-
} & {
|
|
1402
|
-
date?: string | null | undefined;
|
|
1403
|
-
} & {
|
|
1404
|
-
__TYPE__: "FileLink";
|
|
1405
|
-
} & {
|
|
1406
|
-
size?: string;
|
|
1407
|
-
}) | ({
|
|
1408
|
-
__TYPE__: "DocumentLink";
|
|
1409
|
-
} & {
|
|
1410
|
-
id: string;
|
|
1411
|
-
}) | ({
|
|
1412
|
-
__TYPE__: "ExternalLink";
|
|
1413
|
-
} & {
|
|
1414
|
-
url: string;
|
|
1415
|
-
} & {
|
|
1416
|
-
kind?: "web";
|
|
1417
|
-
target?: string | null | undefined;
|
|
1418
|
-
preview?: {
|
|
1419
|
-
title?: string;
|
|
1420
|
-
} | null | undefined;
|
|
1421
|
-
}), ({
|
|
1422
|
-
id: string;
|
|
1423
|
-
url: string;
|
|
1424
|
-
height: string;
|
|
1425
|
-
width: string;
|
|
1426
|
-
size: string;
|
|
1427
|
-
name: string;
|
|
1428
|
-
kind: string;
|
|
1429
|
-
} & {
|
|
1430
|
-
date?: string | null | undefined;
|
|
1431
|
-
}) | ({
|
|
1432
|
-
id: string;
|
|
1433
|
-
url: string;
|
|
1434
|
-
name: string;
|
|
1435
|
-
kind: string;
|
|
1436
|
-
size: string;
|
|
1437
|
-
} & {
|
|
1438
|
-
date?: string | null | undefined;
|
|
1439
|
-
}) | {
|
|
1440
|
-
id: string;
|
|
1441
|
-
} | ({
|
|
1442
|
-
url: string;
|
|
1443
|
-
} & {
|
|
1444
|
-
kind?: "web";
|
|
1445
|
-
target?: string | null | undefined;
|
|
1446
|
-
preview?: {
|
|
1447
|
-
title?: string;
|
|
1448
|
-
} | null | undefined;
|
|
1449
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
1450
|
-
}>]>;
|
|
1451
|
-
}>, t.PartialC<{
|
|
1452
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1453
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1454
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1455
|
-
type: t.LiteralC<"embed">;
|
|
1456
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1457
|
-
embed_url: t.StringC;
|
|
1458
|
-
type: t.StringC;
|
|
1459
|
-
}>, t.PartialC<{
|
|
1460
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1461
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1462
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1463
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1464
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1465
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1466
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
1467
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1468
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1469
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
1470
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1471
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
1472
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
1473
|
-
all: t.UnknownC;
|
|
1474
|
-
}>>]>;
|
|
1475
|
-
}>, t.PartialC<{
|
|
1476
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1477
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1478
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1479
|
-
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>;
|
|
1480
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
1481
|
-
text: t.StringC;
|
|
1482
|
-
}>, t.PartialC<{
|
|
1483
|
-
spans: t.Type<({
|
|
1484
|
-
data: ({
|
|
1485
|
-
__TYPE__: "ImageLink";
|
|
1486
|
-
} & {
|
|
1487
|
-
id: string;
|
|
1488
|
-
url: string;
|
|
1489
|
-
height: string;
|
|
1490
|
-
width: string;
|
|
1491
|
-
size: string;
|
|
1492
|
-
name: string;
|
|
1493
|
-
kind: string;
|
|
1494
|
-
} & {
|
|
1495
|
-
date?: string | null | undefined;
|
|
1496
|
-
}) | ({
|
|
1497
|
-
id: string;
|
|
1498
|
-
url: string;
|
|
1499
|
-
name: string;
|
|
1500
|
-
kind: string;
|
|
1501
|
-
size: string;
|
|
1502
|
-
} & {
|
|
1503
|
-
date?: string | null | undefined;
|
|
1504
|
-
} & {
|
|
1505
|
-
__TYPE__: "FileLink";
|
|
1506
|
-
} & {
|
|
1507
|
-
size?: string;
|
|
1508
|
-
}) | ({
|
|
1509
|
-
__TYPE__: "DocumentLink";
|
|
1510
|
-
} & {
|
|
1511
|
-
id: string;
|
|
1512
|
-
}) | ({
|
|
1513
|
-
__TYPE__: "ExternalLink";
|
|
1514
|
-
} & {
|
|
1515
|
-
url: string;
|
|
1516
|
-
} & {
|
|
1517
|
-
kind?: "web";
|
|
1518
|
-
target?: string | null | undefined;
|
|
1519
|
-
preview?: {
|
|
1520
|
-
title?: string;
|
|
1521
|
-
} | null | undefined;
|
|
1522
|
-
});
|
|
1523
|
-
start: number;
|
|
1524
|
-
end: number;
|
|
1525
|
-
type: "hyperlink";
|
|
1526
|
-
} | {
|
|
1527
|
-
data: string;
|
|
1528
|
-
start: number;
|
|
1529
|
-
end: number;
|
|
1530
|
-
type: "label";
|
|
1531
|
-
} | {
|
|
1532
|
-
start: number;
|
|
1533
|
-
end: number;
|
|
1534
|
-
type: "strong" | "em" | "list-item";
|
|
1535
|
-
})[], ({
|
|
1536
|
-
data: ({
|
|
1537
|
-
__TYPE__: "ImageLink";
|
|
1538
|
-
} & {
|
|
1539
|
-
id: string;
|
|
1540
|
-
url: string;
|
|
1541
|
-
height: string;
|
|
1542
|
-
width: string;
|
|
1543
|
-
size: string;
|
|
1544
|
-
name: string;
|
|
1545
|
-
kind: string;
|
|
1546
|
-
} & {
|
|
1547
|
-
date?: string | null | undefined;
|
|
1548
|
-
}) | ({
|
|
1549
|
-
id: string;
|
|
1550
|
-
url: string;
|
|
1551
|
-
name: string;
|
|
1552
|
-
kind: string;
|
|
1553
|
-
size: string;
|
|
1554
|
-
} & {
|
|
1555
|
-
date?: string | null | undefined;
|
|
1556
|
-
} & {
|
|
1557
|
-
__TYPE__: "FileLink";
|
|
1558
|
-
} & {
|
|
1559
|
-
size?: string;
|
|
1560
|
-
}) | ({
|
|
1561
|
-
__TYPE__: "DocumentLink";
|
|
1562
|
-
} & {
|
|
1563
|
-
id: string;
|
|
1564
|
-
}) | ({
|
|
1565
|
-
__TYPE__: "ExternalLink";
|
|
1566
|
-
} & {
|
|
1567
|
-
url: string;
|
|
1568
|
-
} & {
|
|
1569
|
-
kind?: "web";
|
|
1570
|
-
target?: string | null | undefined;
|
|
1571
|
-
preview?: {
|
|
1572
|
-
title?: string;
|
|
1573
|
-
} | null | undefined;
|
|
1574
|
-
});
|
|
1575
|
-
start: number;
|
|
1576
|
-
end: number;
|
|
1577
|
-
type: "hyperlink";
|
|
1578
|
-
} | {
|
|
1579
|
-
data: string;
|
|
1580
|
-
start: number;
|
|
1581
|
-
end: number;
|
|
1582
|
-
type: "label";
|
|
1583
|
-
} | {
|
|
1584
|
-
start: number;
|
|
1585
|
-
end: number;
|
|
1586
|
-
type: "strong" | "em" | "list-item";
|
|
1587
|
-
})[], unknown>;
|
|
1588
|
-
}>]>;
|
|
1589
|
-
}>, t.PartialC<{
|
|
1590
|
-
label: t.StringC;
|
|
1591
|
-
direction: t.StringC;
|
|
1592
|
-
}>]>>]>>;
|
|
1593
|
-
}>>, t.ExactC<t.TypeC<{
|
|
1594
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
1595
|
-
}>>]>]>>;
|
|
1596
|
-
}>>>;
|
|
1597
|
-
}>>]>>;
|
|
1001
|
+
}>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>>;
|
|
1598
1002
|
items: t.ArrayC<t.ExactC<t.TypeC<{
|
|
1599
1003
|
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
1600
1004
|
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -1777,73 +1181,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
1777
1181
|
alt: t.Type<string | null, string | null, unknown>;
|
|
1778
1182
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
1779
1183
|
}>]>>, t.PartialC<{
|
|
1780
|
-
linkTo: t.UnionC<[t.Type<
|
|
1781
|
-
__TYPE__: "ImageLink";
|
|
1782
|
-
} & {
|
|
1783
|
-
id: string;
|
|
1784
|
-
url: string;
|
|
1785
|
-
height: string;
|
|
1786
|
-
width: string;
|
|
1787
|
-
size: string;
|
|
1788
|
-
name: string;
|
|
1789
|
-
kind: string;
|
|
1790
|
-
} & {
|
|
1791
|
-
date?: string | null | undefined;
|
|
1792
|
-
}) | ({
|
|
1793
|
-
id: string;
|
|
1794
|
-
url: string;
|
|
1795
|
-
name: string;
|
|
1796
|
-
kind: string;
|
|
1797
|
-
size: string;
|
|
1798
|
-
} & {
|
|
1799
|
-
date?: string | null | undefined;
|
|
1800
|
-
} & {
|
|
1801
|
-
__TYPE__: "FileLink";
|
|
1802
|
-
} & {
|
|
1803
|
-
size?: string;
|
|
1804
|
-
}) | ({
|
|
1805
|
-
__TYPE__: "DocumentLink";
|
|
1806
|
-
} & {
|
|
1807
|
-
id: string;
|
|
1808
|
-
}) | ({
|
|
1809
|
-
__TYPE__: "ExternalLink";
|
|
1810
|
-
} & {
|
|
1811
|
-
url: string;
|
|
1812
|
-
} & {
|
|
1813
|
-
kind?: "web";
|
|
1814
|
-
target?: string | null | undefined;
|
|
1815
|
-
preview?: {
|
|
1816
|
-
title?: string;
|
|
1817
|
-
} | null | undefined;
|
|
1818
|
-
}), ({
|
|
1819
|
-
id: string;
|
|
1820
|
-
url: string;
|
|
1821
|
-
height: string;
|
|
1822
|
-
width: string;
|
|
1823
|
-
size: string;
|
|
1824
|
-
name: string;
|
|
1825
|
-
kind: string;
|
|
1826
|
-
} & {
|
|
1827
|
-
date?: string | null | undefined;
|
|
1828
|
-
}) | ({
|
|
1829
|
-
id: string;
|
|
1830
|
-
url: string;
|
|
1831
|
-
name: string;
|
|
1832
|
-
kind: string;
|
|
1833
|
-
size: string;
|
|
1834
|
-
} & {
|
|
1835
|
-
date?: string | null | undefined;
|
|
1836
|
-
}) | {
|
|
1837
|
-
id: string;
|
|
1838
|
-
} | ({
|
|
1839
|
-
url: string;
|
|
1840
|
-
} & {
|
|
1841
|
-
kind?: "web";
|
|
1842
|
-
target?: string | null | undefined;
|
|
1843
|
-
preview?: {
|
|
1844
|
-
title?: string;
|
|
1845
|
-
} | null | undefined;
|
|
1846
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
1184
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
1847
1185
|
}>]>;
|
|
1848
1186
|
}>, t.PartialC<{
|
|
1849
1187
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -2171,73 +1509,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
2171
1509
|
alt: t.Type<string | null, string | null, unknown>;
|
|
2172
1510
|
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2173
1511
|
}>]>>, t.PartialC<{
|
|
2174
|
-
linkTo: t.UnionC<[t.Type<
|
|
2175
|
-
__TYPE__: "ImageLink";
|
|
2176
|
-
} & {
|
|
2177
|
-
id: string;
|
|
2178
|
-
url: string;
|
|
2179
|
-
height: string;
|
|
2180
|
-
width: string;
|
|
2181
|
-
size: string;
|
|
2182
|
-
name: string;
|
|
2183
|
-
kind: string;
|
|
2184
|
-
} & {
|
|
2185
|
-
date?: string | null | undefined;
|
|
2186
|
-
}) | ({
|
|
2187
|
-
id: string;
|
|
2188
|
-
url: string;
|
|
2189
|
-
name: string;
|
|
2190
|
-
kind: string;
|
|
2191
|
-
size: string;
|
|
2192
|
-
} & {
|
|
2193
|
-
date?: string | null | undefined;
|
|
2194
|
-
} & {
|
|
2195
|
-
__TYPE__: "FileLink";
|
|
2196
|
-
} & {
|
|
2197
|
-
size?: string;
|
|
2198
|
-
}) | ({
|
|
2199
|
-
__TYPE__: "DocumentLink";
|
|
2200
|
-
} & {
|
|
2201
|
-
id: string;
|
|
2202
|
-
}) | ({
|
|
2203
|
-
__TYPE__: "ExternalLink";
|
|
2204
|
-
} & {
|
|
2205
|
-
url: string;
|
|
2206
|
-
} & {
|
|
2207
|
-
kind?: "web";
|
|
2208
|
-
target?: string | null | undefined;
|
|
2209
|
-
preview?: {
|
|
2210
|
-
title?: string;
|
|
2211
|
-
} | null | undefined;
|
|
2212
|
-
}), ({
|
|
2213
|
-
id: string;
|
|
2214
|
-
url: string;
|
|
2215
|
-
height: string;
|
|
2216
|
-
width: string;
|
|
2217
|
-
size: string;
|
|
2218
|
-
name: string;
|
|
2219
|
-
kind: string;
|
|
2220
|
-
} & {
|
|
2221
|
-
date?: string | null | undefined;
|
|
2222
|
-
}) | ({
|
|
2223
|
-
id: string;
|
|
2224
|
-
url: string;
|
|
2225
|
-
name: string;
|
|
2226
|
-
kind: string;
|
|
2227
|
-
size: string;
|
|
2228
|
-
} & {
|
|
2229
|
-
date?: string | null | undefined;
|
|
2230
|
-
}) | {
|
|
2231
|
-
id: string;
|
|
2232
|
-
} | ({
|
|
2233
|
-
url: string;
|
|
2234
|
-
} & {
|
|
2235
|
-
kind?: "web";
|
|
2236
|
-
target?: string | null | undefined;
|
|
2237
|
-
preview?: {
|
|
2238
|
-
title?: string;
|
|
2239
|
-
} | null | undefined;
|
|
2240
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
1512
|
+
linkTo: t.UnionC<[t.Type<any, any, unknown>, t.NullC, t.UndefinedC]>;
|
|
2241
1513
|
}>]>;
|
|
2242
1514
|
}>, t.PartialC<{
|
|
2243
1515
|
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -2383,405 +1655,7 @@ export declare const SliceItemContent: t.TypeC<{
|
|
|
2383
1655
|
}>]>>]>>;
|
|
2384
1656
|
}>>, t.ExactC<t.TypeC<{
|
|
2385
1657
|
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2386
|
-
}>>]>, t.
|
|
2387
|
-
__TYPE__: t.LiteralC<"GroupContentType">;
|
|
2388
|
-
value: t.ArrayC<t.ExactC<t.TypeC<{
|
|
2389
|
-
__TYPE__: t.LiteralC<"GroupItemContent">;
|
|
2390
|
-
value: t.ArrayC<t.TupleC<[t.StringC, t.UnionC<[t.ExactC<t.TypeC<{
|
|
2391
|
-
type: t.StringC;
|
|
2392
|
-
__TYPE__: t.LiteralC<"EmptyContent">;
|
|
2393
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2394
|
-
__TYPE__: t.LiteralC<"BooleanContent">;
|
|
2395
|
-
value: t.BooleanC;
|
|
2396
|
-
}>>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2397
|
-
embed_url: t.StringC;
|
|
2398
|
-
type: t.StringC;
|
|
2399
|
-
}>, t.PartialC<{
|
|
2400
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2401
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2402
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2403
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2404
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2405
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2406
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2407
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2408
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2409
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2410
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2411
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2412
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2413
|
-
all: t.UnknownC;
|
|
2414
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2415
|
-
type: t.LiteralC<"Text">;
|
|
2416
|
-
value: t.Type<string, string, unknown>;
|
|
2417
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2418
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2419
|
-
type: t.LiteralC<"Timestamp">;
|
|
2420
|
-
value: t.Type<string, string, unknown>;
|
|
2421
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2422
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2423
|
-
type: t.LiteralC<"Select">;
|
|
2424
|
-
value: t.Type<string, string, unknown>;
|
|
2425
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2426
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2427
|
-
type: t.LiteralC<"Range">;
|
|
2428
|
-
value: t.Type<string, string, unknown>;
|
|
2429
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2430
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2431
|
-
type: t.LiteralC<"Number">;
|
|
2432
|
-
value: t.Type<string, string, unknown>;
|
|
2433
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2434
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2435
|
-
type: t.LiteralC<"Date">;
|
|
2436
|
-
value: t.Type<string, string, unknown>;
|
|
2437
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2438
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2439
|
-
type: t.LiteralC<"Color">;
|
|
2440
|
-
value: t.Type<string, string, unknown>;
|
|
2441
|
-
__TYPE__: t.LiteralC<"FieldContent">;
|
|
2442
|
-
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2443
|
-
position: t.ExactC<t.TypeC<{
|
|
2444
|
-
lat: t.NumberC;
|
|
2445
|
-
lng: t.NumberC;
|
|
2446
|
-
}>>;
|
|
2447
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2448
|
-
__TYPE__: t.LiteralC<"GeoPointContent">;
|
|
2449
|
-
}>>]>, t.IntersectionC<[t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2450
|
-
origin: t.ExactC<t.TypeC<{
|
|
2451
|
-
id: t.StringC;
|
|
2452
|
-
url: t.StringC;
|
|
2453
|
-
width: t.NumberC;
|
|
2454
|
-
height: t.NumberC;
|
|
2455
|
-
}>>;
|
|
2456
|
-
width: t.NumberC;
|
|
2457
|
-
height: t.NumberC;
|
|
2458
|
-
edit: t.TypeC<{
|
|
2459
|
-
zoom: t.NumberC;
|
|
2460
|
-
crop: t.TypeC<{
|
|
2461
|
-
x: t.NumberC;
|
|
2462
|
-
y: t.NumberC;
|
|
2463
|
-
}>;
|
|
2464
|
-
background: t.StringC;
|
|
2465
|
-
}>;
|
|
2466
|
-
}>, t.PartialC<{
|
|
2467
|
-
url: t.StringC;
|
|
2468
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
2469
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
2470
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2471
|
-
}>]>>, t.PartialC<{
|
|
2472
|
-
thumbnails: t.RecordC<t.StringC, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2473
|
-
origin: t.ExactC<t.TypeC<{
|
|
2474
|
-
id: t.StringC;
|
|
2475
|
-
url: t.StringC;
|
|
2476
|
-
width: t.NumberC;
|
|
2477
|
-
height: t.NumberC;
|
|
2478
|
-
}>>;
|
|
2479
|
-
width: t.NumberC;
|
|
2480
|
-
height: t.NumberC;
|
|
2481
|
-
edit: t.TypeC<{
|
|
2482
|
-
zoom: t.NumberC;
|
|
2483
|
-
crop: t.TypeC<{
|
|
2484
|
-
x: t.NumberC;
|
|
2485
|
-
y: t.NumberC;
|
|
2486
|
-
}>;
|
|
2487
|
-
background: t.StringC;
|
|
2488
|
-
}>;
|
|
2489
|
-
}>, t.PartialC<{
|
|
2490
|
-
url: t.StringC;
|
|
2491
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
2492
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
2493
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2494
|
-
}>]>>>;
|
|
2495
|
-
}>]>, t.ExactC<t.TypeC<{
|
|
2496
|
-
__TYPE__: t.LiteralC<"ImageContent">;
|
|
2497
|
-
}>>]>, t.ExactC<t.TypeC<{
|
|
2498
|
-
__TYPE__: t.LiteralC<"IntegrationFieldsContent">;
|
|
2499
|
-
value: t.StringC;
|
|
2500
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2501
|
-
__TYPE__: t.LiteralC<"LinkContent">;
|
|
2502
|
-
value: t.UnionC<[t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2503
|
-
__TYPE__: t.LiteralC<"ImageLink">;
|
|
2504
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2505
|
-
id: t.StringC;
|
|
2506
|
-
url: t.StringC;
|
|
2507
|
-
height: t.StringC;
|
|
2508
|
-
width: t.StringC;
|
|
2509
|
-
size: t.StringC;
|
|
2510
|
-
name: t.StringC;
|
|
2511
|
-
kind: t.StringC;
|
|
2512
|
-
}>, t.PartialC<{
|
|
2513
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2514
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2515
|
-
id: t.StringC;
|
|
2516
|
-
url: t.StringC;
|
|
2517
|
-
name: t.StringC;
|
|
2518
|
-
kind: t.StringC;
|
|
2519
|
-
size: t.StringC;
|
|
2520
|
-
}>, t.PartialC<{
|
|
2521
|
-
date: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2522
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2523
|
-
__TYPE__: t.LiteralC<"FileLink">;
|
|
2524
|
-
}>, t.PartialC<{
|
|
2525
|
-
size: t.StringC;
|
|
2526
|
-
}>]>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2527
|
-
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2528
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2529
|
-
id: t.Type<string, string, unknown>;
|
|
2530
|
-
}>>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2531
|
-
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2532
|
-
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2533
|
-
url: t.StringC;
|
|
2534
|
-
}>, t.PartialC<{
|
|
2535
|
-
kind: t.LiteralC<"web">;
|
|
2536
|
-
target: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2537
|
-
preview: t.UnionC<[t.Type<{
|
|
2538
|
-
title?: string;
|
|
2539
|
-
}, {
|
|
2540
|
-
title?: string;
|
|
2541
|
-
}, unknown>, t.NullC, t.UndefinedC]>;
|
|
2542
|
-
}>]>>]>]>;
|
|
2543
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2544
|
-
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
2545
|
-
value: t.ArrayC<t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2546
|
-
type: t.LiteralC<"image">;
|
|
2547
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2548
|
-
origin: t.ExactC<t.TypeC<{
|
|
2549
|
-
id: t.StringC;
|
|
2550
|
-
url: t.StringC;
|
|
2551
|
-
width: t.NumberC;
|
|
2552
|
-
height: t.NumberC;
|
|
2553
|
-
}>>;
|
|
2554
|
-
width: t.NumberC;
|
|
2555
|
-
height: t.NumberC;
|
|
2556
|
-
edit: t.TypeC<{
|
|
2557
|
-
zoom: t.NumberC;
|
|
2558
|
-
crop: t.TypeC<{
|
|
2559
|
-
x: t.NumberC;
|
|
2560
|
-
y: t.NumberC;
|
|
2561
|
-
}>;
|
|
2562
|
-
background: t.StringC;
|
|
2563
|
-
}>;
|
|
2564
|
-
}>, t.PartialC<{
|
|
2565
|
-
url: t.StringC;
|
|
2566
|
-
credits: t.Type<string | null, string | null, unknown>;
|
|
2567
|
-
alt: t.Type<string | null, string | null, unknown>;
|
|
2568
|
-
provider: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2569
|
-
}>]>>, t.PartialC<{
|
|
2570
|
-
linkTo: t.UnionC<[t.Type<({
|
|
2571
|
-
__TYPE__: "ImageLink";
|
|
2572
|
-
} & {
|
|
2573
|
-
id: string;
|
|
2574
|
-
url: string;
|
|
2575
|
-
height: string;
|
|
2576
|
-
width: string;
|
|
2577
|
-
size: string;
|
|
2578
|
-
name: string;
|
|
2579
|
-
kind: string;
|
|
2580
|
-
} & {
|
|
2581
|
-
date?: string | null | undefined;
|
|
2582
|
-
}) | ({
|
|
2583
|
-
id: string;
|
|
2584
|
-
url: string;
|
|
2585
|
-
name: string;
|
|
2586
|
-
kind: string;
|
|
2587
|
-
size: string;
|
|
2588
|
-
} & {
|
|
2589
|
-
date?: string | null | undefined;
|
|
2590
|
-
} & {
|
|
2591
|
-
__TYPE__: "FileLink";
|
|
2592
|
-
} & {
|
|
2593
|
-
size?: string;
|
|
2594
|
-
}) | ({
|
|
2595
|
-
__TYPE__: "DocumentLink";
|
|
2596
|
-
} & {
|
|
2597
|
-
id: string;
|
|
2598
|
-
}) | ({
|
|
2599
|
-
__TYPE__: "ExternalLink";
|
|
2600
|
-
} & {
|
|
2601
|
-
url: string;
|
|
2602
|
-
} & {
|
|
2603
|
-
kind?: "web";
|
|
2604
|
-
target?: string | null | undefined;
|
|
2605
|
-
preview?: {
|
|
2606
|
-
title?: string;
|
|
2607
|
-
} | null | undefined;
|
|
2608
|
-
}), ({
|
|
2609
|
-
id: string;
|
|
2610
|
-
url: string;
|
|
2611
|
-
height: string;
|
|
2612
|
-
width: string;
|
|
2613
|
-
size: string;
|
|
2614
|
-
name: string;
|
|
2615
|
-
kind: string;
|
|
2616
|
-
} & {
|
|
2617
|
-
date?: string | null | undefined;
|
|
2618
|
-
}) | ({
|
|
2619
|
-
id: string;
|
|
2620
|
-
url: string;
|
|
2621
|
-
name: string;
|
|
2622
|
-
kind: string;
|
|
2623
|
-
size: string;
|
|
2624
|
-
} & {
|
|
2625
|
-
date?: string | null | undefined;
|
|
2626
|
-
}) | {
|
|
2627
|
-
id: string;
|
|
2628
|
-
} | ({
|
|
2629
|
-
url: string;
|
|
2630
|
-
} & {
|
|
2631
|
-
kind?: "web";
|
|
2632
|
-
target?: string | null | undefined;
|
|
2633
|
-
preview?: {
|
|
2634
|
-
title?: string;
|
|
2635
|
-
} | null | undefined;
|
|
2636
|
-
}), unknown>, t.NullC, t.UndefinedC]>;
|
|
2637
|
-
}>]>;
|
|
2638
|
-
}>, t.PartialC<{
|
|
2639
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2640
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2641
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2642
|
-
type: t.LiteralC<"embed">;
|
|
2643
|
-
data: t.IntersectionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2644
|
-
embed_url: t.StringC;
|
|
2645
|
-
type: t.StringC;
|
|
2646
|
-
}>, t.PartialC<{
|
|
2647
|
-
version: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2648
|
-
title: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2649
|
-
author_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2650
|
-
author_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2651
|
-
provider_name: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2652
|
-
provider_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2653
|
-
cache_age: t.UnionC<[t.StringC, t.NumberC, t.NullC]>;
|
|
2654
|
-
thumbnail_url: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2655
|
-
thumbnail_width: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2656
|
-
thumbnail_height: t.UnionC<[t.Type<number, number, unknown>, t.NullC, t.UndefinedC]>;
|
|
2657
|
-
html: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2658
|
-
}>]>>, t.ExactC<t.TypeC<{
|
|
2659
|
-
__TYPE__: t.LiteralC<"EmbedContent">;
|
|
2660
|
-
all: t.UnknownC;
|
|
2661
|
-
}>>]>;
|
|
2662
|
-
}>, t.PartialC<{
|
|
2663
|
-
label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2664
|
-
direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
2665
|
-
}>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2666
|
-
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>;
|
|
2667
|
-
content: t.IntersectionC<[t.TypeC<{
|
|
2668
|
-
text: t.StringC;
|
|
2669
|
-
}>, t.PartialC<{
|
|
2670
|
-
spans: t.Type<({
|
|
2671
|
-
data: ({
|
|
2672
|
-
__TYPE__: "ImageLink";
|
|
2673
|
-
} & {
|
|
2674
|
-
id: string;
|
|
2675
|
-
url: string;
|
|
2676
|
-
height: string;
|
|
2677
|
-
width: string;
|
|
2678
|
-
size: string;
|
|
2679
|
-
name: string;
|
|
2680
|
-
kind: string;
|
|
2681
|
-
} & {
|
|
2682
|
-
date?: string | null | undefined;
|
|
2683
|
-
}) | ({
|
|
2684
|
-
id: string;
|
|
2685
|
-
url: string;
|
|
2686
|
-
name: string;
|
|
2687
|
-
kind: string;
|
|
2688
|
-
size: string;
|
|
2689
|
-
} & {
|
|
2690
|
-
date?: string | null | undefined;
|
|
2691
|
-
} & {
|
|
2692
|
-
__TYPE__: "FileLink";
|
|
2693
|
-
} & {
|
|
2694
|
-
size?: string;
|
|
2695
|
-
}) | ({
|
|
2696
|
-
__TYPE__: "DocumentLink";
|
|
2697
|
-
} & {
|
|
2698
|
-
id: string;
|
|
2699
|
-
}) | ({
|
|
2700
|
-
__TYPE__: "ExternalLink";
|
|
2701
|
-
} & {
|
|
2702
|
-
url: string;
|
|
2703
|
-
} & {
|
|
2704
|
-
kind?: "web";
|
|
2705
|
-
target?: string | null | undefined;
|
|
2706
|
-
preview?: {
|
|
2707
|
-
title?: string;
|
|
2708
|
-
} | null | undefined;
|
|
2709
|
-
});
|
|
2710
|
-
start: number;
|
|
2711
|
-
end: number;
|
|
2712
|
-
type: "hyperlink";
|
|
2713
|
-
} | {
|
|
2714
|
-
data: string;
|
|
2715
|
-
start: number;
|
|
2716
|
-
end: number;
|
|
2717
|
-
type: "label";
|
|
2718
|
-
} | {
|
|
2719
|
-
start: number;
|
|
2720
|
-
end: number;
|
|
2721
|
-
type: "strong" | "em" | "list-item";
|
|
2722
|
-
})[], ({
|
|
2723
|
-
data: ({
|
|
2724
|
-
__TYPE__: "ImageLink";
|
|
2725
|
-
} & {
|
|
2726
|
-
id: string;
|
|
2727
|
-
url: string;
|
|
2728
|
-
height: string;
|
|
2729
|
-
width: string;
|
|
2730
|
-
size: string;
|
|
2731
|
-
name: string;
|
|
2732
|
-
kind: string;
|
|
2733
|
-
} & {
|
|
2734
|
-
date?: string | null | undefined;
|
|
2735
|
-
}) | ({
|
|
2736
|
-
id: string;
|
|
2737
|
-
url: string;
|
|
2738
|
-
name: string;
|
|
2739
|
-
kind: string;
|
|
2740
|
-
size: string;
|
|
2741
|
-
} & {
|
|
2742
|
-
date?: string | null | undefined;
|
|
2743
|
-
} & {
|
|
2744
|
-
__TYPE__: "FileLink";
|
|
2745
|
-
} & {
|
|
2746
|
-
size?: string;
|
|
2747
|
-
}) | ({
|
|
2748
|
-
__TYPE__: "DocumentLink";
|
|
2749
|
-
} & {
|
|
2750
|
-
id: string;
|
|
2751
|
-
}) | ({
|
|
2752
|
-
__TYPE__: "ExternalLink";
|
|
2753
|
-
} & {
|
|
2754
|
-
url: string;
|
|
2755
|
-
} & {
|
|
2756
|
-
kind?: "web";
|
|
2757
|
-
target?: string | null | undefined;
|
|
2758
|
-
preview?: {
|
|
2759
|
-
title?: string;
|
|
2760
|
-
} | null | undefined;
|
|
2761
|
-
});
|
|
2762
|
-
start: number;
|
|
2763
|
-
end: number;
|
|
2764
|
-
type: "hyperlink";
|
|
2765
|
-
} | {
|
|
2766
|
-
data: string;
|
|
2767
|
-
start: number;
|
|
2768
|
-
end: number;
|
|
2769
|
-
type: "label";
|
|
2770
|
-
} | {
|
|
2771
|
-
start: number;
|
|
2772
|
-
end: number;
|
|
2773
|
-
type: "strong" | "em" | "list-item";
|
|
2774
|
-
})[], unknown>;
|
|
2775
|
-
}>]>;
|
|
2776
|
-
}>, t.PartialC<{
|
|
2777
|
-
label: t.StringC;
|
|
2778
|
-
direction: t.StringC;
|
|
2779
|
-
}>]>>]>>;
|
|
2780
|
-
}>>, t.ExactC<t.TypeC<{
|
|
2781
|
-
__TYPE__: t.LiteralC<"SeparatorContent">;
|
|
2782
|
-
}>>]>]>>;
|
|
2783
|
-
}>>>;
|
|
2784
|
-
}>>]>]>;
|
|
1658
|
+
}>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>;
|
|
2785
1659
|
}>;
|
|
2786
1660
|
export declare type SliceItemContent = t.TypeOf<typeof SliceItemContent>;
|
|
2787
1661
|
export declare type SharedSliceItemContent = Omit<SliceItemContent, "widget"> & {
|
|
@@ -2934,249 +1808,31 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
2934
1808
|
kind: string;
|
|
2935
1809
|
size: string;
|
|
2936
1810
|
} & {
|
|
2937
|
-
date?: string | null | undefined;
|
|
2938
|
-
} & {
|
|
2939
|
-
__TYPE__: "FileLink";
|
|
2940
|
-
} & {
|
|
2941
|
-
size?: string;
|
|
2942
|
-
}) | ({
|
|
2943
|
-
__TYPE__: "DocumentLink";
|
|
2944
|
-
} & {
|
|
2945
|
-
id: string;
|
|
2946
|
-
}) | ({
|
|
2947
|
-
__TYPE__: "ExternalLink";
|
|
2948
|
-
} & {
|
|
2949
|
-
url: string;
|
|
2950
|
-
} & {
|
|
2951
|
-
kind?: "web";
|
|
2952
|
-
target?: string | null | undefined;
|
|
2953
|
-
preview?: {
|
|
2954
|
-
title?: string;
|
|
2955
|
-
} | null | undefined;
|
|
2956
|
-
});
|
|
2957
|
-
} | {
|
|
2958
|
-
__TYPE__: "StructuredTextContent";
|
|
2959
|
-
value: (({
|
|
2960
|
-
type: "image";
|
|
2961
|
-
data: {
|
|
2962
|
-
origin: {
|
|
2963
|
-
id: string;
|
|
2964
|
-
url: string;
|
|
2965
|
-
width: number;
|
|
2966
|
-
height: number;
|
|
2967
|
-
};
|
|
2968
|
-
width: number;
|
|
2969
|
-
height: number;
|
|
2970
|
-
edit: {
|
|
2971
|
-
zoom: number;
|
|
2972
|
-
crop: {
|
|
2973
|
-
x: number;
|
|
2974
|
-
y: number;
|
|
2975
|
-
};
|
|
2976
|
-
background: string;
|
|
2977
|
-
};
|
|
2978
|
-
} & {
|
|
2979
|
-
url?: string;
|
|
2980
|
-
credits?: string | null;
|
|
2981
|
-
alt?: string | null;
|
|
2982
|
-
provider?: string | null | undefined;
|
|
2983
|
-
} & {
|
|
2984
|
-
linkTo?: ({
|
|
2985
|
-
__TYPE__: "ImageLink";
|
|
2986
|
-
} & {
|
|
2987
|
-
id: string;
|
|
2988
|
-
url: string;
|
|
2989
|
-
height: string;
|
|
2990
|
-
width: string;
|
|
2991
|
-
size: string;
|
|
2992
|
-
name: string;
|
|
2993
|
-
kind: string;
|
|
2994
|
-
} & {
|
|
2995
|
-
date?: string | null | undefined;
|
|
2996
|
-
}) | ({
|
|
2997
|
-
id: string;
|
|
2998
|
-
url: string;
|
|
2999
|
-
name: string;
|
|
3000
|
-
kind: string;
|
|
3001
|
-
size: string;
|
|
3002
|
-
} & {
|
|
3003
|
-
date?: string | null | undefined;
|
|
3004
|
-
} & {
|
|
3005
|
-
__TYPE__: "FileLink";
|
|
3006
|
-
} & {
|
|
3007
|
-
size?: string;
|
|
3008
|
-
}) | ({
|
|
3009
|
-
__TYPE__: "DocumentLink";
|
|
3010
|
-
} & {
|
|
3011
|
-
id: string;
|
|
3012
|
-
}) | ({
|
|
3013
|
-
__TYPE__: "ExternalLink";
|
|
3014
|
-
} & {
|
|
3015
|
-
url: string;
|
|
3016
|
-
} & {
|
|
3017
|
-
kind?: "web";
|
|
3018
|
-
target?: string | null | undefined;
|
|
3019
|
-
preview?: {
|
|
3020
|
-
title?: string;
|
|
3021
|
-
} | null | undefined;
|
|
3022
|
-
}) | null | undefined;
|
|
3023
|
-
};
|
|
3024
|
-
} & {
|
|
3025
|
-
label?: string | null | undefined;
|
|
3026
|
-
direction?: string | null | undefined;
|
|
3027
|
-
}) | ({
|
|
3028
|
-
type: "embed";
|
|
3029
|
-
data: {
|
|
3030
|
-
embed_url: string;
|
|
3031
|
-
type: string;
|
|
3032
|
-
} & {
|
|
3033
|
-
version?: string | number | null;
|
|
3034
|
-
title?: string | null | undefined;
|
|
3035
|
-
author_name?: string | null | undefined;
|
|
3036
|
-
author_url?: string | null | undefined;
|
|
3037
|
-
provider_name?: string | null | undefined;
|
|
3038
|
-
provider_url?: string | null | undefined;
|
|
3039
|
-
cache_age?: string | number | null;
|
|
3040
|
-
thumbnail_url?: string | null | undefined;
|
|
3041
|
-
thumbnail_width?: number | null | undefined;
|
|
3042
|
-
thumbnail_height?: number | null | undefined;
|
|
3043
|
-
html?: string | null | undefined;
|
|
3044
|
-
} & {
|
|
3045
|
-
__TYPE__: "EmbedContent";
|
|
3046
|
-
all: unknown;
|
|
3047
|
-
};
|
|
3048
|
-
} & {
|
|
3049
|
-
label?: string | null | undefined;
|
|
3050
|
-
direction?: string | null | undefined;
|
|
1811
|
+
date?: string | null | undefined;
|
|
1812
|
+
} & {
|
|
1813
|
+
__TYPE__: "FileLink";
|
|
1814
|
+
} & {
|
|
1815
|
+
size?: string;
|
|
3051
1816
|
}) | ({
|
|
3052
|
-
|
|
3053
|
-
content: {
|
|
3054
|
-
text: string;
|
|
3055
|
-
} & {
|
|
3056
|
-
spans?: ({
|
|
3057
|
-
data: ({
|
|
3058
|
-
__TYPE__: "ImageLink";
|
|
3059
|
-
} & {
|
|
3060
|
-
id: string;
|
|
3061
|
-
url: string;
|
|
3062
|
-
height: string;
|
|
3063
|
-
width: string;
|
|
3064
|
-
size: string;
|
|
3065
|
-
name: string;
|
|
3066
|
-
kind: string;
|
|
3067
|
-
} & {
|
|
3068
|
-
date?: string | null | undefined;
|
|
3069
|
-
}) | ({
|
|
3070
|
-
id: string;
|
|
3071
|
-
url: string;
|
|
3072
|
-
name: string;
|
|
3073
|
-
kind: string;
|
|
3074
|
-
size: string;
|
|
3075
|
-
} & {
|
|
3076
|
-
date?: string | null | undefined;
|
|
3077
|
-
} & {
|
|
3078
|
-
__TYPE__: "FileLink";
|
|
3079
|
-
} & {
|
|
3080
|
-
size?: string;
|
|
3081
|
-
}) | ({
|
|
3082
|
-
__TYPE__: "DocumentLink";
|
|
3083
|
-
} & {
|
|
3084
|
-
id: string;
|
|
3085
|
-
}) | ({
|
|
3086
|
-
__TYPE__: "ExternalLink";
|
|
3087
|
-
} & {
|
|
3088
|
-
url: string;
|
|
3089
|
-
} & {
|
|
3090
|
-
kind?: "web";
|
|
3091
|
-
target?: string | null | undefined;
|
|
3092
|
-
preview?: {
|
|
3093
|
-
title?: string;
|
|
3094
|
-
} | null | undefined;
|
|
3095
|
-
});
|
|
3096
|
-
start: number;
|
|
3097
|
-
end: number;
|
|
3098
|
-
type: "hyperlink";
|
|
3099
|
-
} | {
|
|
3100
|
-
data: string;
|
|
3101
|
-
start: number;
|
|
3102
|
-
end: number;
|
|
3103
|
-
type: "label";
|
|
3104
|
-
} | {
|
|
3105
|
-
start: number;
|
|
3106
|
-
end: number;
|
|
3107
|
-
type: "strong" | "em" | "list-item";
|
|
3108
|
-
})[];
|
|
3109
|
-
};
|
|
1817
|
+
__TYPE__: "DocumentLink";
|
|
3110
1818
|
} & {
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
1819
|
+
id: string;
|
|
1820
|
+
}) | ({
|
|
1821
|
+
__TYPE__: "ExternalLink";
|
|
1822
|
+
} & {
|
|
1823
|
+
url: string;
|
|
1824
|
+
} & {
|
|
1825
|
+
kind?: "web";
|
|
1826
|
+
target?: string | null | undefined;
|
|
1827
|
+
preview?: {
|
|
1828
|
+
title?: string;
|
|
1829
|
+
} | null | undefined;
|
|
1830
|
+
});
|
|
3116
1831
|
} | {
|
|
3117
|
-
__TYPE__: "
|
|
3118
|
-
value: {
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
type: string;
|
|
3122
|
-
__TYPE__: "EmptyContent";
|
|
3123
|
-
} | {
|
|
3124
|
-
__TYPE__: "BooleanContent";
|
|
3125
|
-
value: boolean;
|
|
3126
|
-
} | ({
|
|
3127
|
-
embed_url: string;
|
|
3128
|
-
type: string;
|
|
3129
|
-
} & {
|
|
3130
|
-
version?: string | number | null;
|
|
3131
|
-
title?: string | null | undefined;
|
|
3132
|
-
author_name?: string | null | undefined;
|
|
3133
|
-
author_url?: string | null | undefined;
|
|
3134
|
-
provider_name?: string | null | undefined;
|
|
3135
|
-
provider_url?: string | null | undefined;
|
|
3136
|
-
cache_age?: string | number | null;
|
|
3137
|
-
thumbnail_url?: string | null | undefined;
|
|
3138
|
-
thumbnail_width?: number | null | undefined;
|
|
3139
|
-
thumbnail_height?: number | null | undefined;
|
|
3140
|
-
html?: string | null | undefined;
|
|
3141
|
-
} & {
|
|
3142
|
-
__TYPE__: "EmbedContent";
|
|
3143
|
-
all: unknown;
|
|
3144
|
-
}) | {
|
|
3145
|
-
type: "Color";
|
|
3146
|
-
value: string;
|
|
3147
|
-
__TYPE__: "FieldContent";
|
|
3148
|
-
} | {
|
|
3149
|
-
type: "Date";
|
|
3150
|
-
value: string;
|
|
3151
|
-
__TYPE__: "FieldContent";
|
|
3152
|
-
} | {
|
|
3153
|
-
type: "Number";
|
|
3154
|
-
value: string;
|
|
3155
|
-
__TYPE__: "FieldContent";
|
|
3156
|
-
} | {
|
|
3157
|
-
type: "Range";
|
|
3158
|
-
value: string;
|
|
3159
|
-
__TYPE__: "FieldContent";
|
|
3160
|
-
} | {
|
|
3161
|
-
type: "Select";
|
|
3162
|
-
value: string;
|
|
3163
|
-
__TYPE__: "FieldContent";
|
|
3164
|
-
} | {
|
|
3165
|
-
type: "Text";
|
|
3166
|
-
value: string;
|
|
3167
|
-
__TYPE__: "FieldContent";
|
|
3168
|
-
} | {
|
|
3169
|
-
type: "Timestamp";
|
|
3170
|
-
value: string;
|
|
3171
|
-
__TYPE__: "FieldContent";
|
|
3172
|
-
} | ({
|
|
3173
|
-
position: {
|
|
3174
|
-
lat: number;
|
|
3175
|
-
lng: number;
|
|
3176
|
-
};
|
|
3177
|
-
} & {
|
|
3178
|
-
__TYPE__: "GeoPointContent";
|
|
3179
|
-
}) | ({
|
|
1832
|
+
__TYPE__: "StructuredTextContent";
|
|
1833
|
+
value: (({
|
|
1834
|
+
type: "image";
|
|
1835
|
+
data: {
|
|
3180
1836
|
origin: {
|
|
3181
1837
|
id: string;
|
|
3182
1838
|
url: string;
|
|
@@ -3199,239 +1855,101 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3199
1855
|
alt?: string | null;
|
|
3200
1856
|
provider?: string | null | undefined;
|
|
3201
1857
|
} & {
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
edit: {
|
|
3213
|
-
zoom: number;
|
|
3214
|
-
crop: {
|
|
3215
|
-
x: number;
|
|
3216
|
-
y: number;
|
|
3217
|
-
};
|
|
3218
|
-
background: string;
|
|
3219
|
-
};
|
|
3220
|
-
} & {
|
|
3221
|
-
url?: string;
|
|
3222
|
-
credits?: string | null;
|
|
3223
|
-
alt?: string | null;
|
|
3224
|
-
provider?: string | null | undefined;
|
|
3225
|
-
};
|
|
3226
|
-
};
|
|
1858
|
+
linkTo?: any;
|
|
1859
|
+
};
|
|
1860
|
+
} & {
|
|
1861
|
+
label?: string | null | undefined;
|
|
1862
|
+
direction?: string | null | undefined;
|
|
1863
|
+
}) | ({
|
|
1864
|
+
type: "embed";
|
|
1865
|
+
data: {
|
|
1866
|
+
embed_url: string;
|
|
1867
|
+
type: string;
|
|
3227
1868
|
} & {
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
} & {
|
|
3255
|
-
__TYPE__: "FileLink";
|
|
3256
|
-
} & {
|
|
3257
|
-
size?: string;
|
|
3258
|
-
}) | ({
|
|
3259
|
-
__TYPE__: "DocumentLink";
|
|
3260
|
-
} & {
|
|
3261
|
-
id: string;
|
|
3262
|
-
}) | ({
|
|
3263
|
-
__TYPE__: "ExternalLink";
|
|
3264
|
-
} & {
|
|
3265
|
-
url: string;
|
|
3266
|
-
} & {
|
|
3267
|
-
kind?: "web";
|
|
3268
|
-
target?: string | null | undefined;
|
|
3269
|
-
preview?: {
|
|
3270
|
-
title?: string;
|
|
3271
|
-
} | null | undefined;
|
|
3272
|
-
});
|
|
3273
|
-
} | {
|
|
3274
|
-
__TYPE__: "StructuredTextContent";
|
|
3275
|
-
value: (({
|
|
3276
|
-
type: "image";
|
|
3277
|
-
data: {
|
|
3278
|
-
origin: {
|
|
3279
|
-
id: string;
|
|
3280
|
-
url: string;
|
|
3281
|
-
width: number;
|
|
3282
|
-
height: number;
|
|
3283
|
-
};
|
|
3284
|
-
width: number;
|
|
3285
|
-
height: number;
|
|
3286
|
-
edit: {
|
|
3287
|
-
zoom: number;
|
|
3288
|
-
crop: {
|
|
3289
|
-
x: number;
|
|
3290
|
-
y: number;
|
|
3291
|
-
};
|
|
3292
|
-
background: string;
|
|
3293
|
-
};
|
|
1869
|
+
version?: string | number | null;
|
|
1870
|
+
title?: string | null | undefined;
|
|
1871
|
+
author_name?: string | null | undefined;
|
|
1872
|
+
author_url?: string | null | undefined;
|
|
1873
|
+
provider_name?: string | null | undefined;
|
|
1874
|
+
provider_url?: string | null | undefined;
|
|
1875
|
+
cache_age?: string | number | null;
|
|
1876
|
+
thumbnail_url?: string | null | undefined;
|
|
1877
|
+
thumbnail_width?: number | null | undefined;
|
|
1878
|
+
thumbnail_height?: number | null | undefined;
|
|
1879
|
+
html?: string | null | undefined;
|
|
1880
|
+
} & {
|
|
1881
|
+
__TYPE__: "EmbedContent";
|
|
1882
|
+
all: unknown;
|
|
1883
|
+
};
|
|
1884
|
+
} & {
|
|
1885
|
+
label?: string | null | undefined;
|
|
1886
|
+
direction?: string | null | undefined;
|
|
1887
|
+
}) | ({
|
|
1888
|
+
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
1889
|
+
content: {
|
|
1890
|
+
text: string;
|
|
1891
|
+
} & {
|
|
1892
|
+
spans?: ({
|
|
1893
|
+
data: ({
|
|
1894
|
+
__TYPE__: "ImageLink";
|
|
3294
1895
|
} & {
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
1896
|
+
id: string;
|
|
1897
|
+
url: string;
|
|
1898
|
+
height: string;
|
|
1899
|
+
width: string;
|
|
1900
|
+
size: string;
|
|
1901
|
+
name: string;
|
|
1902
|
+
kind: string;
|
|
3299
1903
|
} & {
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
size: string;
|
|
3308
|
-
name: string;
|
|
3309
|
-
kind: string;
|
|
3310
|
-
} & {
|
|
3311
|
-
date?: string | null | undefined;
|
|
3312
|
-
}) | ({
|
|
3313
|
-
id: string;
|
|
3314
|
-
url: string;
|
|
3315
|
-
name: string;
|
|
3316
|
-
kind: string;
|
|
3317
|
-
size: string;
|
|
3318
|
-
} & {
|
|
3319
|
-
date?: string | null | undefined;
|
|
3320
|
-
} & {
|
|
3321
|
-
__TYPE__: "FileLink";
|
|
3322
|
-
} & {
|
|
3323
|
-
size?: string;
|
|
3324
|
-
}) | ({
|
|
3325
|
-
__TYPE__: "DocumentLink";
|
|
3326
|
-
} & {
|
|
3327
|
-
id: string;
|
|
3328
|
-
}) | ({
|
|
3329
|
-
__TYPE__: "ExternalLink";
|
|
3330
|
-
} & {
|
|
3331
|
-
url: string;
|
|
3332
|
-
} & {
|
|
3333
|
-
kind?: "web";
|
|
3334
|
-
target?: string | null | undefined;
|
|
3335
|
-
preview?: {
|
|
3336
|
-
title?: string;
|
|
3337
|
-
} | null | undefined;
|
|
3338
|
-
}) | null | undefined;
|
|
3339
|
-
};
|
|
3340
|
-
} & {
|
|
3341
|
-
label?: string | null | undefined;
|
|
3342
|
-
direction?: string | null | undefined;
|
|
3343
|
-
}) | ({
|
|
3344
|
-
type: "embed";
|
|
3345
|
-
data: {
|
|
3346
|
-
embed_url: string;
|
|
3347
|
-
type: string;
|
|
1904
|
+
date?: string | null | undefined;
|
|
1905
|
+
}) | ({
|
|
1906
|
+
id: string;
|
|
1907
|
+
url: string;
|
|
1908
|
+
name: string;
|
|
1909
|
+
kind: string;
|
|
1910
|
+
size: string;
|
|
3348
1911
|
} & {
|
|
3349
|
-
|
|
3350
|
-
title?: string | null | undefined;
|
|
3351
|
-
author_name?: string | null | undefined;
|
|
3352
|
-
author_url?: string | null | undefined;
|
|
3353
|
-
provider_name?: string | null | undefined;
|
|
3354
|
-
provider_url?: string | null | undefined;
|
|
3355
|
-
cache_age?: string | number | null;
|
|
3356
|
-
thumbnail_url?: string | null | undefined;
|
|
3357
|
-
thumbnail_width?: number | null | undefined;
|
|
3358
|
-
thumbnail_height?: number | null | undefined;
|
|
3359
|
-
html?: string | null | undefined;
|
|
1912
|
+
date?: string | null | undefined;
|
|
3360
1913
|
} & {
|
|
3361
|
-
__TYPE__: "
|
|
3362
|
-
all: unknown;
|
|
3363
|
-
};
|
|
3364
|
-
} & {
|
|
3365
|
-
label?: string | null | undefined;
|
|
3366
|
-
direction?: string | null | undefined;
|
|
3367
|
-
}) | ({
|
|
3368
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
3369
|
-
content: {
|
|
3370
|
-
text: string;
|
|
1914
|
+
__TYPE__: "FileLink";
|
|
3371
1915
|
} & {
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
kind?: "web";
|
|
3407
|
-
target?: string | null | undefined;
|
|
3408
|
-
preview?: {
|
|
3409
|
-
title?: string;
|
|
3410
|
-
} | null | undefined;
|
|
3411
|
-
});
|
|
3412
|
-
start: number;
|
|
3413
|
-
end: number;
|
|
3414
|
-
type: "hyperlink";
|
|
3415
|
-
} | {
|
|
3416
|
-
data: string;
|
|
3417
|
-
start: number;
|
|
3418
|
-
end: number;
|
|
3419
|
-
type: "label";
|
|
3420
|
-
} | {
|
|
3421
|
-
start: number;
|
|
3422
|
-
end: number;
|
|
3423
|
-
type: "strong" | "em" | "list-item";
|
|
3424
|
-
})[];
|
|
3425
|
-
};
|
|
3426
|
-
} & {
|
|
3427
|
-
label?: string;
|
|
3428
|
-
direction?: string;
|
|
3429
|
-
}))[];
|
|
3430
|
-
} | {
|
|
3431
|
-
__TYPE__: "SeparatorContent";
|
|
3432
|
-
}][];
|
|
3433
|
-
}[];
|
|
1916
|
+
size?: string;
|
|
1917
|
+
}) | ({
|
|
1918
|
+
__TYPE__: "DocumentLink";
|
|
1919
|
+
} & {
|
|
1920
|
+
id: string;
|
|
1921
|
+
}) | ({
|
|
1922
|
+
__TYPE__: "ExternalLink";
|
|
1923
|
+
} & {
|
|
1924
|
+
url: string;
|
|
1925
|
+
} & {
|
|
1926
|
+
kind?: "web";
|
|
1927
|
+
target?: string | null | undefined;
|
|
1928
|
+
preview?: {
|
|
1929
|
+
title?: string;
|
|
1930
|
+
} | null | undefined;
|
|
1931
|
+
});
|
|
1932
|
+
start: number;
|
|
1933
|
+
end: number;
|
|
1934
|
+
type: "hyperlink";
|
|
1935
|
+
} | {
|
|
1936
|
+
data: string;
|
|
1937
|
+
start: number;
|
|
1938
|
+
end: number;
|
|
1939
|
+
type: "label";
|
|
1940
|
+
} | {
|
|
1941
|
+
start: number;
|
|
1942
|
+
end: number;
|
|
1943
|
+
type: "strong" | "em" | "list-item";
|
|
1944
|
+
})[];
|
|
1945
|
+
};
|
|
1946
|
+
} & {
|
|
1947
|
+
label?: string;
|
|
1948
|
+
direction?: string;
|
|
1949
|
+
}))[];
|
|
3434
1950
|
} | {
|
|
1951
|
+
__TYPE__: "SeparatorContent";
|
|
1952
|
+
} | import("../GroupContent").GroupContent | {
|
|
3435
1953
|
__TYPE__: "CompositeSliceContent";
|
|
3436
1954
|
nonRepeat: {
|
|
3437
1955
|
[x: string]: {
|
|
@@ -3586,73 +2104,35 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3586
2104
|
preview?: {
|
|
3587
2105
|
title?: string;
|
|
3588
2106
|
} | null | undefined;
|
|
3589
|
-
});
|
|
3590
|
-
} | {
|
|
3591
|
-
__TYPE__: "StructuredTextContent";
|
|
3592
|
-
value: (({
|
|
3593
|
-
type: "image";
|
|
3594
|
-
data: {
|
|
3595
|
-
origin: {
|
|
3596
|
-
id: string;
|
|
3597
|
-
url: string;
|
|
3598
|
-
width: number;
|
|
3599
|
-
height: number;
|
|
3600
|
-
};
|
|
3601
|
-
width: number;
|
|
3602
|
-
height: number;
|
|
3603
|
-
edit: {
|
|
3604
|
-
zoom: number;
|
|
3605
|
-
crop: {
|
|
3606
|
-
x: number;
|
|
3607
|
-
y: number;
|
|
3608
|
-
};
|
|
3609
|
-
background: string;
|
|
3610
|
-
};
|
|
3611
|
-
} & {
|
|
3612
|
-
url?: string;
|
|
3613
|
-
credits?: string | null;
|
|
3614
|
-
alt?: string | null;
|
|
3615
|
-
provider?: string | null | undefined;
|
|
3616
|
-
} & {
|
|
3617
|
-
linkTo?: ({
|
|
3618
|
-
__TYPE__: "ImageLink";
|
|
3619
|
-
} & {
|
|
3620
|
-
id: string;
|
|
3621
|
-
url: string;
|
|
3622
|
-
height: string;
|
|
3623
|
-
width: string;
|
|
3624
|
-
size: string;
|
|
3625
|
-
name: string;
|
|
3626
|
-
kind: string;
|
|
3627
|
-
} & {
|
|
3628
|
-
date?: string | null | undefined;
|
|
3629
|
-
}) | ({
|
|
3630
|
-
id: string;
|
|
3631
|
-
url: string;
|
|
3632
|
-
name: string;
|
|
3633
|
-
kind: string;
|
|
3634
|
-
size: string;
|
|
3635
|
-
} & {
|
|
3636
|
-
date?: string | null | undefined;
|
|
3637
|
-
} & {
|
|
3638
|
-
__TYPE__: "FileLink";
|
|
3639
|
-
} & {
|
|
3640
|
-
size?: string;
|
|
3641
|
-
}) | ({
|
|
3642
|
-
__TYPE__: "DocumentLink";
|
|
3643
|
-
} & {
|
|
2107
|
+
});
|
|
2108
|
+
} | {
|
|
2109
|
+
__TYPE__: "StructuredTextContent";
|
|
2110
|
+
value: (({
|
|
2111
|
+
type: "image";
|
|
2112
|
+
data: {
|
|
2113
|
+
origin: {
|
|
3644
2114
|
id: string;
|
|
3645
|
-
}) | ({
|
|
3646
|
-
__TYPE__: "ExternalLink";
|
|
3647
|
-
} & {
|
|
3648
2115
|
url: string;
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
2116
|
+
width: number;
|
|
2117
|
+
height: number;
|
|
2118
|
+
};
|
|
2119
|
+
width: number;
|
|
2120
|
+
height: number;
|
|
2121
|
+
edit: {
|
|
2122
|
+
zoom: number;
|
|
2123
|
+
crop: {
|
|
2124
|
+
x: number;
|
|
2125
|
+
y: number;
|
|
2126
|
+
};
|
|
2127
|
+
background: string;
|
|
2128
|
+
};
|
|
2129
|
+
} & {
|
|
2130
|
+
url?: string;
|
|
2131
|
+
credits?: string | null;
|
|
2132
|
+
alt?: string | null;
|
|
2133
|
+
provider?: string | null | undefined;
|
|
2134
|
+
} & {
|
|
2135
|
+
linkTo?: any;
|
|
3656
2136
|
};
|
|
3657
2137
|
} & {
|
|
3658
2138
|
label?: string | null | undefined;
|
|
@@ -3930,45 +2410,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
3930
2410
|
alt?: string | null;
|
|
3931
2411
|
provider?: string | null | undefined;
|
|
3932
2412
|
} & {
|
|
3933
|
-
linkTo?:
|
|
3934
|
-
__TYPE__: "ImageLink";
|
|
3935
|
-
} & {
|
|
3936
|
-
id: string;
|
|
3937
|
-
url: string;
|
|
3938
|
-
height: string;
|
|
3939
|
-
width: string;
|
|
3940
|
-
size: string;
|
|
3941
|
-
name: string;
|
|
3942
|
-
kind: string;
|
|
3943
|
-
} & {
|
|
3944
|
-
date?: string | null | undefined;
|
|
3945
|
-
}) | ({
|
|
3946
|
-
id: string;
|
|
3947
|
-
url: string;
|
|
3948
|
-
name: string;
|
|
3949
|
-
kind: string;
|
|
3950
|
-
size: string;
|
|
3951
|
-
} & {
|
|
3952
|
-
date?: string | null | undefined;
|
|
3953
|
-
} & {
|
|
3954
|
-
__TYPE__: "FileLink";
|
|
3955
|
-
} & {
|
|
3956
|
-
size?: string;
|
|
3957
|
-
}) | ({
|
|
3958
|
-
__TYPE__: "DocumentLink";
|
|
3959
|
-
} & {
|
|
3960
|
-
id: string;
|
|
3961
|
-
}) | ({
|
|
3962
|
-
__TYPE__: "ExternalLink";
|
|
3963
|
-
} & {
|
|
3964
|
-
url: string;
|
|
3965
|
-
} & {
|
|
3966
|
-
kind?: "web";
|
|
3967
|
-
target?: string | null | undefined;
|
|
3968
|
-
preview?: {
|
|
3969
|
-
title?: string;
|
|
3970
|
-
} | null | undefined;
|
|
3971
|
-
}) | null | undefined;
|
|
2413
|
+
linkTo?: any;
|
|
3972
2414
|
};
|
|
3973
2415
|
} & {
|
|
3974
2416
|
label?: string | null | undefined;
|
|
@@ -4248,45 +2690,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4248
2690
|
alt?: string | null;
|
|
4249
2691
|
provider?: string | null | undefined;
|
|
4250
2692
|
} & {
|
|
4251
|
-
linkTo?:
|
|
4252
|
-
__TYPE__: "ImageLink";
|
|
4253
|
-
} & {
|
|
4254
|
-
id: string;
|
|
4255
|
-
url: string;
|
|
4256
|
-
height: string;
|
|
4257
|
-
width: string;
|
|
4258
|
-
size: string;
|
|
4259
|
-
name: string;
|
|
4260
|
-
kind: string;
|
|
4261
|
-
} & {
|
|
4262
|
-
date?: string | null | undefined;
|
|
4263
|
-
}) | ({
|
|
4264
|
-
id: string;
|
|
4265
|
-
url: string;
|
|
4266
|
-
name: string;
|
|
4267
|
-
kind: string;
|
|
4268
|
-
size: string;
|
|
4269
|
-
} & {
|
|
4270
|
-
date?: string | null | undefined;
|
|
4271
|
-
} & {
|
|
4272
|
-
__TYPE__: "FileLink";
|
|
4273
|
-
} & {
|
|
4274
|
-
size?: string;
|
|
4275
|
-
}) | ({
|
|
4276
|
-
__TYPE__: "DocumentLink";
|
|
4277
|
-
} & {
|
|
4278
|
-
id: string;
|
|
4279
|
-
}) | ({
|
|
4280
|
-
__TYPE__: "ExternalLink";
|
|
4281
|
-
} & {
|
|
4282
|
-
url: string;
|
|
4283
|
-
} & {
|
|
4284
|
-
kind?: "web";
|
|
4285
|
-
target?: string | null | undefined;
|
|
4286
|
-
preview?: {
|
|
4287
|
-
title?: string;
|
|
4288
|
-
} | null | undefined;
|
|
4289
|
-
}) | null | undefined;
|
|
2693
|
+
linkTo?: any;
|
|
4290
2694
|
};
|
|
4291
2695
|
} & {
|
|
4292
2696
|
label?: string | null | undefined;
|
|
@@ -4380,325 +2784,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4380
2784
|
}))[];
|
|
4381
2785
|
} | {
|
|
4382
2786
|
__TYPE__: "SeparatorContent";
|
|
4383
|
-
} |
|
|
4384
|
-
__TYPE__: "GroupContentType";
|
|
4385
|
-
value: {
|
|
4386
|
-
__TYPE__: "GroupItemContent";
|
|
4387
|
-
value: [string, {
|
|
4388
|
-
type: string;
|
|
4389
|
-
__TYPE__: "EmptyContent";
|
|
4390
|
-
} | {
|
|
4391
|
-
__TYPE__: "BooleanContent";
|
|
4392
|
-
value: boolean;
|
|
4393
|
-
} | ({
|
|
4394
|
-
embed_url: string;
|
|
4395
|
-
type: string;
|
|
4396
|
-
} & {
|
|
4397
|
-
version?: string | number | null;
|
|
4398
|
-
title?: string | null | undefined;
|
|
4399
|
-
author_name?: string | null | undefined;
|
|
4400
|
-
author_url?: string | null | undefined;
|
|
4401
|
-
provider_name?: string | null | undefined;
|
|
4402
|
-
provider_url?: string | null | undefined;
|
|
4403
|
-
cache_age?: string | number | null;
|
|
4404
|
-
thumbnail_url?: string | null | undefined;
|
|
4405
|
-
thumbnail_width?: number | null | undefined;
|
|
4406
|
-
thumbnail_height?: number | null | undefined;
|
|
4407
|
-
html?: string | null | undefined;
|
|
4408
|
-
} & {
|
|
4409
|
-
__TYPE__: "EmbedContent";
|
|
4410
|
-
all: unknown;
|
|
4411
|
-
}) | {
|
|
4412
|
-
type: "Color";
|
|
4413
|
-
value: string;
|
|
4414
|
-
__TYPE__: "FieldContent";
|
|
4415
|
-
} | {
|
|
4416
|
-
type: "Date";
|
|
4417
|
-
value: string;
|
|
4418
|
-
__TYPE__: "FieldContent";
|
|
4419
|
-
} | {
|
|
4420
|
-
type: "Number";
|
|
4421
|
-
value: string;
|
|
4422
|
-
__TYPE__: "FieldContent";
|
|
4423
|
-
} | {
|
|
4424
|
-
type: "Range";
|
|
4425
|
-
value: string;
|
|
4426
|
-
__TYPE__: "FieldContent";
|
|
4427
|
-
} | {
|
|
4428
|
-
type: "Select";
|
|
4429
|
-
value: string;
|
|
4430
|
-
__TYPE__: "FieldContent";
|
|
4431
|
-
} | {
|
|
4432
|
-
type: "Text";
|
|
4433
|
-
value: string;
|
|
4434
|
-
__TYPE__: "FieldContent";
|
|
4435
|
-
} | {
|
|
4436
|
-
type: "Timestamp";
|
|
4437
|
-
value: string;
|
|
4438
|
-
__TYPE__: "FieldContent";
|
|
4439
|
-
} | ({
|
|
4440
|
-
position: {
|
|
4441
|
-
lat: number;
|
|
4442
|
-
lng: number;
|
|
4443
|
-
};
|
|
4444
|
-
} & {
|
|
4445
|
-
__TYPE__: "GeoPointContent";
|
|
4446
|
-
}) | ({
|
|
4447
|
-
origin: {
|
|
4448
|
-
id: string;
|
|
4449
|
-
url: string;
|
|
4450
|
-
width: number;
|
|
4451
|
-
height: number;
|
|
4452
|
-
};
|
|
4453
|
-
width: number;
|
|
4454
|
-
height: number;
|
|
4455
|
-
edit: {
|
|
4456
|
-
zoom: number;
|
|
4457
|
-
crop: {
|
|
4458
|
-
x: number;
|
|
4459
|
-
y: number;
|
|
4460
|
-
};
|
|
4461
|
-
background: string;
|
|
4462
|
-
};
|
|
4463
|
-
} & {
|
|
4464
|
-
url?: string;
|
|
4465
|
-
credits?: string | null;
|
|
4466
|
-
alt?: string | null;
|
|
4467
|
-
provider?: string | null | undefined;
|
|
4468
|
-
} & {
|
|
4469
|
-
thumbnails?: {
|
|
4470
|
-
[x: string]: {
|
|
4471
|
-
origin: {
|
|
4472
|
-
id: string;
|
|
4473
|
-
url: string;
|
|
4474
|
-
width: number;
|
|
4475
|
-
height: number;
|
|
4476
|
-
};
|
|
4477
|
-
width: number;
|
|
4478
|
-
height: number;
|
|
4479
|
-
edit: {
|
|
4480
|
-
zoom: number;
|
|
4481
|
-
crop: {
|
|
4482
|
-
x: number;
|
|
4483
|
-
y: number;
|
|
4484
|
-
};
|
|
4485
|
-
background: string;
|
|
4486
|
-
};
|
|
4487
|
-
} & {
|
|
4488
|
-
url?: string;
|
|
4489
|
-
credits?: string | null;
|
|
4490
|
-
alt?: string | null;
|
|
4491
|
-
provider?: string | null | undefined;
|
|
4492
|
-
};
|
|
4493
|
-
};
|
|
4494
|
-
} & {
|
|
4495
|
-
__TYPE__: "ImageContent";
|
|
4496
|
-
}) | {
|
|
4497
|
-
__TYPE__: "IntegrationFieldsContent";
|
|
4498
|
-
value: string;
|
|
4499
|
-
} | {
|
|
4500
|
-
__TYPE__: "LinkContent";
|
|
4501
|
-
value: ({
|
|
4502
|
-
__TYPE__: "ImageLink";
|
|
4503
|
-
} & {
|
|
4504
|
-
id: string;
|
|
4505
|
-
url: string;
|
|
4506
|
-
height: string;
|
|
4507
|
-
width: string;
|
|
4508
|
-
size: string;
|
|
4509
|
-
name: string;
|
|
4510
|
-
kind: string;
|
|
4511
|
-
} & {
|
|
4512
|
-
date?: string | null | undefined;
|
|
4513
|
-
}) | ({
|
|
4514
|
-
id: string;
|
|
4515
|
-
url: string;
|
|
4516
|
-
name: string;
|
|
4517
|
-
kind: string;
|
|
4518
|
-
size: string;
|
|
4519
|
-
} & {
|
|
4520
|
-
date?: string | null | undefined;
|
|
4521
|
-
} & {
|
|
4522
|
-
__TYPE__: "FileLink";
|
|
4523
|
-
} & {
|
|
4524
|
-
size?: string;
|
|
4525
|
-
}) | ({
|
|
4526
|
-
__TYPE__: "DocumentLink";
|
|
4527
|
-
} & {
|
|
4528
|
-
id: string;
|
|
4529
|
-
}) | ({
|
|
4530
|
-
__TYPE__: "ExternalLink";
|
|
4531
|
-
} & {
|
|
4532
|
-
url: string;
|
|
4533
|
-
} & {
|
|
4534
|
-
kind?: "web";
|
|
4535
|
-
target?: string | null | undefined;
|
|
4536
|
-
preview?: {
|
|
4537
|
-
title?: string;
|
|
4538
|
-
} | null | undefined;
|
|
4539
|
-
});
|
|
4540
|
-
} | {
|
|
4541
|
-
__TYPE__: "StructuredTextContent";
|
|
4542
|
-
value: (({
|
|
4543
|
-
type: "image";
|
|
4544
|
-
data: {
|
|
4545
|
-
origin: {
|
|
4546
|
-
id: string;
|
|
4547
|
-
url: string;
|
|
4548
|
-
width: number;
|
|
4549
|
-
height: number;
|
|
4550
|
-
};
|
|
4551
|
-
width: number;
|
|
4552
|
-
height: number;
|
|
4553
|
-
edit: {
|
|
4554
|
-
zoom: number;
|
|
4555
|
-
crop: {
|
|
4556
|
-
x: number;
|
|
4557
|
-
y: number;
|
|
4558
|
-
};
|
|
4559
|
-
background: string;
|
|
4560
|
-
};
|
|
4561
|
-
} & {
|
|
4562
|
-
url?: string;
|
|
4563
|
-
credits?: string | null;
|
|
4564
|
-
alt?: string | null;
|
|
4565
|
-
provider?: string | null | undefined;
|
|
4566
|
-
} & {
|
|
4567
|
-
linkTo?: ({
|
|
4568
|
-
__TYPE__: "ImageLink";
|
|
4569
|
-
} & {
|
|
4570
|
-
id: string;
|
|
4571
|
-
url: string;
|
|
4572
|
-
height: string;
|
|
4573
|
-
width: string;
|
|
4574
|
-
size: string;
|
|
4575
|
-
name: string;
|
|
4576
|
-
kind: string;
|
|
4577
|
-
} & {
|
|
4578
|
-
date?: string | null | undefined;
|
|
4579
|
-
}) | ({
|
|
4580
|
-
id: string;
|
|
4581
|
-
url: string;
|
|
4582
|
-
name: string;
|
|
4583
|
-
kind: string;
|
|
4584
|
-
size: string;
|
|
4585
|
-
} & {
|
|
4586
|
-
date?: string | null | undefined;
|
|
4587
|
-
} & {
|
|
4588
|
-
__TYPE__: "FileLink";
|
|
4589
|
-
} & {
|
|
4590
|
-
size?: string;
|
|
4591
|
-
}) | ({
|
|
4592
|
-
__TYPE__: "DocumentLink";
|
|
4593
|
-
} & {
|
|
4594
|
-
id: string;
|
|
4595
|
-
}) | ({
|
|
4596
|
-
__TYPE__: "ExternalLink";
|
|
4597
|
-
} & {
|
|
4598
|
-
url: string;
|
|
4599
|
-
} & {
|
|
4600
|
-
kind?: "web";
|
|
4601
|
-
target?: string | null | undefined;
|
|
4602
|
-
preview?: {
|
|
4603
|
-
title?: string;
|
|
4604
|
-
} | null | undefined;
|
|
4605
|
-
}) | null | undefined;
|
|
4606
|
-
};
|
|
4607
|
-
} & {
|
|
4608
|
-
label?: string | null | undefined;
|
|
4609
|
-
direction?: string | null | undefined;
|
|
4610
|
-
}) | ({
|
|
4611
|
-
type: "embed";
|
|
4612
|
-
data: {
|
|
4613
|
-
embed_url: string;
|
|
4614
|
-
type: string;
|
|
4615
|
-
} & {
|
|
4616
|
-
version?: string | number | null;
|
|
4617
|
-
title?: string | null | undefined;
|
|
4618
|
-
author_name?: string | null | undefined;
|
|
4619
|
-
author_url?: string | null | undefined;
|
|
4620
|
-
provider_name?: string | null | undefined;
|
|
4621
|
-
provider_url?: string | null | undefined;
|
|
4622
|
-
cache_age?: string | number | null;
|
|
4623
|
-
thumbnail_url?: string | null | undefined;
|
|
4624
|
-
thumbnail_width?: number | null | undefined;
|
|
4625
|
-
thumbnail_height?: number | null | undefined;
|
|
4626
|
-
html?: string | null | undefined;
|
|
4627
|
-
} & {
|
|
4628
|
-
__TYPE__: "EmbedContent";
|
|
4629
|
-
all: unknown;
|
|
4630
|
-
};
|
|
4631
|
-
} & {
|
|
4632
|
-
label?: string | null | undefined;
|
|
4633
|
-
direction?: string | null | undefined;
|
|
4634
|
-
}) | ({
|
|
4635
|
-
type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
|
|
4636
|
-
content: {
|
|
4637
|
-
text: string;
|
|
4638
|
-
} & {
|
|
4639
|
-
spans?: ({
|
|
4640
|
-
data: ({
|
|
4641
|
-
__TYPE__: "ImageLink";
|
|
4642
|
-
} & {
|
|
4643
|
-
id: string;
|
|
4644
|
-
url: string;
|
|
4645
|
-
height: string;
|
|
4646
|
-
width: string;
|
|
4647
|
-
size: string;
|
|
4648
|
-
name: string;
|
|
4649
|
-
kind: string;
|
|
4650
|
-
} & {
|
|
4651
|
-
date?: string | null | undefined;
|
|
4652
|
-
}) | ({
|
|
4653
|
-
id: string;
|
|
4654
|
-
url: string;
|
|
4655
|
-
name: string;
|
|
4656
|
-
kind: string;
|
|
4657
|
-
size: string;
|
|
4658
|
-
} & {
|
|
4659
|
-
date?: string | null | undefined;
|
|
4660
|
-
} & {
|
|
4661
|
-
__TYPE__: "FileLink";
|
|
4662
|
-
} & {
|
|
4663
|
-
size?: string;
|
|
4664
|
-
}) | ({
|
|
4665
|
-
__TYPE__: "DocumentLink";
|
|
4666
|
-
} & {
|
|
4667
|
-
id: string;
|
|
4668
|
-
}) | ({
|
|
4669
|
-
__TYPE__: "ExternalLink";
|
|
4670
|
-
} & {
|
|
4671
|
-
url: string;
|
|
4672
|
-
} & {
|
|
4673
|
-
kind?: "web";
|
|
4674
|
-
target?: string | null | undefined;
|
|
4675
|
-
preview?: {
|
|
4676
|
-
title?: string;
|
|
4677
|
-
} | null | undefined;
|
|
4678
|
-
});
|
|
4679
|
-
start: number;
|
|
4680
|
-
end: number;
|
|
4681
|
-
type: "hyperlink";
|
|
4682
|
-
} | {
|
|
4683
|
-
data: string;
|
|
4684
|
-
start: number;
|
|
4685
|
-
end: number;
|
|
4686
|
-
type: "label";
|
|
4687
|
-
} | {
|
|
4688
|
-
start: number;
|
|
4689
|
-
end: number;
|
|
4690
|
-
type: "strong" | "em" | "list-item";
|
|
4691
|
-
})[];
|
|
4692
|
-
};
|
|
4693
|
-
} & {
|
|
4694
|
-
label?: string;
|
|
4695
|
-
direction?: string;
|
|
4696
|
-
}))[];
|
|
4697
|
-
} | {
|
|
4698
|
-
__TYPE__: "SeparatorContent";
|
|
4699
|
-
}][];
|
|
4700
|
-
}[];
|
|
4701
|
-
};
|
|
2787
|
+
} | import("../GroupContent").GroupContent;
|
|
4702
2788
|
};
|
|
4703
2789
|
items: {
|
|
4704
2790
|
__TYPE__: "GroupItemContent";
|
|
@@ -4882,45 +2968,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
4882
2968
|
alt?: string | null;
|
|
4883
2969
|
provider?: string | null | undefined;
|
|
4884
2970
|
} & {
|
|
4885
|
-
linkTo?:
|
|
4886
|
-
__TYPE__: "ImageLink";
|
|
4887
|
-
} & {
|
|
4888
|
-
id: string;
|
|
4889
|
-
url: string;
|
|
4890
|
-
height: string;
|
|
4891
|
-
width: string;
|
|
4892
|
-
size: string;
|
|
4893
|
-
name: string;
|
|
4894
|
-
kind: string;
|
|
4895
|
-
} & {
|
|
4896
|
-
date?: string | null | undefined;
|
|
4897
|
-
}) | ({
|
|
4898
|
-
id: string;
|
|
4899
|
-
url: string;
|
|
4900
|
-
name: string;
|
|
4901
|
-
kind: string;
|
|
4902
|
-
size: string;
|
|
4903
|
-
} & {
|
|
4904
|
-
date?: string | null | undefined;
|
|
4905
|
-
} & {
|
|
4906
|
-
__TYPE__: "FileLink";
|
|
4907
|
-
} & {
|
|
4908
|
-
size?: string;
|
|
4909
|
-
}) | ({
|
|
4910
|
-
__TYPE__: "DocumentLink";
|
|
4911
|
-
} & {
|
|
4912
|
-
id: string;
|
|
4913
|
-
}) | ({
|
|
4914
|
-
__TYPE__: "ExternalLink";
|
|
4915
|
-
} & {
|
|
4916
|
-
url: string;
|
|
4917
|
-
} & {
|
|
4918
|
-
kind?: "web";
|
|
4919
|
-
target?: string | null | undefined;
|
|
4920
|
-
preview?: {
|
|
4921
|
-
title?: string;
|
|
4922
|
-
} | null | undefined;
|
|
4923
|
-
}) | null | undefined;
|
|
2971
|
+
linkTo?: any;
|
|
4924
2972
|
};
|
|
4925
2973
|
} & {
|
|
4926
2974
|
label?: string | null | undefined;
|