@prismicio/editor-fields 0.4.63-alpha.jp-upgrade-tiptap.0 → 0.4.64
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/core/MediaLibrary/hooks/mediaLibraryData.d.ts +133 -133
- package/dist/core/MediaLibrary/hooks/tagData.d.ts +6 -6
- package/dist/core/MediaLibrary/hooks/useMediaLibraryUpload.d.ts +13 -13
- package/dist/core/MediaLibrary/hooks/useSelectedMedia.d.ts +13 -13
- package/dist/core/UnsplashLibrary/unsplashData.d.ts +18 -18
- package/dist/core/service/customType.d.ts +9 -9
- package/dist/core/service/document.d.ts +98 -72
- package/dist/core/service/documentSearch.d.ts +10 -29
- package/dist/core/service/repository.d.ts +6 -6
- package/dist/core/service/role.d.ts +10 -10
- package/dist/core/service/user.d.ts +5 -5
- package/dist/fields/ImageField/useImageField.d.ts +13 -13
- package/dist/fields/ImageField/useImageFieldImageUpload.d.ts +13 -13
- package/dist/fields/LinkField/Documents/documentsData.d.ts +4 -2
- package/dist/fields/LinkField/LinkField.d.ts +1 -1
- package/dist/fields/RichTextField/coreExtensions/ListItem.d.ts +4 -4
- package/dist/fields/RichTextField/extensions/Image/useImageView.d.ts +13 -13
- package/dist/fields/RichTextField/extensions/Table/Table.d.ts +18 -0
- package/dist/fields/RichTextField/extensions/Table/TableControlsWrapper.d.ts +3 -0
- package/dist/fields/TableField/TableField.d.ts +1 -1
- package/dist/index.cjs.js +44 -72
- package/dist/index.es.js +25847 -28228
- package/dist/slices/utils.d.ts +2 -2
- package/package.json +5 -5
|
@@ -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<{
|
|
@@ -59,16 +59,19 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
59
59
|
custom_type_label: z.ZodString;
|
|
60
60
|
preview_summary: z.ZodOptional<z.ZodString>;
|
|
61
61
|
author: z.ZodObject<{
|
|
62
|
+
id: z.ZodOptional<z.ZodString>;
|
|
62
63
|
first_name: z.ZodOptional<z.ZodString>;
|
|
63
64
|
last_name: z.ZodOptional<z.ZodString>;
|
|
64
65
|
email: z.ZodOptional<z.ZodString>;
|
|
65
66
|
uploadedAvatar: z.ZodOptional<z.ZodString>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
|
+
id?: string | undefined;
|
|
67
69
|
first_name?: string | undefined;
|
|
68
70
|
last_name?: string | undefined;
|
|
69
71
|
email?: string | undefined;
|
|
70
72
|
uploadedAvatar?: string | undefined;
|
|
71
73
|
}, {
|
|
74
|
+
id?: string | undefined;
|
|
72
75
|
first_name?: string | undefined;
|
|
73
76
|
last_name?: string | undefined;
|
|
74
77
|
email?: string | undefined;
|
|
@@ -80,6 +83,7 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
80
83
|
last_modified_date: Date;
|
|
81
84
|
custom_type_label: string;
|
|
82
85
|
author: {
|
|
86
|
+
id?: string | undefined;
|
|
83
87
|
first_name?: string | undefined;
|
|
84
88
|
last_name?: string | undefined;
|
|
85
89
|
email?: string | undefined;
|
|
@@ -94,6 +98,7 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
94
98
|
last_modified_date: Date;
|
|
95
99
|
custom_type_label: string;
|
|
96
100
|
author: {
|
|
101
|
+
id?: string | undefined;
|
|
97
102
|
first_name?: string | undefined;
|
|
98
103
|
last_name?: string | undefined;
|
|
99
104
|
email?: string | undefined;
|
|
@@ -151,9 +156,9 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
151
156
|
tags: string[];
|
|
152
157
|
version_id: string;
|
|
153
158
|
last_modified_date: Date;
|
|
154
|
-
custom_type_id?: string | undefined;
|
|
155
159
|
preview_image?: string | undefined;
|
|
156
160
|
uid?: string | undefined;
|
|
161
|
+
custom_type_id?: string | undefined;
|
|
157
162
|
summary?: string | undefined;
|
|
158
163
|
author_ids?: string[] | undefined;
|
|
159
164
|
highlights?: {
|
|
@@ -163,9 +168,9 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
163
168
|
tags: string[];
|
|
164
169
|
version_id: string;
|
|
165
170
|
last_modified_date: Date;
|
|
166
|
-
custom_type_id?: string | undefined;
|
|
167
171
|
preview_image?: string | undefined;
|
|
168
172
|
uid?: string | undefined;
|
|
173
|
+
custom_type_id?: string | undefined;
|
|
169
174
|
summary?: string | undefined;
|
|
170
175
|
author_ids?: string[] | undefined;
|
|
171
176
|
highlights?: {
|
|
@@ -184,20 +189,20 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
184
189
|
name: z.ZodString;
|
|
185
190
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
186
191
|
}, "strip", z.ZodTypeAny, {
|
|
187
|
-
id: string;
|
|
188
192
|
name: string;
|
|
193
|
+
id: string;
|
|
189
194
|
is_master?: boolean | undefined;
|
|
190
195
|
}, {
|
|
191
|
-
id: string;
|
|
192
196
|
name: string;
|
|
197
|
+
id: string;
|
|
193
198
|
is_master?: boolean | undefined;
|
|
194
199
|
}>, {
|
|
195
200
|
isMaster?: boolean | undefined;
|
|
196
201
|
id: string;
|
|
197
202
|
label: string;
|
|
198
203
|
}, {
|
|
199
|
-
id: string;
|
|
200
204
|
name: string;
|
|
205
|
+
id: string;
|
|
201
206
|
is_master?: boolean | undefined;
|
|
202
207
|
}>;
|
|
203
208
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -237,16 +242,19 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
237
242
|
custom_type_label: z.ZodString;
|
|
238
243
|
preview_summary: z.ZodOptional<z.ZodString>;
|
|
239
244
|
author: z.ZodObject<{
|
|
245
|
+
id: z.ZodOptional<z.ZodString>;
|
|
240
246
|
first_name: z.ZodOptional<z.ZodString>;
|
|
241
247
|
last_name: z.ZodOptional<z.ZodString>;
|
|
242
248
|
email: z.ZodOptional<z.ZodString>;
|
|
243
249
|
uploadedAvatar: z.ZodOptional<z.ZodString>;
|
|
244
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
|
+
id?: string | undefined;
|
|
245
252
|
first_name?: string | undefined;
|
|
246
253
|
last_name?: string | undefined;
|
|
247
254
|
email?: string | undefined;
|
|
248
255
|
uploadedAvatar?: string | undefined;
|
|
249
256
|
}, {
|
|
257
|
+
id?: string | undefined;
|
|
250
258
|
first_name?: string | undefined;
|
|
251
259
|
last_name?: string | undefined;
|
|
252
260
|
email?: string | undefined;
|
|
@@ -258,6 +266,7 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
258
266
|
last_modified_date: Date;
|
|
259
267
|
custom_type_label: string;
|
|
260
268
|
author: {
|
|
269
|
+
id?: string | undefined;
|
|
261
270
|
first_name?: string | undefined;
|
|
262
271
|
last_name?: string | undefined;
|
|
263
272
|
email?: string | undefined;
|
|
@@ -272,6 +281,7 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
272
281
|
last_modified_date: Date;
|
|
273
282
|
custom_type_label: string;
|
|
274
283
|
author: {
|
|
284
|
+
id?: string | undefined;
|
|
275
285
|
first_name?: string | undefined;
|
|
276
286
|
last_name?: string | undefined;
|
|
277
287
|
email?: string | undefined;
|
|
@@ -306,6 +316,7 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
306
316
|
last_modified_date: Date;
|
|
307
317
|
custom_type_label: string;
|
|
308
318
|
author: {
|
|
319
|
+
id?: string | undefined;
|
|
309
320
|
first_name?: string | undefined;
|
|
310
321
|
last_name?: string | undefined;
|
|
311
322
|
email?: string | undefined;
|
|
@@ -320,8 +331,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
320
331
|
custom_type_id: string;
|
|
321
332
|
group_lang_id: string;
|
|
322
333
|
language: {
|
|
323
|
-
id: string;
|
|
324
334
|
name: string;
|
|
335
|
+
id: string;
|
|
325
336
|
is_master?: boolean | undefined;
|
|
326
337
|
};
|
|
327
338
|
versions: (({
|
|
@@ -339,6 +350,7 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
339
350
|
last_modified_date: Date;
|
|
340
351
|
custom_type_label: string;
|
|
341
352
|
author: {
|
|
353
|
+
id?: string | undefined;
|
|
342
354
|
first_name?: string | undefined;
|
|
343
355
|
last_name?: string | undefined;
|
|
344
356
|
email?: string | undefined;
|
|
@@ -363,20 +375,20 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
363
375
|
name: z.ZodString;
|
|
364
376
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
365
377
|
}, "strip", z.ZodTypeAny, {
|
|
366
|
-
id: string;
|
|
367
378
|
name: string;
|
|
379
|
+
id: string;
|
|
368
380
|
is_master?: boolean | undefined;
|
|
369
381
|
}, {
|
|
370
|
-
id: string;
|
|
371
382
|
name: string;
|
|
383
|
+
id: string;
|
|
372
384
|
is_master?: boolean | undefined;
|
|
373
385
|
}>, {
|
|
374
386
|
isMaster?: boolean | undefined;
|
|
375
387
|
id: string;
|
|
376
388
|
label: string;
|
|
377
389
|
}, {
|
|
378
|
-
id: string;
|
|
379
390
|
name: string;
|
|
391
|
+
id: string;
|
|
380
392
|
is_master?: boolean | undefined;
|
|
381
393
|
}>;
|
|
382
394
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -416,16 +428,19 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
416
428
|
custom_type_label: z.ZodString;
|
|
417
429
|
preview_summary: z.ZodOptional<z.ZodString>;
|
|
418
430
|
author: z.ZodObject<{
|
|
431
|
+
id: z.ZodOptional<z.ZodString>;
|
|
419
432
|
first_name: z.ZodOptional<z.ZodString>;
|
|
420
433
|
last_name: z.ZodOptional<z.ZodString>;
|
|
421
434
|
email: z.ZodOptional<z.ZodString>;
|
|
422
435
|
uploadedAvatar: z.ZodOptional<z.ZodString>;
|
|
423
436
|
}, "strip", z.ZodTypeAny, {
|
|
437
|
+
id?: string | undefined;
|
|
424
438
|
first_name?: string | undefined;
|
|
425
439
|
last_name?: string | undefined;
|
|
426
440
|
email?: string | undefined;
|
|
427
441
|
uploadedAvatar?: string | undefined;
|
|
428
442
|
}, {
|
|
443
|
+
id?: string | undefined;
|
|
429
444
|
first_name?: string | undefined;
|
|
430
445
|
last_name?: string | undefined;
|
|
431
446
|
email?: string | undefined;
|
|
@@ -437,6 +452,7 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
437
452
|
last_modified_date: Date;
|
|
438
453
|
custom_type_label: string;
|
|
439
454
|
author: {
|
|
455
|
+
id?: string | undefined;
|
|
440
456
|
first_name?: string | undefined;
|
|
441
457
|
last_name?: string | undefined;
|
|
442
458
|
email?: string | undefined;
|
|
@@ -451,6 +467,7 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
451
467
|
last_modified_date: Date;
|
|
452
468
|
custom_type_label: string;
|
|
453
469
|
author: {
|
|
470
|
+
id?: string | undefined;
|
|
454
471
|
first_name?: string | undefined;
|
|
455
472
|
last_name?: string | undefined;
|
|
456
473
|
email?: string | undefined;
|
|
@@ -485,6 +502,7 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
485
502
|
last_modified_date: Date;
|
|
486
503
|
custom_type_label: string;
|
|
487
504
|
author: {
|
|
505
|
+
id?: string | undefined;
|
|
488
506
|
first_name?: string | undefined;
|
|
489
507
|
last_name?: string | undefined;
|
|
490
508
|
email?: string | undefined;
|
|
@@ -499,8 +517,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
499
517
|
custom_type_id: string;
|
|
500
518
|
group_lang_id: string;
|
|
501
519
|
language: {
|
|
502
|
-
id: string;
|
|
503
520
|
name: string;
|
|
521
|
+
id: string;
|
|
504
522
|
is_master?: boolean | undefined;
|
|
505
523
|
};
|
|
506
524
|
versions: (({
|
|
@@ -518,6 +536,7 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
518
536
|
last_modified_date: Date;
|
|
519
537
|
custom_type_label: string;
|
|
520
538
|
author: {
|
|
539
|
+
id?: string | undefined;
|
|
521
540
|
first_name?: string | undefined;
|
|
522
541
|
last_name?: string | undefined;
|
|
523
542
|
email?: string | undefined;
|
|
@@ -556,6 +575,7 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
556
575
|
last_modified_date: Date;
|
|
557
576
|
custom_type_label: string;
|
|
558
577
|
author: {
|
|
578
|
+
id?: string | undefined;
|
|
559
579
|
first_name?: string | undefined;
|
|
560
580
|
last_name?: string | undefined;
|
|
561
581
|
email?: string | undefined;
|
|
@@ -574,8 +594,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
574
594
|
custom_type_id: string;
|
|
575
595
|
group_lang_id: string;
|
|
576
596
|
language: {
|
|
577
|
-
id: string;
|
|
578
597
|
name: string;
|
|
598
|
+
id: string;
|
|
579
599
|
is_master?: boolean | undefined;
|
|
580
600
|
};
|
|
581
601
|
versions: (({
|
|
@@ -593,6 +613,7 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
593
613
|
last_modified_date: Date;
|
|
594
614
|
custom_type_label: string;
|
|
595
615
|
author: {
|
|
616
|
+
id?: string | undefined;
|
|
596
617
|
first_name?: string | undefined;
|
|
597
618
|
last_name?: string | undefined;
|
|
598
619
|
email?: string | undefined;
|
|
@@ -659,9 +680,9 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
659
680
|
tags: string[];
|
|
660
681
|
version_id: string;
|
|
661
682
|
last_modified_date: Date;
|
|
662
|
-
custom_type_id?: string | undefined;
|
|
663
683
|
preview_image?: string | undefined;
|
|
664
684
|
uid?: string | undefined;
|
|
685
|
+
custom_type_id?: string | undefined;
|
|
665
686
|
summary?: string | undefined;
|
|
666
687
|
author_ids?: string[] | undefined;
|
|
667
688
|
highlights?: {
|
|
@@ -671,9 +692,9 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
671
692
|
tags: string[];
|
|
672
693
|
version_id: string;
|
|
673
694
|
last_modified_date: Date;
|
|
674
|
-
custom_type_id?: string | undefined;
|
|
675
695
|
preview_image?: string | undefined;
|
|
676
696
|
uid?: string | undefined;
|
|
697
|
+
custom_type_id?: string | undefined;
|
|
677
698
|
summary?: string | undefined;
|
|
678
699
|
author_ids?: string[] | undefined;
|
|
679
700
|
highlights?: {
|
|
@@ -699,9 +720,9 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
699
720
|
tags: string[];
|
|
700
721
|
version_id: string;
|
|
701
722
|
last_modified_date: Date;
|
|
702
|
-
custom_type_id?: string | undefined;
|
|
703
723
|
preview_image?: string | undefined;
|
|
704
724
|
uid?: string | undefined;
|
|
725
|
+
custom_type_id?: string | undefined;
|
|
705
726
|
summary?: string | undefined;
|
|
706
727
|
author_ids?: string[] | undefined;
|
|
707
728
|
highlights?: {
|
|
@@ -726,9 +747,9 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
726
747
|
tags: string[];
|
|
727
748
|
version_id: string;
|
|
728
749
|
last_modified_date: Date;
|
|
729
|
-
custom_type_id?: string | undefined;
|
|
730
750
|
preview_image?: string | undefined;
|
|
731
751
|
uid?: string | undefined;
|
|
752
|
+
custom_type_id?: string | undefined;
|
|
732
753
|
summary?: string | undefined;
|
|
733
754
|
author_ids?: string[] | undefined;
|
|
734
755
|
highlights?: {
|
|
@@ -756,9 +777,9 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
756
777
|
tags: string[];
|
|
757
778
|
version_id: string;
|
|
758
779
|
last_modified_date: Date;
|
|
759
|
-
custom_type_id?: string | undefined;
|
|
760
780
|
preview_image?: string | undefined;
|
|
761
781
|
uid?: string | undefined;
|
|
782
|
+
custom_type_id?: string | undefined;
|
|
762
783
|
summary?: string | undefined;
|
|
763
784
|
author_ids?: string[] | undefined;
|
|
764
785
|
highlights?: {
|
|
@@ -782,9 +803,9 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
782
803
|
tags: string[];
|
|
783
804
|
version_id: string;
|
|
784
805
|
last_modified_date: Date;
|
|
785
|
-
custom_type_id?: string | undefined;
|
|
786
806
|
preview_image?: string | undefined;
|
|
787
807
|
uid?: string | undefined;
|
|
808
|
+
custom_type_id?: string | undefined;
|
|
788
809
|
summary?: string | undefined;
|
|
789
810
|
author_ids?: string[] | undefined;
|
|
790
811
|
highlights?: {
|
|
@@ -848,9 +869,9 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
848
869
|
tags: string[];
|
|
849
870
|
version_id: string;
|
|
850
871
|
last_modified_date: Date;
|
|
851
|
-
custom_type_id?: string | undefined;
|
|
852
872
|
preview_image?: string | undefined;
|
|
853
873
|
uid?: string | undefined;
|
|
874
|
+
custom_type_id?: string | undefined;
|
|
854
875
|
summary?: string | undefined;
|
|
855
876
|
author_ids?: string[] | undefined;
|
|
856
877
|
highlights?: {
|
|
@@ -860,9 +881,9 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
860
881
|
tags: string[];
|
|
861
882
|
version_id: string;
|
|
862
883
|
last_modified_date: Date;
|
|
863
|
-
custom_type_id?: string | undefined;
|
|
864
884
|
preview_image?: string | undefined;
|
|
865
885
|
uid?: string | undefined;
|
|
886
|
+
custom_type_id?: string | undefined;
|
|
866
887
|
summary?: string | undefined;
|
|
867
888
|
author_ids?: string[] | undefined;
|
|
868
889
|
highlights?: {
|
|
@@ -888,9 +909,9 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
888
909
|
tags: string[];
|
|
889
910
|
version_id: string;
|
|
890
911
|
last_modified_date: Date;
|
|
891
|
-
custom_type_id?: string | undefined;
|
|
892
912
|
preview_image?: string | undefined;
|
|
893
913
|
uid?: string | undefined;
|
|
914
|
+
custom_type_id?: string | undefined;
|
|
894
915
|
summary?: string | undefined;
|
|
895
916
|
author_ids?: string[] | undefined;
|
|
896
917
|
highlights?: {
|
|
@@ -915,9 +936,9 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
915
936
|
tags: string[];
|
|
916
937
|
version_id: string;
|
|
917
938
|
last_modified_date: Date;
|
|
918
|
-
custom_type_id?: string | undefined;
|
|
919
939
|
preview_image?: string | undefined;
|
|
920
940
|
uid?: string | undefined;
|
|
941
|
+
custom_type_id?: string | undefined;
|
|
921
942
|
summary?: string | undefined;
|
|
922
943
|
author_ids?: string[] | undefined;
|
|
923
944
|
highlights?: {
|
|
@@ -945,9 +966,9 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
945
966
|
tags: string[];
|
|
946
967
|
version_id: string;
|
|
947
968
|
last_modified_date: Date;
|
|
948
|
-
custom_type_id?: string | undefined;
|
|
949
969
|
preview_image?: string | undefined;
|
|
950
970
|
uid?: string | undefined;
|
|
971
|
+
custom_type_id?: string | undefined;
|
|
951
972
|
summary?: string | undefined;
|
|
952
973
|
author_ids?: string[] | undefined;
|
|
953
974
|
highlights?: {
|
|
@@ -971,9 +992,9 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
971
992
|
tags: string[];
|
|
972
993
|
version_id: string;
|
|
973
994
|
last_modified_date: Date;
|
|
974
|
-
custom_type_id?: string | undefined;
|
|
975
995
|
preview_image?: string | undefined;
|
|
976
996
|
uid?: string | undefined;
|
|
997
|
+
custom_type_id?: string | undefined;
|
|
977
998
|
summary?: string | undefined;
|
|
978
999
|
author_ids?: string[] | undefined;
|
|
979
1000
|
highlights?: {
|
|
@@ -1003,9 +1024,9 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
1003
1024
|
tags: string[];
|
|
1004
1025
|
version_id: string;
|
|
1005
1026
|
last_modified_date: Date;
|
|
1006
|
-
custom_type_id?: string | undefined;
|
|
1007
1027
|
preview_image?: string | undefined;
|
|
1008
1028
|
uid?: string | undefined;
|
|
1029
|
+
custom_type_id?: string | undefined;
|
|
1009
1030
|
summary?: string | undefined;
|
|
1010
1031
|
author_ids?: string[] | undefined;
|
|
1011
1032
|
highlights?: {
|
|
@@ -1031,9 +1052,9 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
1031
1052
|
tags: string[];
|
|
1032
1053
|
version_id: string;
|
|
1033
1054
|
last_modified_date: Date;
|
|
1034
|
-
custom_type_id?: string | undefined;
|
|
1035
1055
|
preview_image?: string | undefined;
|
|
1036
1056
|
uid?: string | undefined;
|
|
1057
|
+
custom_type_id?: string | undefined;
|
|
1037
1058
|
summary?: string | undefined;
|
|
1038
1059
|
author_ids?: string[] | undefined;
|
|
1039
1060
|
highlights?: {
|
|
@@ -1368,7 +1389,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1368
1389
|
label?: string | null | undefined;
|
|
1369
1390
|
direction?: string | null | undefined;
|
|
1370
1391
|
}) | ({
|
|
1371
|
-
type: "image" | "
|
|
1392
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1372
1393
|
content: {
|
|
1373
1394
|
text: string;
|
|
1374
1395
|
} & {
|
|
@@ -1421,7 +1442,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1421
1442
|
} | {
|
|
1422
1443
|
start: number;
|
|
1423
1444
|
end: number;
|
|
1424
|
-
type: "
|
|
1445
|
+
type: "strong" | "em" | "list-item";
|
|
1425
1446
|
})[] | undefined;
|
|
1426
1447
|
};
|
|
1427
1448
|
} & {
|
|
@@ -1529,7 +1550,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1529
1550
|
label?: string | null | undefined;
|
|
1530
1551
|
direction?: string | null | undefined;
|
|
1531
1552
|
}) | ({
|
|
1532
|
-
type: "image" | "
|
|
1553
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1533
1554
|
content: {
|
|
1534
1555
|
text: string;
|
|
1535
1556
|
} & {
|
|
@@ -1582,7 +1603,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1582
1603
|
} | {
|
|
1583
1604
|
start: number;
|
|
1584
1605
|
end: number;
|
|
1585
|
-
type: "
|
|
1606
|
+
type: "strong" | "em" | "list-item";
|
|
1586
1607
|
})[] | undefined;
|
|
1587
1608
|
};
|
|
1588
1609
|
} & {
|
|
@@ -1963,7 +1984,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1963
1984
|
label?: string | null | undefined;
|
|
1964
1985
|
direction?: string | null | undefined;
|
|
1965
1986
|
}) | ({
|
|
1966
|
-
type: "image" | "
|
|
1987
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1967
1988
|
content: {
|
|
1968
1989
|
text: string;
|
|
1969
1990
|
} & {
|
|
@@ -2016,7 +2037,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2016
2037
|
} | {
|
|
2017
2038
|
start: number;
|
|
2018
2039
|
end: number;
|
|
2019
|
-
type: "
|
|
2040
|
+
type: "strong" | "em" | "list-item";
|
|
2020
2041
|
})[] | undefined;
|
|
2021
2042
|
};
|
|
2022
2043
|
} & {
|
|
@@ -2124,7 +2145,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2124
2145
|
label?: string | null | undefined;
|
|
2125
2146
|
direction?: string | null | undefined;
|
|
2126
2147
|
}) | ({
|
|
2127
|
-
type: "image" | "
|
|
2148
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2128
2149
|
content: {
|
|
2129
2150
|
text: string;
|
|
2130
2151
|
} & {
|
|
@@ -2177,7 +2198,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2177
2198
|
} | {
|
|
2178
2199
|
start: number;
|
|
2179
2200
|
end: number;
|
|
2180
|
-
type: "
|
|
2201
|
+
type: "strong" | "em" | "list-item";
|
|
2181
2202
|
})[] | undefined;
|
|
2182
2203
|
};
|
|
2183
2204
|
} & {
|
|
@@ -2550,7 +2571,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2550
2571
|
label?: string | null | undefined;
|
|
2551
2572
|
direction?: string | null | undefined;
|
|
2552
2573
|
}) | ({
|
|
2553
|
-
type: "image" | "
|
|
2574
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2554
2575
|
content: {
|
|
2555
2576
|
text: string;
|
|
2556
2577
|
} & {
|
|
@@ -2603,7 +2624,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2603
2624
|
} | {
|
|
2604
2625
|
start: number;
|
|
2605
2626
|
end: number;
|
|
2606
|
-
type: "
|
|
2627
|
+
type: "strong" | "em" | "list-item";
|
|
2607
2628
|
})[] | undefined;
|
|
2608
2629
|
};
|
|
2609
2630
|
} & {
|
|
@@ -2708,7 +2729,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2708
2729
|
label?: string | null | undefined;
|
|
2709
2730
|
direction?: string | null | undefined;
|
|
2710
2731
|
}) | ({
|
|
2711
|
-
type: "image" | "
|
|
2732
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2712
2733
|
content: {
|
|
2713
2734
|
text: string;
|
|
2714
2735
|
} & {
|
|
@@ -2761,7 +2782,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2761
2782
|
} | {
|
|
2762
2783
|
start: number;
|
|
2763
2784
|
end: number;
|
|
2764
|
-
type: "
|
|
2785
|
+
type: "strong" | "em" | "list-item";
|
|
2765
2786
|
})[] | undefined;
|
|
2766
2787
|
};
|
|
2767
2788
|
} & {
|
|
@@ -3136,7 +3157,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3136
3157
|
label?: string | null | undefined;
|
|
3137
3158
|
direction?: string | null | undefined;
|
|
3138
3159
|
}) | ({
|
|
3139
|
-
type: "image" | "
|
|
3160
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3140
3161
|
content: {
|
|
3141
3162
|
text: string;
|
|
3142
3163
|
} & {
|
|
@@ -3189,7 +3210,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3189
3210
|
} | {
|
|
3190
3211
|
start: number;
|
|
3191
3212
|
end: number;
|
|
3192
|
-
type: "
|
|
3213
|
+
type: "strong" | "em" | "list-item";
|
|
3193
3214
|
})[] | undefined;
|
|
3194
3215
|
};
|
|
3195
3216
|
} & {
|
|
@@ -3297,7 +3318,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3297
3318
|
label?: string | null | undefined;
|
|
3298
3319
|
direction?: string | null | undefined;
|
|
3299
3320
|
}) | ({
|
|
3300
|
-
type: "image" | "
|
|
3321
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3301
3322
|
content: {
|
|
3302
3323
|
text: string;
|
|
3303
3324
|
} & {
|
|
@@ -3350,7 +3371,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3350
3371
|
} | {
|
|
3351
3372
|
start: number;
|
|
3352
3373
|
end: number;
|
|
3353
|
-
type: "
|
|
3374
|
+
type: "strong" | "em" | "list-item";
|
|
3354
3375
|
})[] | undefined;
|
|
3355
3376
|
};
|
|
3356
3377
|
} & {
|
|
@@ -3723,7 +3744,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3723
3744
|
label?: string | null | undefined;
|
|
3724
3745
|
direction?: string | null | undefined;
|
|
3725
3746
|
}) | ({
|
|
3726
|
-
type: "image" | "
|
|
3747
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3727
3748
|
content: {
|
|
3728
3749
|
text: string;
|
|
3729
3750
|
} & {
|
|
@@ -3776,7 +3797,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3776
3797
|
} | {
|
|
3777
3798
|
start: number;
|
|
3778
3799
|
end: number;
|
|
3779
|
-
type: "
|
|
3800
|
+
type: "strong" | "em" | "list-item";
|
|
3780
3801
|
})[] | undefined;
|
|
3781
3802
|
};
|
|
3782
3803
|
} & {
|
|
@@ -3881,7 +3902,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3881
3902
|
label?: string | null | undefined;
|
|
3882
3903
|
direction?: string | null | undefined;
|
|
3883
3904
|
}) | ({
|
|
3884
|
-
type: "image" | "
|
|
3905
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3885
3906
|
content: {
|
|
3886
3907
|
text: string;
|
|
3887
3908
|
} & {
|
|
@@ -3934,7 +3955,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3934
3955
|
} | {
|
|
3935
3956
|
start: number;
|
|
3936
3957
|
end: number;
|
|
3937
|
-
type: "
|
|
3958
|
+
type: "strong" | "em" | "list-item";
|
|
3938
3959
|
})[] | undefined;
|
|
3939
3960
|
};
|
|
3940
3961
|
} & {
|
|
@@ -4305,7 +4326,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4305
4326
|
label?: string | null | undefined;
|
|
4306
4327
|
direction?: string | null | undefined;
|
|
4307
4328
|
}) | ({
|
|
4308
|
-
type: "image" | "
|
|
4329
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4309
4330
|
content: {
|
|
4310
4331
|
text: string;
|
|
4311
4332
|
} & {
|
|
@@ -4358,7 +4379,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4358
4379
|
} | {
|
|
4359
4380
|
start: number;
|
|
4360
4381
|
end: number;
|
|
4361
|
-
type: "
|
|
4382
|
+
type: "strong" | "em" | "list-item";
|
|
4362
4383
|
})[] | undefined;
|
|
4363
4384
|
};
|
|
4364
4385
|
} & {
|
|
@@ -4466,7 +4487,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4466
4487
|
label?: string | null | undefined;
|
|
4467
4488
|
direction?: string | null | undefined;
|
|
4468
4489
|
}) | ({
|
|
4469
|
-
type: "image" | "
|
|
4490
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4470
4491
|
content: {
|
|
4471
4492
|
text: string;
|
|
4472
4493
|
} & {
|
|
@@ -4519,7 +4540,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4519
4540
|
} | {
|
|
4520
4541
|
start: number;
|
|
4521
4542
|
end: number;
|
|
4522
|
-
type: "
|
|
4543
|
+
type: "strong" | "em" | "list-item";
|
|
4523
4544
|
})[] | undefined;
|
|
4524
4545
|
};
|
|
4525
4546
|
} & {
|
|
@@ -4899,7 +4920,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4899
4920
|
label?: string | null | undefined;
|
|
4900
4921
|
direction?: string | null | undefined;
|
|
4901
4922
|
}) | ({
|
|
4902
|
-
type: "image" | "
|
|
4923
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4903
4924
|
content: {
|
|
4904
4925
|
text: string;
|
|
4905
4926
|
} & {
|
|
@@ -4952,7 +4973,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4952
4973
|
} | {
|
|
4953
4974
|
start: number;
|
|
4954
4975
|
end: number;
|
|
4955
|
-
type: "
|
|
4976
|
+
type: "strong" | "em" | "list-item";
|
|
4956
4977
|
})[] | undefined;
|
|
4957
4978
|
};
|
|
4958
4979
|
} & {
|
|
@@ -5060,7 +5081,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5060
5081
|
label?: string | null | undefined;
|
|
5061
5082
|
direction?: string | null | undefined;
|
|
5062
5083
|
}) | ({
|
|
5063
|
-
type: "image" | "
|
|
5084
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5064
5085
|
content: {
|
|
5065
5086
|
text: string;
|
|
5066
5087
|
} & {
|
|
@@ -5113,7 +5134,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5113
5134
|
} | {
|
|
5114
5135
|
start: number;
|
|
5115
5136
|
end: number;
|
|
5116
|
-
type: "
|
|
5137
|
+
type: "strong" | "em" | "list-item";
|
|
5117
5138
|
})[] | undefined;
|
|
5118
5139
|
};
|
|
5119
5140
|
} & {
|
|
@@ -5486,7 +5507,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5486
5507
|
label?: string | null | undefined;
|
|
5487
5508
|
direction?: string | null | undefined;
|
|
5488
5509
|
}) | ({
|
|
5489
|
-
type: "image" | "
|
|
5510
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5490
5511
|
content: {
|
|
5491
5512
|
text: string;
|
|
5492
5513
|
} & {
|
|
@@ -5539,7 +5560,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5539
5560
|
} | {
|
|
5540
5561
|
start: number;
|
|
5541
5562
|
end: number;
|
|
5542
|
-
type: "
|
|
5563
|
+
type: "strong" | "em" | "list-item";
|
|
5543
5564
|
})[] | undefined;
|
|
5544
5565
|
};
|
|
5545
5566
|
} & {
|
|
@@ -5647,7 +5668,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5647
5668
|
label?: string | null | undefined;
|
|
5648
5669
|
direction?: string | null | undefined;
|
|
5649
5670
|
}) | ({
|
|
5650
|
-
type: "image" | "
|
|
5671
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5651
5672
|
content: {
|
|
5652
5673
|
text: string;
|
|
5653
5674
|
} & {
|
|
@@ -5700,7 +5721,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5700
5721
|
} | {
|
|
5701
5722
|
start: number;
|
|
5702
5723
|
end: number;
|
|
5703
|
-
type: "
|
|
5724
|
+
type: "strong" | "em" | "list-item";
|
|
5704
5725
|
})[] | undefined;
|
|
5705
5726
|
};
|
|
5706
5727
|
} & {
|
|
@@ -6075,7 +6096,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6075
6096
|
label?: string | null | undefined;
|
|
6076
6097
|
direction?: string | null | undefined;
|
|
6077
6098
|
}) | ({
|
|
6078
|
-
type: "image" | "
|
|
6099
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
6079
6100
|
content: {
|
|
6080
6101
|
text: string;
|
|
6081
6102
|
} & {
|
|
@@ -6128,7 +6149,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6128
6149
|
} | {
|
|
6129
6150
|
start: number;
|
|
6130
6151
|
end: number;
|
|
6131
|
-
type: "
|
|
6152
|
+
type: "strong" | "em" | "list-item";
|
|
6132
6153
|
})[] | undefined;
|
|
6133
6154
|
};
|
|
6134
6155
|
} & {
|
|
@@ -6236,7 +6257,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6236
6257
|
label?: string | null | undefined;
|
|
6237
6258
|
direction?: string | null | undefined;
|
|
6238
6259
|
}) | ({
|
|
6239
|
-
type: "image" | "
|
|
6260
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
6240
6261
|
content: {
|
|
6241
6262
|
text: string;
|
|
6242
6263
|
} & {
|
|
@@ -6289,7 +6310,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6289
6310
|
} | {
|
|
6290
6311
|
start: number;
|
|
6291
6312
|
end: number;
|
|
6292
|
-
type: "
|
|
6313
|
+
type: "strong" | "em" | "list-item";
|
|
6293
6314
|
})[] | undefined;
|
|
6294
6315
|
};
|
|
6295
6316
|
} & {
|
|
@@ -6662,7 +6683,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6662
6683
|
label?: string | null | undefined;
|
|
6663
6684
|
direction?: string | null | undefined;
|
|
6664
6685
|
}) | ({
|
|
6665
|
-
type: "image" | "
|
|
6686
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
6666
6687
|
content: {
|
|
6667
6688
|
text: string;
|
|
6668
6689
|
} & {
|
|
@@ -6715,7 +6736,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6715
6736
|
} | {
|
|
6716
6737
|
start: number;
|
|
6717
6738
|
end: number;
|
|
6718
|
-
type: "
|
|
6739
|
+
type: "strong" | "em" | "list-item";
|
|
6719
6740
|
})[] | undefined;
|
|
6720
6741
|
};
|
|
6721
6742
|
} & {
|
|
@@ -6823,7 +6844,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6823
6844
|
label?: string | null | undefined;
|
|
6824
6845
|
direction?: string | null | undefined;
|
|
6825
6846
|
}) | ({
|
|
6826
|
-
type: "image" | "
|
|
6847
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
6827
6848
|
content: {
|
|
6828
6849
|
text: string;
|
|
6829
6850
|
} & {
|
|
@@ -6876,7 +6897,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6876
6897
|
} | {
|
|
6877
6898
|
start: number;
|
|
6878
6899
|
end: number;
|
|
6879
|
-
type: "
|
|
6900
|
+
type: "strong" | "em" | "list-item";
|
|
6880
6901
|
})[] | undefined;
|
|
6881
6902
|
};
|
|
6882
6903
|
} & {
|
|
@@ -7247,7 +7268,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7247
7268
|
label?: string | null | undefined;
|
|
7248
7269
|
direction?: string | null | undefined;
|
|
7249
7270
|
}) | ({
|
|
7250
|
-
type: "image" | "
|
|
7271
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
7251
7272
|
content: {
|
|
7252
7273
|
text: string;
|
|
7253
7274
|
} & {
|
|
@@ -7300,7 +7321,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7300
7321
|
} | {
|
|
7301
7322
|
start: number;
|
|
7302
7323
|
end: number;
|
|
7303
|
-
type: "
|
|
7324
|
+
type: "strong" | "em" | "list-item";
|
|
7304
7325
|
})[] | undefined;
|
|
7305
7326
|
};
|
|
7306
7327
|
} & {
|
|
@@ -7408,7 +7429,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7408
7429
|
label?: string | null | undefined;
|
|
7409
7430
|
direction?: string | null | undefined;
|
|
7410
7431
|
}) | ({
|
|
7411
|
-
type: "image" | "
|
|
7432
|
+
type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
7412
7433
|
content: {
|
|
7413
7434
|
text: string;
|
|
7414
7435
|
} & {
|
|
@@ -7461,7 +7482,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7461
7482
|
} | {
|
|
7462
7483
|
start: number;
|
|
7463
7484
|
end: number;
|
|
7464
|
-
type: "
|
|
7485
|
+
type: "strong" | "em" | "list-item";
|
|
7465
7486
|
})[] | undefined;
|
|
7466
7487
|
};
|
|
7467
7488
|
} & {
|
|
@@ -7592,6 +7613,7 @@ export declare function useDocumentList(args: GetDocumentListArgs): import("@tan
|
|
|
7592
7613
|
last_modified_date: Date;
|
|
7593
7614
|
custom_type_label: string;
|
|
7594
7615
|
author: {
|
|
7616
|
+
id?: string | undefined;
|
|
7595
7617
|
first_name?: string | undefined;
|
|
7596
7618
|
last_name?: string | undefined;
|
|
7597
7619
|
email?: string | undefined;
|
|
@@ -7631,6 +7653,7 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7631
7653
|
last_modified_date: Date;
|
|
7632
7654
|
custom_type_label: string;
|
|
7633
7655
|
author: {
|
|
7656
|
+
id?: string | undefined;
|
|
7634
7657
|
first_name?: string | undefined;
|
|
7635
7658
|
last_name?: string | undefined;
|
|
7636
7659
|
email?: string | undefined;
|
|
@@ -7669,6 +7692,7 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7669
7692
|
last_modified_date: Date;
|
|
7670
7693
|
custom_type_label: string;
|
|
7671
7694
|
author: {
|
|
7695
|
+
id?: string | undefined;
|
|
7672
7696
|
first_name?: string | undefined;
|
|
7673
7697
|
last_name?: string | undefined;
|
|
7674
7698
|
email?: string | undefined;
|
|
@@ -7708,6 +7732,7 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7708
7732
|
last_modified_date: Date;
|
|
7709
7733
|
custom_type_label: string;
|
|
7710
7734
|
author: {
|
|
7735
|
+
id?: string | undefined;
|
|
7711
7736
|
first_name?: string | undefined;
|
|
7712
7737
|
last_name?: string | undefined;
|
|
7713
7738
|
email?: string | undefined;
|
|
@@ -7748,6 +7773,7 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7748
7773
|
last_modified_date: Date;
|
|
7749
7774
|
custom_type_label: string;
|
|
7750
7775
|
author: {
|
|
7776
|
+
id?: string | undefined;
|
|
7751
7777
|
first_name?: string | undefined;
|
|
7752
7778
|
last_name?: string | undefined;
|
|
7753
7779
|
email?: string | undefined;
|