@prismicio/editor-fields 0.4.44 → 0.4.46
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/dist/EditorConfig.d.ts +1 -5
- package/dist/core/DeferredCodeBlock.d.ts +3 -0
- package/dist/core/MediaLibrary/MediaLibrary.d.ts +3 -2
- package/dist/core/MediaLibrary/components/MediaLibraryContext.d.ts +14 -5
- package/dist/core/MediaLibrary/components/Sidepane/components/SidepaneMetadataTags/MultiMediaMetadataTags.d.ts +0 -2
- package/dist/core/MediaLibrary/components/Sidepane/components/SidepaneMetadataTags/SidepaneMetadataTags.utils.d.ts +3 -0
- package/dist/core/MediaLibrary/hooks/mediaLibraryData.d.ts +52 -46
- package/dist/core/MediaLibrary/hooks/useMediaLibraryAnalytics.d.ts +1 -1
- package/dist/core/MediaLibrary/hooks/useMediaLibraryCacheInvalidation.d.ts +5 -1
- package/dist/core/MediaLibrary/hooks/useSelectedMedia.d.ts +3 -3
- package/dist/core/UnsplashLibrary/unsplashData.d.ts +9 -9
- package/dist/core/service/customType.d.ts +6 -6
- package/dist/core/service/document.d.ts +1633 -48
- package/dist/fields/ImageField/MediaDialog/MediaDialog.d.ts +2 -1
- package/dist/fields/LinkField/Documents/documentsData.d.ts +10 -10
- package/dist/fields/LinkField/useLinkField.d.ts +1 -1
- package/dist/index.cjs.js +32 -31
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +18885 -18777
- package/package.json +4 -3
|
@@ -62,28 +62,28 @@ declare const documentVersionOkType: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
62
62
|
}>;
|
|
63
63
|
uid: z.ZodOptional<z.ZodString>;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
|
-
version_id: string;
|
|
66
65
|
tags: string[];
|
|
67
|
-
custom_type_label: string;
|
|
68
|
-
last_modified_date: Date;
|
|
69
66
|
author: {
|
|
70
67
|
first_name?: string | undefined;
|
|
71
68
|
last_name?: string | undefined;
|
|
72
69
|
email?: string | undefined;
|
|
73
70
|
};
|
|
71
|
+
version_id: string;
|
|
72
|
+
custom_type_label: string;
|
|
73
|
+
last_modified_date: Date;
|
|
74
74
|
preview_summary?: string | undefined;
|
|
75
75
|
preview_image?: string | undefined;
|
|
76
76
|
uid?: string | undefined;
|
|
77
77
|
}, {
|
|
78
|
-
version_id: string;
|
|
79
78
|
tags: string[];
|
|
80
|
-
custom_type_label: string;
|
|
81
|
-
last_modified_date: Date;
|
|
82
79
|
author: {
|
|
83
80
|
first_name?: string | undefined;
|
|
84
81
|
last_name?: string | undefined;
|
|
85
82
|
email?: string | undefined;
|
|
86
83
|
};
|
|
84
|
+
version_id: string;
|
|
85
|
+
custom_type_label: string;
|
|
86
|
+
last_modified_date: Date;
|
|
87
87
|
preview_summary?: string | undefined;
|
|
88
88
|
preview_image?: string | undefined;
|
|
89
89
|
uid?: string | undefined;
|
|
@@ -155,28 +155,28 @@ export declare const documentMetaOkType: z.ZodObject<{
|
|
|
155
155
|
}>;
|
|
156
156
|
uid: z.ZodOptional<z.ZodString>;
|
|
157
157
|
}, "strip", z.ZodTypeAny, {
|
|
158
|
-
version_id: string;
|
|
159
158
|
tags: string[];
|
|
160
|
-
custom_type_label: string;
|
|
161
|
-
last_modified_date: Date;
|
|
162
159
|
author: {
|
|
163
160
|
first_name?: string | undefined;
|
|
164
161
|
last_name?: string | undefined;
|
|
165
162
|
email?: string | undefined;
|
|
166
163
|
};
|
|
164
|
+
version_id: string;
|
|
165
|
+
custom_type_label: string;
|
|
166
|
+
last_modified_date: Date;
|
|
167
167
|
preview_summary?: string | undefined;
|
|
168
168
|
preview_image?: string | undefined;
|
|
169
169
|
uid?: string | undefined;
|
|
170
170
|
}, {
|
|
171
|
-
version_id: string;
|
|
172
171
|
tags: string[];
|
|
173
|
-
custom_type_label: string;
|
|
174
|
-
last_modified_date: Date;
|
|
175
172
|
author: {
|
|
176
173
|
first_name?: string | undefined;
|
|
177
174
|
last_name?: string | undefined;
|
|
178
175
|
email?: string | undefined;
|
|
179
176
|
};
|
|
177
|
+
version_id: string;
|
|
178
|
+
custom_type_label: string;
|
|
179
|
+
last_modified_date: Date;
|
|
180
180
|
preview_summary?: string | undefined;
|
|
181
181
|
preview_image?: string | undefined;
|
|
182
182
|
uid?: string | undefined;
|
|
@@ -184,13 +184,13 @@ export declare const documentMetaOkType: z.ZodObject<{
|
|
|
184
184
|
}, "strip", z.ZodTypeAny, {
|
|
185
185
|
id: string;
|
|
186
186
|
title: string;
|
|
187
|
-
custom_type_id: string;
|
|
188
|
-
group_lang_id: string;
|
|
189
187
|
language: {
|
|
190
188
|
id: string;
|
|
191
189
|
name: string;
|
|
192
190
|
is_master?: boolean | undefined;
|
|
193
191
|
};
|
|
192
|
+
custom_type_id: string;
|
|
193
|
+
group_lang_id: string;
|
|
194
194
|
versions: (({
|
|
195
195
|
status: "unclassified";
|
|
196
196
|
} | {
|
|
@@ -201,28 +201,28 @@ export declare const documentMetaOkType: z.ZodObject<{
|
|
|
201
201
|
} | {
|
|
202
202
|
status: "archived";
|
|
203
203
|
}) & {
|
|
204
|
-
version_id: string;
|
|
205
204
|
tags: string[];
|
|
206
|
-
custom_type_label: string;
|
|
207
|
-
last_modified_date: Date;
|
|
208
205
|
author: {
|
|
209
206
|
first_name?: string | undefined;
|
|
210
207
|
last_name?: string | undefined;
|
|
211
208
|
email?: string | undefined;
|
|
212
209
|
};
|
|
210
|
+
version_id: string;
|
|
211
|
+
custom_type_label: string;
|
|
212
|
+
last_modified_date: Date;
|
|
213
213
|
preview_summary?: string | undefined;
|
|
214
214
|
preview_image?: string | undefined;
|
|
215
215
|
uid?: string | undefined;
|
|
216
216
|
})[];
|
|
217
217
|
}, {
|
|
218
218
|
id: string;
|
|
219
|
-
custom_type_id: string;
|
|
220
|
-
group_lang_id: string;
|
|
221
219
|
language: {
|
|
222
220
|
id: string;
|
|
223
221
|
name: string;
|
|
224
222
|
is_master?: boolean | undefined;
|
|
225
223
|
};
|
|
224
|
+
custom_type_id: string;
|
|
225
|
+
group_lang_id: string;
|
|
226
226
|
versions: (({
|
|
227
227
|
status: "unclassified";
|
|
228
228
|
} | {
|
|
@@ -233,15 +233,15 @@ export declare const documentMetaOkType: z.ZodObject<{
|
|
|
233
233
|
} | {
|
|
234
234
|
status: "archived";
|
|
235
235
|
}) & {
|
|
236
|
-
version_id: string;
|
|
237
236
|
tags: string[];
|
|
238
|
-
custom_type_label: string;
|
|
239
|
-
last_modified_date: Date;
|
|
240
237
|
author: {
|
|
241
238
|
first_name?: string | undefined;
|
|
242
239
|
last_name?: string | undefined;
|
|
243
240
|
email?: string | undefined;
|
|
244
241
|
};
|
|
242
|
+
version_id: string;
|
|
243
|
+
custom_type_label: string;
|
|
244
|
+
last_modified_date: Date;
|
|
245
245
|
preview_summary?: string | undefined;
|
|
246
246
|
preview_image?: string | undefined;
|
|
247
247
|
uid?: string | undefined;
|
|
@@ -318,28 +318,28 @@ declare const documentsSearchAPISchemaOkType: z.ZodObject<{
|
|
|
318
318
|
}>;
|
|
319
319
|
uid: z.ZodOptional<z.ZodString>;
|
|
320
320
|
}, "strip", z.ZodTypeAny, {
|
|
321
|
-
version_id: string;
|
|
322
321
|
tags: string[];
|
|
323
|
-
custom_type_label: string;
|
|
324
|
-
last_modified_date: Date;
|
|
325
322
|
author: {
|
|
326
323
|
first_name?: string | undefined;
|
|
327
324
|
last_name?: string | undefined;
|
|
328
325
|
email?: string | undefined;
|
|
329
326
|
};
|
|
327
|
+
version_id: string;
|
|
328
|
+
custom_type_label: string;
|
|
329
|
+
last_modified_date: Date;
|
|
330
330
|
preview_summary?: string | undefined;
|
|
331
331
|
preview_image?: string | undefined;
|
|
332
332
|
uid?: string | undefined;
|
|
333
333
|
}, {
|
|
334
|
-
version_id: string;
|
|
335
334
|
tags: string[];
|
|
336
|
-
custom_type_label: string;
|
|
337
|
-
last_modified_date: Date;
|
|
338
335
|
author: {
|
|
339
336
|
first_name?: string | undefined;
|
|
340
337
|
last_name?: string | undefined;
|
|
341
338
|
email?: string | undefined;
|
|
342
339
|
};
|
|
340
|
+
version_id: string;
|
|
341
|
+
custom_type_label: string;
|
|
342
|
+
last_modified_date: Date;
|
|
343
343
|
preview_summary?: string | undefined;
|
|
344
344
|
preview_image?: string | undefined;
|
|
345
345
|
uid?: string | undefined;
|
|
@@ -347,13 +347,13 @@ declare const documentsSearchAPISchemaOkType: z.ZodObject<{
|
|
|
347
347
|
}, "strip", z.ZodTypeAny, {
|
|
348
348
|
id: string;
|
|
349
349
|
title: string;
|
|
350
|
-
custom_type_id: string;
|
|
351
|
-
group_lang_id: string;
|
|
352
350
|
language: {
|
|
353
351
|
id: string;
|
|
354
352
|
name: string;
|
|
355
353
|
is_master?: boolean | undefined;
|
|
356
354
|
};
|
|
355
|
+
custom_type_id: string;
|
|
356
|
+
group_lang_id: string;
|
|
357
357
|
versions: (({
|
|
358
358
|
status: "unclassified";
|
|
359
359
|
} | {
|
|
@@ -364,28 +364,28 @@ declare const documentsSearchAPISchemaOkType: z.ZodObject<{
|
|
|
364
364
|
} | {
|
|
365
365
|
status: "archived";
|
|
366
366
|
}) & {
|
|
367
|
-
version_id: string;
|
|
368
367
|
tags: string[];
|
|
369
|
-
custom_type_label: string;
|
|
370
|
-
last_modified_date: Date;
|
|
371
368
|
author: {
|
|
372
369
|
first_name?: string | undefined;
|
|
373
370
|
last_name?: string | undefined;
|
|
374
371
|
email?: string | undefined;
|
|
375
372
|
};
|
|
373
|
+
version_id: string;
|
|
374
|
+
custom_type_label: string;
|
|
375
|
+
last_modified_date: Date;
|
|
376
376
|
preview_summary?: string | undefined;
|
|
377
377
|
preview_image?: string | undefined;
|
|
378
378
|
uid?: string | undefined;
|
|
379
379
|
})[];
|
|
380
380
|
}, {
|
|
381
381
|
id: string;
|
|
382
|
-
custom_type_id: string;
|
|
383
|
-
group_lang_id: string;
|
|
384
382
|
language: {
|
|
385
383
|
id: string;
|
|
386
384
|
name: string;
|
|
387
385
|
is_master?: boolean | undefined;
|
|
388
386
|
};
|
|
387
|
+
custom_type_id: string;
|
|
388
|
+
group_lang_id: string;
|
|
389
389
|
versions: (({
|
|
390
390
|
status: "unclassified";
|
|
391
391
|
} | {
|
|
@@ -396,15 +396,15 @@ declare const documentsSearchAPISchemaOkType: z.ZodObject<{
|
|
|
396
396
|
} | {
|
|
397
397
|
status: "archived";
|
|
398
398
|
}) & {
|
|
399
|
-
version_id: string;
|
|
400
399
|
tags: string[];
|
|
401
|
-
custom_type_label: string;
|
|
402
|
-
last_modified_date: Date;
|
|
403
400
|
author: {
|
|
404
401
|
first_name?: string | undefined;
|
|
405
402
|
last_name?: string | undefined;
|
|
406
403
|
email?: string | undefined;
|
|
407
404
|
};
|
|
405
|
+
version_id: string;
|
|
406
|
+
custom_type_label: string;
|
|
407
|
+
last_modified_date: Date;
|
|
408
408
|
preview_summary?: string | undefined;
|
|
409
409
|
preview_image?: string | undefined;
|
|
410
410
|
uid?: string | undefined;
|
|
@@ -416,13 +416,13 @@ declare const documentsSearchAPISchemaOkType: z.ZodObject<{
|
|
|
416
416
|
results: {
|
|
417
417
|
id: string;
|
|
418
418
|
title: string;
|
|
419
|
-
custom_type_id: string;
|
|
420
|
-
group_lang_id: string;
|
|
421
419
|
language: {
|
|
422
420
|
id: string;
|
|
423
421
|
name: string;
|
|
424
422
|
is_master?: boolean | undefined;
|
|
425
423
|
};
|
|
424
|
+
custom_type_id: string;
|
|
425
|
+
group_lang_id: string;
|
|
426
426
|
versions: (({
|
|
427
427
|
status: "unclassified";
|
|
428
428
|
} | {
|
|
@@ -433,15 +433,15 @@ declare const documentsSearchAPISchemaOkType: z.ZodObject<{
|
|
|
433
433
|
} | {
|
|
434
434
|
status: "archived";
|
|
435
435
|
}) & {
|
|
436
|
-
version_id: string;
|
|
437
436
|
tags: string[];
|
|
438
|
-
custom_type_label: string;
|
|
439
|
-
last_modified_date: Date;
|
|
440
437
|
author: {
|
|
441
438
|
first_name?: string | undefined;
|
|
442
439
|
last_name?: string | undefined;
|
|
443
440
|
email?: string | undefined;
|
|
444
441
|
};
|
|
442
|
+
version_id: string;
|
|
443
|
+
custom_type_label: string;
|
|
444
|
+
last_modified_date: Date;
|
|
445
445
|
preview_summary?: string | undefined;
|
|
446
446
|
preview_image?: string | undefined;
|
|
447
447
|
uid?: string | undefined;
|
|
@@ -452,13 +452,13 @@ declare const documentsSearchAPISchemaOkType: z.ZodObject<{
|
|
|
452
452
|
total: number;
|
|
453
453
|
results: {
|
|
454
454
|
id: string;
|
|
455
|
-
custom_type_id: string;
|
|
456
|
-
group_lang_id: string;
|
|
457
455
|
language: {
|
|
458
456
|
id: string;
|
|
459
457
|
name: string;
|
|
460
458
|
is_master?: boolean | undefined;
|
|
461
459
|
};
|
|
460
|
+
custom_type_id: string;
|
|
461
|
+
group_lang_id: string;
|
|
462
462
|
versions: (({
|
|
463
463
|
status: "unclassified";
|
|
464
464
|
} | {
|
|
@@ -469,15 +469,15 @@ declare const documentsSearchAPISchemaOkType: z.ZodObject<{
|
|
|
469
469
|
} | {
|
|
470
470
|
status: "archived";
|
|
471
471
|
}) & {
|
|
472
|
-
version_id: string;
|
|
473
472
|
tags: string[];
|
|
474
|
-
custom_type_label: string;
|
|
475
|
-
last_modified_date: Date;
|
|
476
473
|
author: {
|
|
477
474
|
first_name?: string | undefined;
|
|
478
475
|
last_name?: string | undefined;
|
|
479
476
|
email?: string | undefined;
|
|
480
477
|
};
|
|
478
|
+
version_id: string;
|
|
479
|
+
custom_type_label: string;
|
|
480
|
+
last_modified_date: Date;
|
|
481
481
|
preview_summary?: string | undefined;
|
|
482
482
|
preview_image?: string | undefined;
|
|
483
483
|
uid?: string | undefined;
|
|
@@ -2450,4 +2450,1589 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2450
2450
|
}, unknown>;
|
|
2451
2451
|
export declare function makeGetDocumentsQueryString(searchDocumentParams: SearchDocumentParams): string;
|
|
2452
2452
|
export declare function getEnrichedSearchDocuments(baseUrl: URL, authStrategy: AuthStrategy, searchDocuments: DocumentFullTextSearchApi["results"]): Promise<DocumentMeta[]>;
|
|
2453
|
+
export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
2454
|
+
key: string;
|
|
2455
|
+
name: string;
|
|
2456
|
+
maybeLabel: string | undefined;
|
|
2457
|
+
widget: import("@prismicio/types-internal/lib/content").GroupContent | {
|
|
2458
|
+
__TYPE__: "CompositeSliceContent";
|
|
2459
|
+
nonRepeat: {
|
|
2460
|
+
[x: string]: {
|
|
2461
|
+
type: string;
|
|
2462
|
+
__TYPE__: "EmptyContent";
|
|
2463
|
+
} | {
|
|
2464
|
+
__TYPE__: "BooleanContent";
|
|
2465
|
+
value: boolean;
|
|
2466
|
+
} | ({
|
|
2467
|
+
embed_url: string;
|
|
2468
|
+
type: string;
|
|
2469
|
+
} & {
|
|
2470
|
+
version?: string | number | null | undefined;
|
|
2471
|
+
title?: string | null | undefined;
|
|
2472
|
+
author_name?: string | null | undefined;
|
|
2473
|
+
author_url?: string | null | undefined;
|
|
2474
|
+
provider_name?: string | null | undefined;
|
|
2475
|
+
provider_url?: string | null | undefined;
|
|
2476
|
+
cache_age?: string | number | null | undefined;
|
|
2477
|
+
thumbnail_url?: string | null | undefined;
|
|
2478
|
+
thumbnail_width?: number | null | undefined;
|
|
2479
|
+
thumbnail_height?: number | null | undefined;
|
|
2480
|
+
html?: string | null | undefined;
|
|
2481
|
+
} & {
|
|
2482
|
+
__TYPE__: "EmbedContent";
|
|
2483
|
+
all: unknown;
|
|
2484
|
+
}) | {
|
|
2485
|
+
type: "Text";
|
|
2486
|
+
value: string;
|
|
2487
|
+
__TYPE__: "FieldContent";
|
|
2488
|
+
} | {
|
|
2489
|
+
type: "Timestamp";
|
|
2490
|
+
value: string;
|
|
2491
|
+
__TYPE__: "FieldContent";
|
|
2492
|
+
} | {
|
|
2493
|
+
type: "Select";
|
|
2494
|
+
value: string;
|
|
2495
|
+
__TYPE__: "FieldContent";
|
|
2496
|
+
} | {
|
|
2497
|
+
type: "Range";
|
|
2498
|
+
value: string;
|
|
2499
|
+
__TYPE__: "FieldContent";
|
|
2500
|
+
} | {
|
|
2501
|
+
type: "Number";
|
|
2502
|
+
value: string;
|
|
2503
|
+
__TYPE__: "FieldContent";
|
|
2504
|
+
} | {
|
|
2505
|
+
type: "Date";
|
|
2506
|
+
value: string;
|
|
2507
|
+
__TYPE__: "FieldContent";
|
|
2508
|
+
} | {
|
|
2509
|
+
type: "Color";
|
|
2510
|
+
value: string;
|
|
2511
|
+
__TYPE__: "FieldContent";
|
|
2512
|
+
} | ({
|
|
2513
|
+
position: {
|
|
2514
|
+
lat: number;
|
|
2515
|
+
lng: number;
|
|
2516
|
+
};
|
|
2517
|
+
} & {
|
|
2518
|
+
__TYPE__: "GeoPointContent";
|
|
2519
|
+
}) | ({
|
|
2520
|
+
origin: {
|
|
2521
|
+
id: string;
|
|
2522
|
+
url: string;
|
|
2523
|
+
width: number;
|
|
2524
|
+
height: number;
|
|
2525
|
+
};
|
|
2526
|
+
width: number;
|
|
2527
|
+
height: number;
|
|
2528
|
+
edit: {
|
|
2529
|
+
zoom: number;
|
|
2530
|
+
crop: {
|
|
2531
|
+
x: number;
|
|
2532
|
+
y: number;
|
|
2533
|
+
};
|
|
2534
|
+
background: string;
|
|
2535
|
+
};
|
|
2536
|
+
} & {
|
|
2537
|
+
url?: string | undefined;
|
|
2538
|
+
credits?: string | null | undefined;
|
|
2539
|
+
alt?: string | null | undefined;
|
|
2540
|
+
provider?: string | null | undefined;
|
|
2541
|
+
} & {
|
|
2542
|
+
thumbnails?: {
|
|
2543
|
+
[x: string]: {
|
|
2544
|
+
origin: {
|
|
2545
|
+
id: string;
|
|
2546
|
+
url: string;
|
|
2547
|
+
width: number;
|
|
2548
|
+
height: number;
|
|
2549
|
+
};
|
|
2550
|
+
width: number;
|
|
2551
|
+
height: number;
|
|
2552
|
+
edit: {
|
|
2553
|
+
zoom: number;
|
|
2554
|
+
crop: {
|
|
2555
|
+
x: number;
|
|
2556
|
+
y: number;
|
|
2557
|
+
};
|
|
2558
|
+
background: string;
|
|
2559
|
+
};
|
|
2560
|
+
} & {
|
|
2561
|
+
url?: string | undefined;
|
|
2562
|
+
credits?: string | null | undefined;
|
|
2563
|
+
alt?: string | null | undefined;
|
|
2564
|
+
provider?: string | null | undefined;
|
|
2565
|
+
};
|
|
2566
|
+
} | undefined;
|
|
2567
|
+
} & {
|
|
2568
|
+
__TYPE__: "ImageContent";
|
|
2569
|
+
}) | {
|
|
2570
|
+
__TYPE__: "IntegrationFieldsContent";
|
|
2571
|
+
value: string;
|
|
2572
|
+
} | {
|
|
2573
|
+
__TYPE__: "LinkContent";
|
|
2574
|
+
value: ({
|
|
2575
|
+
__TYPE__: "ImageLink";
|
|
2576
|
+
} & {
|
|
2577
|
+
id: string;
|
|
2578
|
+
url: string;
|
|
2579
|
+
height: string;
|
|
2580
|
+
width: string;
|
|
2581
|
+
size: string;
|
|
2582
|
+
name: string;
|
|
2583
|
+
kind: string;
|
|
2584
|
+
} & {
|
|
2585
|
+
date?: string | null | undefined;
|
|
2586
|
+
}) | ({
|
|
2587
|
+
id: string;
|
|
2588
|
+
url: string;
|
|
2589
|
+
name: string;
|
|
2590
|
+
kind: string;
|
|
2591
|
+
size: string;
|
|
2592
|
+
} & {
|
|
2593
|
+
date?: string | null | undefined;
|
|
2594
|
+
} & {
|
|
2595
|
+
__TYPE__: "FileLink";
|
|
2596
|
+
} & {
|
|
2597
|
+
size?: string | undefined;
|
|
2598
|
+
}) | ({
|
|
2599
|
+
__TYPE__: "DocumentLink";
|
|
2600
|
+
} & {
|
|
2601
|
+
id: string;
|
|
2602
|
+
}) | ({
|
|
2603
|
+
__TYPE__: "ExternalLink";
|
|
2604
|
+
} & {
|
|
2605
|
+
url: string;
|
|
2606
|
+
} & {
|
|
2607
|
+
kind?: "web" | undefined;
|
|
2608
|
+
target?: string | null | undefined;
|
|
2609
|
+
preview?: {
|
|
2610
|
+
title?: string | undefined;
|
|
2611
|
+
} | null | undefined;
|
|
2612
|
+
});
|
|
2613
|
+
} | {
|
|
2614
|
+
__TYPE__: "StructuredTextContent";
|
|
2615
|
+
value: (({
|
|
2616
|
+
type: "image";
|
|
2617
|
+
data: {
|
|
2618
|
+
origin: {
|
|
2619
|
+
id: string;
|
|
2620
|
+
url: string;
|
|
2621
|
+
width: number;
|
|
2622
|
+
height: number;
|
|
2623
|
+
};
|
|
2624
|
+
width: number;
|
|
2625
|
+
height: number;
|
|
2626
|
+
edit: {
|
|
2627
|
+
zoom: number;
|
|
2628
|
+
crop: {
|
|
2629
|
+
x: number;
|
|
2630
|
+
y: number;
|
|
2631
|
+
};
|
|
2632
|
+
background: string;
|
|
2633
|
+
};
|
|
2634
|
+
} & {
|
|
2635
|
+
url?: string | undefined;
|
|
2636
|
+
credits?: string | null | undefined;
|
|
2637
|
+
alt?: string | null | undefined;
|
|
2638
|
+
provider?: string | null | undefined;
|
|
2639
|
+
} & {
|
|
2640
|
+
linkTo?: ({
|
|
2641
|
+
__TYPE__: "ImageLink";
|
|
2642
|
+
} & {
|
|
2643
|
+
id: string;
|
|
2644
|
+
url: string;
|
|
2645
|
+
height: string;
|
|
2646
|
+
width: string;
|
|
2647
|
+
size: string;
|
|
2648
|
+
name: string;
|
|
2649
|
+
kind: string;
|
|
2650
|
+
} & {
|
|
2651
|
+
date?: string | null | undefined;
|
|
2652
|
+
}) | ({
|
|
2653
|
+
id: string;
|
|
2654
|
+
url: string;
|
|
2655
|
+
name: string;
|
|
2656
|
+
kind: string;
|
|
2657
|
+
size: string;
|
|
2658
|
+
} & {
|
|
2659
|
+
date?: string | null | undefined;
|
|
2660
|
+
} & {
|
|
2661
|
+
__TYPE__: "FileLink";
|
|
2662
|
+
} & {
|
|
2663
|
+
size?: string | undefined;
|
|
2664
|
+
}) | ({
|
|
2665
|
+
__TYPE__: "DocumentLink";
|
|
2666
|
+
} & {
|
|
2667
|
+
id: string;
|
|
2668
|
+
}) | ({
|
|
2669
|
+
__TYPE__: "ExternalLink";
|
|
2670
|
+
} & {
|
|
2671
|
+
url: string;
|
|
2672
|
+
} & {
|
|
2673
|
+
kind?: "web" | undefined;
|
|
2674
|
+
target?: string | null | undefined;
|
|
2675
|
+
preview?: {
|
|
2676
|
+
title?: string | undefined;
|
|
2677
|
+
} | null | undefined;
|
|
2678
|
+
}) | null | undefined;
|
|
2679
|
+
};
|
|
2680
|
+
} & {
|
|
2681
|
+
label?: string | null | undefined;
|
|
2682
|
+
direction?: string | null | undefined;
|
|
2683
|
+
}) | ({
|
|
2684
|
+
type: "embed";
|
|
2685
|
+
data: {
|
|
2686
|
+
embed_url: string;
|
|
2687
|
+
type: string;
|
|
2688
|
+
} & {
|
|
2689
|
+
version?: string | number | null | undefined;
|
|
2690
|
+
title?: string | null | undefined;
|
|
2691
|
+
author_name?: string | null | undefined;
|
|
2692
|
+
author_url?: string | null | undefined;
|
|
2693
|
+
provider_name?: string | null | undefined;
|
|
2694
|
+
provider_url?: string | null | undefined;
|
|
2695
|
+
cache_age?: string | number | null | undefined;
|
|
2696
|
+
thumbnail_url?: string | null | undefined;
|
|
2697
|
+
thumbnail_width?: number | null | undefined;
|
|
2698
|
+
thumbnail_height?: number | null | undefined;
|
|
2699
|
+
html?: string | null | undefined;
|
|
2700
|
+
} & {
|
|
2701
|
+
__TYPE__: "EmbedContent";
|
|
2702
|
+
all: unknown;
|
|
2703
|
+
};
|
|
2704
|
+
} & {
|
|
2705
|
+
label?: string | null | undefined;
|
|
2706
|
+
direction?: string | null | undefined;
|
|
2707
|
+
}) | ({
|
|
2708
|
+
type: "image" | "em" | "embed" | "strong" | "list-item" | "paragraph" | "rtl" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "o-list-item";
|
|
2709
|
+
content: {
|
|
2710
|
+
text: string;
|
|
2711
|
+
} & {
|
|
2712
|
+
spans?: ({
|
|
2713
|
+
data: ({
|
|
2714
|
+
__TYPE__: "ImageLink";
|
|
2715
|
+
} & {
|
|
2716
|
+
id: string;
|
|
2717
|
+
url: string;
|
|
2718
|
+
height: string;
|
|
2719
|
+
width: string;
|
|
2720
|
+
size: string;
|
|
2721
|
+
name: string;
|
|
2722
|
+
kind: string;
|
|
2723
|
+
} & {
|
|
2724
|
+
date?: string | null | undefined;
|
|
2725
|
+
}) | ({
|
|
2726
|
+
id: string;
|
|
2727
|
+
url: string;
|
|
2728
|
+
name: string;
|
|
2729
|
+
kind: string;
|
|
2730
|
+
size: string;
|
|
2731
|
+
} & {
|
|
2732
|
+
date?: string | null | undefined;
|
|
2733
|
+
} & {
|
|
2734
|
+
__TYPE__: "FileLink";
|
|
2735
|
+
} & {
|
|
2736
|
+
size?: string | undefined;
|
|
2737
|
+
}) | ({
|
|
2738
|
+
__TYPE__: "DocumentLink";
|
|
2739
|
+
} & {
|
|
2740
|
+
id: string;
|
|
2741
|
+
}) | ({
|
|
2742
|
+
__TYPE__: "ExternalLink";
|
|
2743
|
+
} & {
|
|
2744
|
+
url: string;
|
|
2745
|
+
} & {
|
|
2746
|
+
kind?: "web" | undefined;
|
|
2747
|
+
target?: string | null | undefined;
|
|
2748
|
+
preview?: {
|
|
2749
|
+
title?: string | undefined;
|
|
2750
|
+
} | null | undefined;
|
|
2751
|
+
});
|
|
2752
|
+
start: number;
|
|
2753
|
+
end: number;
|
|
2754
|
+
type: "hyperlink";
|
|
2755
|
+
} | {
|
|
2756
|
+
data: string;
|
|
2757
|
+
start: number;
|
|
2758
|
+
end: number;
|
|
2759
|
+
type: "label";
|
|
2760
|
+
} | {
|
|
2761
|
+
start: number;
|
|
2762
|
+
end: number;
|
|
2763
|
+
type: "em" | "strong" | "list-item";
|
|
2764
|
+
})[] | undefined;
|
|
2765
|
+
};
|
|
2766
|
+
} & {
|
|
2767
|
+
label?: string | undefined;
|
|
2768
|
+
direction?: string | undefined;
|
|
2769
|
+
}))[];
|
|
2770
|
+
} | {
|
|
2771
|
+
__TYPE__: "SeparatorContent";
|
|
2772
|
+
};
|
|
2773
|
+
};
|
|
2774
|
+
repeat: {
|
|
2775
|
+
__TYPE__: "GroupItemContent";
|
|
2776
|
+
value: [string, import("@prismicio/types-internal/lib/content").GroupContent | {
|
|
2777
|
+
type: string;
|
|
2778
|
+
__TYPE__: "EmptyContent";
|
|
2779
|
+
} | {
|
|
2780
|
+
__TYPE__: "BooleanContent";
|
|
2781
|
+
value: boolean;
|
|
2782
|
+
} | ({
|
|
2783
|
+
embed_url: string;
|
|
2784
|
+
type: string;
|
|
2785
|
+
} & {
|
|
2786
|
+
version?: string | number | null | undefined;
|
|
2787
|
+
title?: string | null | undefined;
|
|
2788
|
+
author_name?: string | null | undefined;
|
|
2789
|
+
author_url?: string | null | undefined;
|
|
2790
|
+
provider_name?: string | null | undefined;
|
|
2791
|
+
provider_url?: string | null | undefined;
|
|
2792
|
+
cache_age?: string | number | null | undefined;
|
|
2793
|
+
thumbnail_url?: string | null | undefined;
|
|
2794
|
+
thumbnail_width?: number | null | undefined;
|
|
2795
|
+
thumbnail_height?: number | null | undefined;
|
|
2796
|
+
html?: string | null | undefined;
|
|
2797
|
+
} & {
|
|
2798
|
+
__TYPE__: "EmbedContent";
|
|
2799
|
+
all: unknown;
|
|
2800
|
+
}) | {
|
|
2801
|
+
type: "Text";
|
|
2802
|
+
value: string;
|
|
2803
|
+
__TYPE__: "FieldContent";
|
|
2804
|
+
} | {
|
|
2805
|
+
type: "Timestamp";
|
|
2806
|
+
value: string;
|
|
2807
|
+
__TYPE__: "FieldContent";
|
|
2808
|
+
} | {
|
|
2809
|
+
type: "Select";
|
|
2810
|
+
value: string;
|
|
2811
|
+
__TYPE__: "FieldContent";
|
|
2812
|
+
} | {
|
|
2813
|
+
type: "Range";
|
|
2814
|
+
value: string;
|
|
2815
|
+
__TYPE__: "FieldContent";
|
|
2816
|
+
} | {
|
|
2817
|
+
type: "Number";
|
|
2818
|
+
value: string;
|
|
2819
|
+
__TYPE__: "FieldContent";
|
|
2820
|
+
} | {
|
|
2821
|
+
type: "Date";
|
|
2822
|
+
value: string;
|
|
2823
|
+
__TYPE__: "FieldContent";
|
|
2824
|
+
} | {
|
|
2825
|
+
type: "Color";
|
|
2826
|
+
value: string;
|
|
2827
|
+
__TYPE__: "FieldContent";
|
|
2828
|
+
} | ({
|
|
2829
|
+
position: {
|
|
2830
|
+
lat: number;
|
|
2831
|
+
lng: number;
|
|
2832
|
+
};
|
|
2833
|
+
} & {
|
|
2834
|
+
__TYPE__: "GeoPointContent";
|
|
2835
|
+
}) | ({
|
|
2836
|
+
origin: {
|
|
2837
|
+
id: string;
|
|
2838
|
+
url: string;
|
|
2839
|
+
width: number;
|
|
2840
|
+
height: number;
|
|
2841
|
+
};
|
|
2842
|
+
width: number;
|
|
2843
|
+
height: number;
|
|
2844
|
+
edit: {
|
|
2845
|
+
zoom: number;
|
|
2846
|
+
crop: {
|
|
2847
|
+
x: number;
|
|
2848
|
+
y: number;
|
|
2849
|
+
};
|
|
2850
|
+
background: string;
|
|
2851
|
+
};
|
|
2852
|
+
} & {
|
|
2853
|
+
url?: string | undefined;
|
|
2854
|
+
credits?: string | null | undefined;
|
|
2855
|
+
alt?: string | null | undefined;
|
|
2856
|
+
provider?: string | null | undefined;
|
|
2857
|
+
} & {
|
|
2858
|
+
thumbnails?: {
|
|
2859
|
+
[x: string]: {
|
|
2860
|
+
origin: {
|
|
2861
|
+
id: string;
|
|
2862
|
+
url: string;
|
|
2863
|
+
width: number;
|
|
2864
|
+
height: number;
|
|
2865
|
+
};
|
|
2866
|
+
width: number;
|
|
2867
|
+
height: number;
|
|
2868
|
+
edit: {
|
|
2869
|
+
zoom: number;
|
|
2870
|
+
crop: {
|
|
2871
|
+
x: number;
|
|
2872
|
+
y: number;
|
|
2873
|
+
};
|
|
2874
|
+
background: string;
|
|
2875
|
+
};
|
|
2876
|
+
} & {
|
|
2877
|
+
url?: string | undefined;
|
|
2878
|
+
credits?: string | null | undefined;
|
|
2879
|
+
alt?: string | null | undefined;
|
|
2880
|
+
provider?: string | null | undefined;
|
|
2881
|
+
};
|
|
2882
|
+
} | undefined;
|
|
2883
|
+
} & {
|
|
2884
|
+
__TYPE__: "ImageContent";
|
|
2885
|
+
}) | {
|
|
2886
|
+
__TYPE__: "IntegrationFieldsContent";
|
|
2887
|
+
value: string;
|
|
2888
|
+
} | {
|
|
2889
|
+
__TYPE__: "LinkContent";
|
|
2890
|
+
value: ({
|
|
2891
|
+
__TYPE__: "ImageLink";
|
|
2892
|
+
} & {
|
|
2893
|
+
id: string;
|
|
2894
|
+
url: string;
|
|
2895
|
+
height: string;
|
|
2896
|
+
width: string;
|
|
2897
|
+
size: string;
|
|
2898
|
+
name: string;
|
|
2899
|
+
kind: string;
|
|
2900
|
+
} & {
|
|
2901
|
+
date?: string | null | undefined;
|
|
2902
|
+
}) | ({
|
|
2903
|
+
id: string;
|
|
2904
|
+
url: string;
|
|
2905
|
+
name: string;
|
|
2906
|
+
kind: string;
|
|
2907
|
+
size: string;
|
|
2908
|
+
} & {
|
|
2909
|
+
date?: string | null | undefined;
|
|
2910
|
+
} & {
|
|
2911
|
+
__TYPE__: "FileLink";
|
|
2912
|
+
} & {
|
|
2913
|
+
size?: string | undefined;
|
|
2914
|
+
}) | ({
|
|
2915
|
+
__TYPE__: "DocumentLink";
|
|
2916
|
+
} & {
|
|
2917
|
+
id: string;
|
|
2918
|
+
}) | ({
|
|
2919
|
+
__TYPE__: "ExternalLink";
|
|
2920
|
+
} & {
|
|
2921
|
+
url: string;
|
|
2922
|
+
} & {
|
|
2923
|
+
kind?: "web" | undefined;
|
|
2924
|
+
target?: string | null | undefined;
|
|
2925
|
+
preview?: {
|
|
2926
|
+
title?: string | undefined;
|
|
2927
|
+
} | null | undefined;
|
|
2928
|
+
});
|
|
2929
|
+
} | {
|
|
2930
|
+
__TYPE__: "StructuredTextContent";
|
|
2931
|
+
value: (({
|
|
2932
|
+
type: "image";
|
|
2933
|
+
data: {
|
|
2934
|
+
origin: {
|
|
2935
|
+
id: string;
|
|
2936
|
+
url: string;
|
|
2937
|
+
width: number;
|
|
2938
|
+
height: number;
|
|
2939
|
+
};
|
|
2940
|
+
width: number;
|
|
2941
|
+
height: number;
|
|
2942
|
+
edit: {
|
|
2943
|
+
zoom: number;
|
|
2944
|
+
crop: {
|
|
2945
|
+
x: number;
|
|
2946
|
+
y: number;
|
|
2947
|
+
};
|
|
2948
|
+
background: string;
|
|
2949
|
+
};
|
|
2950
|
+
} & {
|
|
2951
|
+
url?: string | undefined;
|
|
2952
|
+
credits?: string | null | undefined;
|
|
2953
|
+
alt?: string | null | undefined;
|
|
2954
|
+
provider?: string | null | undefined;
|
|
2955
|
+
} & {
|
|
2956
|
+
linkTo?: ({
|
|
2957
|
+
__TYPE__: "ImageLink";
|
|
2958
|
+
} & {
|
|
2959
|
+
id: string;
|
|
2960
|
+
url: string;
|
|
2961
|
+
height: string;
|
|
2962
|
+
width: string;
|
|
2963
|
+
size: string;
|
|
2964
|
+
name: string;
|
|
2965
|
+
kind: string;
|
|
2966
|
+
} & {
|
|
2967
|
+
date?: string | null | undefined;
|
|
2968
|
+
}) | ({
|
|
2969
|
+
id: string;
|
|
2970
|
+
url: string;
|
|
2971
|
+
name: string;
|
|
2972
|
+
kind: string;
|
|
2973
|
+
size: string;
|
|
2974
|
+
} & {
|
|
2975
|
+
date?: string | null | undefined;
|
|
2976
|
+
} & {
|
|
2977
|
+
__TYPE__: "FileLink";
|
|
2978
|
+
} & {
|
|
2979
|
+
size?: string | undefined;
|
|
2980
|
+
}) | ({
|
|
2981
|
+
__TYPE__: "DocumentLink";
|
|
2982
|
+
} & {
|
|
2983
|
+
id: string;
|
|
2984
|
+
}) | ({
|
|
2985
|
+
__TYPE__: "ExternalLink";
|
|
2986
|
+
} & {
|
|
2987
|
+
url: string;
|
|
2988
|
+
} & {
|
|
2989
|
+
kind?: "web" | undefined;
|
|
2990
|
+
target?: string | null | undefined;
|
|
2991
|
+
preview?: {
|
|
2992
|
+
title?: string | undefined;
|
|
2993
|
+
} | null | undefined;
|
|
2994
|
+
}) | null | undefined;
|
|
2995
|
+
};
|
|
2996
|
+
} & {
|
|
2997
|
+
label?: string | null | undefined;
|
|
2998
|
+
direction?: string | null | undefined;
|
|
2999
|
+
}) | ({
|
|
3000
|
+
type: "embed";
|
|
3001
|
+
data: {
|
|
3002
|
+
embed_url: string;
|
|
3003
|
+
type: string;
|
|
3004
|
+
} & {
|
|
3005
|
+
version?: string | number | null | undefined;
|
|
3006
|
+
title?: string | null | undefined;
|
|
3007
|
+
author_name?: string | null | undefined;
|
|
3008
|
+
author_url?: string | null | undefined;
|
|
3009
|
+
provider_name?: string | null | undefined;
|
|
3010
|
+
provider_url?: string | null | undefined;
|
|
3011
|
+
cache_age?: string | number | null | undefined;
|
|
3012
|
+
thumbnail_url?: string | null | undefined;
|
|
3013
|
+
thumbnail_width?: number | null | undefined;
|
|
3014
|
+
thumbnail_height?: number | null | undefined;
|
|
3015
|
+
html?: string | null | undefined;
|
|
3016
|
+
} & {
|
|
3017
|
+
__TYPE__: "EmbedContent";
|
|
3018
|
+
all: unknown;
|
|
3019
|
+
};
|
|
3020
|
+
} & {
|
|
3021
|
+
label?: string | null | undefined;
|
|
3022
|
+
direction?: string | null | undefined;
|
|
3023
|
+
}) | ({
|
|
3024
|
+
type: "image" | "em" | "embed" | "strong" | "list-item" | "paragraph" | "rtl" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "o-list-item";
|
|
3025
|
+
content: {
|
|
3026
|
+
text: string;
|
|
3027
|
+
} & {
|
|
3028
|
+
spans?: ({
|
|
3029
|
+
data: ({
|
|
3030
|
+
__TYPE__: "ImageLink";
|
|
3031
|
+
} & {
|
|
3032
|
+
id: string;
|
|
3033
|
+
url: string;
|
|
3034
|
+
height: string;
|
|
3035
|
+
width: string;
|
|
3036
|
+
size: string;
|
|
3037
|
+
name: string;
|
|
3038
|
+
kind: string;
|
|
3039
|
+
} & {
|
|
3040
|
+
date?: string | null | undefined;
|
|
3041
|
+
}) | ({
|
|
3042
|
+
id: string;
|
|
3043
|
+
url: string;
|
|
3044
|
+
name: string;
|
|
3045
|
+
kind: string;
|
|
3046
|
+
size: string;
|
|
3047
|
+
} & {
|
|
3048
|
+
date?: string | null | undefined;
|
|
3049
|
+
} & {
|
|
3050
|
+
__TYPE__: "FileLink";
|
|
3051
|
+
} & {
|
|
3052
|
+
size?: string | undefined;
|
|
3053
|
+
}) | ({
|
|
3054
|
+
__TYPE__: "DocumentLink";
|
|
3055
|
+
} & {
|
|
3056
|
+
id: string;
|
|
3057
|
+
}) | ({
|
|
3058
|
+
__TYPE__: "ExternalLink";
|
|
3059
|
+
} & {
|
|
3060
|
+
url: string;
|
|
3061
|
+
} & {
|
|
3062
|
+
kind?: "web" | undefined;
|
|
3063
|
+
target?: string | null | undefined;
|
|
3064
|
+
preview?: {
|
|
3065
|
+
title?: string | undefined;
|
|
3066
|
+
} | null | undefined;
|
|
3067
|
+
});
|
|
3068
|
+
start: number;
|
|
3069
|
+
end: number;
|
|
3070
|
+
type: "hyperlink";
|
|
3071
|
+
} | {
|
|
3072
|
+
data: string;
|
|
3073
|
+
start: number;
|
|
3074
|
+
end: number;
|
|
3075
|
+
type: "label";
|
|
3076
|
+
} | {
|
|
3077
|
+
start: number;
|
|
3078
|
+
end: number;
|
|
3079
|
+
type: "em" | "strong" | "list-item";
|
|
3080
|
+
})[] | undefined;
|
|
3081
|
+
};
|
|
3082
|
+
} & {
|
|
3083
|
+
label?: string | undefined;
|
|
3084
|
+
direction?: string | undefined;
|
|
3085
|
+
}))[];
|
|
3086
|
+
} | {
|
|
3087
|
+
__TYPE__: "SeparatorContent";
|
|
3088
|
+
}][];
|
|
3089
|
+
}[];
|
|
3090
|
+
} | {
|
|
3091
|
+
__TYPE__: "SharedSliceContent";
|
|
3092
|
+
variation: string;
|
|
3093
|
+
primary: {
|
|
3094
|
+
[x: string]: import("@prismicio/types-internal/lib/content").GroupContent | {
|
|
3095
|
+
type: string;
|
|
3096
|
+
__TYPE__: "EmptyContent";
|
|
3097
|
+
} | {
|
|
3098
|
+
__TYPE__: "BooleanContent";
|
|
3099
|
+
value: boolean;
|
|
3100
|
+
} | ({
|
|
3101
|
+
embed_url: string;
|
|
3102
|
+
type: string;
|
|
3103
|
+
} & {
|
|
3104
|
+
version?: string | number | null | undefined;
|
|
3105
|
+
title?: string | null | undefined;
|
|
3106
|
+
author_name?: string | null | undefined;
|
|
3107
|
+
author_url?: string | null | undefined;
|
|
3108
|
+
provider_name?: string | null | undefined;
|
|
3109
|
+
provider_url?: string | null | undefined;
|
|
3110
|
+
cache_age?: string | number | null | undefined;
|
|
3111
|
+
thumbnail_url?: string | null | undefined;
|
|
3112
|
+
thumbnail_width?: number | null | undefined;
|
|
3113
|
+
thumbnail_height?: number | null | undefined;
|
|
3114
|
+
html?: string | null | undefined;
|
|
3115
|
+
} & {
|
|
3116
|
+
__TYPE__: "EmbedContent";
|
|
3117
|
+
all: unknown;
|
|
3118
|
+
}) | {
|
|
3119
|
+
type: "Text";
|
|
3120
|
+
value: string;
|
|
3121
|
+
__TYPE__: "FieldContent";
|
|
3122
|
+
} | {
|
|
3123
|
+
type: "Timestamp";
|
|
3124
|
+
value: string;
|
|
3125
|
+
__TYPE__: "FieldContent";
|
|
3126
|
+
} | {
|
|
3127
|
+
type: "Select";
|
|
3128
|
+
value: string;
|
|
3129
|
+
__TYPE__: "FieldContent";
|
|
3130
|
+
} | {
|
|
3131
|
+
type: "Range";
|
|
3132
|
+
value: string;
|
|
3133
|
+
__TYPE__: "FieldContent";
|
|
3134
|
+
} | {
|
|
3135
|
+
type: "Number";
|
|
3136
|
+
value: string;
|
|
3137
|
+
__TYPE__: "FieldContent";
|
|
3138
|
+
} | {
|
|
3139
|
+
type: "Date";
|
|
3140
|
+
value: string;
|
|
3141
|
+
__TYPE__: "FieldContent";
|
|
3142
|
+
} | {
|
|
3143
|
+
type: "Color";
|
|
3144
|
+
value: string;
|
|
3145
|
+
__TYPE__: "FieldContent";
|
|
3146
|
+
} | ({
|
|
3147
|
+
position: {
|
|
3148
|
+
lat: number;
|
|
3149
|
+
lng: number;
|
|
3150
|
+
};
|
|
3151
|
+
} & {
|
|
3152
|
+
__TYPE__: "GeoPointContent";
|
|
3153
|
+
}) | ({
|
|
3154
|
+
origin: {
|
|
3155
|
+
id: string;
|
|
3156
|
+
url: string;
|
|
3157
|
+
width: number;
|
|
3158
|
+
height: number;
|
|
3159
|
+
};
|
|
3160
|
+
width: number;
|
|
3161
|
+
height: number;
|
|
3162
|
+
edit: {
|
|
3163
|
+
zoom: number;
|
|
3164
|
+
crop: {
|
|
3165
|
+
x: number;
|
|
3166
|
+
y: number;
|
|
3167
|
+
};
|
|
3168
|
+
background: string;
|
|
3169
|
+
};
|
|
3170
|
+
} & {
|
|
3171
|
+
url?: string | undefined;
|
|
3172
|
+
credits?: string | null | undefined;
|
|
3173
|
+
alt?: string | null | undefined;
|
|
3174
|
+
provider?: string | null | undefined;
|
|
3175
|
+
} & {
|
|
3176
|
+
thumbnails?: {
|
|
3177
|
+
[x: string]: {
|
|
3178
|
+
origin: {
|
|
3179
|
+
id: string;
|
|
3180
|
+
url: string;
|
|
3181
|
+
width: number;
|
|
3182
|
+
height: number;
|
|
3183
|
+
};
|
|
3184
|
+
width: number;
|
|
3185
|
+
height: number;
|
|
3186
|
+
edit: {
|
|
3187
|
+
zoom: number;
|
|
3188
|
+
crop: {
|
|
3189
|
+
x: number;
|
|
3190
|
+
y: number;
|
|
3191
|
+
};
|
|
3192
|
+
background: string;
|
|
3193
|
+
};
|
|
3194
|
+
} & {
|
|
3195
|
+
url?: string | undefined;
|
|
3196
|
+
credits?: string | null | undefined;
|
|
3197
|
+
alt?: string | null | undefined;
|
|
3198
|
+
provider?: string | null | undefined;
|
|
3199
|
+
};
|
|
3200
|
+
} | undefined;
|
|
3201
|
+
} & {
|
|
3202
|
+
__TYPE__: "ImageContent";
|
|
3203
|
+
}) | {
|
|
3204
|
+
__TYPE__: "IntegrationFieldsContent";
|
|
3205
|
+
value: string;
|
|
3206
|
+
} | {
|
|
3207
|
+
__TYPE__: "LinkContent";
|
|
3208
|
+
value: ({
|
|
3209
|
+
__TYPE__: "ImageLink";
|
|
3210
|
+
} & {
|
|
3211
|
+
id: string;
|
|
3212
|
+
url: string;
|
|
3213
|
+
height: string;
|
|
3214
|
+
width: string;
|
|
3215
|
+
size: string;
|
|
3216
|
+
name: string;
|
|
3217
|
+
kind: string;
|
|
3218
|
+
} & {
|
|
3219
|
+
date?: string | null | undefined;
|
|
3220
|
+
}) | ({
|
|
3221
|
+
id: string;
|
|
3222
|
+
url: string;
|
|
3223
|
+
name: string;
|
|
3224
|
+
kind: string;
|
|
3225
|
+
size: string;
|
|
3226
|
+
} & {
|
|
3227
|
+
date?: string | null | undefined;
|
|
3228
|
+
} & {
|
|
3229
|
+
__TYPE__: "FileLink";
|
|
3230
|
+
} & {
|
|
3231
|
+
size?: string | undefined;
|
|
3232
|
+
}) | ({
|
|
3233
|
+
__TYPE__: "DocumentLink";
|
|
3234
|
+
} & {
|
|
3235
|
+
id: string;
|
|
3236
|
+
}) | ({
|
|
3237
|
+
__TYPE__: "ExternalLink";
|
|
3238
|
+
} & {
|
|
3239
|
+
url: string;
|
|
3240
|
+
} & {
|
|
3241
|
+
kind?: "web" | undefined;
|
|
3242
|
+
target?: string | null | undefined;
|
|
3243
|
+
preview?: {
|
|
3244
|
+
title?: string | undefined;
|
|
3245
|
+
} | null | undefined;
|
|
3246
|
+
});
|
|
3247
|
+
} | {
|
|
3248
|
+
__TYPE__: "StructuredTextContent";
|
|
3249
|
+
value: (({
|
|
3250
|
+
type: "image";
|
|
3251
|
+
data: {
|
|
3252
|
+
origin: {
|
|
3253
|
+
id: string;
|
|
3254
|
+
url: string;
|
|
3255
|
+
width: number;
|
|
3256
|
+
height: number;
|
|
3257
|
+
};
|
|
3258
|
+
width: number;
|
|
3259
|
+
height: number;
|
|
3260
|
+
edit: {
|
|
3261
|
+
zoom: number;
|
|
3262
|
+
crop: {
|
|
3263
|
+
x: number;
|
|
3264
|
+
y: number;
|
|
3265
|
+
};
|
|
3266
|
+
background: string;
|
|
3267
|
+
};
|
|
3268
|
+
} & {
|
|
3269
|
+
url?: string | undefined;
|
|
3270
|
+
credits?: string | null | undefined;
|
|
3271
|
+
alt?: string | null | undefined;
|
|
3272
|
+
provider?: string | null | undefined;
|
|
3273
|
+
} & {
|
|
3274
|
+
linkTo?: ({
|
|
3275
|
+
__TYPE__: "ImageLink";
|
|
3276
|
+
} & {
|
|
3277
|
+
id: string;
|
|
3278
|
+
url: string;
|
|
3279
|
+
height: string;
|
|
3280
|
+
width: string;
|
|
3281
|
+
size: string;
|
|
3282
|
+
name: string;
|
|
3283
|
+
kind: string;
|
|
3284
|
+
} & {
|
|
3285
|
+
date?: string | null | undefined;
|
|
3286
|
+
}) | ({
|
|
3287
|
+
id: string;
|
|
3288
|
+
url: string;
|
|
3289
|
+
name: string;
|
|
3290
|
+
kind: string;
|
|
3291
|
+
size: string;
|
|
3292
|
+
} & {
|
|
3293
|
+
date?: string | null | undefined;
|
|
3294
|
+
} & {
|
|
3295
|
+
__TYPE__: "FileLink";
|
|
3296
|
+
} & {
|
|
3297
|
+
size?: string | undefined;
|
|
3298
|
+
}) | ({
|
|
3299
|
+
__TYPE__: "DocumentLink";
|
|
3300
|
+
} & {
|
|
3301
|
+
id: string;
|
|
3302
|
+
}) | ({
|
|
3303
|
+
__TYPE__: "ExternalLink";
|
|
3304
|
+
} & {
|
|
3305
|
+
url: string;
|
|
3306
|
+
} & {
|
|
3307
|
+
kind?: "web" | undefined;
|
|
3308
|
+
target?: string | null | undefined;
|
|
3309
|
+
preview?: {
|
|
3310
|
+
title?: string | undefined;
|
|
3311
|
+
} | null | undefined;
|
|
3312
|
+
}) | null | undefined;
|
|
3313
|
+
};
|
|
3314
|
+
} & {
|
|
3315
|
+
label?: string | null | undefined;
|
|
3316
|
+
direction?: string | null | undefined;
|
|
3317
|
+
}) | ({
|
|
3318
|
+
type: "embed";
|
|
3319
|
+
data: {
|
|
3320
|
+
embed_url: string;
|
|
3321
|
+
type: string;
|
|
3322
|
+
} & {
|
|
3323
|
+
version?: string | number | null | undefined;
|
|
3324
|
+
title?: string | null | undefined;
|
|
3325
|
+
author_name?: string | null | undefined;
|
|
3326
|
+
author_url?: string | null | undefined;
|
|
3327
|
+
provider_name?: string | null | undefined;
|
|
3328
|
+
provider_url?: string | null | undefined;
|
|
3329
|
+
cache_age?: string | number | null | undefined;
|
|
3330
|
+
thumbnail_url?: string | null | undefined;
|
|
3331
|
+
thumbnail_width?: number | null | undefined;
|
|
3332
|
+
thumbnail_height?: number | null | undefined;
|
|
3333
|
+
html?: string | null | undefined;
|
|
3334
|
+
} & {
|
|
3335
|
+
__TYPE__: "EmbedContent";
|
|
3336
|
+
all: unknown;
|
|
3337
|
+
};
|
|
3338
|
+
} & {
|
|
3339
|
+
label?: string | null | undefined;
|
|
3340
|
+
direction?: string | null | undefined;
|
|
3341
|
+
}) | ({
|
|
3342
|
+
type: "image" | "em" | "embed" | "strong" | "list-item" | "paragraph" | "rtl" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "o-list-item";
|
|
3343
|
+
content: {
|
|
3344
|
+
text: string;
|
|
3345
|
+
} & {
|
|
3346
|
+
spans?: ({
|
|
3347
|
+
data: ({
|
|
3348
|
+
__TYPE__: "ImageLink";
|
|
3349
|
+
} & {
|
|
3350
|
+
id: string;
|
|
3351
|
+
url: string;
|
|
3352
|
+
height: string;
|
|
3353
|
+
width: string;
|
|
3354
|
+
size: string;
|
|
3355
|
+
name: string;
|
|
3356
|
+
kind: string;
|
|
3357
|
+
} & {
|
|
3358
|
+
date?: string | null | undefined;
|
|
3359
|
+
}) | ({
|
|
3360
|
+
id: string;
|
|
3361
|
+
url: string;
|
|
3362
|
+
name: string;
|
|
3363
|
+
kind: string;
|
|
3364
|
+
size: string;
|
|
3365
|
+
} & {
|
|
3366
|
+
date?: string | null | undefined;
|
|
3367
|
+
} & {
|
|
3368
|
+
__TYPE__: "FileLink";
|
|
3369
|
+
} & {
|
|
3370
|
+
size?: string | undefined;
|
|
3371
|
+
}) | ({
|
|
3372
|
+
__TYPE__: "DocumentLink";
|
|
3373
|
+
} & {
|
|
3374
|
+
id: string;
|
|
3375
|
+
}) | ({
|
|
3376
|
+
__TYPE__: "ExternalLink";
|
|
3377
|
+
} & {
|
|
3378
|
+
url: string;
|
|
3379
|
+
} & {
|
|
3380
|
+
kind?: "web" | undefined;
|
|
3381
|
+
target?: string | null | undefined;
|
|
3382
|
+
preview?: {
|
|
3383
|
+
title?: string | undefined;
|
|
3384
|
+
} | null | undefined;
|
|
3385
|
+
});
|
|
3386
|
+
start: number;
|
|
3387
|
+
end: number;
|
|
3388
|
+
type: "hyperlink";
|
|
3389
|
+
} | {
|
|
3390
|
+
data: string;
|
|
3391
|
+
start: number;
|
|
3392
|
+
end: number;
|
|
3393
|
+
type: "label";
|
|
3394
|
+
} | {
|
|
3395
|
+
start: number;
|
|
3396
|
+
end: number;
|
|
3397
|
+
type: "em" | "strong" | "list-item";
|
|
3398
|
+
})[] | undefined;
|
|
3399
|
+
};
|
|
3400
|
+
} & {
|
|
3401
|
+
label?: string | undefined;
|
|
3402
|
+
direction?: string | undefined;
|
|
3403
|
+
}))[];
|
|
3404
|
+
} | {
|
|
3405
|
+
__TYPE__: "SeparatorContent";
|
|
3406
|
+
};
|
|
3407
|
+
};
|
|
3408
|
+
items: {
|
|
3409
|
+
__TYPE__: "GroupItemContent";
|
|
3410
|
+
value: [string, import("@prismicio/types-internal/lib/content").GroupContent | {
|
|
3411
|
+
type: string;
|
|
3412
|
+
__TYPE__: "EmptyContent";
|
|
3413
|
+
} | {
|
|
3414
|
+
__TYPE__: "BooleanContent";
|
|
3415
|
+
value: boolean;
|
|
3416
|
+
} | ({
|
|
3417
|
+
embed_url: string;
|
|
3418
|
+
type: string;
|
|
3419
|
+
} & {
|
|
3420
|
+
version?: string | number | null | undefined;
|
|
3421
|
+
title?: string | null | undefined;
|
|
3422
|
+
author_name?: string | null | undefined;
|
|
3423
|
+
author_url?: string | null | undefined;
|
|
3424
|
+
provider_name?: string | null | undefined;
|
|
3425
|
+
provider_url?: string | null | undefined;
|
|
3426
|
+
cache_age?: string | number | null | undefined;
|
|
3427
|
+
thumbnail_url?: string | null | undefined;
|
|
3428
|
+
thumbnail_width?: number | null | undefined;
|
|
3429
|
+
thumbnail_height?: number | null | undefined;
|
|
3430
|
+
html?: string | null | undefined;
|
|
3431
|
+
} & {
|
|
3432
|
+
__TYPE__: "EmbedContent";
|
|
3433
|
+
all: unknown;
|
|
3434
|
+
}) | {
|
|
3435
|
+
type: "Text";
|
|
3436
|
+
value: string;
|
|
3437
|
+
__TYPE__: "FieldContent";
|
|
3438
|
+
} | {
|
|
3439
|
+
type: "Timestamp";
|
|
3440
|
+
value: string;
|
|
3441
|
+
__TYPE__: "FieldContent";
|
|
3442
|
+
} | {
|
|
3443
|
+
type: "Select";
|
|
3444
|
+
value: string;
|
|
3445
|
+
__TYPE__: "FieldContent";
|
|
3446
|
+
} | {
|
|
3447
|
+
type: "Range";
|
|
3448
|
+
value: string;
|
|
3449
|
+
__TYPE__: "FieldContent";
|
|
3450
|
+
} | {
|
|
3451
|
+
type: "Number";
|
|
3452
|
+
value: string;
|
|
3453
|
+
__TYPE__: "FieldContent";
|
|
3454
|
+
} | {
|
|
3455
|
+
type: "Date";
|
|
3456
|
+
value: string;
|
|
3457
|
+
__TYPE__: "FieldContent";
|
|
3458
|
+
} | {
|
|
3459
|
+
type: "Color";
|
|
3460
|
+
value: string;
|
|
3461
|
+
__TYPE__: "FieldContent";
|
|
3462
|
+
} | ({
|
|
3463
|
+
position: {
|
|
3464
|
+
lat: number;
|
|
3465
|
+
lng: number;
|
|
3466
|
+
};
|
|
3467
|
+
} & {
|
|
3468
|
+
__TYPE__: "GeoPointContent";
|
|
3469
|
+
}) | ({
|
|
3470
|
+
origin: {
|
|
3471
|
+
id: string;
|
|
3472
|
+
url: string;
|
|
3473
|
+
width: number;
|
|
3474
|
+
height: number;
|
|
3475
|
+
};
|
|
3476
|
+
width: number;
|
|
3477
|
+
height: number;
|
|
3478
|
+
edit: {
|
|
3479
|
+
zoom: number;
|
|
3480
|
+
crop: {
|
|
3481
|
+
x: number;
|
|
3482
|
+
y: number;
|
|
3483
|
+
};
|
|
3484
|
+
background: string;
|
|
3485
|
+
};
|
|
3486
|
+
} & {
|
|
3487
|
+
url?: string | undefined;
|
|
3488
|
+
credits?: string | null | undefined;
|
|
3489
|
+
alt?: string | null | undefined;
|
|
3490
|
+
provider?: string | null | undefined;
|
|
3491
|
+
} & {
|
|
3492
|
+
thumbnails?: {
|
|
3493
|
+
[x: string]: {
|
|
3494
|
+
origin: {
|
|
3495
|
+
id: string;
|
|
3496
|
+
url: string;
|
|
3497
|
+
width: number;
|
|
3498
|
+
height: number;
|
|
3499
|
+
};
|
|
3500
|
+
width: number;
|
|
3501
|
+
height: number;
|
|
3502
|
+
edit: {
|
|
3503
|
+
zoom: number;
|
|
3504
|
+
crop: {
|
|
3505
|
+
x: number;
|
|
3506
|
+
y: number;
|
|
3507
|
+
};
|
|
3508
|
+
background: string;
|
|
3509
|
+
};
|
|
3510
|
+
} & {
|
|
3511
|
+
url?: string | undefined;
|
|
3512
|
+
credits?: string | null | undefined;
|
|
3513
|
+
alt?: string | null | undefined;
|
|
3514
|
+
provider?: string | null | undefined;
|
|
3515
|
+
};
|
|
3516
|
+
} | undefined;
|
|
3517
|
+
} & {
|
|
3518
|
+
__TYPE__: "ImageContent";
|
|
3519
|
+
}) | {
|
|
3520
|
+
__TYPE__: "IntegrationFieldsContent";
|
|
3521
|
+
value: string;
|
|
3522
|
+
} | {
|
|
3523
|
+
__TYPE__: "LinkContent";
|
|
3524
|
+
value: ({
|
|
3525
|
+
__TYPE__: "ImageLink";
|
|
3526
|
+
} & {
|
|
3527
|
+
id: string;
|
|
3528
|
+
url: string;
|
|
3529
|
+
height: string;
|
|
3530
|
+
width: string;
|
|
3531
|
+
size: string;
|
|
3532
|
+
name: string;
|
|
3533
|
+
kind: string;
|
|
3534
|
+
} & {
|
|
3535
|
+
date?: string | null | undefined;
|
|
3536
|
+
}) | ({
|
|
3537
|
+
id: string;
|
|
3538
|
+
url: string;
|
|
3539
|
+
name: string;
|
|
3540
|
+
kind: string;
|
|
3541
|
+
size: string;
|
|
3542
|
+
} & {
|
|
3543
|
+
date?: string | null | undefined;
|
|
3544
|
+
} & {
|
|
3545
|
+
__TYPE__: "FileLink";
|
|
3546
|
+
} & {
|
|
3547
|
+
size?: string | undefined;
|
|
3548
|
+
}) | ({
|
|
3549
|
+
__TYPE__: "DocumentLink";
|
|
3550
|
+
} & {
|
|
3551
|
+
id: string;
|
|
3552
|
+
}) | ({
|
|
3553
|
+
__TYPE__: "ExternalLink";
|
|
3554
|
+
} & {
|
|
3555
|
+
url: string;
|
|
3556
|
+
} & {
|
|
3557
|
+
kind?: "web" | undefined;
|
|
3558
|
+
target?: string | null | undefined;
|
|
3559
|
+
preview?: {
|
|
3560
|
+
title?: string | undefined;
|
|
3561
|
+
} | null | undefined;
|
|
3562
|
+
});
|
|
3563
|
+
} | {
|
|
3564
|
+
__TYPE__: "StructuredTextContent";
|
|
3565
|
+
value: (({
|
|
3566
|
+
type: "image";
|
|
3567
|
+
data: {
|
|
3568
|
+
origin: {
|
|
3569
|
+
id: string;
|
|
3570
|
+
url: string;
|
|
3571
|
+
width: number;
|
|
3572
|
+
height: number;
|
|
3573
|
+
};
|
|
3574
|
+
width: number;
|
|
3575
|
+
height: number;
|
|
3576
|
+
edit: {
|
|
3577
|
+
zoom: number;
|
|
3578
|
+
crop: {
|
|
3579
|
+
x: number;
|
|
3580
|
+
y: number;
|
|
3581
|
+
};
|
|
3582
|
+
background: string;
|
|
3583
|
+
};
|
|
3584
|
+
} & {
|
|
3585
|
+
url?: string | undefined;
|
|
3586
|
+
credits?: string | null | undefined;
|
|
3587
|
+
alt?: string | null | undefined;
|
|
3588
|
+
provider?: string | null | undefined;
|
|
3589
|
+
} & {
|
|
3590
|
+
linkTo?: ({
|
|
3591
|
+
__TYPE__: "ImageLink";
|
|
3592
|
+
} & {
|
|
3593
|
+
id: string;
|
|
3594
|
+
url: string;
|
|
3595
|
+
height: string;
|
|
3596
|
+
width: string;
|
|
3597
|
+
size: string;
|
|
3598
|
+
name: string;
|
|
3599
|
+
kind: string;
|
|
3600
|
+
} & {
|
|
3601
|
+
date?: string | null | undefined;
|
|
3602
|
+
}) | ({
|
|
3603
|
+
id: string;
|
|
3604
|
+
url: string;
|
|
3605
|
+
name: string;
|
|
3606
|
+
kind: string;
|
|
3607
|
+
size: string;
|
|
3608
|
+
} & {
|
|
3609
|
+
date?: string | null | undefined;
|
|
3610
|
+
} & {
|
|
3611
|
+
__TYPE__: "FileLink";
|
|
3612
|
+
} & {
|
|
3613
|
+
size?: string | undefined;
|
|
3614
|
+
}) | ({
|
|
3615
|
+
__TYPE__: "DocumentLink";
|
|
3616
|
+
} & {
|
|
3617
|
+
id: string;
|
|
3618
|
+
}) | ({
|
|
3619
|
+
__TYPE__: "ExternalLink";
|
|
3620
|
+
} & {
|
|
3621
|
+
url: string;
|
|
3622
|
+
} & {
|
|
3623
|
+
kind?: "web" | undefined;
|
|
3624
|
+
target?: string | null | undefined;
|
|
3625
|
+
preview?: {
|
|
3626
|
+
title?: string | undefined;
|
|
3627
|
+
} | null | undefined;
|
|
3628
|
+
}) | null | undefined;
|
|
3629
|
+
};
|
|
3630
|
+
} & {
|
|
3631
|
+
label?: string | null | undefined;
|
|
3632
|
+
direction?: string | null | undefined;
|
|
3633
|
+
}) | ({
|
|
3634
|
+
type: "embed";
|
|
3635
|
+
data: {
|
|
3636
|
+
embed_url: string;
|
|
3637
|
+
type: string;
|
|
3638
|
+
} & {
|
|
3639
|
+
version?: string | number | null | undefined;
|
|
3640
|
+
title?: string | null | undefined;
|
|
3641
|
+
author_name?: string | null | undefined;
|
|
3642
|
+
author_url?: string | null | undefined;
|
|
3643
|
+
provider_name?: string | null | undefined;
|
|
3644
|
+
provider_url?: string | null | undefined;
|
|
3645
|
+
cache_age?: string | number | null | undefined;
|
|
3646
|
+
thumbnail_url?: string | null | undefined;
|
|
3647
|
+
thumbnail_width?: number | null | undefined;
|
|
3648
|
+
thumbnail_height?: number | null | undefined;
|
|
3649
|
+
html?: string | null | undefined;
|
|
3650
|
+
} & {
|
|
3651
|
+
__TYPE__: "EmbedContent";
|
|
3652
|
+
all: unknown;
|
|
3653
|
+
};
|
|
3654
|
+
} & {
|
|
3655
|
+
label?: string | null | undefined;
|
|
3656
|
+
direction?: string | null | undefined;
|
|
3657
|
+
}) | ({
|
|
3658
|
+
type: "image" | "em" | "embed" | "strong" | "list-item" | "paragraph" | "rtl" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "o-list-item";
|
|
3659
|
+
content: {
|
|
3660
|
+
text: string;
|
|
3661
|
+
} & {
|
|
3662
|
+
spans?: ({
|
|
3663
|
+
data: ({
|
|
3664
|
+
__TYPE__: "ImageLink";
|
|
3665
|
+
} & {
|
|
3666
|
+
id: string;
|
|
3667
|
+
url: string;
|
|
3668
|
+
height: string;
|
|
3669
|
+
width: string;
|
|
3670
|
+
size: string;
|
|
3671
|
+
name: string;
|
|
3672
|
+
kind: string;
|
|
3673
|
+
} & {
|
|
3674
|
+
date?: string | null | undefined;
|
|
3675
|
+
}) | ({
|
|
3676
|
+
id: string;
|
|
3677
|
+
url: string;
|
|
3678
|
+
name: string;
|
|
3679
|
+
kind: string;
|
|
3680
|
+
size: string;
|
|
3681
|
+
} & {
|
|
3682
|
+
date?: string | null | undefined;
|
|
3683
|
+
} & {
|
|
3684
|
+
__TYPE__: "FileLink";
|
|
3685
|
+
} & {
|
|
3686
|
+
size?: string | undefined;
|
|
3687
|
+
}) | ({
|
|
3688
|
+
__TYPE__: "DocumentLink";
|
|
3689
|
+
} & {
|
|
3690
|
+
id: string;
|
|
3691
|
+
}) | ({
|
|
3692
|
+
__TYPE__: "ExternalLink";
|
|
3693
|
+
} & {
|
|
3694
|
+
url: string;
|
|
3695
|
+
} & {
|
|
3696
|
+
kind?: "web" | undefined;
|
|
3697
|
+
target?: string | null | undefined;
|
|
3698
|
+
preview?: {
|
|
3699
|
+
title?: string | undefined;
|
|
3700
|
+
} | null | undefined;
|
|
3701
|
+
});
|
|
3702
|
+
start: number;
|
|
3703
|
+
end: number;
|
|
3704
|
+
type: "hyperlink";
|
|
3705
|
+
} | {
|
|
3706
|
+
data: string;
|
|
3707
|
+
start: number;
|
|
3708
|
+
end: number;
|
|
3709
|
+
type: "label";
|
|
3710
|
+
} | {
|
|
3711
|
+
start: number;
|
|
3712
|
+
end: number;
|
|
3713
|
+
type: "em" | "strong" | "list-item";
|
|
3714
|
+
})[] | undefined;
|
|
3715
|
+
};
|
|
3716
|
+
} & {
|
|
3717
|
+
label?: string | undefined;
|
|
3718
|
+
direction?: string | undefined;
|
|
3719
|
+
}))[];
|
|
3720
|
+
} | {
|
|
3721
|
+
__TYPE__: "SeparatorContent";
|
|
3722
|
+
}][];
|
|
3723
|
+
}[];
|
|
3724
|
+
} | {
|
|
3725
|
+
type: string;
|
|
3726
|
+
__TYPE__: "EmptyContent";
|
|
3727
|
+
} | {
|
|
3728
|
+
__TYPE__: "BooleanContent";
|
|
3729
|
+
value: boolean;
|
|
3730
|
+
} | ({
|
|
3731
|
+
embed_url: string;
|
|
3732
|
+
type: string;
|
|
3733
|
+
} & {
|
|
3734
|
+
version?: string | number | null | undefined;
|
|
3735
|
+
title?: string | null | undefined;
|
|
3736
|
+
author_name?: string | null | undefined;
|
|
3737
|
+
author_url?: string | null | undefined;
|
|
3738
|
+
provider_name?: string | null | undefined;
|
|
3739
|
+
provider_url?: string | null | undefined;
|
|
3740
|
+
cache_age?: string | number | null | undefined;
|
|
3741
|
+
thumbnail_url?: string | null | undefined;
|
|
3742
|
+
thumbnail_width?: number | null | undefined;
|
|
3743
|
+
thumbnail_height?: number | null | undefined;
|
|
3744
|
+
html?: string | null | undefined;
|
|
3745
|
+
} & {
|
|
3746
|
+
__TYPE__: "EmbedContent";
|
|
3747
|
+
all: unknown;
|
|
3748
|
+
}) | {
|
|
3749
|
+
type: "Text";
|
|
3750
|
+
value: string;
|
|
3751
|
+
__TYPE__: "FieldContent";
|
|
3752
|
+
} | {
|
|
3753
|
+
type: "Timestamp";
|
|
3754
|
+
value: string;
|
|
3755
|
+
__TYPE__: "FieldContent";
|
|
3756
|
+
} | {
|
|
3757
|
+
type: "Select";
|
|
3758
|
+
value: string;
|
|
3759
|
+
__TYPE__: "FieldContent";
|
|
3760
|
+
} | {
|
|
3761
|
+
type: "Range";
|
|
3762
|
+
value: string;
|
|
3763
|
+
__TYPE__: "FieldContent";
|
|
3764
|
+
} | {
|
|
3765
|
+
type: "Number";
|
|
3766
|
+
value: string;
|
|
3767
|
+
__TYPE__: "FieldContent";
|
|
3768
|
+
} | {
|
|
3769
|
+
type: "Date";
|
|
3770
|
+
value: string;
|
|
3771
|
+
__TYPE__: "FieldContent";
|
|
3772
|
+
} | {
|
|
3773
|
+
type: "Color";
|
|
3774
|
+
value: string;
|
|
3775
|
+
__TYPE__: "FieldContent";
|
|
3776
|
+
} | ({
|
|
3777
|
+
position: {
|
|
3778
|
+
lat: number;
|
|
3779
|
+
lng: number;
|
|
3780
|
+
};
|
|
3781
|
+
} & {
|
|
3782
|
+
__TYPE__: "GeoPointContent";
|
|
3783
|
+
}) | ({
|
|
3784
|
+
origin: {
|
|
3785
|
+
id: string;
|
|
3786
|
+
url: string;
|
|
3787
|
+
width: number;
|
|
3788
|
+
height: number;
|
|
3789
|
+
};
|
|
3790
|
+
width: number;
|
|
3791
|
+
height: number;
|
|
3792
|
+
edit: {
|
|
3793
|
+
zoom: number;
|
|
3794
|
+
crop: {
|
|
3795
|
+
x: number;
|
|
3796
|
+
y: number;
|
|
3797
|
+
};
|
|
3798
|
+
background: string;
|
|
3799
|
+
};
|
|
3800
|
+
} & {
|
|
3801
|
+
url?: string | undefined;
|
|
3802
|
+
credits?: string | null | undefined;
|
|
3803
|
+
alt?: string | null | undefined;
|
|
3804
|
+
provider?: string | null | undefined;
|
|
3805
|
+
} & {
|
|
3806
|
+
thumbnails?: {
|
|
3807
|
+
[x: string]: {
|
|
3808
|
+
origin: {
|
|
3809
|
+
id: string;
|
|
3810
|
+
url: string;
|
|
3811
|
+
width: number;
|
|
3812
|
+
height: number;
|
|
3813
|
+
};
|
|
3814
|
+
width: number;
|
|
3815
|
+
height: number;
|
|
3816
|
+
edit: {
|
|
3817
|
+
zoom: number;
|
|
3818
|
+
crop: {
|
|
3819
|
+
x: number;
|
|
3820
|
+
y: number;
|
|
3821
|
+
};
|
|
3822
|
+
background: string;
|
|
3823
|
+
};
|
|
3824
|
+
} & {
|
|
3825
|
+
url?: string | undefined;
|
|
3826
|
+
credits?: string | null | undefined;
|
|
3827
|
+
alt?: string | null | undefined;
|
|
3828
|
+
provider?: string | null | undefined;
|
|
3829
|
+
};
|
|
3830
|
+
} | undefined;
|
|
3831
|
+
} & {
|
|
3832
|
+
__TYPE__: "ImageContent";
|
|
3833
|
+
}) | {
|
|
3834
|
+
__TYPE__: "IntegrationFieldsContent";
|
|
3835
|
+
value: string;
|
|
3836
|
+
} | {
|
|
3837
|
+
__TYPE__: "LinkContent";
|
|
3838
|
+
value: ({
|
|
3839
|
+
__TYPE__: "ImageLink";
|
|
3840
|
+
} & {
|
|
3841
|
+
id: string;
|
|
3842
|
+
url: string;
|
|
3843
|
+
height: string;
|
|
3844
|
+
width: string;
|
|
3845
|
+
size: string;
|
|
3846
|
+
name: string;
|
|
3847
|
+
kind: string;
|
|
3848
|
+
} & {
|
|
3849
|
+
date?: string | null | undefined;
|
|
3850
|
+
}) | ({
|
|
3851
|
+
id: string;
|
|
3852
|
+
url: string;
|
|
3853
|
+
name: string;
|
|
3854
|
+
kind: string;
|
|
3855
|
+
size: string;
|
|
3856
|
+
} & {
|
|
3857
|
+
date?: string | null | undefined;
|
|
3858
|
+
} & {
|
|
3859
|
+
__TYPE__: "FileLink";
|
|
3860
|
+
} & {
|
|
3861
|
+
size?: string | undefined;
|
|
3862
|
+
}) | ({
|
|
3863
|
+
__TYPE__: "DocumentLink";
|
|
3864
|
+
} & {
|
|
3865
|
+
id: string;
|
|
3866
|
+
}) | ({
|
|
3867
|
+
__TYPE__: "ExternalLink";
|
|
3868
|
+
} & {
|
|
3869
|
+
url: string;
|
|
3870
|
+
} & {
|
|
3871
|
+
kind?: "web" | undefined;
|
|
3872
|
+
target?: string | null | undefined;
|
|
3873
|
+
preview?: {
|
|
3874
|
+
title?: string | undefined;
|
|
3875
|
+
} | null | undefined;
|
|
3876
|
+
});
|
|
3877
|
+
} | {
|
|
3878
|
+
__TYPE__: "StructuredTextContent";
|
|
3879
|
+
value: (({
|
|
3880
|
+
type: "image";
|
|
3881
|
+
data: {
|
|
3882
|
+
origin: {
|
|
3883
|
+
id: string;
|
|
3884
|
+
url: string;
|
|
3885
|
+
width: number;
|
|
3886
|
+
height: number;
|
|
3887
|
+
};
|
|
3888
|
+
width: number;
|
|
3889
|
+
height: number;
|
|
3890
|
+
edit: {
|
|
3891
|
+
zoom: number;
|
|
3892
|
+
crop: {
|
|
3893
|
+
x: number;
|
|
3894
|
+
y: number;
|
|
3895
|
+
};
|
|
3896
|
+
background: string;
|
|
3897
|
+
};
|
|
3898
|
+
} & {
|
|
3899
|
+
url?: string | undefined;
|
|
3900
|
+
credits?: string | null | undefined;
|
|
3901
|
+
alt?: string | null | undefined;
|
|
3902
|
+
provider?: string | null | undefined;
|
|
3903
|
+
} & {
|
|
3904
|
+
linkTo?: ({
|
|
3905
|
+
__TYPE__: "ImageLink";
|
|
3906
|
+
} & {
|
|
3907
|
+
id: string;
|
|
3908
|
+
url: string;
|
|
3909
|
+
height: string;
|
|
3910
|
+
width: string;
|
|
3911
|
+
size: string;
|
|
3912
|
+
name: string;
|
|
3913
|
+
kind: string;
|
|
3914
|
+
} & {
|
|
3915
|
+
date?: string | null | undefined;
|
|
3916
|
+
}) | ({
|
|
3917
|
+
id: string;
|
|
3918
|
+
url: string;
|
|
3919
|
+
name: string;
|
|
3920
|
+
kind: string;
|
|
3921
|
+
size: string;
|
|
3922
|
+
} & {
|
|
3923
|
+
date?: string | null | undefined;
|
|
3924
|
+
} & {
|
|
3925
|
+
__TYPE__: "FileLink";
|
|
3926
|
+
} & {
|
|
3927
|
+
size?: string | undefined;
|
|
3928
|
+
}) | ({
|
|
3929
|
+
__TYPE__: "DocumentLink";
|
|
3930
|
+
} & {
|
|
3931
|
+
id: string;
|
|
3932
|
+
}) | ({
|
|
3933
|
+
__TYPE__: "ExternalLink";
|
|
3934
|
+
} & {
|
|
3935
|
+
url: string;
|
|
3936
|
+
} & {
|
|
3937
|
+
kind?: "web" | undefined;
|
|
3938
|
+
target?: string | null | undefined;
|
|
3939
|
+
preview?: {
|
|
3940
|
+
title?: string | undefined;
|
|
3941
|
+
} | null | undefined;
|
|
3942
|
+
}) | null | undefined;
|
|
3943
|
+
};
|
|
3944
|
+
} & {
|
|
3945
|
+
label?: string | null | undefined;
|
|
3946
|
+
direction?: string | null | undefined;
|
|
3947
|
+
}) | ({
|
|
3948
|
+
type: "embed";
|
|
3949
|
+
data: {
|
|
3950
|
+
embed_url: string;
|
|
3951
|
+
type: string;
|
|
3952
|
+
} & {
|
|
3953
|
+
version?: string | number | null | undefined;
|
|
3954
|
+
title?: string | null | undefined;
|
|
3955
|
+
author_name?: string | null | undefined;
|
|
3956
|
+
author_url?: string | null | undefined;
|
|
3957
|
+
provider_name?: string | null | undefined;
|
|
3958
|
+
provider_url?: string | null | undefined;
|
|
3959
|
+
cache_age?: string | number | null | undefined;
|
|
3960
|
+
thumbnail_url?: string | null | undefined;
|
|
3961
|
+
thumbnail_width?: number | null | undefined;
|
|
3962
|
+
thumbnail_height?: number | null | undefined;
|
|
3963
|
+
html?: string | null | undefined;
|
|
3964
|
+
} & {
|
|
3965
|
+
__TYPE__: "EmbedContent";
|
|
3966
|
+
all: unknown;
|
|
3967
|
+
};
|
|
3968
|
+
} & {
|
|
3969
|
+
label?: string | null | undefined;
|
|
3970
|
+
direction?: string | null | undefined;
|
|
3971
|
+
}) | ({
|
|
3972
|
+
type: "image" | "em" | "embed" | "strong" | "list-item" | "paragraph" | "rtl" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "o-list-item";
|
|
3973
|
+
content: {
|
|
3974
|
+
text: string;
|
|
3975
|
+
} & {
|
|
3976
|
+
spans?: ({
|
|
3977
|
+
data: ({
|
|
3978
|
+
__TYPE__: "ImageLink";
|
|
3979
|
+
} & {
|
|
3980
|
+
id: string;
|
|
3981
|
+
url: string;
|
|
3982
|
+
height: string;
|
|
3983
|
+
width: string;
|
|
3984
|
+
size: string;
|
|
3985
|
+
name: string;
|
|
3986
|
+
kind: string;
|
|
3987
|
+
} & {
|
|
3988
|
+
date?: string | null | undefined;
|
|
3989
|
+
}) | ({
|
|
3990
|
+
id: string;
|
|
3991
|
+
url: string;
|
|
3992
|
+
name: string;
|
|
3993
|
+
kind: string;
|
|
3994
|
+
size: string;
|
|
3995
|
+
} & {
|
|
3996
|
+
date?: string | null | undefined;
|
|
3997
|
+
} & {
|
|
3998
|
+
__TYPE__: "FileLink";
|
|
3999
|
+
} & {
|
|
4000
|
+
size?: string | undefined;
|
|
4001
|
+
}) | ({
|
|
4002
|
+
__TYPE__: "DocumentLink";
|
|
4003
|
+
} & {
|
|
4004
|
+
id: string;
|
|
4005
|
+
}) | ({
|
|
4006
|
+
__TYPE__: "ExternalLink";
|
|
4007
|
+
} & {
|
|
4008
|
+
url: string;
|
|
4009
|
+
} & {
|
|
4010
|
+
kind?: "web" | undefined;
|
|
4011
|
+
target?: string | null | undefined;
|
|
4012
|
+
preview?: {
|
|
4013
|
+
title?: string | undefined;
|
|
4014
|
+
} | null | undefined;
|
|
4015
|
+
});
|
|
4016
|
+
start: number;
|
|
4017
|
+
end: number;
|
|
4018
|
+
type: "hyperlink";
|
|
4019
|
+
} | {
|
|
4020
|
+
data: string;
|
|
4021
|
+
start: number;
|
|
4022
|
+
end: number;
|
|
4023
|
+
type: "label";
|
|
4024
|
+
} | {
|
|
4025
|
+
start: number;
|
|
4026
|
+
end: number;
|
|
4027
|
+
type: "em" | "strong" | "list-item";
|
|
4028
|
+
})[] | undefined;
|
|
4029
|
+
};
|
|
4030
|
+
} & {
|
|
4031
|
+
label?: string | undefined;
|
|
4032
|
+
direction?: string | undefined;
|
|
4033
|
+
}))[];
|
|
4034
|
+
} | {
|
|
4035
|
+
__TYPE__: "SeparatorContent";
|
|
4036
|
+
};
|
|
4037
|
+
}, unknown>;
|
|
2453
4038
|
export {};
|