@prismicio/editor-fields 0.4.64-alpha.fix-simulator-issue.0 → 0.4.64-alpha.fix-simulator-issue.1

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.
Files changed (27) hide show
  1. package/dist/core/MediaLibrary/hooks/mediaLibraryData.d.ts +53 -53
  2. package/dist/core/MediaLibrary/hooks/tagData.d.ts +3 -3
  3. package/dist/core/MediaLibrary/hooks/useMediaLibraryUpload.d.ts +5 -5
  4. package/dist/core/MediaLibrary/hooks/useSelectedMedia.d.ts +5 -5
  5. package/dist/core/UnsplashLibrary/unsplashData.d.ts +9 -9
  6. package/dist/core/service/customType.d.ts +21 -21
  7. package/dist/core/service/document.d.ts +112 -112
  8. package/dist/core/service/documentSearch.d.ts +17 -17
  9. package/dist/core/service/onboarding.d.ts +3 -3
  10. package/dist/core/service/repository.d.ts +36 -36
  11. package/dist/core/service/role.d.ts +10 -10
  12. package/dist/fields/ImageField/useImageField.d.ts +5 -5
  13. package/dist/fields/ImageField/useImageFieldImageUpload.d.ts +5 -5
  14. package/dist/fields/LinkField/Documents/documentsData.d.ts +6 -6
  15. package/dist/fields/LinkField/LinkField.d.ts +1 -1
  16. package/dist/fields/LinkField/useLinkField.d.ts +1 -1
  17. package/dist/fields/RichTextField/RichTextField.d.ts +5 -0
  18. package/dist/fields/RichTextField/coreExtensions/ListItem.d.ts +4 -4
  19. package/dist/fields/RichTextField/extensions/Image/useImageView.d.ts +5 -5
  20. package/dist/fields/RichTextField/extensions/Table/TableCell/TableHeaderCell.d.ts +1 -1
  21. package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/TableHandlesPluginView.d.ts +2 -2
  22. package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/utils.d.ts +2 -4
  23. package/dist/fields/RichTextField/extensions/Table/TableView.d.ts +3 -1
  24. package/dist/fields/RichTextField/extensions/Table/utils.d.ts +2 -53
  25. package/dist/index.cjs.js +40 -40
  26. package/dist/index.es.js +17348 -17086
  27. package/package.json +4 -4
@@ -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<{
@@ -67,15 +67,15 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
67
67
  }, "strip", z.ZodTypeAny, {
68
68
  id?: string | undefined;
69
69
  email?: string | undefined;
70
- uploadedAvatar?: string | undefined;
71
70
  first_name?: string | undefined;
72
71
  last_name?: string | undefined;
72
+ uploadedAvatar?: string | undefined;
73
73
  }, {
74
74
  id?: string | undefined;
75
75
  email?: string | undefined;
76
- uploadedAvatar?: string | undefined;
77
76
  first_name?: string | undefined;
78
77
  last_name?: string | undefined;
78
+ uploadedAvatar?: string | undefined;
79
79
  }>;
80
80
  }>, "strip", z.ZodTypeAny, {
81
81
  version_id: string;
@@ -85,12 +85,12 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
85
85
  author: {
86
86
  id?: string | undefined;
87
87
  email?: string | undefined;
88
- uploadedAvatar?: string | undefined;
89
88
  first_name?: string | undefined;
90
89
  last_name?: string | undefined;
90
+ uploadedAvatar?: string | undefined;
91
91
  };
92
- uid?: string | undefined;
93
92
  preview_image?: string | undefined;
93
+ uid?: string | undefined;
94
94
  preview_summary?: string | undefined;
95
95
  }, {
96
96
  version_id: string;
@@ -100,12 +100,12 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
100
100
  author: {
101
101
  id?: string | undefined;
102
102
  email?: string | undefined;
103
- uploadedAvatar?: string | undefined;
104
103
  first_name?: string | undefined;
105
104
  last_name?: string | undefined;
105
+ uploadedAvatar?: string | undefined;
106
106
  };
107
- uid?: string | undefined;
108
107
  preview_image?: string | undefined;
108
+ uid?: string | undefined;
109
109
  preview_summary?: string | undefined;
110
110
  }>>;
111
111
  declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
@@ -157,8 +157,8 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
157
157
  tags: string[];
158
158
  last_modified_date: Date;
159
159
  summary?: string | undefined;
160
- uid?: string | undefined;
161
160
  preview_image?: string | undefined;
161
+ uid?: string | undefined;
162
162
  custom_type_id?: string | undefined;
163
163
  author_ids?: string[] | undefined;
164
164
  highlights?: {
@@ -169,8 +169,8 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
169
169
  tags: string[];
170
170
  last_modified_date: Date;
171
171
  summary?: string | undefined;
172
- uid?: string | undefined;
173
172
  preview_image?: string | undefined;
173
+ uid?: string | undefined;
174
174
  custom_type_id?: string | undefined;
175
175
  author_ids?: string[] | undefined;
176
176
  highlights?: {
@@ -189,20 +189,20 @@ export declare const documentMetaSchema: z.ZodObject<{
189
189
  name: z.ZodString;
190
190
  is_master: z.ZodOptional<z.ZodBoolean>;
191
191
  }, "strip", z.ZodTypeAny, {
192
- id: string;
193
192
  name: string;
193
+ id: string;
194
194
  is_master?: boolean | undefined;
195
195
  }, {
196
- id: string;
197
196
  name: string;
197
+ id: string;
198
198
  is_master?: boolean | undefined;
199
199
  }>, {
200
200
  isMaster?: boolean | undefined;
201
201
  id: string;
202
202
  label: string;
203
203
  }, {
204
- id: string;
205
204
  name: string;
205
+ id: string;
206
206
  is_master?: boolean | undefined;
207
207
  }>;
208
208
  versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
@@ -250,15 +250,15 @@ export declare const documentMetaSchema: z.ZodObject<{
250
250
  }, "strip", z.ZodTypeAny, {
251
251
  id?: string | undefined;
252
252
  email?: string | undefined;
253
- uploadedAvatar?: string | undefined;
254
253
  first_name?: string | undefined;
255
254
  last_name?: string | undefined;
255
+ uploadedAvatar?: string | undefined;
256
256
  }, {
257
257
  id?: string | undefined;
258
258
  email?: string | undefined;
259
- uploadedAvatar?: string | undefined;
260
259
  first_name?: string | undefined;
261
260
  last_name?: string | undefined;
261
+ uploadedAvatar?: string | undefined;
262
262
  }>;
263
263
  }>, "strip", z.ZodTypeAny, {
264
264
  version_id: string;
@@ -268,12 +268,12 @@ export declare const documentMetaSchema: z.ZodObject<{
268
268
  author: {
269
269
  id?: string | undefined;
270
270
  email?: string | undefined;
271
- uploadedAvatar?: string | undefined;
272
271
  first_name?: string | undefined;
273
272
  last_name?: string | undefined;
273
+ uploadedAvatar?: string | undefined;
274
274
  };
275
- uid?: string | undefined;
276
275
  preview_image?: string | undefined;
276
+ uid?: string | undefined;
277
277
  preview_summary?: string | undefined;
278
278
  }, {
279
279
  version_id: string;
@@ -283,12 +283,12 @@ export declare const documentMetaSchema: z.ZodObject<{
283
283
  author: {
284
284
  id?: string | undefined;
285
285
  email?: string | undefined;
286
- uploadedAvatar?: string | undefined;
287
286
  first_name?: string | undefined;
288
287
  last_name?: string | undefined;
288
+ uploadedAvatar?: string | undefined;
289
289
  };
290
- uid?: string | undefined;
291
290
  preview_image?: string | undefined;
291
+ uid?: string | undefined;
292
292
  preview_summary?: string | undefined;
293
293
  }>>, "many">;
294
294
  }, "strip", z.ZodTypeAny, {
@@ -318,19 +318,19 @@ export declare const documentMetaSchema: z.ZodObject<{
318
318
  author: {
319
319
  id?: string | undefined;
320
320
  email?: string | undefined;
321
- uploadedAvatar?: string | undefined;
322
321
  first_name?: string | undefined;
323
322
  last_name?: string | undefined;
323
+ uploadedAvatar?: string | undefined;
324
324
  };
325
- uid?: string | undefined;
326
325
  preview_image?: string | undefined;
326
+ uid?: string | undefined;
327
327
  preview_summary?: string | undefined;
328
328
  })[];
329
329
  }, {
330
330
  id: string;
331
331
  language: {
332
- id: string;
333
332
  name: string;
333
+ id: string;
334
334
  is_master?: boolean | undefined;
335
335
  };
336
336
  custom_type_id: string;
@@ -352,12 +352,12 @@ export declare const documentMetaSchema: z.ZodObject<{
352
352
  author: {
353
353
  id?: string | undefined;
354
354
  email?: string | undefined;
355
- uploadedAvatar?: string | undefined;
356
355
  first_name?: string | undefined;
357
356
  last_name?: string | undefined;
357
+ uploadedAvatar?: string | undefined;
358
358
  };
359
- uid?: string | undefined;
360
359
  preview_image?: string | undefined;
360
+ uid?: string | undefined;
361
361
  preview_summary?: string | undefined;
362
362
  })[];
363
363
  title?: string | null | undefined;
@@ -375,20 +375,20 @@ declare const getDocumentListSchema: z.ZodObject<{
375
375
  name: z.ZodString;
376
376
  is_master: z.ZodOptional<z.ZodBoolean>;
377
377
  }, "strip", z.ZodTypeAny, {
378
- id: string;
379
378
  name: string;
379
+ id: string;
380
380
  is_master?: boolean | undefined;
381
381
  }, {
382
- id: string;
383
382
  name: string;
383
+ id: string;
384
384
  is_master?: boolean | undefined;
385
385
  }>, {
386
386
  isMaster?: boolean | undefined;
387
387
  id: string;
388
388
  label: string;
389
389
  }, {
390
- id: string;
391
390
  name: string;
391
+ id: string;
392
392
  is_master?: boolean | undefined;
393
393
  }>;
394
394
  versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
@@ -436,15 +436,15 @@ declare const getDocumentListSchema: z.ZodObject<{
436
436
  }, "strip", z.ZodTypeAny, {
437
437
  id?: string | undefined;
438
438
  email?: string | undefined;
439
- uploadedAvatar?: string | undefined;
440
439
  first_name?: string | undefined;
441
440
  last_name?: string | undefined;
441
+ uploadedAvatar?: string | undefined;
442
442
  }, {
443
443
  id?: string | undefined;
444
444
  email?: string | undefined;
445
- uploadedAvatar?: string | undefined;
446
445
  first_name?: string | undefined;
447
446
  last_name?: string | undefined;
447
+ uploadedAvatar?: string | undefined;
448
448
  }>;
449
449
  }>, "strip", z.ZodTypeAny, {
450
450
  version_id: string;
@@ -454,12 +454,12 @@ declare const getDocumentListSchema: z.ZodObject<{
454
454
  author: {
455
455
  id?: string | undefined;
456
456
  email?: string | undefined;
457
- uploadedAvatar?: string | undefined;
458
457
  first_name?: string | undefined;
459
458
  last_name?: string | undefined;
459
+ uploadedAvatar?: string | undefined;
460
460
  };
461
- uid?: string | undefined;
462
461
  preview_image?: string | undefined;
462
+ uid?: string | undefined;
463
463
  preview_summary?: string | undefined;
464
464
  }, {
465
465
  version_id: string;
@@ -469,12 +469,12 @@ declare const getDocumentListSchema: z.ZodObject<{
469
469
  author: {
470
470
  id?: string | undefined;
471
471
  email?: string | undefined;
472
- uploadedAvatar?: string | undefined;
473
472
  first_name?: string | undefined;
474
473
  last_name?: string | undefined;
474
+ uploadedAvatar?: string | undefined;
475
475
  };
476
- uid?: string | undefined;
477
476
  preview_image?: string | undefined;
477
+ uid?: string | undefined;
478
478
  preview_summary?: string | undefined;
479
479
  }>>, "many">;
480
480
  }, "strip", z.ZodTypeAny, {
@@ -504,19 +504,19 @@ declare const getDocumentListSchema: z.ZodObject<{
504
504
  author: {
505
505
  id?: string | undefined;
506
506
  email?: string | undefined;
507
- uploadedAvatar?: string | undefined;
508
507
  first_name?: string | undefined;
509
508
  last_name?: string | undefined;
509
+ uploadedAvatar?: string | undefined;
510
510
  };
511
- uid?: string | undefined;
512
511
  preview_image?: string | undefined;
512
+ uid?: string | undefined;
513
513
  preview_summary?: string | undefined;
514
514
  })[];
515
515
  }, {
516
516
  id: string;
517
517
  language: {
518
- id: string;
519
518
  name: string;
519
+ id: string;
520
520
  is_master?: boolean | undefined;
521
521
  };
522
522
  custom_type_id: string;
@@ -538,12 +538,12 @@ declare const getDocumentListSchema: z.ZodObject<{
538
538
  author: {
539
539
  id?: string | undefined;
540
540
  email?: string | undefined;
541
- uploadedAvatar?: string | undefined;
542
541
  first_name?: string | undefined;
543
542
  last_name?: string | undefined;
543
+ uploadedAvatar?: string | undefined;
544
544
  };
545
- uid?: string | undefined;
546
545
  preview_image?: string | undefined;
546
+ uid?: string | undefined;
547
547
  preview_summary?: string | undefined;
548
548
  })[];
549
549
  title?: string | null | undefined;
@@ -576,12 +576,12 @@ declare const getDocumentListSchema: z.ZodObject<{
576
576
  author: {
577
577
  id?: string | undefined;
578
578
  email?: string | undefined;
579
- uploadedAvatar?: string | undefined;
580
579
  first_name?: string | undefined;
581
580
  last_name?: string | undefined;
581
+ uploadedAvatar?: string | undefined;
582
582
  };
583
- uid?: string | undefined;
584
583
  preview_image?: string | undefined;
584
+ uid?: string | undefined;
585
585
  preview_summary?: string | undefined;
586
586
  })[];
587
587
  }[];
@@ -591,8 +591,8 @@ declare const getDocumentListSchema: z.ZodObject<{
591
591
  results: {
592
592
  id: string;
593
593
  language: {
594
- id: string;
595
594
  name: string;
595
+ id: string;
596
596
  is_master?: boolean | undefined;
597
597
  };
598
598
  custom_type_id: string;
@@ -614,12 +614,12 @@ declare const getDocumentListSchema: z.ZodObject<{
614
614
  author: {
615
615
  id?: string | undefined;
616
616
  email?: string | undefined;
617
- uploadedAvatar?: string | undefined;
618
617
  first_name?: string | undefined;
619
618
  last_name?: string | undefined;
619
+ uploadedAvatar?: string | undefined;
620
620
  };
621
- uid?: string | undefined;
622
621
  preview_image?: string | undefined;
622
+ uid?: string | undefined;
623
623
  preview_summary?: string | undefined;
624
624
  })[];
625
625
  title?: string | null | undefined;
@@ -681,8 +681,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
681
681
  tags: string[];
682
682
  last_modified_date: Date;
683
683
  summary?: string | undefined;
684
- uid?: string | undefined;
685
684
  preview_image?: string | undefined;
685
+ uid?: string | undefined;
686
686
  custom_type_id?: string | undefined;
687
687
  author_ids?: string[] | undefined;
688
688
  highlights?: {
@@ -693,8 +693,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
693
693
  tags: string[];
694
694
  last_modified_date: Date;
695
695
  summary?: string | undefined;
696
- uid?: string | undefined;
697
696
  preview_image?: string | undefined;
697
+ uid?: string | undefined;
698
698
  custom_type_id?: string | undefined;
699
699
  author_ids?: string[] | undefined;
700
700
  highlights?: {
@@ -721,8 +721,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
721
721
  tags: string[];
722
722
  last_modified_date: Date;
723
723
  summary?: string | undefined;
724
- uid?: string | undefined;
725
724
  preview_image?: string | undefined;
725
+ uid?: string | undefined;
726
726
  custom_type_id?: string | undefined;
727
727
  author_ids?: string[] | undefined;
728
728
  highlights?: {
@@ -748,8 +748,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
748
748
  tags: string[];
749
749
  last_modified_date: Date;
750
750
  summary?: string | undefined;
751
- uid?: string | undefined;
752
751
  preview_image?: string | undefined;
752
+ uid?: string | undefined;
753
753
  custom_type_id?: string | undefined;
754
754
  author_ids?: string[] | undefined;
755
755
  highlights?: {
@@ -778,8 +778,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
778
778
  tags: string[];
779
779
  last_modified_date: Date;
780
780
  summary?: string | undefined;
781
- uid?: string | undefined;
782
781
  preview_image?: string | undefined;
782
+ uid?: string | undefined;
783
783
  custom_type_id?: string | undefined;
784
784
  author_ids?: string[] | undefined;
785
785
  highlights?: {
@@ -804,8 +804,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
804
804
  tags: string[];
805
805
  last_modified_date: Date;
806
806
  summary?: string | undefined;
807
- uid?: string | undefined;
808
807
  preview_image?: string | undefined;
808
+ uid?: string | undefined;
809
809
  custom_type_id?: string | undefined;
810
810
  author_ids?: string[] | undefined;
811
811
  highlights?: {
@@ -870,8 +870,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
870
870
  tags: string[];
871
871
  last_modified_date: Date;
872
872
  summary?: string | undefined;
873
- uid?: string | undefined;
874
873
  preview_image?: string | undefined;
874
+ uid?: string | undefined;
875
875
  custom_type_id?: string | undefined;
876
876
  author_ids?: string[] | undefined;
877
877
  highlights?: {
@@ -882,8 +882,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
882
882
  tags: string[];
883
883
  last_modified_date: Date;
884
884
  summary?: string | undefined;
885
- uid?: string | undefined;
886
885
  preview_image?: string | undefined;
886
+ uid?: string | undefined;
887
887
  custom_type_id?: string | undefined;
888
888
  author_ids?: string[] | undefined;
889
889
  highlights?: {
@@ -910,8 +910,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
910
910
  tags: string[];
911
911
  last_modified_date: Date;
912
912
  summary?: string | undefined;
913
- uid?: string | undefined;
914
913
  preview_image?: string | undefined;
914
+ uid?: string | undefined;
915
915
  custom_type_id?: string | undefined;
916
916
  author_ids?: string[] | undefined;
917
917
  highlights?: {
@@ -937,8 +937,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
937
937
  tags: string[];
938
938
  last_modified_date: Date;
939
939
  summary?: string | undefined;
940
- uid?: string | undefined;
941
940
  preview_image?: string | undefined;
941
+ uid?: string | undefined;
942
942
  custom_type_id?: string | undefined;
943
943
  author_ids?: string[] | undefined;
944
944
  highlights?: {
@@ -967,8 +967,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
967
967
  tags: string[];
968
968
  last_modified_date: Date;
969
969
  summary?: string | undefined;
970
- uid?: string | undefined;
971
970
  preview_image?: string | undefined;
971
+ uid?: string | undefined;
972
972
  custom_type_id?: string | undefined;
973
973
  author_ids?: string[] | undefined;
974
974
  highlights?: {
@@ -993,8 +993,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
993
993
  tags: string[];
994
994
  last_modified_date: Date;
995
995
  summary?: string | undefined;
996
- uid?: string | undefined;
997
996
  preview_image?: string | undefined;
997
+ uid?: string | undefined;
998
998
  custom_type_id?: string | undefined;
999
999
  author_ids?: string[] | undefined;
1000
1000
  highlights?: {
@@ -1025,8 +1025,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
1025
1025
  tags: string[];
1026
1026
  last_modified_date: Date;
1027
1027
  summary?: string | undefined;
1028
- uid?: string | undefined;
1029
1028
  preview_image?: string | undefined;
1029
+ uid?: string | undefined;
1030
1030
  custom_type_id?: string | undefined;
1031
1031
  author_ids?: string[] | undefined;
1032
1032
  highlights?: {
@@ -1053,8 +1053,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
1053
1053
  tags: string[];
1054
1054
  last_modified_date: Date;
1055
1055
  summary?: string | undefined;
1056
- uid?: string | undefined;
1057
1056
  preview_image?: string | undefined;
1057
+ uid?: string | undefined;
1058
1058
  custom_type_id?: string | undefined;
1059
1059
  author_ids?: string[] | undefined;
1060
1060
  highlights?: {
@@ -1389,7 +1389,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
1389
1389
  label?: string | null | undefined;
1390
1390
  direction?: string | null | undefined;
1391
1391
  }) | ({
1392
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
1392
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
1393
1393
  content: {
1394
1394
  text: string;
1395
1395
  } & {
@@ -1442,7 +1442,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
1442
1442
  } | {
1443
1443
  start: number;
1444
1444
  end: number;
1445
- type: "em" | "strong" | "list-item";
1445
+ type: "strong" | "em" | "list-item";
1446
1446
  })[] | undefined;
1447
1447
  };
1448
1448
  } & {
@@ -1550,7 +1550,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
1550
1550
  label?: string | null | undefined;
1551
1551
  direction?: string | null | undefined;
1552
1552
  }) | ({
1553
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
1553
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
1554
1554
  content: {
1555
1555
  text: string;
1556
1556
  } & {
@@ -1603,7 +1603,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
1603
1603
  } | {
1604
1604
  start: number;
1605
1605
  end: number;
1606
- type: "em" | "strong" | "list-item";
1606
+ type: "strong" | "em" | "list-item";
1607
1607
  })[] | undefined;
1608
1608
  };
1609
1609
  } & {
@@ -1984,7 +1984,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
1984
1984
  label?: string | null | undefined;
1985
1985
  direction?: string | null | undefined;
1986
1986
  }) | ({
1987
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
1987
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
1988
1988
  content: {
1989
1989
  text: string;
1990
1990
  } & {
@@ -2037,7 +2037,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
2037
2037
  } | {
2038
2038
  start: number;
2039
2039
  end: number;
2040
- type: "em" | "strong" | "list-item";
2040
+ type: "strong" | "em" | "list-item";
2041
2041
  })[] | undefined;
2042
2042
  };
2043
2043
  } & {
@@ -2145,7 +2145,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
2145
2145
  label?: string | null | undefined;
2146
2146
  direction?: string | null | undefined;
2147
2147
  }) | ({
2148
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
2148
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
2149
2149
  content: {
2150
2150
  text: string;
2151
2151
  } & {
@@ -2198,7 +2198,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
2198
2198
  } | {
2199
2199
  start: number;
2200
2200
  end: number;
2201
- type: "em" | "strong" | "list-item";
2201
+ type: "strong" | "em" | "list-item";
2202
2202
  })[] | undefined;
2203
2203
  };
2204
2204
  } & {
@@ -2571,7 +2571,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
2571
2571
  label?: string | null | undefined;
2572
2572
  direction?: string | null | undefined;
2573
2573
  }) | ({
2574
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
2574
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
2575
2575
  content: {
2576
2576
  text: string;
2577
2577
  } & {
@@ -2624,7 +2624,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
2624
2624
  } | {
2625
2625
  start: number;
2626
2626
  end: number;
2627
- type: "em" | "strong" | "list-item";
2627
+ type: "strong" | "em" | "list-item";
2628
2628
  })[] | undefined;
2629
2629
  };
2630
2630
  } & {
@@ -2729,7 +2729,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
2729
2729
  label?: string | null | undefined;
2730
2730
  direction?: string | null | undefined;
2731
2731
  }) | ({
2732
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
2732
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
2733
2733
  content: {
2734
2734
  text: string;
2735
2735
  } & {
@@ -2782,7 +2782,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
2782
2782
  } | {
2783
2783
  start: number;
2784
2784
  end: number;
2785
- type: "em" | "strong" | "list-item";
2785
+ type: "strong" | "em" | "list-item";
2786
2786
  })[] | undefined;
2787
2787
  };
2788
2788
  } & {
@@ -3157,7 +3157,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
3157
3157
  label?: string | null | undefined;
3158
3158
  direction?: string | null | undefined;
3159
3159
  }) | ({
3160
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
3160
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
3161
3161
  content: {
3162
3162
  text: string;
3163
3163
  } & {
@@ -3210,7 +3210,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
3210
3210
  } | {
3211
3211
  start: number;
3212
3212
  end: number;
3213
- type: "em" | "strong" | "list-item";
3213
+ type: "strong" | "em" | "list-item";
3214
3214
  })[] | undefined;
3215
3215
  };
3216
3216
  } & {
@@ -3318,7 +3318,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
3318
3318
  label?: string | null | undefined;
3319
3319
  direction?: string | null | undefined;
3320
3320
  }) | ({
3321
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
3321
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
3322
3322
  content: {
3323
3323
  text: string;
3324
3324
  } & {
@@ -3371,7 +3371,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
3371
3371
  } | {
3372
3372
  start: number;
3373
3373
  end: number;
3374
- type: "em" | "strong" | "list-item";
3374
+ type: "strong" | "em" | "list-item";
3375
3375
  })[] | undefined;
3376
3376
  };
3377
3377
  } & {
@@ -3744,7 +3744,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
3744
3744
  label?: string | null | undefined;
3745
3745
  direction?: string | null | undefined;
3746
3746
  }) | ({
3747
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
3747
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
3748
3748
  content: {
3749
3749
  text: string;
3750
3750
  } & {
@@ -3797,7 +3797,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
3797
3797
  } | {
3798
3798
  start: number;
3799
3799
  end: number;
3800
- type: "em" | "strong" | "list-item";
3800
+ type: "strong" | "em" | "list-item";
3801
3801
  })[] | undefined;
3802
3802
  };
3803
3803
  } & {
@@ -3902,7 +3902,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
3902
3902
  label?: string | null | undefined;
3903
3903
  direction?: string | null | undefined;
3904
3904
  }) | ({
3905
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
3905
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
3906
3906
  content: {
3907
3907
  text: string;
3908
3908
  } & {
@@ -3955,7 +3955,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
3955
3955
  } | {
3956
3956
  start: number;
3957
3957
  end: number;
3958
- type: "em" | "strong" | "list-item";
3958
+ type: "strong" | "em" | "list-item";
3959
3959
  })[] | undefined;
3960
3960
  };
3961
3961
  } & {
@@ -4326,7 +4326,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
4326
4326
  label?: string | null | undefined;
4327
4327
  direction?: string | null | undefined;
4328
4328
  }) | ({
4329
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
4329
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
4330
4330
  content: {
4331
4331
  text: string;
4332
4332
  } & {
@@ -4379,7 +4379,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
4379
4379
  } | {
4380
4380
  start: number;
4381
4381
  end: number;
4382
- type: "em" | "strong" | "list-item";
4382
+ type: "strong" | "em" | "list-item";
4383
4383
  })[] | undefined;
4384
4384
  };
4385
4385
  } & {
@@ -4487,7 +4487,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
4487
4487
  label?: string | null | undefined;
4488
4488
  direction?: string | null | undefined;
4489
4489
  }) | ({
4490
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
4490
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
4491
4491
  content: {
4492
4492
  text: string;
4493
4493
  } & {
@@ -4540,7 +4540,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
4540
4540
  } | {
4541
4541
  start: number;
4542
4542
  end: number;
4543
- type: "em" | "strong" | "list-item";
4543
+ type: "strong" | "em" | "list-item";
4544
4544
  })[] | undefined;
4545
4545
  };
4546
4546
  } & {
@@ -4920,7 +4920,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
4920
4920
  label?: string | null | undefined;
4921
4921
  direction?: string | null | undefined;
4922
4922
  }) | ({
4923
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
4923
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
4924
4924
  content: {
4925
4925
  text: string;
4926
4926
  } & {
@@ -4973,7 +4973,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
4973
4973
  } | {
4974
4974
  start: number;
4975
4975
  end: number;
4976
- type: "em" | "strong" | "list-item";
4976
+ type: "strong" | "em" | "list-item";
4977
4977
  })[] | undefined;
4978
4978
  };
4979
4979
  } & {
@@ -5081,7 +5081,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
5081
5081
  label?: string | null | undefined;
5082
5082
  direction?: string | null | undefined;
5083
5083
  }) | ({
5084
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
5084
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
5085
5085
  content: {
5086
5086
  text: string;
5087
5087
  } & {
@@ -5134,7 +5134,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
5134
5134
  } | {
5135
5135
  start: number;
5136
5136
  end: number;
5137
- type: "em" | "strong" | "list-item";
5137
+ type: "strong" | "em" | "list-item";
5138
5138
  })[] | undefined;
5139
5139
  };
5140
5140
  } & {
@@ -5507,7 +5507,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
5507
5507
  label?: string | null | undefined;
5508
5508
  direction?: string | null | undefined;
5509
5509
  }) | ({
5510
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
5510
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
5511
5511
  content: {
5512
5512
  text: string;
5513
5513
  } & {
@@ -5560,7 +5560,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
5560
5560
  } | {
5561
5561
  start: number;
5562
5562
  end: number;
5563
- type: "em" | "strong" | "list-item";
5563
+ type: "strong" | "em" | "list-item";
5564
5564
  })[] | undefined;
5565
5565
  };
5566
5566
  } & {
@@ -5668,7 +5668,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
5668
5668
  label?: string | null | undefined;
5669
5669
  direction?: string | null | undefined;
5670
5670
  }) | ({
5671
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
5671
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
5672
5672
  content: {
5673
5673
  text: string;
5674
5674
  } & {
@@ -5721,7 +5721,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
5721
5721
  } | {
5722
5722
  start: number;
5723
5723
  end: number;
5724
- type: "em" | "strong" | "list-item";
5724
+ type: "strong" | "em" | "list-item";
5725
5725
  })[] | undefined;
5726
5726
  };
5727
5727
  } & {
@@ -6096,7 +6096,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
6096
6096
  label?: string | null | undefined;
6097
6097
  direction?: string | null | undefined;
6098
6098
  }) | ({
6099
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
6099
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
6100
6100
  content: {
6101
6101
  text: string;
6102
6102
  } & {
@@ -6149,7 +6149,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
6149
6149
  } | {
6150
6150
  start: number;
6151
6151
  end: number;
6152
- type: "em" | "strong" | "list-item";
6152
+ type: "strong" | "em" | "list-item";
6153
6153
  })[] | undefined;
6154
6154
  };
6155
6155
  } & {
@@ -6257,7 +6257,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
6257
6257
  label?: string | null | undefined;
6258
6258
  direction?: string | null | undefined;
6259
6259
  }) | ({
6260
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
6260
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
6261
6261
  content: {
6262
6262
  text: string;
6263
6263
  } & {
@@ -6310,7 +6310,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
6310
6310
  } | {
6311
6311
  start: number;
6312
6312
  end: number;
6313
- type: "em" | "strong" | "list-item";
6313
+ type: "strong" | "em" | "list-item";
6314
6314
  })[] | undefined;
6315
6315
  };
6316
6316
  } & {
@@ -6683,7 +6683,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
6683
6683
  label?: string | null | undefined;
6684
6684
  direction?: string | null | undefined;
6685
6685
  }) | ({
6686
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
6686
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
6687
6687
  content: {
6688
6688
  text: string;
6689
6689
  } & {
@@ -6736,7 +6736,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
6736
6736
  } | {
6737
6737
  start: number;
6738
6738
  end: number;
6739
- type: "em" | "strong" | "list-item";
6739
+ type: "strong" | "em" | "list-item";
6740
6740
  })[] | undefined;
6741
6741
  };
6742
6742
  } & {
@@ -6844,7 +6844,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
6844
6844
  label?: string | null | undefined;
6845
6845
  direction?: string | null | undefined;
6846
6846
  }) | ({
6847
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
6847
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
6848
6848
  content: {
6849
6849
  text: string;
6850
6850
  } & {
@@ -6897,7 +6897,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
6897
6897
  } | {
6898
6898
  start: number;
6899
6899
  end: number;
6900
- type: "em" | "strong" | "list-item";
6900
+ type: "strong" | "em" | "list-item";
6901
6901
  })[] | undefined;
6902
6902
  };
6903
6903
  } & {
@@ -7268,7 +7268,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
7268
7268
  label?: string | null | undefined;
7269
7269
  direction?: string | null | undefined;
7270
7270
  }) | ({
7271
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
7271
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
7272
7272
  content: {
7273
7273
  text: string;
7274
7274
  } & {
@@ -7321,7 +7321,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
7321
7321
  } | {
7322
7322
  start: number;
7323
7323
  end: number;
7324
- type: "em" | "strong" | "list-item";
7324
+ type: "strong" | "em" | "list-item";
7325
7325
  })[] | undefined;
7326
7326
  };
7327
7327
  } & {
@@ -7429,7 +7429,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
7429
7429
  label?: string | null | undefined;
7430
7430
  direction?: string | null | undefined;
7431
7431
  }) | ({
7432
- type: "image" | "paragraph" | "embed" | "em" | "strong" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
7432
+ type: "image" | "embed" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "list-item" | "o-list-item" | "rtl";
7433
7433
  content: {
7434
7434
  text: string;
7435
7435
  } & {
@@ -7482,7 +7482,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
7482
7482
  } | {
7483
7483
  start: number;
7484
7484
  end: number;
7485
- type: "em" | "strong" | "list-item";
7485
+ type: "strong" | "em" | "list-item";
7486
7486
  })[] | undefined;
7487
7487
  };
7488
7488
  } & {
@@ -7614,12 +7614,12 @@ export declare function useDocumentList(args: GetDocumentListArgs): import("@tan
7614
7614
  author: {
7615
7615
  id?: string | undefined;
7616
7616
  email?: string | undefined;
7617
- uploadedAvatar?: string | undefined;
7618
7617
  first_name?: string | undefined;
7619
7618
  last_name?: string | undefined;
7619
+ uploadedAvatar?: string | undefined;
7620
7620
  };
7621
- uid?: string | undefined;
7622
7621
  preview_image?: string | undefined;
7622
+ uid?: string | undefined;
7623
7623
  preview_summary?: string | undefined;
7624
7624
  })[];
7625
7625
  }[];
@@ -7654,12 +7654,12 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
7654
7654
  author: {
7655
7655
  id?: string | undefined;
7656
7656
  email?: string | undefined;
7657
- uploadedAvatar?: string | undefined;
7658
7657
  first_name?: string | undefined;
7659
7658
  last_name?: string | undefined;
7659
+ uploadedAvatar?: string | undefined;
7660
7660
  };
7661
- uid?: string | undefined;
7662
7661
  preview_image?: string | undefined;
7662
+ uid?: string | undefined;
7663
7663
  preview_summary?: string | undefined;
7664
7664
  })[];
7665
7665
  }[];
@@ -7693,12 +7693,12 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
7693
7693
  author: {
7694
7694
  id?: string | undefined;
7695
7695
  email?: string | undefined;
7696
- uploadedAvatar?: string | undefined;
7697
7696
  first_name?: string | undefined;
7698
7697
  last_name?: string | undefined;
7698
+ uploadedAvatar?: string | undefined;
7699
7699
  };
7700
- uid?: string | undefined;
7701
7700
  preview_image?: string | undefined;
7701
+ uid?: string | undefined;
7702
7702
  preview_summary?: string | undefined;
7703
7703
  })[];
7704
7704
  }[];
@@ -7733,12 +7733,12 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
7733
7733
  author: {
7734
7734
  id?: string | undefined;
7735
7735
  email?: string | undefined;
7736
- uploadedAvatar?: string | undefined;
7737
7736
  first_name?: string | undefined;
7738
7737
  last_name?: string | undefined;
7738
+ uploadedAvatar?: string | undefined;
7739
7739
  };
7740
- uid?: string | undefined;
7741
7740
  preview_image?: string | undefined;
7741
+ uid?: string | undefined;
7742
7742
  preview_summary?: string | undefined;
7743
7743
  })[];
7744
7744
  }[];
@@ -7774,12 +7774,12 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
7774
7774
  author: {
7775
7775
  id?: string | undefined;
7776
7776
  email?: string | undefined;
7777
- uploadedAvatar?: string | undefined;
7778
7777
  first_name?: string | undefined;
7779
7778
  last_name?: string | undefined;
7779
+ uploadedAvatar?: string | undefined;
7780
7780
  };
7781
- uid?: string | undefined;
7782
7781
  preview_image?: string | undefined;
7782
+ uid?: string | undefined;
7783
7783
  preview_summary?: string | undefined;
7784
7784
  })[];
7785
7785
  }[];