@prismicio/editor-fields 0.4.62-alpha.jp-table-render-default-layout.2 → 0.4.63-alpha.jp-upgrade-tiptap.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/core/MediaLibrary/hooks/mediaLibraryData.d.ts +97 -97
- package/dist/core/MediaLibrary/hooks/tagData.d.ts +6 -6
- package/dist/core/MediaLibrary/hooks/useMediaLibraryUpload.d.ts +9 -9
- package/dist/core/MediaLibrary/hooks/useSelectedMedia.d.ts +9 -9
- package/dist/core/service/customType.d.ts +18 -18
- package/dist/core/service/document.d.ts +121 -121
- package/dist/core/service/documentSearch.d.ts +20 -20
- 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 +9 -9
- package/dist/fields/ImageField/useImageFieldImageUpload.d.ts +9 -9
- package/dist/fields/LinkField/Documents/DocumentCard.d.ts +2 -0
- package/dist/fields/LinkField/Documents/documentsData.d.ts +8 -8
- package/dist/fields/LinkField/LinkField.d.ts +1 -1
- package/dist/fields/RichTextField/BubbleMenu/BubbleMenu.d.ts +1 -0
- package/dist/fields/RichTextField/coreExtensions/HardBreak.d.ts +1 -1
- package/dist/fields/RichTextField/coreExtensions/ListItem.d.ts +5 -5
- package/dist/fields/RichTextField/coreExtensions/Text.d.ts +1 -1
- package/dist/fields/RichTextField/extensions/Bold/BoldModel.d.ts +1 -1
- package/dist/fields/RichTextField/extensions/Image/useImageView.d.ts +9 -9
- package/dist/fields/RichTextField/extensions/Italic/ItalicModel.d.ts +1 -1
- package/dist/fields/RichTextField/extensions/Label/LabelModel.d.ts +1 -1
- package/dist/fields/RichTextField/extensions/Link/Link.d.ts +1 -1
- package/dist/fields/RichTextField/extensions/Link/LinkModel.d.ts +1 -1
- package/dist/fields/RichTextField/globalExtensions/TextDirection.d.ts +1 -1
- package/dist/fields/RichTextField/models/EditorExtension.d.ts +1 -1
- package/dist/fields/RichTextField/models/helpers/NodeUtils.d.ts +1 -1
- package/dist/index.cjs.js +42 -42
- package/dist/index.es.js +10595 -10540
- package/package.json +26 -27
|
@@ -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
|
-
name: string;
|
|
10
9
|
id: string;
|
|
10
|
+
name: string;
|
|
11
11
|
is_master?: boolean | undefined;
|
|
12
12
|
}, {
|
|
13
|
-
name: string;
|
|
14
13
|
id: string;
|
|
14
|
+
name: 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
|
-
name: string;
|
|
22
21
|
id: string;
|
|
22
|
+
name: string;
|
|
23
23
|
is_master?: boolean | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -75,8 +75,8 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
75
75
|
uploadedAvatar?: string | undefined;
|
|
76
76
|
}>;
|
|
77
77
|
}>, "strip", z.ZodTypeAny, {
|
|
78
|
-
version_id: string;
|
|
79
78
|
tags: string[];
|
|
79
|
+
version_id: string;
|
|
80
80
|
last_modified_date: Date;
|
|
81
81
|
custom_type_label: string;
|
|
82
82
|
author: {
|
|
@@ -89,8 +89,8 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
89
89
|
uid?: string | undefined;
|
|
90
90
|
preview_summary?: string | undefined;
|
|
91
91
|
}, {
|
|
92
|
-
version_id: string;
|
|
93
92
|
tags: string[];
|
|
93
|
+
version_id: string;
|
|
94
94
|
last_modified_date: Date;
|
|
95
95
|
custom_type_label: string;
|
|
96
96
|
author: {
|
|
@@ -148,25 +148,25 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
148
148
|
uid?: string | undefined;
|
|
149
149
|
}>>;
|
|
150
150
|
}>, "strip", z.ZodTypeAny, {
|
|
151
|
-
version_id: string;
|
|
152
151
|
tags: string[];
|
|
152
|
+
version_id: string;
|
|
153
153
|
last_modified_date: Date;
|
|
154
|
-
|
|
154
|
+
custom_type_id?: string | undefined;
|
|
155
155
|
preview_image?: string | undefined;
|
|
156
156
|
uid?: string | undefined;
|
|
157
|
-
|
|
157
|
+
summary?: string | undefined;
|
|
158
158
|
author_ids?: string[] | undefined;
|
|
159
159
|
highlights?: {
|
|
160
160
|
uid?: string | undefined;
|
|
161
161
|
} | undefined;
|
|
162
162
|
}, {
|
|
163
|
-
version_id: string;
|
|
164
163
|
tags: string[];
|
|
164
|
+
version_id: string;
|
|
165
165
|
last_modified_date: Date;
|
|
166
|
-
|
|
166
|
+
custom_type_id?: string | undefined;
|
|
167
167
|
preview_image?: string | undefined;
|
|
168
168
|
uid?: string | undefined;
|
|
169
|
-
|
|
169
|
+
summary?: string | undefined;
|
|
170
170
|
author_ids?: string[] | undefined;
|
|
171
171
|
highlights?: {
|
|
172
172
|
uid?: string | undefined;
|
|
@@ -184,20 +184,20 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
184
184
|
name: z.ZodString;
|
|
185
185
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
186
186
|
}, "strip", z.ZodTypeAny, {
|
|
187
|
-
name: string;
|
|
188
187
|
id: string;
|
|
188
|
+
name: string;
|
|
189
189
|
is_master?: boolean | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
name: string;
|
|
192
191
|
id: string;
|
|
192
|
+
name: string;
|
|
193
193
|
is_master?: boolean | undefined;
|
|
194
194
|
}>, {
|
|
195
195
|
isMaster?: boolean | undefined;
|
|
196
196
|
id: string;
|
|
197
197
|
label: string;
|
|
198
198
|
}, {
|
|
199
|
-
name: string;
|
|
200
199
|
id: string;
|
|
200
|
+
name: string;
|
|
201
201
|
is_master?: boolean | undefined;
|
|
202
202
|
}>;
|
|
203
203
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -253,8 +253,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
253
253
|
uploadedAvatar?: string | undefined;
|
|
254
254
|
}>;
|
|
255
255
|
}>, "strip", z.ZodTypeAny, {
|
|
256
|
-
version_id: string;
|
|
257
256
|
tags: string[];
|
|
257
|
+
version_id: string;
|
|
258
258
|
last_modified_date: Date;
|
|
259
259
|
custom_type_label: string;
|
|
260
260
|
author: {
|
|
@@ -267,8 +267,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
267
267
|
uid?: string | undefined;
|
|
268
268
|
preview_summary?: string | undefined;
|
|
269
269
|
}, {
|
|
270
|
-
version_id: string;
|
|
271
270
|
tags: string[];
|
|
271
|
+
version_id: string;
|
|
272
272
|
last_modified_date: Date;
|
|
273
273
|
custom_type_label: string;
|
|
274
274
|
author: {
|
|
@@ -301,8 +301,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
301
301
|
} | {
|
|
302
302
|
status: "archived";
|
|
303
303
|
}) & {
|
|
304
|
-
version_id: string;
|
|
305
304
|
tags: string[];
|
|
305
|
+
version_id: string;
|
|
306
306
|
last_modified_date: Date;
|
|
307
307
|
custom_type_label: string;
|
|
308
308
|
author: {
|
|
@@ -320,8 +320,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
320
320
|
custom_type_id: string;
|
|
321
321
|
group_lang_id: string;
|
|
322
322
|
language: {
|
|
323
|
-
name: string;
|
|
324
323
|
id: string;
|
|
324
|
+
name: string;
|
|
325
325
|
is_master?: boolean | undefined;
|
|
326
326
|
};
|
|
327
327
|
versions: (({
|
|
@@ -334,8 +334,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
334
334
|
} | {
|
|
335
335
|
status: "archived";
|
|
336
336
|
}) & {
|
|
337
|
-
version_id: string;
|
|
338
337
|
tags: string[];
|
|
338
|
+
version_id: string;
|
|
339
339
|
last_modified_date: Date;
|
|
340
340
|
custom_type_label: string;
|
|
341
341
|
author: {
|
|
@@ -363,20 +363,20 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
363
363
|
name: z.ZodString;
|
|
364
364
|
is_master: z.ZodOptional<z.ZodBoolean>;
|
|
365
365
|
}, "strip", z.ZodTypeAny, {
|
|
366
|
-
name: string;
|
|
367
366
|
id: string;
|
|
367
|
+
name: string;
|
|
368
368
|
is_master?: boolean | undefined;
|
|
369
369
|
}, {
|
|
370
|
-
name: string;
|
|
371
370
|
id: string;
|
|
371
|
+
name: string;
|
|
372
372
|
is_master?: boolean | undefined;
|
|
373
373
|
}>, {
|
|
374
374
|
isMaster?: boolean | undefined;
|
|
375
375
|
id: string;
|
|
376
376
|
label: string;
|
|
377
377
|
}, {
|
|
378
|
-
name: string;
|
|
379
378
|
id: string;
|
|
379
|
+
name: string;
|
|
380
380
|
is_master?: boolean | undefined;
|
|
381
381
|
}>;
|
|
382
382
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -432,8 +432,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
432
432
|
uploadedAvatar?: string | undefined;
|
|
433
433
|
}>;
|
|
434
434
|
}>, "strip", z.ZodTypeAny, {
|
|
435
|
-
version_id: string;
|
|
436
435
|
tags: string[];
|
|
436
|
+
version_id: string;
|
|
437
437
|
last_modified_date: Date;
|
|
438
438
|
custom_type_label: string;
|
|
439
439
|
author: {
|
|
@@ -446,8 +446,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
446
446
|
uid?: string | undefined;
|
|
447
447
|
preview_summary?: string | undefined;
|
|
448
448
|
}, {
|
|
449
|
-
version_id: string;
|
|
450
449
|
tags: string[];
|
|
450
|
+
version_id: string;
|
|
451
451
|
last_modified_date: Date;
|
|
452
452
|
custom_type_label: string;
|
|
453
453
|
author: {
|
|
@@ -480,8 +480,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
480
480
|
} | {
|
|
481
481
|
status: "archived";
|
|
482
482
|
}) & {
|
|
483
|
-
version_id: string;
|
|
484
483
|
tags: string[];
|
|
484
|
+
version_id: string;
|
|
485
485
|
last_modified_date: Date;
|
|
486
486
|
custom_type_label: string;
|
|
487
487
|
author: {
|
|
@@ -499,8 +499,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
499
499
|
custom_type_id: string;
|
|
500
500
|
group_lang_id: string;
|
|
501
501
|
language: {
|
|
502
|
-
name: string;
|
|
503
502
|
id: string;
|
|
503
|
+
name: string;
|
|
504
504
|
is_master?: boolean | undefined;
|
|
505
505
|
};
|
|
506
506
|
versions: (({
|
|
@@ -513,8 +513,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
513
513
|
} | {
|
|
514
514
|
status: "archived";
|
|
515
515
|
}) & {
|
|
516
|
-
version_id: string;
|
|
517
516
|
tags: string[];
|
|
517
|
+
version_id: string;
|
|
518
518
|
last_modified_date: Date;
|
|
519
519
|
custom_type_label: string;
|
|
520
520
|
author: {
|
|
@@ -551,8 +551,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
551
551
|
} | {
|
|
552
552
|
status: "archived";
|
|
553
553
|
}) & {
|
|
554
|
-
version_id: string;
|
|
555
554
|
tags: string[];
|
|
555
|
+
version_id: string;
|
|
556
556
|
last_modified_date: Date;
|
|
557
557
|
custom_type_label: string;
|
|
558
558
|
author: {
|
|
@@ -574,8 +574,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
574
574
|
custom_type_id: string;
|
|
575
575
|
group_lang_id: string;
|
|
576
576
|
language: {
|
|
577
|
-
name: string;
|
|
578
577
|
id: string;
|
|
578
|
+
name: string;
|
|
579
579
|
is_master?: boolean | undefined;
|
|
580
580
|
};
|
|
581
581
|
versions: (({
|
|
@@ -588,8 +588,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
588
588
|
} | {
|
|
589
589
|
status: "archived";
|
|
590
590
|
}) & {
|
|
591
|
-
version_id: string;
|
|
592
591
|
tags: string[];
|
|
592
|
+
version_id: string;
|
|
593
593
|
last_modified_date: Date;
|
|
594
594
|
custom_type_label: string;
|
|
595
595
|
author: {
|
|
@@ -656,25 +656,25 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
656
656
|
uid?: string | undefined;
|
|
657
657
|
}>>;
|
|
658
658
|
}>, "strip", z.ZodTypeAny, {
|
|
659
|
-
version_id: string;
|
|
660
659
|
tags: string[];
|
|
660
|
+
version_id: string;
|
|
661
661
|
last_modified_date: Date;
|
|
662
|
-
|
|
662
|
+
custom_type_id?: string | undefined;
|
|
663
663
|
preview_image?: string | undefined;
|
|
664
664
|
uid?: string | undefined;
|
|
665
|
-
|
|
665
|
+
summary?: string | undefined;
|
|
666
666
|
author_ids?: string[] | undefined;
|
|
667
667
|
highlights?: {
|
|
668
668
|
uid?: string | undefined;
|
|
669
669
|
} | undefined;
|
|
670
670
|
}, {
|
|
671
|
-
version_id: string;
|
|
672
671
|
tags: string[];
|
|
672
|
+
version_id: string;
|
|
673
673
|
last_modified_date: Date;
|
|
674
|
-
|
|
674
|
+
custom_type_id?: string | undefined;
|
|
675
675
|
preview_image?: string | undefined;
|
|
676
676
|
uid?: string | undefined;
|
|
677
|
-
|
|
677
|
+
summary?: string | undefined;
|
|
678
678
|
author_ids?: string[] | undefined;
|
|
679
679
|
highlights?: {
|
|
680
680
|
uid?: string | undefined;
|
|
@@ -696,13 +696,13 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
696
696
|
} | {
|
|
697
697
|
status: "archived";
|
|
698
698
|
}) & {
|
|
699
|
-
version_id: string;
|
|
700
699
|
tags: string[];
|
|
700
|
+
version_id: string;
|
|
701
701
|
last_modified_date: Date;
|
|
702
|
-
|
|
702
|
+
custom_type_id?: string | undefined;
|
|
703
703
|
preview_image?: string | undefined;
|
|
704
704
|
uid?: string | undefined;
|
|
705
|
-
|
|
705
|
+
summary?: string | undefined;
|
|
706
706
|
author_ids?: string[] | undefined;
|
|
707
707
|
highlights?: {
|
|
708
708
|
uid?: string | undefined;
|
|
@@ -723,13 +723,13 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
723
723
|
} | {
|
|
724
724
|
status: "archived";
|
|
725
725
|
}) & {
|
|
726
|
-
version_id: string;
|
|
727
726
|
tags: string[];
|
|
727
|
+
version_id: string;
|
|
728
728
|
last_modified_date: Date;
|
|
729
|
-
|
|
729
|
+
custom_type_id?: string | undefined;
|
|
730
730
|
preview_image?: string | undefined;
|
|
731
731
|
uid?: string | undefined;
|
|
732
|
-
|
|
732
|
+
summary?: string | undefined;
|
|
733
733
|
author_ids?: string[] | undefined;
|
|
734
734
|
highlights?: {
|
|
735
735
|
uid?: string | undefined;
|
|
@@ -753,13 +753,13 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
753
753
|
} | {
|
|
754
754
|
status: "archived";
|
|
755
755
|
}) & {
|
|
756
|
-
version_id: string;
|
|
757
756
|
tags: string[];
|
|
757
|
+
version_id: string;
|
|
758
758
|
last_modified_date: Date;
|
|
759
|
-
|
|
759
|
+
custom_type_id?: string | undefined;
|
|
760
760
|
preview_image?: string | undefined;
|
|
761
761
|
uid?: string | undefined;
|
|
762
|
-
|
|
762
|
+
summary?: string | undefined;
|
|
763
763
|
author_ids?: string[] | undefined;
|
|
764
764
|
highlights?: {
|
|
765
765
|
uid?: string | undefined;
|
|
@@ -779,13 +779,13 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
779
779
|
} | {
|
|
780
780
|
status: "archived";
|
|
781
781
|
}) & {
|
|
782
|
-
version_id: string;
|
|
783
782
|
tags: string[];
|
|
783
|
+
version_id: string;
|
|
784
784
|
last_modified_date: Date;
|
|
785
|
-
|
|
785
|
+
custom_type_id?: string | undefined;
|
|
786
786
|
preview_image?: string | undefined;
|
|
787
787
|
uid?: string | undefined;
|
|
788
|
-
|
|
788
|
+
summary?: string | undefined;
|
|
789
789
|
author_ids?: string[] | undefined;
|
|
790
790
|
highlights?: {
|
|
791
791
|
uid?: string | undefined;
|
|
@@ -845,25 +845,25 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
845
845
|
uid?: string | undefined;
|
|
846
846
|
}>>;
|
|
847
847
|
}>, "strip", z.ZodTypeAny, {
|
|
848
|
-
version_id: string;
|
|
849
848
|
tags: string[];
|
|
849
|
+
version_id: string;
|
|
850
850
|
last_modified_date: Date;
|
|
851
|
-
|
|
851
|
+
custom_type_id?: string | undefined;
|
|
852
852
|
preview_image?: string | undefined;
|
|
853
853
|
uid?: string | undefined;
|
|
854
|
-
|
|
854
|
+
summary?: string | undefined;
|
|
855
855
|
author_ids?: string[] | undefined;
|
|
856
856
|
highlights?: {
|
|
857
857
|
uid?: string | undefined;
|
|
858
858
|
} | undefined;
|
|
859
859
|
}, {
|
|
860
|
-
version_id: string;
|
|
861
860
|
tags: string[];
|
|
861
|
+
version_id: string;
|
|
862
862
|
last_modified_date: Date;
|
|
863
|
-
|
|
863
|
+
custom_type_id?: string | undefined;
|
|
864
864
|
preview_image?: string | undefined;
|
|
865
865
|
uid?: string | undefined;
|
|
866
|
-
|
|
866
|
+
summary?: string | undefined;
|
|
867
867
|
author_ids?: string[] | undefined;
|
|
868
868
|
highlights?: {
|
|
869
869
|
uid?: string | undefined;
|
|
@@ -885,13 +885,13 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
885
885
|
} | {
|
|
886
886
|
status: "archived";
|
|
887
887
|
}) & {
|
|
888
|
-
version_id: string;
|
|
889
888
|
tags: string[];
|
|
889
|
+
version_id: string;
|
|
890
890
|
last_modified_date: Date;
|
|
891
|
-
|
|
891
|
+
custom_type_id?: string | undefined;
|
|
892
892
|
preview_image?: string | undefined;
|
|
893
893
|
uid?: string | undefined;
|
|
894
|
-
|
|
894
|
+
summary?: string | undefined;
|
|
895
895
|
author_ids?: string[] | undefined;
|
|
896
896
|
highlights?: {
|
|
897
897
|
uid?: string | undefined;
|
|
@@ -912,13 +912,13 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
912
912
|
} | {
|
|
913
913
|
status: "archived";
|
|
914
914
|
}) & {
|
|
915
|
-
version_id: string;
|
|
916
915
|
tags: string[];
|
|
916
|
+
version_id: string;
|
|
917
917
|
last_modified_date: Date;
|
|
918
|
-
|
|
918
|
+
custom_type_id?: string | undefined;
|
|
919
919
|
preview_image?: string | undefined;
|
|
920
920
|
uid?: string | undefined;
|
|
921
|
-
|
|
921
|
+
summary?: string | undefined;
|
|
922
922
|
author_ids?: string[] | undefined;
|
|
923
923
|
highlights?: {
|
|
924
924
|
uid?: string | undefined;
|
|
@@ -942,13 +942,13 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
942
942
|
} | {
|
|
943
943
|
status: "archived";
|
|
944
944
|
}) & {
|
|
945
|
-
version_id: string;
|
|
946
945
|
tags: string[];
|
|
946
|
+
version_id: string;
|
|
947
947
|
last_modified_date: Date;
|
|
948
|
-
|
|
948
|
+
custom_type_id?: string | undefined;
|
|
949
949
|
preview_image?: string | undefined;
|
|
950
950
|
uid?: string | undefined;
|
|
951
|
-
|
|
951
|
+
summary?: string | undefined;
|
|
952
952
|
author_ids?: string[] | undefined;
|
|
953
953
|
highlights?: {
|
|
954
954
|
uid?: string | undefined;
|
|
@@ -968,13 +968,13 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
968
968
|
} | {
|
|
969
969
|
status: "archived";
|
|
970
970
|
}) & {
|
|
971
|
-
version_id: string;
|
|
972
971
|
tags: string[];
|
|
972
|
+
version_id: string;
|
|
973
973
|
last_modified_date: Date;
|
|
974
|
-
|
|
974
|
+
custom_type_id?: string | undefined;
|
|
975
975
|
preview_image?: string | undefined;
|
|
976
976
|
uid?: string | undefined;
|
|
977
|
-
|
|
977
|
+
summary?: string | undefined;
|
|
978
978
|
author_ids?: string[] | undefined;
|
|
979
979
|
highlights?: {
|
|
980
980
|
uid?: string | undefined;
|
|
@@ -1000,13 +1000,13 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
1000
1000
|
} | {
|
|
1001
1001
|
status: "archived";
|
|
1002
1002
|
}) & {
|
|
1003
|
-
version_id: string;
|
|
1004
1003
|
tags: string[];
|
|
1004
|
+
version_id: string;
|
|
1005
1005
|
last_modified_date: Date;
|
|
1006
|
-
|
|
1006
|
+
custom_type_id?: string | undefined;
|
|
1007
1007
|
preview_image?: string | undefined;
|
|
1008
1008
|
uid?: string | undefined;
|
|
1009
|
-
|
|
1009
|
+
summary?: string | undefined;
|
|
1010
1010
|
author_ids?: string[] | undefined;
|
|
1011
1011
|
highlights?: {
|
|
1012
1012
|
uid?: string | undefined;
|
|
@@ -1028,13 +1028,13 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
1028
1028
|
} | {
|
|
1029
1029
|
status: "archived";
|
|
1030
1030
|
}) & {
|
|
1031
|
-
version_id: string;
|
|
1032
1031
|
tags: string[];
|
|
1032
|
+
version_id: string;
|
|
1033
1033
|
last_modified_date: Date;
|
|
1034
|
-
|
|
1034
|
+
custom_type_id?: string | undefined;
|
|
1035
1035
|
preview_image?: string | undefined;
|
|
1036
1036
|
uid?: string | undefined;
|
|
1037
|
-
|
|
1037
|
+
summary?: string | undefined;
|
|
1038
1038
|
author_ids?: string[] | undefined;
|
|
1039
1039
|
highlights?: {
|
|
1040
1040
|
uid?: string | undefined;
|
|
@@ -1368,7 +1368,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1368
1368
|
label?: string | null | undefined;
|
|
1369
1369
|
direction?: string | null | undefined;
|
|
1370
1370
|
}) | ({
|
|
1371
|
-
type: "
|
|
1371
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1372
1372
|
content: {
|
|
1373
1373
|
text: string;
|
|
1374
1374
|
} & {
|
|
@@ -1421,7 +1421,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1421
1421
|
} | {
|
|
1422
1422
|
start: number;
|
|
1423
1423
|
end: number;
|
|
1424
|
-
type: "
|
|
1424
|
+
type: "em" | "strong" | "list-item";
|
|
1425
1425
|
})[] | undefined;
|
|
1426
1426
|
};
|
|
1427
1427
|
} & {
|
|
@@ -1529,7 +1529,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1529
1529
|
label?: string | null | undefined;
|
|
1530
1530
|
direction?: string | null | undefined;
|
|
1531
1531
|
}) | ({
|
|
1532
|
-
type: "
|
|
1532
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1533
1533
|
content: {
|
|
1534
1534
|
text: string;
|
|
1535
1535
|
} & {
|
|
@@ -1582,7 +1582,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1582
1582
|
} | {
|
|
1583
1583
|
start: number;
|
|
1584
1584
|
end: number;
|
|
1585
|
-
type: "
|
|
1585
|
+
type: "em" | "strong" | "list-item";
|
|
1586
1586
|
})[] | undefined;
|
|
1587
1587
|
};
|
|
1588
1588
|
} & {
|
|
@@ -1963,7 +1963,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1963
1963
|
label?: string | null | undefined;
|
|
1964
1964
|
direction?: string | null | undefined;
|
|
1965
1965
|
}) | ({
|
|
1966
|
-
type: "
|
|
1966
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
1967
1967
|
content: {
|
|
1968
1968
|
text: string;
|
|
1969
1969
|
} & {
|
|
@@ -2016,7 +2016,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2016
2016
|
} | {
|
|
2017
2017
|
start: number;
|
|
2018
2018
|
end: number;
|
|
2019
|
-
type: "
|
|
2019
|
+
type: "em" | "strong" | "list-item";
|
|
2020
2020
|
})[] | undefined;
|
|
2021
2021
|
};
|
|
2022
2022
|
} & {
|
|
@@ -2124,7 +2124,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2124
2124
|
label?: string | null | undefined;
|
|
2125
2125
|
direction?: string | null | undefined;
|
|
2126
2126
|
}) | ({
|
|
2127
|
-
type: "
|
|
2127
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2128
2128
|
content: {
|
|
2129
2129
|
text: string;
|
|
2130
2130
|
} & {
|
|
@@ -2177,7 +2177,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2177
2177
|
} | {
|
|
2178
2178
|
start: number;
|
|
2179
2179
|
end: number;
|
|
2180
|
-
type: "
|
|
2180
|
+
type: "em" | "strong" | "list-item";
|
|
2181
2181
|
})[] | undefined;
|
|
2182
2182
|
};
|
|
2183
2183
|
} & {
|
|
@@ -2550,7 +2550,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2550
2550
|
label?: string | null | undefined;
|
|
2551
2551
|
direction?: string | null | undefined;
|
|
2552
2552
|
}) | ({
|
|
2553
|
-
type: "
|
|
2553
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2554
2554
|
content: {
|
|
2555
2555
|
text: string;
|
|
2556
2556
|
} & {
|
|
@@ -2603,7 +2603,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2603
2603
|
} | {
|
|
2604
2604
|
start: number;
|
|
2605
2605
|
end: number;
|
|
2606
|
-
type: "
|
|
2606
|
+
type: "em" | "strong" | "list-item";
|
|
2607
2607
|
})[] | undefined;
|
|
2608
2608
|
};
|
|
2609
2609
|
} & {
|
|
@@ -2708,7 +2708,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2708
2708
|
label?: string | null | undefined;
|
|
2709
2709
|
direction?: string | null | undefined;
|
|
2710
2710
|
}) | ({
|
|
2711
|
-
type: "
|
|
2711
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
2712
2712
|
content: {
|
|
2713
2713
|
text: string;
|
|
2714
2714
|
} & {
|
|
@@ -2761,7 +2761,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2761
2761
|
} | {
|
|
2762
2762
|
start: number;
|
|
2763
2763
|
end: number;
|
|
2764
|
-
type: "
|
|
2764
|
+
type: "em" | "strong" | "list-item";
|
|
2765
2765
|
})[] | undefined;
|
|
2766
2766
|
};
|
|
2767
2767
|
} & {
|
|
@@ -3136,7 +3136,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3136
3136
|
label?: string | null | undefined;
|
|
3137
3137
|
direction?: string | null | undefined;
|
|
3138
3138
|
}) | ({
|
|
3139
|
-
type: "
|
|
3139
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3140
3140
|
content: {
|
|
3141
3141
|
text: string;
|
|
3142
3142
|
} & {
|
|
@@ -3189,7 +3189,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3189
3189
|
} | {
|
|
3190
3190
|
start: number;
|
|
3191
3191
|
end: number;
|
|
3192
|
-
type: "
|
|
3192
|
+
type: "em" | "strong" | "list-item";
|
|
3193
3193
|
})[] | undefined;
|
|
3194
3194
|
};
|
|
3195
3195
|
} & {
|
|
@@ -3297,7 +3297,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3297
3297
|
label?: string | null | undefined;
|
|
3298
3298
|
direction?: string | null | undefined;
|
|
3299
3299
|
}) | ({
|
|
3300
|
-
type: "
|
|
3300
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3301
3301
|
content: {
|
|
3302
3302
|
text: string;
|
|
3303
3303
|
} & {
|
|
@@ -3350,7 +3350,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3350
3350
|
} | {
|
|
3351
3351
|
start: number;
|
|
3352
3352
|
end: number;
|
|
3353
|
-
type: "
|
|
3353
|
+
type: "em" | "strong" | "list-item";
|
|
3354
3354
|
})[] | undefined;
|
|
3355
3355
|
};
|
|
3356
3356
|
} & {
|
|
@@ -3723,7 +3723,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3723
3723
|
label?: string | null | undefined;
|
|
3724
3724
|
direction?: string | null | undefined;
|
|
3725
3725
|
}) | ({
|
|
3726
|
-
type: "
|
|
3726
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3727
3727
|
content: {
|
|
3728
3728
|
text: string;
|
|
3729
3729
|
} & {
|
|
@@ -3776,7 +3776,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3776
3776
|
} | {
|
|
3777
3777
|
start: number;
|
|
3778
3778
|
end: number;
|
|
3779
|
-
type: "
|
|
3779
|
+
type: "em" | "strong" | "list-item";
|
|
3780
3780
|
})[] | undefined;
|
|
3781
3781
|
};
|
|
3782
3782
|
} & {
|
|
@@ -3881,7 +3881,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3881
3881
|
label?: string | null | undefined;
|
|
3882
3882
|
direction?: string | null | undefined;
|
|
3883
3883
|
}) | ({
|
|
3884
|
-
type: "
|
|
3884
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
3885
3885
|
content: {
|
|
3886
3886
|
text: string;
|
|
3887
3887
|
} & {
|
|
@@ -3934,7 +3934,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3934
3934
|
} | {
|
|
3935
3935
|
start: number;
|
|
3936
3936
|
end: number;
|
|
3937
|
-
type: "
|
|
3937
|
+
type: "em" | "strong" | "list-item";
|
|
3938
3938
|
})[] | undefined;
|
|
3939
3939
|
};
|
|
3940
3940
|
} & {
|
|
@@ -4305,7 +4305,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4305
4305
|
label?: string | null | undefined;
|
|
4306
4306
|
direction?: string | null | undefined;
|
|
4307
4307
|
}) | ({
|
|
4308
|
-
type: "
|
|
4308
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4309
4309
|
content: {
|
|
4310
4310
|
text: string;
|
|
4311
4311
|
} & {
|
|
@@ -4358,7 +4358,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4358
4358
|
} | {
|
|
4359
4359
|
start: number;
|
|
4360
4360
|
end: number;
|
|
4361
|
-
type: "
|
|
4361
|
+
type: "em" | "strong" | "list-item";
|
|
4362
4362
|
})[] | undefined;
|
|
4363
4363
|
};
|
|
4364
4364
|
} & {
|
|
@@ -4466,7 +4466,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4466
4466
|
label?: string | null | undefined;
|
|
4467
4467
|
direction?: string | null | undefined;
|
|
4468
4468
|
}) | ({
|
|
4469
|
-
type: "
|
|
4469
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4470
4470
|
content: {
|
|
4471
4471
|
text: string;
|
|
4472
4472
|
} & {
|
|
@@ -4519,7 +4519,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4519
4519
|
} | {
|
|
4520
4520
|
start: number;
|
|
4521
4521
|
end: number;
|
|
4522
|
-
type: "
|
|
4522
|
+
type: "em" | "strong" | "list-item";
|
|
4523
4523
|
})[] | undefined;
|
|
4524
4524
|
};
|
|
4525
4525
|
} & {
|
|
@@ -4899,7 +4899,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4899
4899
|
label?: string | null | undefined;
|
|
4900
4900
|
direction?: string | null | undefined;
|
|
4901
4901
|
}) | ({
|
|
4902
|
-
type: "
|
|
4902
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
4903
4903
|
content: {
|
|
4904
4904
|
text: string;
|
|
4905
4905
|
} & {
|
|
@@ -4952,7 +4952,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4952
4952
|
} | {
|
|
4953
4953
|
start: number;
|
|
4954
4954
|
end: number;
|
|
4955
|
-
type: "
|
|
4955
|
+
type: "em" | "strong" | "list-item";
|
|
4956
4956
|
})[] | undefined;
|
|
4957
4957
|
};
|
|
4958
4958
|
} & {
|
|
@@ -5060,7 +5060,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5060
5060
|
label?: string | null | undefined;
|
|
5061
5061
|
direction?: string | null | undefined;
|
|
5062
5062
|
}) | ({
|
|
5063
|
-
type: "
|
|
5063
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5064
5064
|
content: {
|
|
5065
5065
|
text: string;
|
|
5066
5066
|
} & {
|
|
@@ -5113,7 +5113,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5113
5113
|
} | {
|
|
5114
5114
|
start: number;
|
|
5115
5115
|
end: number;
|
|
5116
|
-
type: "
|
|
5116
|
+
type: "em" | "strong" | "list-item";
|
|
5117
5117
|
})[] | undefined;
|
|
5118
5118
|
};
|
|
5119
5119
|
} & {
|
|
@@ -5486,7 +5486,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5486
5486
|
label?: string | null | undefined;
|
|
5487
5487
|
direction?: string | null | undefined;
|
|
5488
5488
|
}) | ({
|
|
5489
|
-
type: "
|
|
5489
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5490
5490
|
content: {
|
|
5491
5491
|
text: string;
|
|
5492
5492
|
} & {
|
|
@@ -5539,7 +5539,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5539
5539
|
} | {
|
|
5540
5540
|
start: number;
|
|
5541
5541
|
end: number;
|
|
5542
|
-
type: "
|
|
5542
|
+
type: "em" | "strong" | "list-item";
|
|
5543
5543
|
})[] | undefined;
|
|
5544
5544
|
};
|
|
5545
5545
|
} & {
|
|
@@ -5647,7 +5647,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5647
5647
|
label?: string | null | undefined;
|
|
5648
5648
|
direction?: string | null | undefined;
|
|
5649
5649
|
}) | ({
|
|
5650
|
-
type: "
|
|
5650
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
5651
5651
|
content: {
|
|
5652
5652
|
text: string;
|
|
5653
5653
|
} & {
|
|
@@ -5700,7 +5700,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5700
5700
|
} | {
|
|
5701
5701
|
start: number;
|
|
5702
5702
|
end: number;
|
|
5703
|
-
type: "
|
|
5703
|
+
type: "em" | "strong" | "list-item";
|
|
5704
5704
|
})[] | undefined;
|
|
5705
5705
|
};
|
|
5706
5706
|
} & {
|
|
@@ -6075,7 +6075,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6075
6075
|
label?: string | null | undefined;
|
|
6076
6076
|
direction?: string | null | undefined;
|
|
6077
6077
|
}) | ({
|
|
6078
|
-
type: "
|
|
6078
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
6079
6079
|
content: {
|
|
6080
6080
|
text: string;
|
|
6081
6081
|
} & {
|
|
@@ -6128,7 +6128,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6128
6128
|
} | {
|
|
6129
6129
|
start: number;
|
|
6130
6130
|
end: number;
|
|
6131
|
-
type: "
|
|
6131
|
+
type: "em" | "strong" | "list-item";
|
|
6132
6132
|
})[] | undefined;
|
|
6133
6133
|
};
|
|
6134
6134
|
} & {
|
|
@@ -6236,7 +6236,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6236
6236
|
label?: string | null | undefined;
|
|
6237
6237
|
direction?: string | null | undefined;
|
|
6238
6238
|
}) | ({
|
|
6239
|
-
type: "
|
|
6239
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
6240
6240
|
content: {
|
|
6241
6241
|
text: string;
|
|
6242
6242
|
} & {
|
|
@@ -6289,7 +6289,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6289
6289
|
} | {
|
|
6290
6290
|
start: number;
|
|
6291
6291
|
end: number;
|
|
6292
|
-
type: "
|
|
6292
|
+
type: "em" | "strong" | "list-item";
|
|
6293
6293
|
})[] | undefined;
|
|
6294
6294
|
};
|
|
6295
6295
|
} & {
|
|
@@ -6662,7 +6662,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6662
6662
|
label?: string | null | undefined;
|
|
6663
6663
|
direction?: string | null | undefined;
|
|
6664
6664
|
}) | ({
|
|
6665
|
-
type: "
|
|
6665
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
6666
6666
|
content: {
|
|
6667
6667
|
text: string;
|
|
6668
6668
|
} & {
|
|
@@ -6715,7 +6715,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6715
6715
|
} | {
|
|
6716
6716
|
start: number;
|
|
6717
6717
|
end: number;
|
|
6718
|
-
type: "
|
|
6718
|
+
type: "em" | "strong" | "list-item";
|
|
6719
6719
|
})[] | undefined;
|
|
6720
6720
|
};
|
|
6721
6721
|
} & {
|
|
@@ -6823,7 +6823,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6823
6823
|
label?: string | null | undefined;
|
|
6824
6824
|
direction?: string | null | undefined;
|
|
6825
6825
|
}) | ({
|
|
6826
|
-
type: "
|
|
6826
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
6827
6827
|
content: {
|
|
6828
6828
|
text: string;
|
|
6829
6829
|
} & {
|
|
@@ -6876,7 +6876,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6876
6876
|
} | {
|
|
6877
6877
|
start: number;
|
|
6878
6878
|
end: number;
|
|
6879
|
-
type: "
|
|
6879
|
+
type: "em" | "strong" | "list-item";
|
|
6880
6880
|
})[] | undefined;
|
|
6881
6881
|
};
|
|
6882
6882
|
} & {
|
|
@@ -7247,7 +7247,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7247
7247
|
label?: string | null | undefined;
|
|
7248
7248
|
direction?: string | null | undefined;
|
|
7249
7249
|
}) | ({
|
|
7250
|
-
type: "
|
|
7250
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
7251
7251
|
content: {
|
|
7252
7252
|
text: string;
|
|
7253
7253
|
} & {
|
|
@@ -7300,7 +7300,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7300
7300
|
} | {
|
|
7301
7301
|
start: number;
|
|
7302
7302
|
end: number;
|
|
7303
|
-
type: "
|
|
7303
|
+
type: "em" | "strong" | "list-item";
|
|
7304
7304
|
})[] | undefined;
|
|
7305
7305
|
};
|
|
7306
7306
|
} & {
|
|
@@ -7408,7 +7408,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7408
7408
|
label?: string | null | undefined;
|
|
7409
7409
|
direction?: string | null | undefined;
|
|
7410
7410
|
}) | ({
|
|
7411
|
-
type: "
|
|
7411
|
+
type: "image" | "em" | "embed" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "paragraph" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
|
|
7412
7412
|
content: {
|
|
7413
7413
|
text: string;
|
|
7414
7414
|
} & {
|
|
@@ -7461,7 +7461,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7461
7461
|
} | {
|
|
7462
7462
|
start: number;
|
|
7463
7463
|
end: number;
|
|
7464
|
-
type: "
|
|
7464
|
+
type: "em" | "strong" | "list-item";
|
|
7465
7465
|
})[] | undefined;
|
|
7466
7466
|
};
|
|
7467
7467
|
} & {
|
|
@@ -7587,8 +7587,8 @@ export declare function useDocumentList(args: GetDocumentListArgs): import("@tan
|
|
|
7587
7587
|
} | {
|
|
7588
7588
|
status: "archived";
|
|
7589
7589
|
}) & {
|
|
7590
|
-
version_id: string;
|
|
7591
7590
|
tags: string[];
|
|
7591
|
+
version_id: string;
|
|
7592
7592
|
last_modified_date: Date;
|
|
7593
7593
|
custom_type_label: string;
|
|
7594
7594
|
author: {
|
|
@@ -7626,8 +7626,8 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7626
7626
|
} | {
|
|
7627
7627
|
status: "archived";
|
|
7628
7628
|
}) & {
|
|
7629
|
-
version_id: string;
|
|
7630
7629
|
tags: string[];
|
|
7630
|
+
version_id: string;
|
|
7631
7631
|
last_modified_date: Date;
|
|
7632
7632
|
custom_type_label: string;
|
|
7633
7633
|
author: {
|
|
@@ -7664,8 +7664,8 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7664
7664
|
} | {
|
|
7665
7665
|
status: "archived";
|
|
7666
7666
|
}) & {
|
|
7667
|
-
version_id: string;
|
|
7668
7667
|
tags: string[];
|
|
7668
|
+
version_id: string;
|
|
7669
7669
|
last_modified_date: Date;
|
|
7670
7670
|
custom_type_label: string;
|
|
7671
7671
|
author: {
|
|
@@ -7703,8 +7703,8 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7703
7703
|
} | {
|
|
7704
7704
|
status: "archived";
|
|
7705
7705
|
}) & {
|
|
7706
|
-
version_id: string;
|
|
7707
7706
|
tags: string[];
|
|
7707
|
+
version_id: string;
|
|
7708
7708
|
last_modified_date: Date;
|
|
7709
7709
|
custom_type_label: string;
|
|
7710
7710
|
author: {
|
|
@@ -7743,8 +7743,8 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7743
7743
|
} | {
|
|
7744
7744
|
status: "archived";
|
|
7745
7745
|
}) & {
|
|
7746
|
-
version_id: string;
|
|
7747
7746
|
tags: string[];
|
|
7747
|
+
version_id: string;
|
|
7748
7748
|
last_modified_date: Date;
|
|
7749
7749
|
custom_type_label: string;
|
|
7750
7750
|
author: {
|