@prismicio/editor-fields 0.4.58-alpha.repeatable-link-base.1 → 0.4.59-alpha.feat-track-onboarding-tutorial.0
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/DocumentEditor.d.ts +2 -0
- package/dist/EditorConfig.d.ts +16 -1
- package/dist/SectionEditor.d.ts +5 -1
- package/dist/core/MediaLibrary/hooks/mediaLibraryData.d.ts +53 -53
- package/dist/core/MediaLibrary/hooks/tagData.d.ts +3 -3
- package/dist/core/MediaLibrary/hooks/useSelectedMedia.d.ts +5 -5
- package/dist/core/OnboardingGuide/components/OnboardingTutorial.d.ts +2 -0
- package/dist/core/SeoMetadata/components/MetadataBadge.d.ts +8 -0
- package/dist/core/SeoMetadata/components/MetadataPreview.d.ts +7 -0
- package/dist/core/SeoMetadata/index.d.ts +2 -0
- package/dist/core/document.d.ts +2 -6
- package/dist/core/service/aiSeoMetadata.d.ts +30 -0
- package/dist/core/service/customType.d.ts +15 -8
- package/dist/core/service/document.d.ts +98 -98
- package/dist/core/service/documentSearch.d.ts +34 -34
- package/dist/core/service/index.d.ts +1 -0
- package/dist/core/service/onboarding.d.ts +3 -0
- package/dist/core/service/repository.d.ts +6 -6
- package/dist/core/service/role.d.ts +18 -10
- package/dist/core/service/user.d.ts +1 -1
- package/dist/fields/KeyTextField.d.ts +3 -1
- package/dist/fields/LinkField/Documents/documentsData.d.ts +10 -10
- package/dist/fields/LinkField/RepeatableLinkField/useRepeatableLinkField.d.ts +1 -1
- package/dist/fields/LinkField/useLinkField.d.ts +1 -1
- package/dist/fields/MetadataTextField.d.ts +18 -0
- package/dist/fields/RichTextField/coreExtensions/ListItem.d.ts +4 -4
- package/dist/fields/RichTextField/extensions/extensions.d.ts +1 -1
- package/dist/index.cjs.js +92 -39
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +27160 -20473
- package/dist/slices/utils.d.ts +2 -2
- package/dist/zones/StaticZoneEditor.d.ts +6 -0
- package/package.json +5 -4
- package/dist/core/service/teamSpace.d.ts +0 -48
|
@@ -6,20 +6,20 @@ export declare const languageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6
6
|
name: z.ZodString;
|
|
7
7
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
id: string;
|
|
10
9
|
name: string;
|
|
10
|
+
id: string;
|
|
11
11
|
is_master?: boolean | undefined;
|
|
12
12
|
}, {
|
|
13
|
-
id: string;
|
|
14
13
|
name: string;
|
|
14
|
+
id: string;
|
|
15
15
|
is_master?: boolean | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
isMaster?: boolean | undefined;
|
|
18
18
|
id: string;
|
|
19
19
|
label: string;
|
|
20
20
|
}, {
|
|
21
|
-
id: string;
|
|
22
21
|
name: string;
|
|
22
|
+
id: string;
|
|
23
23
|
is_master?: boolean | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -76,29 +76,29 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
76
76
|
}>;
|
|
77
77
|
}>, "strip", z.ZodTypeAny, {
|
|
78
78
|
tags: string[];
|
|
79
|
+
version_id: string;
|
|
80
|
+
last_modified_date: Date;
|
|
81
|
+
custom_type_label: string;
|
|
79
82
|
author: {
|
|
80
83
|
first_name?: string | undefined;
|
|
81
84
|
last_name?: string | undefined;
|
|
82
85
|
email?: string | undefined;
|
|
83
86
|
uploadedAvatar?: string | undefined;
|
|
84
87
|
};
|
|
85
|
-
version_id: string;
|
|
86
|
-
last_modified_date: Date;
|
|
87
|
-
custom_type_label: string;
|
|
88
88
|
preview_image?: string | undefined;
|
|
89
89
|
uid?: string | undefined;
|
|
90
90
|
preview_summary?: string | undefined;
|
|
91
91
|
}, {
|
|
92
92
|
tags: string[];
|
|
93
|
+
version_id: string;
|
|
94
|
+
last_modified_date: Date;
|
|
95
|
+
custom_type_label: string;
|
|
93
96
|
author: {
|
|
94
97
|
first_name?: string | undefined;
|
|
95
98
|
last_name?: string | undefined;
|
|
96
99
|
email?: string | undefined;
|
|
97
100
|
uploadedAvatar?: string | undefined;
|
|
98
101
|
};
|
|
99
|
-
version_id: string;
|
|
100
|
-
last_modified_date: Date;
|
|
101
|
-
custom_type_label: string;
|
|
102
102
|
preview_image?: string | undefined;
|
|
103
103
|
uid?: string | undefined;
|
|
104
104
|
preview_summary?: string | undefined;
|
|
@@ -144,19 +144,19 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
144
144
|
tags: string[];
|
|
145
145
|
version_id: string;
|
|
146
146
|
last_modified_date: Date;
|
|
147
|
-
summary?: string | undefined;
|
|
148
147
|
preview_image?: string | undefined;
|
|
149
148
|
uid?: string | undefined;
|
|
150
149
|
custom_type_id?: string | undefined;
|
|
150
|
+
summary?: string | undefined;
|
|
151
151
|
author_ids?: string[] | undefined;
|
|
152
152
|
}, {
|
|
153
153
|
tags: string[];
|
|
154
154
|
version_id: string;
|
|
155
155
|
last_modified_date: Date;
|
|
156
|
-
summary?: string | undefined;
|
|
157
156
|
preview_image?: string | undefined;
|
|
158
157
|
uid?: string | undefined;
|
|
159
158
|
custom_type_id?: string | undefined;
|
|
159
|
+
summary?: string | undefined;
|
|
160
160
|
author_ids?: string[] | undefined;
|
|
161
161
|
}>>;
|
|
162
162
|
export declare function isDocumentVersion(value: unknown): value is z.infer<typeof documentVersionSchema>;
|
|
@@ -171,20 +171,20 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
171
171
|
name: z.ZodString;
|
|
172
172
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
|
174
|
-
id: string;
|
|
175
174
|
name: string;
|
|
175
|
+
id: string;
|
|
176
176
|
is_master?: boolean | undefined;
|
|
177
177
|
}, {
|
|
178
|
-
id: string;
|
|
179
178
|
name: string;
|
|
179
|
+
id: string;
|
|
180
180
|
is_master?: boolean | undefined;
|
|
181
181
|
}>, {
|
|
182
182
|
isMaster?: boolean | undefined;
|
|
183
183
|
id: string;
|
|
184
184
|
label: string;
|
|
185
185
|
}, {
|
|
186
|
-
id: string;
|
|
187
186
|
name: string;
|
|
187
|
+
id: string;
|
|
188
188
|
is_master?: boolean | undefined;
|
|
189
189
|
}>;
|
|
190
190
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -241,29 +241,29 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
241
241
|
}>;
|
|
242
242
|
}>, "strip", z.ZodTypeAny, {
|
|
243
243
|
tags: string[];
|
|
244
|
+
version_id: string;
|
|
245
|
+
last_modified_date: Date;
|
|
246
|
+
custom_type_label: string;
|
|
244
247
|
author: {
|
|
245
248
|
first_name?: string | undefined;
|
|
246
249
|
last_name?: string | undefined;
|
|
247
250
|
email?: string | undefined;
|
|
248
251
|
uploadedAvatar?: string | undefined;
|
|
249
252
|
};
|
|
250
|
-
version_id: string;
|
|
251
|
-
last_modified_date: Date;
|
|
252
|
-
custom_type_label: string;
|
|
253
253
|
preview_image?: string | undefined;
|
|
254
254
|
uid?: string | undefined;
|
|
255
255
|
preview_summary?: string | undefined;
|
|
256
256
|
}, {
|
|
257
257
|
tags: string[];
|
|
258
|
+
version_id: string;
|
|
259
|
+
last_modified_date: Date;
|
|
260
|
+
custom_type_label: string;
|
|
258
261
|
author: {
|
|
259
262
|
first_name?: string | undefined;
|
|
260
263
|
last_name?: string | undefined;
|
|
261
264
|
email?: string | undefined;
|
|
262
265
|
uploadedAvatar?: string | undefined;
|
|
263
266
|
};
|
|
264
|
-
version_id: string;
|
|
265
|
-
last_modified_date: Date;
|
|
266
|
-
custom_type_label: string;
|
|
267
267
|
preview_image?: string | undefined;
|
|
268
268
|
uid?: string | undefined;
|
|
269
269
|
preview_summary?: string | undefined;
|
|
@@ -271,13 +271,13 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
271
271
|
}, "strip", z.ZodTypeAny, {
|
|
272
272
|
id: string;
|
|
273
273
|
title: string;
|
|
274
|
+
custom_type_id: string;
|
|
275
|
+
group_lang_id: string;
|
|
274
276
|
language: {
|
|
275
277
|
isMaster?: boolean | undefined;
|
|
276
278
|
id: string;
|
|
277
279
|
label: string;
|
|
278
280
|
};
|
|
279
|
-
custom_type_id: string;
|
|
280
|
-
group_lang_id: string;
|
|
281
281
|
versions: (({
|
|
282
282
|
status: "unclassified";
|
|
283
283
|
} | {
|
|
@@ -289,28 +289,28 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
289
289
|
status: "archived";
|
|
290
290
|
}) & {
|
|
291
291
|
tags: string[];
|
|
292
|
+
version_id: string;
|
|
293
|
+
last_modified_date: Date;
|
|
294
|
+
custom_type_label: string;
|
|
292
295
|
author: {
|
|
293
296
|
first_name?: string | undefined;
|
|
294
297
|
last_name?: string | undefined;
|
|
295
298
|
email?: string | undefined;
|
|
296
299
|
uploadedAvatar?: string | undefined;
|
|
297
300
|
};
|
|
298
|
-
version_id: string;
|
|
299
|
-
last_modified_date: Date;
|
|
300
|
-
custom_type_label: string;
|
|
301
301
|
preview_image?: string | undefined;
|
|
302
302
|
uid?: string | undefined;
|
|
303
303
|
preview_summary?: string | undefined;
|
|
304
304
|
})[];
|
|
305
305
|
}, {
|
|
306
306
|
id: string;
|
|
307
|
+
custom_type_id: string;
|
|
308
|
+
group_lang_id: string;
|
|
307
309
|
language: {
|
|
308
|
-
id: string;
|
|
309
310
|
name: string;
|
|
311
|
+
id: string;
|
|
310
312
|
is_master?: boolean | undefined;
|
|
311
313
|
};
|
|
312
|
-
custom_type_id: string;
|
|
313
|
-
group_lang_id: string;
|
|
314
314
|
versions: (({
|
|
315
315
|
status: "unclassified";
|
|
316
316
|
} | {
|
|
@@ -322,15 +322,15 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
322
322
|
status: "archived";
|
|
323
323
|
}) & {
|
|
324
324
|
tags: string[];
|
|
325
|
+
version_id: string;
|
|
326
|
+
last_modified_date: Date;
|
|
327
|
+
custom_type_label: string;
|
|
325
328
|
author: {
|
|
326
329
|
first_name?: string | undefined;
|
|
327
330
|
last_name?: string | undefined;
|
|
328
331
|
email?: string | undefined;
|
|
329
332
|
uploadedAvatar?: string | undefined;
|
|
330
333
|
};
|
|
331
|
-
version_id: string;
|
|
332
|
-
last_modified_date: Date;
|
|
333
|
-
custom_type_label: string;
|
|
334
334
|
preview_image?: string | undefined;
|
|
335
335
|
uid?: string | undefined;
|
|
336
336
|
preview_summary?: string | undefined;
|
|
@@ -350,20 +350,20 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
350
350
|
name: z.ZodString;
|
|
351
351
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
353
|
-
id: string;
|
|
354
353
|
name: string;
|
|
354
|
+
id: string;
|
|
355
355
|
is_master?: boolean | undefined;
|
|
356
356
|
}, {
|
|
357
|
-
id: string;
|
|
358
357
|
name: string;
|
|
358
|
+
id: string;
|
|
359
359
|
is_master?: boolean | undefined;
|
|
360
360
|
}>, {
|
|
361
361
|
isMaster?: boolean | undefined;
|
|
362
362
|
id: string;
|
|
363
363
|
label: string;
|
|
364
364
|
}, {
|
|
365
|
-
id: string;
|
|
366
365
|
name: string;
|
|
366
|
+
id: string;
|
|
367
367
|
is_master?: boolean | undefined;
|
|
368
368
|
}>;
|
|
369
369
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -420,29 +420,29 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
420
420
|
}>;
|
|
421
421
|
}>, "strip", z.ZodTypeAny, {
|
|
422
422
|
tags: string[];
|
|
423
|
+
version_id: string;
|
|
424
|
+
last_modified_date: Date;
|
|
425
|
+
custom_type_label: string;
|
|
423
426
|
author: {
|
|
424
427
|
first_name?: string | undefined;
|
|
425
428
|
last_name?: string | undefined;
|
|
426
429
|
email?: string | undefined;
|
|
427
430
|
uploadedAvatar?: string | undefined;
|
|
428
431
|
};
|
|
429
|
-
version_id: string;
|
|
430
|
-
last_modified_date: Date;
|
|
431
|
-
custom_type_label: string;
|
|
432
432
|
preview_image?: string | undefined;
|
|
433
433
|
uid?: string | undefined;
|
|
434
434
|
preview_summary?: string | undefined;
|
|
435
435
|
}, {
|
|
436
436
|
tags: string[];
|
|
437
|
+
version_id: string;
|
|
438
|
+
last_modified_date: Date;
|
|
439
|
+
custom_type_label: string;
|
|
437
440
|
author: {
|
|
438
441
|
first_name?: string | undefined;
|
|
439
442
|
last_name?: string | undefined;
|
|
440
443
|
email?: string | undefined;
|
|
441
444
|
uploadedAvatar?: string | undefined;
|
|
442
445
|
};
|
|
443
|
-
version_id: string;
|
|
444
|
-
last_modified_date: Date;
|
|
445
|
-
custom_type_label: string;
|
|
446
446
|
preview_image?: string | undefined;
|
|
447
447
|
uid?: string | undefined;
|
|
448
448
|
preview_summary?: string | undefined;
|
|
@@ -450,13 +450,13 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
450
450
|
}, "strip", z.ZodTypeAny, {
|
|
451
451
|
id: string;
|
|
452
452
|
title: string;
|
|
453
|
+
custom_type_id: string;
|
|
454
|
+
group_lang_id: string;
|
|
453
455
|
language: {
|
|
454
456
|
isMaster?: boolean | undefined;
|
|
455
457
|
id: string;
|
|
456
458
|
label: string;
|
|
457
459
|
};
|
|
458
|
-
custom_type_id: string;
|
|
459
|
-
group_lang_id: string;
|
|
460
460
|
versions: (({
|
|
461
461
|
status: "unclassified";
|
|
462
462
|
} | {
|
|
@@ -468,28 +468,28 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
468
468
|
status: "archived";
|
|
469
469
|
}) & {
|
|
470
470
|
tags: string[];
|
|
471
|
+
version_id: string;
|
|
472
|
+
last_modified_date: Date;
|
|
473
|
+
custom_type_label: string;
|
|
471
474
|
author: {
|
|
472
475
|
first_name?: string | undefined;
|
|
473
476
|
last_name?: string | undefined;
|
|
474
477
|
email?: string | undefined;
|
|
475
478
|
uploadedAvatar?: string | undefined;
|
|
476
479
|
};
|
|
477
|
-
version_id: string;
|
|
478
|
-
last_modified_date: Date;
|
|
479
|
-
custom_type_label: string;
|
|
480
480
|
preview_image?: string | undefined;
|
|
481
481
|
uid?: string | undefined;
|
|
482
482
|
preview_summary?: string | undefined;
|
|
483
483
|
})[];
|
|
484
484
|
}, {
|
|
485
485
|
id: string;
|
|
486
|
+
custom_type_id: string;
|
|
487
|
+
group_lang_id: string;
|
|
486
488
|
language: {
|
|
487
|
-
id: string;
|
|
488
489
|
name: string;
|
|
490
|
+
id: string;
|
|
489
491
|
is_master?: boolean | undefined;
|
|
490
492
|
};
|
|
491
|
-
custom_type_id: string;
|
|
492
|
-
group_lang_id: string;
|
|
493
493
|
versions: (({
|
|
494
494
|
status: "unclassified";
|
|
495
495
|
} | {
|
|
@@ -501,15 +501,15 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
501
501
|
status: "archived";
|
|
502
502
|
}) & {
|
|
503
503
|
tags: string[];
|
|
504
|
+
version_id: string;
|
|
505
|
+
last_modified_date: Date;
|
|
506
|
+
custom_type_label: string;
|
|
504
507
|
author: {
|
|
505
508
|
first_name?: string | undefined;
|
|
506
509
|
last_name?: string | undefined;
|
|
507
510
|
email?: string | undefined;
|
|
508
511
|
uploadedAvatar?: string | undefined;
|
|
509
512
|
};
|
|
510
|
-
version_id: string;
|
|
511
|
-
last_modified_date: Date;
|
|
512
|
-
custom_type_label: string;
|
|
513
513
|
preview_image?: string | undefined;
|
|
514
514
|
uid?: string | undefined;
|
|
515
515
|
preview_summary?: string | undefined;
|
|
@@ -521,13 +521,13 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
521
521
|
results: {
|
|
522
522
|
id: string;
|
|
523
523
|
title: string;
|
|
524
|
+
custom_type_id: string;
|
|
525
|
+
group_lang_id: string;
|
|
524
526
|
language: {
|
|
525
527
|
isMaster?: boolean | undefined;
|
|
526
528
|
id: string;
|
|
527
529
|
label: string;
|
|
528
530
|
};
|
|
529
|
-
custom_type_id: string;
|
|
530
|
-
group_lang_id: string;
|
|
531
531
|
versions: (({
|
|
532
532
|
status: "unclassified";
|
|
533
533
|
} | {
|
|
@@ -539,15 +539,15 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
539
539
|
status: "archived";
|
|
540
540
|
}) & {
|
|
541
541
|
tags: string[];
|
|
542
|
+
version_id: string;
|
|
543
|
+
last_modified_date: Date;
|
|
544
|
+
custom_type_label: string;
|
|
542
545
|
author: {
|
|
543
546
|
first_name?: string | undefined;
|
|
544
547
|
last_name?: string | undefined;
|
|
545
548
|
email?: string | undefined;
|
|
546
549
|
uploadedAvatar?: string | undefined;
|
|
547
550
|
};
|
|
548
|
-
version_id: string;
|
|
549
|
-
last_modified_date: Date;
|
|
550
|
-
custom_type_label: string;
|
|
551
551
|
preview_image?: string | undefined;
|
|
552
552
|
uid?: string | undefined;
|
|
553
553
|
preview_summary?: string | undefined;
|
|
@@ -558,13 +558,13 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
558
558
|
total: number;
|
|
559
559
|
results: {
|
|
560
560
|
id: string;
|
|
561
|
+
custom_type_id: string;
|
|
562
|
+
group_lang_id: string;
|
|
561
563
|
language: {
|
|
562
|
-
id: string;
|
|
563
564
|
name: string;
|
|
565
|
+
id: string;
|
|
564
566
|
is_master?: boolean | undefined;
|
|
565
567
|
};
|
|
566
|
-
custom_type_id: string;
|
|
567
|
-
group_lang_id: string;
|
|
568
568
|
versions: (({
|
|
569
569
|
status: "unclassified";
|
|
570
570
|
} | {
|
|
@@ -576,15 +576,15 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
576
576
|
status: "archived";
|
|
577
577
|
}) & {
|
|
578
578
|
tags: string[];
|
|
579
|
+
version_id: string;
|
|
580
|
+
last_modified_date: Date;
|
|
581
|
+
custom_type_label: string;
|
|
579
582
|
author: {
|
|
580
583
|
first_name?: string | undefined;
|
|
581
584
|
last_name?: string | undefined;
|
|
582
585
|
email?: string | undefined;
|
|
583
586
|
uploadedAvatar?: string | undefined;
|
|
584
587
|
};
|
|
585
|
-
version_id: string;
|
|
586
|
-
last_modified_date: Date;
|
|
587
|
-
custom_type_label: string;
|
|
588
588
|
preview_image?: string | undefined;
|
|
589
589
|
uid?: string | undefined;
|
|
590
590
|
preview_summary?: string | undefined;
|
|
@@ -639,19 +639,19 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
639
639
|
tags: string[];
|
|
640
640
|
version_id: string;
|
|
641
641
|
last_modified_date: Date;
|
|
642
|
-
summary?: string | undefined;
|
|
643
642
|
preview_image?: string | undefined;
|
|
644
643
|
uid?: string | undefined;
|
|
645
644
|
custom_type_id?: string | undefined;
|
|
645
|
+
summary?: string | undefined;
|
|
646
646
|
author_ids?: string[] | undefined;
|
|
647
647
|
}, {
|
|
648
648
|
tags: string[];
|
|
649
649
|
version_id: string;
|
|
650
650
|
last_modified_date: Date;
|
|
651
|
-
summary?: string | undefined;
|
|
652
651
|
preview_image?: string | undefined;
|
|
653
652
|
uid?: string | undefined;
|
|
654
653
|
custom_type_id?: string | undefined;
|
|
654
|
+
summary?: string | undefined;
|
|
655
655
|
author_ids?: string[] | undefined;
|
|
656
656
|
}>>, "many">;
|
|
657
657
|
locale_id: z.ZodOptional<z.ZodString>;
|
|
@@ -673,10 +673,10 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
673
673
|
tags: string[];
|
|
674
674
|
version_id: string;
|
|
675
675
|
last_modified_date: Date;
|
|
676
|
-
summary?: string | undefined;
|
|
677
676
|
preview_image?: string | undefined;
|
|
678
677
|
uid?: string | undefined;
|
|
679
678
|
custom_type_id?: string | undefined;
|
|
679
|
+
summary?: string | undefined;
|
|
680
680
|
author_ids?: string[] | undefined;
|
|
681
681
|
})[];
|
|
682
682
|
locale_id?: string | undefined;
|
|
@@ -697,10 +697,10 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
697
697
|
tags: string[];
|
|
698
698
|
version_id: string;
|
|
699
699
|
last_modified_date: Date;
|
|
700
|
-
summary?: string | undefined;
|
|
701
700
|
preview_image?: string | undefined;
|
|
702
701
|
uid?: string | undefined;
|
|
703
702
|
custom_type_id?: string | undefined;
|
|
703
|
+
summary?: string | undefined;
|
|
704
704
|
author_ids?: string[] | undefined;
|
|
705
705
|
})[];
|
|
706
706
|
title?: string | null | undefined;
|
|
@@ -724,10 +724,10 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
724
724
|
tags: string[];
|
|
725
725
|
version_id: string;
|
|
726
726
|
last_modified_date: Date;
|
|
727
|
-
summary?: string | undefined;
|
|
728
727
|
preview_image?: string | undefined;
|
|
729
728
|
uid?: string | undefined;
|
|
730
729
|
custom_type_id?: string | undefined;
|
|
730
|
+
summary?: string | undefined;
|
|
731
731
|
author_ids?: string[] | undefined;
|
|
732
732
|
})[];
|
|
733
733
|
}, {
|
|
@@ -747,10 +747,10 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
747
747
|
tags: string[];
|
|
748
748
|
version_id: string;
|
|
749
749
|
last_modified_date: Date;
|
|
750
|
-
summary?: string | undefined;
|
|
751
750
|
preview_image?: string | undefined;
|
|
752
751
|
uid?: string | undefined;
|
|
753
752
|
custom_type_id?: string | undefined;
|
|
753
|
+
summary?: string | undefined;
|
|
754
754
|
author_ids?: string[] | undefined;
|
|
755
755
|
})[];
|
|
756
756
|
title?: string | null | undefined;
|
|
@@ -803,19 +803,19 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
803
803
|
tags: string[];
|
|
804
804
|
version_id: string;
|
|
805
805
|
last_modified_date: Date;
|
|
806
|
-
summary?: string | undefined;
|
|
807
806
|
preview_image?: string | undefined;
|
|
808
807
|
uid?: string | undefined;
|
|
809
808
|
custom_type_id?: string | undefined;
|
|
809
|
+
summary?: string | undefined;
|
|
810
810
|
author_ids?: string[] | undefined;
|
|
811
811
|
}, {
|
|
812
812
|
tags: string[];
|
|
813
813
|
version_id: string;
|
|
814
814
|
last_modified_date: Date;
|
|
815
|
-
summary?: string | undefined;
|
|
816
815
|
preview_image?: string | undefined;
|
|
817
816
|
uid?: string | undefined;
|
|
818
817
|
custom_type_id?: string | undefined;
|
|
818
|
+
summary?: string | undefined;
|
|
819
819
|
author_ids?: string[] | undefined;
|
|
820
820
|
}>>, "many">;
|
|
821
821
|
locale_id: z.ZodOptional<z.ZodString>;
|
|
@@ -837,10 +837,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
837
837
|
tags: string[];
|
|
838
838
|
version_id: string;
|
|
839
839
|
last_modified_date: Date;
|
|
840
|
-
summary?: string | undefined;
|
|
841
840
|
preview_image?: string | undefined;
|
|
842
841
|
uid?: string | undefined;
|
|
843
842
|
custom_type_id?: string | undefined;
|
|
843
|
+
summary?: string | undefined;
|
|
844
844
|
author_ids?: string[] | undefined;
|
|
845
845
|
})[];
|
|
846
846
|
locale_id?: string | undefined;
|
|
@@ -861,10 +861,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
861
861
|
tags: string[];
|
|
862
862
|
version_id: string;
|
|
863
863
|
last_modified_date: Date;
|
|
864
|
-
summary?: string | undefined;
|
|
865
864
|
preview_image?: string | undefined;
|
|
866
865
|
uid?: string | undefined;
|
|
867
866
|
custom_type_id?: string | undefined;
|
|
867
|
+
summary?: string | undefined;
|
|
868
868
|
author_ids?: string[] | undefined;
|
|
869
869
|
})[];
|
|
870
870
|
title?: string | null | undefined;
|
|
@@ -888,10 +888,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
888
888
|
tags: string[];
|
|
889
889
|
version_id: string;
|
|
890
890
|
last_modified_date: Date;
|
|
891
|
-
summary?: string | undefined;
|
|
892
891
|
preview_image?: string | undefined;
|
|
893
892
|
uid?: string | undefined;
|
|
894
893
|
custom_type_id?: string | undefined;
|
|
894
|
+
summary?: string | undefined;
|
|
895
895
|
author_ids?: string[] | undefined;
|
|
896
896
|
})[];
|
|
897
897
|
}, {
|
|
@@ -911,10 +911,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
911
911
|
tags: string[];
|
|
912
912
|
version_id: string;
|
|
913
913
|
last_modified_date: Date;
|
|
914
|
-
summary?: string | undefined;
|
|
915
914
|
preview_image?: string | undefined;
|
|
916
915
|
uid?: string | undefined;
|
|
917
916
|
custom_type_id?: string | undefined;
|
|
917
|
+
summary?: string | undefined;
|
|
918
918
|
author_ids?: string[] | undefined;
|
|
919
919
|
})[];
|
|
920
920
|
title?: string | null | undefined;
|
|
@@ -940,10 +940,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
940
940
|
tags: string[];
|
|
941
941
|
version_id: string;
|
|
942
942
|
last_modified_date: Date;
|
|
943
|
-
summary?: string | undefined;
|
|
944
943
|
preview_image?: string | undefined;
|
|
945
944
|
uid?: string | undefined;
|
|
946
945
|
custom_type_id?: string | undefined;
|
|
946
|
+
summary?: string | undefined;
|
|
947
947
|
author_ids?: string[] | undefined;
|
|
948
948
|
})[];
|
|
949
949
|
}[];
|
|
@@ -965,10 +965,10 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
965
965
|
tags: string[];
|
|
966
966
|
version_id: string;
|
|
967
967
|
last_modified_date: Date;
|
|
968
|
-
summary?: string | undefined;
|
|
969
968
|
preview_image?: string | undefined;
|
|
970
969
|
uid?: string | undefined;
|
|
971
970
|
custom_type_id?: string | undefined;
|
|
971
|
+
summary?: string | undefined;
|
|
972
972
|
author_ids?: string[] | undefined;
|
|
973
973
|
})[];
|
|
974
974
|
title?: string | null | undefined;
|
|
@@ -1293,7 +1293,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1293
1293
|
label?: string | null | undefined;
|
|
1294
1294
|
direction?: string | null | undefined;
|
|
1295
1295
|
}) | ({
|
|
1296
|
-
type: "image" | "
|
|
1296
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1297
1297
|
content: {
|
|
1298
1298
|
text: string;
|
|
1299
1299
|
} & {
|
|
@@ -1346,7 +1346,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1346
1346
|
} | {
|
|
1347
1347
|
start: number;
|
|
1348
1348
|
end: number;
|
|
1349
|
-
type: "
|
|
1349
|
+
type: "strong" | "em" | "list-item";
|
|
1350
1350
|
})[] | undefined;
|
|
1351
1351
|
};
|
|
1352
1352
|
} & {
|
|
@@ -1714,7 +1714,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1714
1714
|
label?: string | null | undefined;
|
|
1715
1715
|
direction?: string | null | undefined;
|
|
1716
1716
|
}) | ({
|
|
1717
|
-
type: "image" | "
|
|
1717
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1718
1718
|
content: {
|
|
1719
1719
|
text: string;
|
|
1720
1720
|
} & {
|
|
@@ -1767,7 +1767,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1767
1767
|
} | {
|
|
1768
1768
|
start: number;
|
|
1769
1769
|
end: number;
|
|
1770
|
-
type: "
|
|
1770
|
+
type: "strong" | "em" | "list-item";
|
|
1771
1771
|
})[] | undefined;
|
|
1772
1772
|
};
|
|
1773
1773
|
} & {
|
|
@@ -2127,7 +2127,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2127
2127
|
label?: string | null | undefined;
|
|
2128
2128
|
direction?: string | null | undefined;
|
|
2129
2129
|
}) | ({
|
|
2130
|
-
type: "image" | "
|
|
2130
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2131
2131
|
content: {
|
|
2132
2132
|
text: string;
|
|
2133
2133
|
} & {
|
|
@@ -2180,7 +2180,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2180
2180
|
} | {
|
|
2181
2181
|
start: number;
|
|
2182
2182
|
end: number;
|
|
2183
|
-
type: "
|
|
2183
|
+
type: "strong" | "em" | "list-item";
|
|
2184
2184
|
})[] | undefined;
|
|
2185
2185
|
};
|
|
2186
2186
|
} & {
|
|
@@ -2542,7 +2542,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2542
2542
|
label?: string | null | undefined;
|
|
2543
2543
|
direction?: string | null | undefined;
|
|
2544
2544
|
}) | ({
|
|
2545
|
-
type: "image" | "
|
|
2545
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2546
2546
|
content: {
|
|
2547
2547
|
text: string;
|
|
2548
2548
|
} & {
|
|
@@ -2595,7 +2595,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2595
2595
|
} | {
|
|
2596
2596
|
start: number;
|
|
2597
2597
|
end: number;
|
|
2598
|
-
type: "
|
|
2598
|
+
type: "strong" | "em" | "list-item";
|
|
2599
2599
|
})[] | undefined;
|
|
2600
2600
|
};
|
|
2601
2601
|
} & {
|
|
@@ -2955,7 +2955,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2955
2955
|
label?: string | null | undefined;
|
|
2956
2956
|
direction?: string | null | undefined;
|
|
2957
2957
|
}) | ({
|
|
2958
|
-
type: "image" | "
|
|
2958
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2959
2959
|
content: {
|
|
2960
2960
|
text: string;
|
|
2961
2961
|
} & {
|
|
@@ -3008,7 +3008,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3008
3008
|
} | {
|
|
3009
3009
|
start: number;
|
|
3010
3010
|
end: number;
|
|
3011
|
-
type: "
|
|
3011
|
+
type: "strong" | "em" | "list-item";
|
|
3012
3012
|
})[] | undefined;
|
|
3013
3013
|
};
|
|
3014
3014
|
} & {
|
|
@@ -3366,7 +3366,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3366
3366
|
label?: string | null | undefined;
|
|
3367
3367
|
direction?: string | null | undefined;
|
|
3368
3368
|
}) | ({
|
|
3369
|
-
type: "image" | "
|
|
3369
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3370
3370
|
content: {
|
|
3371
3371
|
text: string;
|
|
3372
3372
|
} & {
|
|
@@ -3419,7 +3419,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3419
3419
|
} | {
|
|
3420
3420
|
start: number;
|
|
3421
3421
|
end: number;
|
|
3422
|
-
type: "
|
|
3422
|
+
type: "strong" | "em" | "list-item";
|
|
3423
3423
|
})[] | undefined;
|
|
3424
3424
|
};
|
|
3425
3425
|
} & {
|
|
@@ -3788,7 +3788,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3788
3788
|
label?: string | null | undefined;
|
|
3789
3789
|
direction?: string | null | undefined;
|
|
3790
3790
|
}) | ({
|
|
3791
|
-
type: "image" | "
|
|
3791
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3792
3792
|
content: {
|
|
3793
3793
|
text: string;
|
|
3794
3794
|
} & {
|
|
@@ -3841,7 +3841,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
3841
3841
|
} | {
|
|
3842
3842
|
start: number;
|
|
3843
3843
|
end: number;
|
|
3844
|
-
type: "
|
|
3844
|
+
type: "strong" | "em" | "list-item";
|
|
3845
3845
|
})[] | undefined;
|
|
3846
3846
|
};
|
|
3847
3847
|
} & {
|
|
@@ -4201,7 +4201,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4201
4201
|
label?: string | null | undefined;
|
|
4202
4202
|
direction?: string | null | undefined;
|
|
4203
4203
|
}) | ({
|
|
4204
|
-
type: "image" | "
|
|
4204
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4205
4205
|
content: {
|
|
4206
4206
|
text: string;
|
|
4207
4207
|
} & {
|
|
@@ -4254,7 +4254,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4254
4254
|
} | {
|
|
4255
4255
|
start: number;
|
|
4256
4256
|
end: number;
|
|
4257
|
-
type: "
|
|
4257
|
+
type: "strong" | "em" | "list-item";
|
|
4258
4258
|
})[] | undefined;
|
|
4259
4259
|
};
|
|
4260
4260
|
} & {
|
|
@@ -4616,7 +4616,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4616
4616
|
label?: string | null | undefined;
|
|
4617
4617
|
direction?: string | null | undefined;
|
|
4618
4618
|
}) | ({
|
|
4619
|
-
type: "image" | "
|
|
4619
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4620
4620
|
content: {
|
|
4621
4621
|
text: string;
|
|
4622
4622
|
} & {
|
|
@@ -4669,7 +4669,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4669
4669
|
} | {
|
|
4670
4670
|
start: number;
|
|
4671
4671
|
end: number;
|
|
4672
|
-
type: "
|
|
4672
|
+
type: "strong" | "em" | "list-item";
|
|
4673
4673
|
})[] | undefined;
|
|
4674
4674
|
};
|
|
4675
4675
|
} & {
|
|
@@ -5029,7 +5029,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5029
5029
|
label?: string | null | undefined;
|
|
5030
5030
|
direction?: string | null | undefined;
|
|
5031
5031
|
}) | ({
|
|
5032
|
-
type: "image" | "
|
|
5032
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5033
5033
|
content: {
|
|
5034
5034
|
text: string;
|
|
5035
5035
|
} & {
|
|
@@ -5082,7 +5082,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5082
5082
|
} | {
|
|
5083
5083
|
start: number;
|
|
5084
5084
|
end: number;
|
|
5085
|
-
type: "
|
|
5085
|
+
type: "strong" | "em" | "list-item";
|
|
5086
5086
|
})[] | undefined;
|
|
5087
5087
|
};
|
|
5088
5088
|
} & {
|
|
@@ -5440,7 +5440,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5440
5440
|
label?: string | null | undefined;
|
|
5441
5441
|
direction?: string | null | undefined;
|
|
5442
5442
|
}) | ({
|
|
5443
|
-
type: "image" | "
|
|
5443
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5444
5444
|
content: {
|
|
5445
5445
|
text: string;
|
|
5446
5446
|
} & {
|
|
@@ -5493,7 +5493,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5493
5493
|
} | {
|
|
5494
5494
|
start: number;
|
|
5495
5495
|
end: number;
|
|
5496
|
-
type: "
|
|
5496
|
+
type: "strong" | "em" | "list-item";
|
|
5497
5497
|
})[] | undefined;
|
|
5498
5498
|
};
|
|
5499
5499
|
} & {
|