@prismicio/editor-fields 0.4.73 → 0.4.75-alpha.support-new-cr-model.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 (46) hide show
  1. package/dist/core/APIExplorer/components/APIExplorerContext.d.ts +6 -6
  2. package/dist/core/APIExplorer/components/Request/components/RequestFormSelect.d.ts +1 -1
  3. package/dist/core/APIExplorer/components/Request/createRequest.d.ts +6 -7
  4. package/dist/core/APIExplorer/constants.d.ts +1 -0
  5. package/dist/core/APIExplorer/hooks/useRepositoryCustomTypes.d.ts +1 -1
  6. package/dist/core/APIExplorer/utils.d.ts +3 -0
  7. package/dist/core/MediaLibrary/hooks/mediaLibraryData.d.ts +102 -102
  8. package/dist/core/MediaLibrary/hooks/tagData.d.ts +3 -3
  9. package/dist/core/MediaLibrary/hooks/useMediaLibraryUpload.d.ts +10 -10
  10. package/dist/core/MediaLibrary/hooks/useSelectedMedia.d.ts +10 -10
  11. package/dist/core/UnsplashLibrary/unsplashData.d.ts +18 -18
  12. package/dist/core/document.d.ts +1 -1
  13. package/dist/core/service/customType.d.ts +141 -20
  14. package/dist/core/service/document.d.ts +178 -178
  15. package/dist/core/service/documentSearch.d.ts +55 -55
  16. package/dist/core/service/repository.d.ts +12 -12
  17. package/dist/fields/ImageField/useImageField.d.ts +10 -10
  18. package/dist/fields/ImageField/useImageFieldImageUpload.d.ts +10 -10
  19. package/dist/fields/IntegrationField/integrationData.d.ts +5 -5
  20. package/dist/fields/LinkField/Documents/documentsData.d.ts +18 -18
  21. package/dist/fields/LinkField/LinkField.d.ts +1 -1
  22. package/dist/fields/RichTextField/coreExtensions/ListItem.d.ts +2 -2
  23. package/dist/fields/RichTextField/extensions/Image/useImageView.d.ts +10 -10
  24. package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/TableHandlesPlugin.d.ts +8 -0
  25. package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/events.d.ts +19 -0
  26. package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/index.d.ts +1 -0
  27. package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/TableHandles/utils.d.ts +23 -0
  28. package/dist/fields/RichTextField/extensions/Table/TableCell/plugins/index.d.ts +1 -0
  29. package/dist/fields/RichTextField/extensions/Table/TableCell/utils.d.ts +1 -0
  30. package/dist/fields/RichTextField/extensions/Table/TableControlsWrapper.d.ts +3 -0
  31. package/dist/fields/RichTextField/extensions/Table/TableView.d.ts +5 -8
  32. package/dist/fields/RichTextField/extensions/Table/menus/PassthroughTrigger.d.ts +12 -0
  33. package/dist/fields/RichTextField/extensions/Table/menus/TableColumnMenu.d.ts +6 -4
  34. package/dist/fields/RichTextField/extensions/Table/menus/TableRowMenu.d.ts +6 -4
  35. package/dist/fields/RichTextField/extensions/Table/plugins/TableHandles/TableHandlesPluginDef.d.ts +8 -0
  36. package/dist/fields/RichTextField/extensions/Table/plugins/TableHandles/TableHandlesPluginView.d.ts +34 -0
  37. package/dist/fields/RichTextField/extensions/Table/plugins/TableHandles/TableHandlesPluginViewClass.d.ts +34 -0
  38. package/dist/index.cjs.js +50 -61
  39. package/dist/index.d.ts +1 -1
  40. package/dist/index.es.js +15781 -15626
  41. package/dist/slices/utils.d.ts +2 -2
  42. package/package.json +5 -5
  43. /package/dist/fields/RichTextField/extensions/Table/{plugins/tableHandles/tableHandlesPluginView.d.ts → TableCell/plugins/TableHandles/TableHandlesPluginView.d.ts} +0 -0
  44. /package/dist/fields/RichTextField/extensions/Table/plugins/{tableHandles/tableHandlesPlugin.d.ts → TableHandles/TableHandlesPlugin.d.ts} +0 -0
  45. /package/dist/fields/RichTextField/extensions/Table/plugins/{tableHandles → TableHandles}/index.d.ts +0 -0
  46. /package/dist/fields/RichTextField/extensions/Table/plugins/{tableHandles → TableHandles}/utils.d.ts +0 -0
@@ -20,15 +20,15 @@ interface SearchDocumentsArgs {
20
20
  }
21
21
  export declare function searchDocuments(args: SearchDocumentsArgs): Promise<{
22
22
  results: {
23
- title: string;
24
23
  id: string;
24
+ title: string;
25
+ custom_type_id: string;
26
+ group_lang_id: string;
25
27
  language: {
26
28
  isMaster?: boolean | undefined;
27
29
  id: string;
28
30
  label: string;
29
31
  };
30
- custom_type_id: string;
31
- group_lang_id: string;
32
32
  versions: (({
33
33
  status: "unclassified";
34
34
  } | {
@@ -39,26 +39,26 @@ export declare function searchDocuments(args: SearchDocumentsArgs): Promise<{
39
39
  } | {
40
40
  status: "archived";
41
41
  }) & {
42
- version_id: string;
43
42
  tags: string[];
43
+ version_id: string;
44
44
  last_modified_date: Date;
45
45
  custom_type_label: string;
46
46
  author: {
47
- email?: string | undefined;
48
47
  id?: string | undefined;
49
48
  first_name?: string | undefined;
50
49
  last_name?: string | undefined;
50
+ email?: string | undefined;
51
51
  uploadedAvatar?: string | undefined;
52
52
  };
53
- uid?: string | undefined;
54
53
  preview_image?: string | undefined;
54
+ uid?: string | undefined;
55
55
  preview_summary?: string | undefined;
56
56
  })[];
57
57
  }[];
58
58
  } | {
59
59
  results: {
60
- title: string;
61
60
  id: string;
61
+ title: string;
62
62
  custom_type_id: string;
63
63
  group_lang_id: string;
64
64
  locale_id?: string | undefined;
@@ -72,13 +72,13 @@ export declare function searchDocuments(args: SearchDocumentsArgs): Promise<{
72
72
  } | {
73
73
  status: "archived";
74
74
  }) & {
75
- version_id: string;
76
75
  tags: string[];
76
+ version_id: string;
77
77
  last_modified_date: Date;
78
- summary?: string | undefined;
79
- uid?: string | undefined;
80
- preview_image?: string | undefined;
81
78
  custom_type_id?: string | undefined;
79
+ preview_image?: string | undefined;
80
+ uid?: string | undefined;
81
+ summary?: string | undefined;
82
82
  author_ids?: string[] | undefined;
83
83
  highlights?: {
84
84
  uid?: string | undefined;
@@ -101,15 +101,15 @@ interface SearchDocumentsQueryOptionsArgs {
101
101
  }
102
102
  export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOptionsArgs): import("@tanstack/react-query/build/legacy/types").UseQueryOptions<{
103
103
  results: {
104
- title: string;
105
104
  id: string;
105
+ title: string;
106
+ custom_type_id: string;
107
+ group_lang_id: string;
106
108
  language: {
107
109
  isMaster?: boolean | undefined;
108
110
  id: string;
109
111
  label: string;
110
112
  };
111
- custom_type_id: string;
112
- group_lang_id: string;
113
113
  versions: (({
114
114
  status: "unclassified";
115
115
  } | {
@@ -120,26 +120,26 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
120
120
  } | {
121
121
  status: "archived";
122
122
  }) & {
123
- version_id: string;
124
123
  tags: string[];
124
+ version_id: string;
125
125
  last_modified_date: Date;
126
126
  custom_type_label: string;
127
127
  author: {
128
- email?: string | undefined;
129
128
  id?: string | undefined;
130
129
  first_name?: string | undefined;
131
130
  last_name?: string | undefined;
131
+ email?: string | undefined;
132
132
  uploadedAvatar?: string | undefined;
133
133
  };
134
- uid?: string | undefined;
135
134
  preview_image?: string | undefined;
135
+ uid?: string | undefined;
136
136
  preview_summary?: string | undefined;
137
137
  })[];
138
138
  }[];
139
139
  } | {
140
140
  results: {
141
- title: string;
142
141
  id: string;
142
+ title: string;
143
143
  custom_type_id: string;
144
144
  group_lang_id: string;
145
145
  locale_id?: string | undefined;
@@ -153,13 +153,13 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
153
153
  } | {
154
154
  status: "archived";
155
155
  }) & {
156
- version_id: string;
157
156
  tags: string[];
157
+ version_id: string;
158
158
  last_modified_date: Date;
159
- summary?: string | undefined;
160
- uid?: string | undefined;
161
- preview_image?: string | undefined;
162
159
  custom_type_id?: string | undefined;
160
+ preview_image?: string | undefined;
161
+ uid?: string | undefined;
162
+ summary?: string | undefined;
163
163
  author_ids?: string[] | undefined;
164
164
  highlights?: {
165
165
  uid?: string | undefined;
@@ -168,15 +168,15 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
168
168
  }[];
169
169
  }, Error, {
170
170
  results: {
171
- title: string;
172
171
  id: string;
172
+ title: string;
173
+ custom_type_id: string;
174
+ group_lang_id: string;
173
175
  language: {
174
176
  isMaster?: boolean | undefined;
175
177
  id: string;
176
178
  label: string;
177
179
  };
178
- custom_type_id: string;
179
- group_lang_id: string;
180
180
  versions: (({
181
181
  status: "unclassified";
182
182
  } | {
@@ -187,26 +187,26 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
187
187
  } | {
188
188
  status: "archived";
189
189
  }) & {
190
- version_id: string;
191
190
  tags: string[];
191
+ version_id: string;
192
192
  last_modified_date: Date;
193
193
  custom_type_label: string;
194
194
  author: {
195
- email?: string | undefined;
196
195
  id?: string | undefined;
197
196
  first_name?: string | undefined;
198
197
  last_name?: string | undefined;
198
+ email?: string | undefined;
199
199
  uploadedAvatar?: string | undefined;
200
200
  };
201
- uid?: string | undefined;
202
201
  preview_image?: string | undefined;
202
+ uid?: string | undefined;
203
203
  preview_summary?: string | undefined;
204
204
  })[];
205
205
  }[];
206
206
  } | {
207
207
  results: {
208
- title: string;
209
208
  id: string;
209
+ title: string;
210
210
  custom_type_id: string;
211
211
  group_lang_id: string;
212
212
  locale_id?: string | undefined;
@@ -220,13 +220,13 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
220
220
  } | {
221
221
  status: "archived";
222
222
  }) & {
223
- version_id: string;
224
223
  tags: string[];
224
+ version_id: string;
225
225
  last_modified_date: Date;
226
- summary?: string | undefined;
227
- uid?: string | undefined;
228
- preview_image?: string | undefined;
229
226
  custom_type_id?: string | undefined;
227
+ preview_image?: string | undefined;
228
+ uid?: string | undefined;
229
+ summary?: string | undefined;
230
230
  author_ids?: string[] | undefined;
231
231
  highlights?: {
232
232
  uid?: string | undefined;
@@ -251,15 +251,15 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
251
251
  }]> & {
252
252
  initialData?: import("@tanstack/query-core/build/legacy/hydration-DTVzC0E7").L<{
253
253
  results: {
254
- title: string;
255
254
  id: string;
255
+ title: string;
256
+ custom_type_id: string;
257
+ group_lang_id: string;
256
258
  language: {
257
259
  isMaster?: boolean | undefined;
258
260
  id: string;
259
261
  label: string;
260
262
  };
261
- custom_type_id: string;
262
- group_lang_id: string;
263
263
  versions: (({
264
264
  status: "unclassified";
265
265
  } | {
@@ -270,26 +270,26 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
270
270
  } | {
271
271
  status: "archived";
272
272
  }) & {
273
- version_id: string;
274
273
  tags: string[];
274
+ version_id: string;
275
275
  last_modified_date: Date;
276
276
  custom_type_label: string;
277
277
  author: {
278
- email?: string | undefined;
279
278
  id?: string | undefined;
280
279
  first_name?: string | undefined;
281
280
  last_name?: string | undefined;
281
+ email?: string | undefined;
282
282
  uploadedAvatar?: string | undefined;
283
283
  };
284
- uid?: string | undefined;
285
284
  preview_image?: string | undefined;
285
+ uid?: string | undefined;
286
286
  preview_summary?: string | undefined;
287
287
  })[];
288
288
  }[];
289
289
  } | {
290
290
  results: {
291
- title: string;
292
291
  id: string;
292
+ title: string;
293
293
  custom_type_id: string;
294
294
  group_lang_id: string;
295
295
  locale_id?: string | undefined;
@@ -303,13 +303,13 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
303
303
  } | {
304
304
  status: "archived";
305
305
  }) & {
306
- version_id: string;
307
306
  tags: string[];
307
+ version_id: string;
308
308
  last_modified_date: Date;
309
- summary?: string | undefined;
310
- uid?: string | undefined;
311
- preview_image?: string | undefined;
312
309
  custom_type_id?: string | undefined;
310
+ preview_image?: string | undefined;
311
+ uid?: string | undefined;
312
+ summary?: string | undefined;
313
313
  author_ids?: string[] | undefined;
314
314
  highlights?: {
315
315
  uid?: string | undefined;
@@ -335,15 +335,15 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
335
335
  } | undefined;
336
336
  }], {
337
337
  results: {
338
- title: string;
339
338
  id: string;
339
+ title: string;
340
+ custom_type_id: string;
341
+ group_lang_id: string;
340
342
  language: {
341
343
  isMaster?: boolean | undefined;
342
344
  id: string;
343
345
  label: string;
344
346
  };
345
- custom_type_id: string;
346
- group_lang_id: string;
347
347
  versions: (({
348
348
  status: "unclassified";
349
349
  } | {
@@ -354,26 +354,26 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
354
354
  } | {
355
355
  status: "archived";
356
356
  }) & {
357
- version_id: string;
358
357
  tags: string[];
358
+ version_id: string;
359
359
  last_modified_date: Date;
360
360
  custom_type_label: string;
361
361
  author: {
362
- email?: string | undefined;
363
362
  id?: string | undefined;
364
363
  first_name?: string | undefined;
365
364
  last_name?: string | undefined;
365
+ email?: string | undefined;
366
366
  uploadedAvatar?: string | undefined;
367
367
  };
368
- uid?: string | undefined;
369
368
  preview_image?: string | undefined;
369
+ uid?: string | undefined;
370
370
  preview_summary?: string | undefined;
371
371
  })[];
372
372
  }[];
373
373
  } | {
374
374
  results: {
375
- title: string;
376
375
  id: string;
376
+ title: string;
377
377
  custom_type_id: string;
378
378
  group_lang_id: string;
379
379
  locale_id?: string | undefined;
@@ -387,13 +387,13 @@ export declare function searchDocumentsQueryOptions(args: SearchDocumentsQueryOp
387
387
  } | {
388
388
  status: "archived";
389
389
  }) & {
390
- version_id: string;
391
390
  tags: string[];
391
+ version_id: string;
392
392
  last_modified_date: Date;
393
- summary?: string | undefined;
394
- uid?: string | undefined;
395
- preview_image?: string | undefined;
396
393
  custom_type_id?: string | undefined;
394
+ preview_image?: string | undefined;
395
+ uid?: string | undefined;
396
+ summary?: string | undefined;
397
397
  author_ids?: string[] | undefined;
398
398
  highlights?: {
399
399
  uid?: string | undefined;
@@ -7,14 +7,14 @@ declare const repositoryAuthor: z.ZodObject<{
7
7
  email: z.ZodString;
8
8
  uploadedAvatar: z.ZodOptional<z.ZodString>;
9
9
  }, "strip", z.ZodTypeAny, {
10
- email: string;
11
10
  id: string;
11
+ email: string;
12
12
  uploadedAvatar?: string | undefined;
13
13
  firstname?: string | undefined;
14
14
  lastname?: string | undefined;
15
15
  }, {
16
- email: string;
17
16
  id: string;
17
+ email: string;
18
18
  uploadedAvatar?: string | undefined;
19
19
  firstname?: string | undefined;
20
20
  lastname?: string | undefined;
@@ -68,14 +68,14 @@ declare const repositorySchema: z.ZodEffects<z.ZodObject<{
68
68
  email: z.ZodString;
69
69
  uploadedAvatar: z.ZodOptional<z.ZodString>;
70
70
  }, "strip", z.ZodTypeAny, {
71
- email: string;
72
71
  id: string;
72
+ email: string;
73
73
  uploadedAvatar?: string | undefined;
74
74
  firstname?: string | undefined;
75
75
  lastname?: string | undefined;
76
76
  }, {
77
- email: string;
78
77
  id: string;
78
+ email: string;
79
79
  uploadedAvatar?: string | undefined;
80
80
  firstname?: string | undefined;
81
81
  lastname?: string | undefined;
@@ -102,8 +102,8 @@ declare const repositorySchema: z.ZodEffects<z.ZodObject<{
102
102
  uploadedAvatar: z.ZodOptional<z.ZodString>;
103
103
  }, "strip", z.ZodTypeAny, {
104
104
  authors: {
105
- email: string;
106
105
  id: string;
106
+ email: string;
107
107
  uploadedAvatar?: string | undefined;
108
108
  firstname?: string | undefined;
109
109
  lastname?: string | undefined;
@@ -136,8 +136,8 @@ declare const repositorySchema: z.ZodEffects<z.ZodObject<{
136
136
  };
137
137
  uploadedAvatar?: string | undefined;
138
138
  authors?: {
139
- email: string;
140
139
  id: string;
140
+ email: string;
141
141
  uploadedAvatar?: string | undefined;
142
142
  firstname?: string | undefined;
143
143
  lastname?: string | undefined;
@@ -153,8 +153,8 @@ declare const repositorySchema: z.ZodEffects<z.ZodObject<{
153
153
  simulatorUrl: string | undefined;
154
154
  isSupportedFramework: boolean;
155
155
  authors: {
156
- email: string;
157
156
  id: string;
157
+ email: string;
158
158
  uploadedAvatar?: string | undefined;
159
159
  firstname?: string | undefined;
160
160
  lastname?: string | undefined;
@@ -185,8 +185,8 @@ declare const repositorySchema: z.ZodEffects<z.ZodObject<{
185
185
  };
186
186
  uploadedAvatar?: string | undefined;
187
187
  authors?: {
188
- email: string;
189
188
  id: string;
189
+ email: string;
190
190
  uploadedAvatar?: string | undefined;
191
191
  firstname?: string | undefined;
192
192
  lastname?: string | undefined;
@@ -280,14 +280,14 @@ export declare const repositorySchemaV2: z.ZodObject<{
280
280
  email: z.ZodString;
281
281
  uploadedAvatar: z.ZodOptional<z.ZodString>;
282
282
  }, "strip", z.ZodTypeAny, {
283
- email: string;
284
283
  id: string;
284
+ email: string;
285
285
  uploadedAvatar?: string | undefined;
286
286
  firstname?: string | undefined;
287
287
  lastname?: string | undefined;
288
288
  }, {
289
- email: string;
290
289
  id: string;
290
+ email: string;
291
291
  uploadedAvatar?: string | undefined;
292
292
  firstname?: string | undefined;
293
293
  lastname?: string | undefined;
@@ -312,8 +312,8 @@ export declare const repositorySchemaV2: z.ZodObject<{
312
312
  isDismissed: boolean;
313
313
  };
314
314
  users: {
315
- email: string;
316
315
  id: string;
316
+ email: string;
317
317
  uploadedAvatar?: string | undefined;
318
318
  firstname?: string | undefined;
319
319
  lastname?: string | undefined;
@@ -338,8 +338,8 @@ export declare const repositorySchemaV2: z.ZodObject<{
338
338
  } | undefined;
339
339
  framework?: unknown;
340
340
  users?: {
341
- email: string;
342
341
  id: string;
342
+ email: string;
343
343
  uploadedAvatar?: string | undefined;
344
344
  firstname?: string | undefined;
345
345
  lastname?: string | undefined;
@@ -88,32 +88,32 @@ export declare function useImageField(props: useImageFieldProps): {
88
88
  }) | undefined;
89
89
  onClear: () => void;
90
90
  uploadImage: import("@tanstack/react-query/build/legacy/types").UseMutateFunction<{
91
- size: number;
92
91
  id: string;
93
- url: string;
94
92
  kind: string;
93
+ url: string;
94
+ size: number;
95
95
  tags: {
96
96
  id: string;
97
97
  name: string;
98
- created_at: number;
99
98
  last_modified: number;
99
+ created_at: number;
100
100
  count: number;
101
101
  uploader_id?: string | undefined;
102
102
  }[];
103
- last_modified: number;
104
103
  filename: string;
105
- notes?: string | undefined;
106
- width?: number | undefined;
104
+ last_modified: number;
107
105
  height?: number | undefined;
108
- credits?: string | undefined;
106
+ width?: number | undefined;
107
+ extension?: string | undefined;
109
108
  alt?: string | undefined;
110
109
  uploader_id?: string | undefined;
111
- extension?: string | undefined;
110
+ notes?: string | undefined;
111
+ credits?: string | undefined;
112
112
  search_highlight?: {
113
+ filename?: string | undefined;
114
+ alt?: string | undefined;
113
115
  notes?: string | undefined;
114
116
  credits?: string | undefined;
115
- alt?: string | undefined;
116
- filename?: string | undefined;
117
117
  } | undefined;
118
118
  }, Error, File, unknown>;
119
119
  isUploadingImage: boolean;
@@ -4,32 +4,32 @@ interface UseImageFieldImageUploadArgs {
4
4
  }
5
5
  export declare function useImageFieldImageUpload(args: UseImageFieldImageUploadArgs): {
6
6
  uploadImage: import("@tanstack/react-query/build/legacy/types").UseMutateFunction<{
7
- size: number;
8
7
  id: string;
9
- url: string;
10
8
  kind: string;
9
+ url: string;
10
+ size: number;
11
11
  tags: {
12
12
  id: string;
13
13
  name: string;
14
- created_at: number;
15
14
  last_modified: number;
15
+ created_at: number;
16
16
  count: number;
17
17
  uploader_id?: string | undefined;
18
18
  }[];
19
- last_modified: number;
20
19
  filename: string;
21
- notes?: string | undefined;
22
- width?: number | undefined;
20
+ last_modified: number;
23
21
  height?: number | undefined;
24
- credits?: string | undefined;
22
+ width?: number | undefined;
23
+ extension?: string | undefined;
25
24
  alt?: string | undefined;
26
25
  uploader_id?: string | undefined;
27
- extension?: string | undefined;
26
+ notes?: string | undefined;
27
+ credits?: string | undefined;
28
28
  search_highlight?: {
29
+ filename?: string | undefined;
30
+ alt?: string | undefined;
29
31
  notes?: string | undefined;
30
32
  credits?: string | undefined;
31
- alt?: string | undefined;
32
- filename?: string | undefined;
33
33
  } | undefined;
34
34
  }, Error, File, unknown>;
35
35
  isUploadingImage: boolean;
@@ -5,16 +5,16 @@ interface IntegrationCatalogSearchArgs {
5
5
  }
6
6
  export declare function useIntegrationCatalogSearch(args: IntegrationCatalogSearchArgs): {
7
7
  items: {
8
- title: string;
9
8
  id: string;
9
+ title: string;
10
10
  description?: string | undefined;
11
11
  imageURL?: string | undefined;
12
12
  }[];
13
13
  response: {
14
14
  page: number;
15
15
  items: {
16
- title: string;
17
16
  id: string;
17
+ title: string;
18
18
  description?: string | undefined;
19
19
  imageURL?: string | undefined;
20
20
  }[];
@@ -29,13 +29,13 @@ declare const integrationItem: z.ZodObject<{
29
29
  imageURL: z.ZodOptional<z.ZodString>;
30
30
  description: z.ZodOptional<z.ZodString>;
31
31
  }, "strip", z.ZodTypeAny, {
32
- title: string;
33
32
  id: string;
33
+ title: string;
34
34
  description?: string | undefined;
35
35
  imageURL?: string | undefined;
36
36
  }, {
37
- title: string;
38
37
  id: string;
38
+ title: string;
39
39
  description?: string | undefined;
40
40
  imageURL?: string | undefined;
41
41
  }>;
@@ -46,8 +46,8 @@ interface IntegrationCatalogReadArgs {
46
46
  }
47
47
  export declare function useIntegrationCatalogRead(args: IntegrationCatalogReadArgs): {
48
48
  item: {
49
- title: string;
50
49
  id: string;
50
+ title: string;
51
51
  description?: string | undefined;
52
52
  imageURL?: string | undefined;
53
53
  };
@@ -16,19 +16,19 @@ export declare function useDocuments(params: {
16
16
  } | {
17
17
  status: "archived";
18
18
  }) & {
19
- version_id: string;
20
19
  tags: string[];
20
+ version_id: string;
21
21
  last_modified_date: Date;
22
22
  custom_type_label: string;
23
23
  author: {
24
- email?: string | undefined;
25
24
  id?: string | undefined;
26
25
  first_name?: string | undefined;
27
26
  last_name?: string | undefined;
27
+ email?: string | undefined;
28
28
  uploadedAvatar?: string | undefined;
29
29
  };
30
- uid?: string | undefined;
31
30
  preview_image?: string | undefined;
31
+ uid?: string | undefined;
32
32
  preview_summary?: string | undefined;
33
33
  }) | (({
34
34
  status: "unclassified";
@@ -40,27 +40,27 @@ export declare function useDocuments(params: {
40
40
  } | {
41
41
  status: "archived";
42
42
  }) & {
43
- version_id: string;
44
43
  tags: string[];
44
+ version_id: string;
45
45
  last_modified_date: Date;
46
- summary?: string | undefined;
47
- uid?: string | undefined;
48
- preview_image?: string | undefined;
49
46
  custom_type_id?: string | undefined;
47
+ preview_image?: string | undefined;
48
+ uid?: string | undefined;
49
+ summary?: string | undefined;
50
50
  author_ids?: string[] | undefined;
51
51
  highlights?: {
52
52
  uid?: string | undefined;
53
53
  } | undefined;
54
54
  }))[];
55
- title: string;
56
55
  id: string;
56
+ title: string;
57
+ custom_type_id: string;
58
+ group_lang_id: string;
57
59
  language: {
58
60
  isMaster?: boolean | undefined;
59
61
  id: string;
60
62
  label: string;
61
63
  };
62
- custom_type_id: string;
63
- group_lang_id: string;
64
64
  } | {
65
65
  versions: ((({
66
66
  status: "unclassified";
@@ -72,19 +72,19 @@ export declare function useDocuments(params: {
72
72
  } | {
73
73
  status: "archived";
74
74
  }) & {
75
- version_id: string;
76
75
  tags: string[];
76
+ version_id: string;
77
77
  last_modified_date: Date;
78
78
  custom_type_label: string;
79
79
  author: {
80
- email?: string | undefined;
81
80
  id?: string | undefined;
82
81
  first_name?: string | undefined;
83
82
  last_name?: string | undefined;
83
+ email?: string | undefined;
84
84
  uploadedAvatar?: string | undefined;
85
85
  };
86
- uid?: string | undefined;
87
86
  preview_image?: string | undefined;
87
+ uid?: string | undefined;
88
88
  preview_summary?: string | undefined;
89
89
  }) | (({
90
90
  status: "unclassified";
@@ -96,20 +96,20 @@ export declare function useDocuments(params: {
96
96
  } | {
97
97
  status: "archived";
98
98
  }) & {
99
- version_id: string;
100
99
  tags: string[];
100
+ version_id: string;
101
101
  last_modified_date: Date;
102
- summary?: string | undefined;
103
- uid?: string | undefined;
104
- preview_image?: string | undefined;
105
102
  custom_type_id?: string | undefined;
103
+ preview_image?: string | undefined;
104
+ uid?: string | undefined;
105
+ summary?: string | undefined;
106
106
  author_ids?: string[] | undefined;
107
107
  highlights?: {
108
108
  uid?: string | undefined;
109
109
  } | undefined;
110
110
  }))[];
111
- title: string;
112
111
  id: string;
112
+ title: string;
113
113
  custom_type_id: string;
114
114
  group_lang_id: string;
115
115
  locale_id?: string | undefined;
@@ -16,7 +16,7 @@ interface GetFieldIconArgs {
16
16
  selectType?: FieldSelectType;
17
17
  displayTextEnabled?: boolean;
18
18
  }
19
- export declare function getFieldIcon(args: GetFieldIconArgs): "description" | "link" | "image" | "notes" | "public";
19
+ export declare function getFieldIcon(args: GetFieldIconArgs): "image" | "notes" | "description" | "public" | "link";
20
20
  interface FilledLinkFieldProps {
21
21
  id?: string;
22
22
  appearance?: LinkFieldAppearance;