@prismicio/editor-fields 0.4.64 → 0.4.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/EditorConfig.d.ts +12 -3
- package/dist/core/APIExplorer/APIExplorer.d.ts +2 -0
- package/dist/core/APIExplorer/components/APIExplorerContext.d.ts +54 -0
- package/dist/core/APIExplorer/components/APIExplorerRequest.d.ts +2 -0
- package/dist/core/APIExplorer/components/APIExplorerResponse.d.ts +2 -0
- package/dist/core/APIExplorer/components/Request/GetByTypeRequest.d.ts +1 -0
- package/dist/core/APIExplorer/components/Request/GetByUIDRequest.d.ts +1 -0
- package/dist/core/APIExplorer/components/Request/GetRepositoryRequest.d.ts +1 -0
- package/dist/core/APIExplorer/components/Request/GetRequest.d.ts +1 -0
- package/dist/core/APIExplorer/components/Request/GetSingleRequest.d.ts +1 -0
- package/dist/core/APIExplorer/components/Request/components/RequestFormInput.d.ts +4 -0
- package/dist/core/APIExplorer/components/Request/components/RequestFormInputBase.d.ts +6 -0
- package/dist/core/APIExplorer/components/Request/components/RequestFormSelect.d.ts +4 -0
- package/dist/core/APIExplorer/components/Request/components/RequestPaginationFieldset.d.ts +5 -0
- package/dist/core/APIExplorer/components/Request/components/RequestTypeFieldset.d.ts +7 -0
- package/dist/core/APIExplorer/components/Request/components/index.d.ts +3 -0
- package/dist/core/APIExplorer/components/Request/createRequest.d.ts +17 -0
- package/dist/core/APIExplorer/components/Request/index.d.ts +1 -0
- package/dist/core/APIExplorer/components/Request/types.d.ts +14 -0
- package/dist/core/APIExplorer/index.d.ts +1 -0
- package/dist/core/MediaLibrary/hooks/mediaLibraryData.d.ts +49 -49
- package/dist/core/MediaLibrary/hooks/tagData.d.ts +3 -3
- package/dist/core/MediaLibrary/hooks/useMediaLibraryUpload.d.ts +5 -5
- package/dist/core/MediaLibrary/hooks/useSelectedMedia.d.ts +5 -5
- package/dist/core/service/aiSeoMetadata.d.ts +2 -6
- package/dist/core/service/document.d.ts +89 -67
- package/dist/core/service/documentSearch.d.ts +10 -10
- package/dist/core/service/repository.d.ts +29 -21
- package/dist/core/service/role.d.ts +289 -46
- package/dist/core/service/user.d.ts +11 -7
- package/dist/fields/ImageField/useImageField.d.ts +5 -5
- package/dist/fields/ImageField/useImageFieldImageUpload.d.ts +5 -5
- package/dist/fields/LinkField/Documents/documentsData.d.ts +4 -4
- package/dist/fields/RichTextField/RichTextField.d.ts +7 -0
- package/dist/fields/RichTextField/extensions/Image/useImageView.d.ts +5 -5
- package/dist/fields/RichTextField/extensions/Table/Table.d.ts +4 -4
- package/dist/fields/RichTextField/extensions/Table/TableCell/TableCell.d.ts +10 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/TableHeaderCell.d.ts +10 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/index.d.ts +2 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/TableHandlesPlugin.d.ts +8 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/TableHandlesPluginView.d.ts +34 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/events.d.ts +19 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/index.d.ts +1 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/utils.d.ts +23 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/index.d.ts +1 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/types.d.ts +14 -0
- package/dist/fields/RichTextField/extensions/Table/TableCell/utils.d.ts +16 -0
- package/dist/fields/RichTextField/extensions/Table/TableRow.d.ts +9 -0
- package/dist/fields/RichTextField/extensions/Table/TableView.d.ts +20 -0
- package/dist/fields/RichTextField/extensions/Table/menus/TableColumnMenu.d.ts +11 -0
- package/dist/fields/RichTextField/extensions/Table/menus/TableFloatingMenus.d.ts +7 -0
- package/dist/fields/RichTextField/extensions/Table/menus/TableRowMenu.d.ts +10 -0
- package/dist/fields/RichTextField/extensions/Table/menus/TriggerAnchor.d.ts +11 -0
- package/dist/fields/RichTextField/extensions/Table/menus/index.d.ts +2 -0
- package/dist/fields/RichTextField/extensions/Table/menus/utils.d.ts +13 -0
- package/dist/fields/RichTextField/extensions/Table/utils.d.ts +14 -0
- package/dist/index.cjs.js +92 -83
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +39062 -41762
- package/dist/slices/utils.d.ts +4 -2
- package/package.json +7 -6
- package/dist/fields/RichTextField/extensions/Table/TableControlsWrapper.d.ts +0 -3
|
@@ -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<{
|
|
@@ -78,8 +78,8 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
78
78
|
uploadedAvatar?: string | undefined;
|
|
79
79
|
}>;
|
|
80
80
|
}>, "strip", z.ZodTypeAny, {
|
|
81
|
-
tags: string[];
|
|
82
81
|
version_id: string;
|
|
82
|
+
tags: string[];
|
|
83
83
|
last_modified_date: Date;
|
|
84
84
|
custom_type_label: string;
|
|
85
85
|
author: {
|
|
@@ -93,8 +93,8 @@ declare const documentVersionSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
93
93
|
uid?: string | undefined;
|
|
94
94
|
preview_summary?: string | undefined;
|
|
95
95
|
}, {
|
|
96
|
-
tags: string[];
|
|
97
96
|
version_id: string;
|
|
97
|
+
tags: string[];
|
|
98
98
|
last_modified_date: Date;
|
|
99
99
|
custom_type_label: string;
|
|
100
100
|
author: {
|
|
@@ -153,8 +153,8 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
153
153
|
uid?: string | undefined;
|
|
154
154
|
}>>;
|
|
155
155
|
}>, "strip", z.ZodTypeAny, {
|
|
156
|
-
tags: string[];
|
|
157
156
|
version_id: string;
|
|
157
|
+
tags: string[];
|
|
158
158
|
last_modified_date: Date;
|
|
159
159
|
preview_image?: string | undefined;
|
|
160
160
|
uid?: string | undefined;
|
|
@@ -165,8 +165,8 @@ declare const documentSearchVersionSchema: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
165
165
|
uid?: string | undefined;
|
|
166
166
|
} | undefined;
|
|
167
167
|
}, {
|
|
168
|
-
tags: string[];
|
|
169
168
|
version_id: string;
|
|
169
|
+
tags: string[];
|
|
170
170
|
last_modified_date: Date;
|
|
171
171
|
preview_image?: string | undefined;
|
|
172
172
|
uid?: string | undefined;
|
|
@@ -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
|
-
name: string;
|
|
193
192
|
id: string;
|
|
193
|
+
name: string;
|
|
194
194
|
is_master?: boolean | undefined;
|
|
195
195
|
}, {
|
|
196
|
-
name: string;
|
|
197
196
|
id: string;
|
|
197
|
+
name: 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
|
-
name: string;
|
|
205
204
|
id: string;
|
|
205
|
+
name: string;
|
|
206
206
|
is_master?: boolean | undefined;
|
|
207
207
|
}>;
|
|
208
208
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -261,8 +261,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
261
261
|
uploadedAvatar?: string | undefined;
|
|
262
262
|
}>;
|
|
263
263
|
}>, "strip", z.ZodTypeAny, {
|
|
264
|
-
tags: string[];
|
|
265
264
|
version_id: string;
|
|
265
|
+
tags: string[];
|
|
266
266
|
last_modified_date: Date;
|
|
267
267
|
custom_type_label: string;
|
|
268
268
|
author: {
|
|
@@ -276,8 +276,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
276
276
|
uid?: string | undefined;
|
|
277
277
|
preview_summary?: string | undefined;
|
|
278
278
|
}, {
|
|
279
|
-
tags: string[];
|
|
280
279
|
version_id: string;
|
|
280
|
+
tags: string[];
|
|
281
281
|
last_modified_date: Date;
|
|
282
282
|
custom_type_label: string;
|
|
283
283
|
author: {
|
|
@@ -311,8 +311,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
311
311
|
} | {
|
|
312
312
|
status: "archived";
|
|
313
313
|
}) & {
|
|
314
|
-
tags: string[];
|
|
315
314
|
version_id: string;
|
|
315
|
+
tags: string[];
|
|
316
316
|
last_modified_date: Date;
|
|
317
317
|
custom_type_label: string;
|
|
318
318
|
author: {
|
|
@@ -331,8 +331,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
331
331
|
custom_type_id: string;
|
|
332
332
|
group_lang_id: string;
|
|
333
333
|
language: {
|
|
334
|
-
name: string;
|
|
335
334
|
id: string;
|
|
335
|
+
name: string;
|
|
336
336
|
is_master?: boolean | undefined;
|
|
337
337
|
};
|
|
338
338
|
versions: (({
|
|
@@ -345,8 +345,8 @@ export declare const documentMetaSchema: z.ZodObject<{
|
|
|
345
345
|
} | {
|
|
346
346
|
status: "archived";
|
|
347
347
|
}) & {
|
|
348
|
-
tags: string[];
|
|
349
348
|
version_id: string;
|
|
349
|
+
tags: string[];
|
|
350
350
|
last_modified_date: Date;
|
|
351
351
|
custom_type_label: string;
|
|
352
352
|
author: {
|
|
@@ -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
|
-
name: string;
|
|
379
378
|
id: string;
|
|
379
|
+
name: string;
|
|
380
380
|
is_master?: boolean | undefined;
|
|
381
381
|
}, {
|
|
382
|
-
name: string;
|
|
383
382
|
id: string;
|
|
383
|
+
name: 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
|
-
name: string;
|
|
391
390
|
id: string;
|
|
391
|
+
name: string;
|
|
392
392
|
is_master?: boolean | undefined;
|
|
393
393
|
}>;
|
|
394
394
|
versions: z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -447,8 +447,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
447
447
|
uploadedAvatar?: string | undefined;
|
|
448
448
|
}>;
|
|
449
449
|
}>, "strip", z.ZodTypeAny, {
|
|
450
|
-
tags: string[];
|
|
451
450
|
version_id: string;
|
|
451
|
+
tags: string[];
|
|
452
452
|
last_modified_date: Date;
|
|
453
453
|
custom_type_label: string;
|
|
454
454
|
author: {
|
|
@@ -462,8 +462,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
462
462
|
uid?: string | undefined;
|
|
463
463
|
preview_summary?: string | undefined;
|
|
464
464
|
}, {
|
|
465
|
-
tags: string[];
|
|
466
465
|
version_id: string;
|
|
466
|
+
tags: string[];
|
|
467
467
|
last_modified_date: Date;
|
|
468
468
|
custom_type_label: string;
|
|
469
469
|
author: {
|
|
@@ -497,8 +497,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
497
497
|
} | {
|
|
498
498
|
status: "archived";
|
|
499
499
|
}) & {
|
|
500
|
-
tags: string[];
|
|
501
500
|
version_id: string;
|
|
501
|
+
tags: string[];
|
|
502
502
|
last_modified_date: Date;
|
|
503
503
|
custom_type_label: string;
|
|
504
504
|
author: {
|
|
@@ -517,8 +517,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
517
517
|
custom_type_id: string;
|
|
518
518
|
group_lang_id: string;
|
|
519
519
|
language: {
|
|
520
|
-
name: string;
|
|
521
520
|
id: string;
|
|
521
|
+
name: string;
|
|
522
522
|
is_master?: boolean | undefined;
|
|
523
523
|
};
|
|
524
524
|
versions: (({
|
|
@@ -531,8 +531,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
531
531
|
} | {
|
|
532
532
|
status: "archived";
|
|
533
533
|
}) & {
|
|
534
|
-
tags: string[];
|
|
535
534
|
version_id: string;
|
|
535
|
+
tags: string[];
|
|
536
536
|
last_modified_date: Date;
|
|
537
537
|
custom_type_label: string;
|
|
538
538
|
author: {
|
|
@@ -570,8 +570,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
570
570
|
} | {
|
|
571
571
|
status: "archived";
|
|
572
572
|
}) & {
|
|
573
|
-
tags: string[];
|
|
574
573
|
version_id: string;
|
|
574
|
+
tags: string[];
|
|
575
575
|
last_modified_date: Date;
|
|
576
576
|
custom_type_label: string;
|
|
577
577
|
author: {
|
|
@@ -594,8 +594,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
594
594
|
custom_type_id: string;
|
|
595
595
|
group_lang_id: string;
|
|
596
596
|
language: {
|
|
597
|
-
name: string;
|
|
598
597
|
id: string;
|
|
598
|
+
name: string;
|
|
599
599
|
is_master?: boolean | undefined;
|
|
600
600
|
};
|
|
601
601
|
versions: (({
|
|
@@ -608,8 +608,8 @@ declare const getDocumentListSchema: z.ZodObject<{
|
|
|
608
608
|
} | {
|
|
609
609
|
status: "archived";
|
|
610
610
|
}) & {
|
|
611
|
-
tags: string[];
|
|
612
611
|
version_id: string;
|
|
612
|
+
tags: string[];
|
|
613
613
|
last_modified_date: Date;
|
|
614
614
|
custom_type_label: string;
|
|
615
615
|
author: {
|
|
@@ -677,8 +677,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
677
677
|
uid?: string | undefined;
|
|
678
678
|
}>>;
|
|
679
679
|
}>, "strip", z.ZodTypeAny, {
|
|
680
|
-
tags: string[];
|
|
681
680
|
version_id: string;
|
|
681
|
+
tags: string[];
|
|
682
682
|
last_modified_date: Date;
|
|
683
683
|
preview_image?: string | undefined;
|
|
684
684
|
uid?: string | undefined;
|
|
@@ -689,8 +689,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
689
689
|
uid?: string | undefined;
|
|
690
690
|
} | undefined;
|
|
691
691
|
}, {
|
|
692
|
-
tags: string[];
|
|
693
692
|
version_id: string;
|
|
693
|
+
tags: string[];
|
|
694
694
|
last_modified_date: Date;
|
|
695
695
|
preview_image?: string | undefined;
|
|
696
696
|
uid?: string | undefined;
|
|
@@ -717,8 +717,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
717
717
|
} | {
|
|
718
718
|
status: "archived";
|
|
719
719
|
}) & {
|
|
720
|
-
tags: string[];
|
|
721
720
|
version_id: string;
|
|
721
|
+
tags: string[];
|
|
722
722
|
last_modified_date: Date;
|
|
723
723
|
preview_image?: string | undefined;
|
|
724
724
|
uid?: string | undefined;
|
|
@@ -744,8 +744,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
744
744
|
} | {
|
|
745
745
|
status: "archived";
|
|
746
746
|
}) & {
|
|
747
|
-
tags: string[];
|
|
748
747
|
version_id: string;
|
|
748
|
+
tags: string[];
|
|
749
749
|
last_modified_date: Date;
|
|
750
750
|
preview_image?: string | undefined;
|
|
751
751
|
uid?: string | undefined;
|
|
@@ -774,8 +774,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
774
774
|
} | {
|
|
775
775
|
status: "archived";
|
|
776
776
|
}) & {
|
|
777
|
-
tags: string[];
|
|
778
777
|
version_id: string;
|
|
778
|
+
tags: string[];
|
|
779
779
|
last_modified_date: Date;
|
|
780
780
|
preview_image?: string | undefined;
|
|
781
781
|
uid?: string | undefined;
|
|
@@ -800,8 +800,8 @@ declare const documentSearchDocumentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
800
800
|
} | {
|
|
801
801
|
status: "archived";
|
|
802
802
|
}) & {
|
|
803
|
-
tags: string[];
|
|
804
803
|
version_id: string;
|
|
804
|
+
tags: string[];
|
|
805
805
|
last_modified_date: Date;
|
|
806
806
|
preview_image?: string | undefined;
|
|
807
807
|
uid?: string | undefined;
|
|
@@ -866,8 +866,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
866
866
|
uid?: string | undefined;
|
|
867
867
|
}>>;
|
|
868
868
|
}>, "strip", z.ZodTypeAny, {
|
|
869
|
-
tags: string[];
|
|
870
869
|
version_id: string;
|
|
870
|
+
tags: string[];
|
|
871
871
|
last_modified_date: Date;
|
|
872
872
|
preview_image?: string | undefined;
|
|
873
873
|
uid?: string | undefined;
|
|
@@ -878,8 +878,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
878
878
|
uid?: string | undefined;
|
|
879
879
|
} | undefined;
|
|
880
880
|
}, {
|
|
881
|
-
tags: string[];
|
|
882
881
|
version_id: string;
|
|
882
|
+
tags: string[];
|
|
883
883
|
last_modified_date: Date;
|
|
884
884
|
preview_image?: string | undefined;
|
|
885
885
|
uid?: string | undefined;
|
|
@@ -906,8 +906,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
906
906
|
} | {
|
|
907
907
|
status: "archived";
|
|
908
908
|
}) & {
|
|
909
|
-
tags: string[];
|
|
910
909
|
version_id: string;
|
|
910
|
+
tags: string[];
|
|
911
911
|
last_modified_date: Date;
|
|
912
912
|
preview_image?: string | undefined;
|
|
913
913
|
uid?: string | undefined;
|
|
@@ -933,8 +933,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
933
933
|
} | {
|
|
934
934
|
status: "archived";
|
|
935
935
|
}) & {
|
|
936
|
-
tags: string[];
|
|
937
936
|
version_id: string;
|
|
937
|
+
tags: string[];
|
|
938
938
|
last_modified_date: Date;
|
|
939
939
|
preview_image?: string | undefined;
|
|
940
940
|
uid?: string | undefined;
|
|
@@ -963,8 +963,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
963
963
|
} | {
|
|
964
964
|
status: "archived";
|
|
965
965
|
}) & {
|
|
966
|
-
tags: string[];
|
|
967
966
|
version_id: string;
|
|
967
|
+
tags: string[];
|
|
968
968
|
last_modified_date: Date;
|
|
969
969
|
preview_image?: string | undefined;
|
|
970
970
|
uid?: string | undefined;
|
|
@@ -989,8 +989,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
989
989
|
} | {
|
|
990
990
|
status: "archived";
|
|
991
991
|
}) & {
|
|
992
|
-
tags: string[];
|
|
993
992
|
version_id: string;
|
|
993
|
+
tags: string[];
|
|
994
994
|
last_modified_date: Date;
|
|
995
995
|
preview_image?: string | undefined;
|
|
996
996
|
uid?: string | undefined;
|
|
@@ -1021,8 +1021,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
1021
1021
|
} | {
|
|
1022
1022
|
status: "archived";
|
|
1023
1023
|
}) & {
|
|
1024
|
-
tags: string[];
|
|
1025
1024
|
version_id: string;
|
|
1025
|
+
tags: string[];
|
|
1026
1026
|
last_modified_date: Date;
|
|
1027
1027
|
preview_image?: string | undefined;
|
|
1028
1028
|
uid?: string | undefined;
|
|
@@ -1049,8 +1049,8 @@ declare const documentsFullTextSearchAPISchemaOkType: z.ZodObject<{
|
|
|
1049
1049
|
} | {
|
|
1050
1050
|
status: "archived";
|
|
1051
1051
|
}) & {
|
|
1052
|
-
tags: string[];
|
|
1053
1052
|
version_id: string;
|
|
1053
|
+
tags: string[];
|
|
1054
1054
|
last_modified_date: Date;
|
|
1055
1055
|
preview_image?: string | undefined;
|
|
1056
1056
|
uid?: string | undefined;
|
|
@@ -1455,7 +1455,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1455
1455
|
__TYPE__: "TableContent";
|
|
1456
1456
|
content: {
|
|
1457
1457
|
type: "tableRow";
|
|
1458
|
-
content: {
|
|
1458
|
+
content: ({
|
|
1459
1459
|
type: "tableCell" | "tableHeader";
|
|
1460
1460
|
content: {
|
|
1461
1461
|
__TYPE__: "StructuredTextContent";
|
|
@@ -1611,7 +1611,9 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
1611
1611
|
direction?: string | undefined;
|
|
1612
1612
|
}))[];
|
|
1613
1613
|
};
|
|
1614
|
-
}
|
|
1614
|
+
} & {
|
|
1615
|
+
columnWidth?: number | undefined;
|
|
1616
|
+
})[];
|
|
1615
1617
|
}[];
|
|
1616
1618
|
} | {
|
|
1617
1619
|
__TYPE__: "RepeatableContent";
|
|
@@ -2050,7 +2052,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2050
2052
|
__TYPE__: "TableContent";
|
|
2051
2053
|
content: {
|
|
2052
2054
|
type: "tableRow";
|
|
2053
|
-
content: {
|
|
2055
|
+
content: ({
|
|
2054
2056
|
type: "tableCell" | "tableHeader";
|
|
2055
2057
|
content: {
|
|
2056
2058
|
__TYPE__: "StructuredTextContent";
|
|
@@ -2206,7 +2208,9 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2206
2208
|
direction?: string | undefined;
|
|
2207
2209
|
}))[];
|
|
2208
2210
|
};
|
|
2209
|
-
}
|
|
2211
|
+
} & {
|
|
2212
|
+
columnWidth?: number | undefined;
|
|
2213
|
+
})[];
|
|
2210
2214
|
}[];
|
|
2211
2215
|
} | {
|
|
2212
2216
|
__TYPE__: "RepeatableContent";
|
|
@@ -2637,7 +2641,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2637
2641
|
__TYPE__: "TableContent";
|
|
2638
2642
|
content: {
|
|
2639
2643
|
type: "tableRow";
|
|
2640
|
-
content: {
|
|
2644
|
+
content: ({
|
|
2641
2645
|
type: "tableCell" | "tableHeader";
|
|
2642
2646
|
content: {
|
|
2643
2647
|
__TYPE__: "StructuredTextContent";
|
|
@@ -2790,7 +2794,9 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
2790
2794
|
direction?: string | undefined;
|
|
2791
2795
|
}))[];
|
|
2792
2796
|
};
|
|
2793
|
-
}
|
|
2797
|
+
} & {
|
|
2798
|
+
columnWidth?: number | undefined;
|
|
2799
|
+
})[];
|
|
2794
2800
|
}[];
|
|
2795
2801
|
} | {
|
|
2796
2802
|
__TYPE__: "RepeatableContent";
|
|
@@ -3223,7 +3229,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3223
3229
|
__TYPE__: "TableContent";
|
|
3224
3230
|
content: {
|
|
3225
3231
|
type: "tableRow";
|
|
3226
|
-
content: {
|
|
3232
|
+
content: ({
|
|
3227
3233
|
type: "tableCell" | "tableHeader";
|
|
3228
3234
|
content: {
|
|
3229
3235
|
__TYPE__: "StructuredTextContent";
|
|
@@ -3379,7 +3385,9 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3379
3385
|
direction?: string | undefined;
|
|
3380
3386
|
}))[];
|
|
3381
3387
|
};
|
|
3382
|
-
}
|
|
3388
|
+
} & {
|
|
3389
|
+
columnWidth?: number | undefined;
|
|
3390
|
+
})[];
|
|
3383
3391
|
}[];
|
|
3384
3392
|
} | {
|
|
3385
3393
|
__TYPE__: "RepeatableContent";
|
|
@@ -3810,7 +3818,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3810
3818
|
__TYPE__: "TableContent";
|
|
3811
3819
|
content: {
|
|
3812
3820
|
type: "tableRow";
|
|
3813
|
-
content: {
|
|
3821
|
+
content: ({
|
|
3814
3822
|
type: "tableCell" | "tableHeader";
|
|
3815
3823
|
content: {
|
|
3816
3824
|
__TYPE__: "StructuredTextContent";
|
|
@@ -3963,7 +3971,9 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
3963
3971
|
direction?: string | undefined;
|
|
3964
3972
|
}))[];
|
|
3965
3973
|
};
|
|
3966
|
-
}
|
|
3974
|
+
} & {
|
|
3975
|
+
columnWidth?: number | undefined;
|
|
3976
|
+
})[];
|
|
3967
3977
|
}[];
|
|
3968
3978
|
} | {
|
|
3969
3979
|
__TYPE__: "RepeatableContent";
|
|
@@ -4392,7 +4402,7 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4392
4402
|
__TYPE__: "TableContent";
|
|
4393
4403
|
content: {
|
|
4394
4404
|
type: "tableRow";
|
|
4395
|
-
content: {
|
|
4405
|
+
content: ({
|
|
4396
4406
|
type: "tableCell" | "tableHeader";
|
|
4397
4407
|
content: {
|
|
4398
4408
|
__TYPE__: "StructuredTextContent";
|
|
@@ -4548,7 +4558,9 @@ export declare const documentSchema: z.ZodEffects<z.ZodType<unknown, z.ZodTypeDe
|
|
|
4548
4558
|
direction?: string | undefined;
|
|
4549
4559
|
}))[];
|
|
4550
4560
|
};
|
|
4551
|
-
}
|
|
4561
|
+
} & {
|
|
4562
|
+
columnWidth?: number | undefined;
|
|
4563
|
+
})[];
|
|
4552
4564
|
}[];
|
|
4553
4565
|
} | {
|
|
4554
4566
|
__TYPE__: "RepeatableContent";
|
|
@@ -4986,7 +4998,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
4986
4998
|
__TYPE__: "TableContent";
|
|
4987
4999
|
content: {
|
|
4988
5000
|
type: "tableRow";
|
|
4989
|
-
content: {
|
|
5001
|
+
content: ({
|
|
4990
5002
|
type: "tableCell" | "tableHeader";
|
|
4991
5003
|
content: {
|
|
4992
5004
|
__TYPE__: "StructuredTextContent";
|
|
@@ -5142,7 +5154,9 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5142
5154
|
direction?: string | undefined;
|
|
5143
5155
|
}))[];
|
|
5144
5156
|
};
|
|
5145
|
-
}
|
|
5157
|
+
} & {
|
|
5158
|
+
columnWidth?: number | undefined;
|
|
5159
|
+
})[];
|
|
5146
5160
|
}[];
|
|
5147
5161
|
} | {
|
|
5148
5162
|
__TYPE__: "RepeatableContent";
|
|
@@ -5573,7 +5587,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5573
5587
|
__TYPE__: "TableContent";
|
|
5574
5588
|
content: {
|
|
5575
5589
|
type: "tableRow";
|
|
5576
|
-
content: {
|
|
5590
|
+
content: ({
|
|
5577
5591
|
type: "tableCell" | "tableHeader";
|
|
5578
5592
|
content: {
|
|
5579
5593
|
__TYPE__: "StructuredTextContent";
|
|
@@ -5729,7 +5743,9 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
5729
5743
|
direction?: string | undefined;
|
|
5730
5744
|
}))[];
|
|
5731
5745
|
};
|
|
5732
|
-
}
|
|
5746
|
+
} & {
|
|
5747
|
+
columnWidth?: number | undefined;
|
|
5748
|
+
})[];
|
|
5733
5749
|
}[];
|
|
5734
5750
|
} | {
|
|
5735
5751
|
__TYPE__: "RepeatableContent";
|
|
@@ -6162,7 +6178,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6162
6178
|
__TYPE__: "TableContent";
|
|
6163
6179
|
content: {
|
|
6164
6180
|
type: "tableRow";
|
|
6165
|
-
content: {
|
|
6181
|
+
content: ({
|
|
6166
6182
|
type: "tableCell" | "tableHeader";
|
|
6167
6183
|
content: {
|
|
6168
6184
|
__TYPE__: "StructuredTextContent";
|
|
@@ -6318,7 +6334,9 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6318
6334
|
direction?: string | undefined;
|
|
6319
6335
|
}))[];
|
|
6320
6336
|
};
|
|
6321
|
-
}
|
|
6337
|
+
} & {
|
|
6338
|
+
columnWidth?: number | undefined;
|
|
6339
|
+
})[];
|
|
6322
6340
|
}[];
|
|
6323
6341
|
} | {
|
|
6324
6342
|
__TYPE__: "RepeatableContent";
|
|
@@ -6749,7 +6767,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6749
6767
|
__TYPE__: "TableContent";
|
|
6750
6768
|
content: {
|
|
6751
6769
|
type: "tableRow";
|
|
6752
|
-
content: {
|
|
6770
|
+
content: ({
|
|
6753
6771
|
type: "tableCell" | "tableHeader";
|
|
6754
6772
|
content: {
|
|
6755
6773
|
__TYPE__: "StructuredTextContent";
|
|
@@ -6905,7 +6923,9 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
6905
6923
|
direction?: string | undefined;
|
|
6906
6924
|
}))[];
|
|
6907
6925
|
};
|
|
6908
|
-
}
|
|
6926
|
+
} & {
|
|
6927
|
+
columnWidth?: number | undefined;
|
|
6928
|
+
})[];
|
|
6909
6929
|
}[];
|
|
6910
6930
|
} | {
|
|
6911
6931
|
__TYPE__: "RepeatableContent";
|
|
@@ -7334,7 +7354,7 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7334
7354
|
__TYPE__: "TableContent";
|
|
7335
7355
|
content: {
|
|
7336
7356
|
type: "tableRow";
|
|
7337
|
-
content: {
|
|
7357
|
+
content: ({
|
|
7338
7358
|
type: "tableCell" | "tableHeader";
|
|
7339
7359
|
content: {
|
|
7340
7360
|
__TYPE__: "StructuredTextContent";
|
|
@@ -7490,7 +7510,9 @@ export declare const sliceItemContentSchema: z.ZodEffects<z.ZodUnknown, {
|
|
|
7490
7510
|
direction?: string | undefined;
|
|
7491
7511
|
}))[];
|
|
7492
7512
|
};
|
|
7493
|
-
}
|
|
7513
|
+
} & {
|
|
7514
|
+
columnWidth?: number | undefined;
|
|
7515
|
+
})[];
|
|
7494
7516
|
}[];
|
|
7495
7517
|
} | {
|
|
7496
7518
|
__TYPE__: "RepeatableContent";
|
|
@@ -7608,8 +7630,8 @@ export declare function useDocumentList(args: GetDocumentListArgs): import("@tan
|
|
|
7608
7630
|
} | {
|
|
7609
7631
|
status: "archived";
|
|
7610
7632
|
}) & {
|
|
7611
|
-
tags: string[];
|
|
7612
7633
|
version_id: string;
|
|
7634
|
+
tags: string[];
|
|
7613
7635
|
last_modified_date: Date;
|
|
7614
7636
|
custom_type_label: string;
|
|
7615
7637
|
author: {
|
|
@@ -7648,8 +7670,8 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7648
7670
|
} | {
|
|
7649
7671
|
status: "archived";
|
|
7650
7672
|
}) & {
|
|
7651
|
-
tags: string[];
|
|
7652
7673
|
version_id: string;
|
|
7674
|
+
tags: string[];
|
|
7653
7675
|
last_modified_date: Date;
|
|
7654
7676
|
custom_type_label: string;
|
|
7655
7677
|
author: {
|
|
@@ -7687,8 +7709,8 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7687
7709
|
} | {
|
|
7688
7710
|
status: "archived";
|
|
7689
7711
|
}) & {
|
|
7690
|
-
tags: string[];
|
|
7691
7712
|
version_id: string;
|
|
7713
|
+
tags: string[];
|
|
7692
7714
|
last_modified_date: Date;
|
|
7693
7715
|
custom_type_label: string;
|
|
7694
7716
|
author: {
|
|
@@ -7727,8 +7749,8 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7727
7749
|
} | {
|
|
7728
7750
|
status: "archived";
|
|
7729
7751
|
}) & {
|
|
7730
|
-
tags: string[];
|
|
7731
7752
|
version_id: string;
|
|
7753
|
+
tags: string[];
|
|
7732
7754
|
last_modified_date: Date;
|
|
7733
7755
|
custom_type_label: string;
|
|
7734
7756
|
author: {
|
|
@@ -7768,8 +7790,8 @@ export declare function getDocumentListOptions(args: GetDocumentListArgs): impor
|
|
|
7768
7790
|
} | {
|
|
7769
7791
|
status: "archived";
|
|
7770
7792
|
}) & {
|
|
7771
|
-
tags: string[];
|
|
7772
7793
|
version_id: string;
|
|
7794
|
+
tags: string[];
|
|
7773
7795
|
last_modified_date: Date;
|
|
7774
7796
|
custom_type_label: string;
|
|
7775
7797
|
author: {
|