@tridion-sites/extensions 0.5.0 → 0.5.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.
- package/CHANGELOG.md +12 -0
- package/dist/index.d.ts +363 -363
- package/dist/index.js +1344 -1344
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -55,12 +55,12 @@ import type { UserProfile } from '@tridion-sites/models';
|
|
|
55
55
|
import type { VersionedItem } from '@tridion-sites/models';
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
|
-
* @
|
|
58
|
+
* @public
|
|
59
59
|
*/
|
|
60
60
|
export declare type ActionExtension = () => ActionExtensionConfiguration;
|
|
61
61
|
|
|
62
62
|
/**
|
|
63
|
-
* @
|
|
63
|
+
* @public
|
|
64
64
|
*/
|
|
65
65
|
export declare interface ActionExtensionConfiguration {
|
|
66
66
|
readonly id: string;
|
|
@@ -70,7 +70,7 @@ export declare interface ActionExtensionConfiguration {
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
/**
|
|
73
|
-
* @
|
|
73
|
+
* @public
|
|
74
74
|
*/
|
|
75
75
|
export declare interface ActionGroup {
|
|
76
76
|
readonly id: string;
|
|
@@ -79,12 +79,12 @@ export declare interface ActionGroup {
|
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
/**
|
|
82
|
-
* @
|
|
82
|
+
* @public
|
|
83
83
|
*/
|
|
84
84
|
export declare type ActionHook = () => ActionHookResult;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
* @
|
|
87
|
+
* @public
|
|
88
88
|
*/
|
|
89
89
|
export declare interface ActionHookResult {
|
|
90
90
|
readonly isAvailable: boolean;
|
|
@@ -92,29 +92,29 @@ export declare interface ActionHookResult {
|
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
/**
|
|
95
|
-
* @
|
|
95
|
+
* @public
|
|
96
96
|
*/
|
|
97
97
|
export declare type ActionsConfiguration = ListBuilderConfiguration<ActionGroup>;
|
|
98
98
|
|
|
99
99
|
/**
|
|
100
|
-
* @
|
|
100
|
+
* @public
|
|
101
101
|
*/
|
|
102
102
|
export declare type ActionsConfigurationExtension = ListBuilderConfigurationExtension<ActionGroup>;
|
|
103
103
|
|
|
104
104
|
/**
|
|
105
|
-
* @
|
|
105
|
+
* @public
|
|
106
106
|
*/
|
|
107
107
|
export declare class ActionsConfigurationExtensionsBuilder extends ListBuilder<ActionGroup> {
|
|
108
108
|
constructor();
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
/**
|
|
112
|
-
* @
|
|
112
|
+
* @public
|
|
113
113
|
*/
|
|
114
114
|
export declare type ActivitiesExplorerActionGroupId = ValuesOfArray<typeof activitiesExplorerActionGroupIds>;
|
|
115
115
|
|
|
116
116
|
/**
|
|
117
|
-
* @
|
|
117
|
+
* @public
|
|
118
118
|
*/
|
|
119
119
|
export declare const activitiesExplorerActionGroupId: {
|
|
120
120
|
exporting: "exporting";
|
|
@@ -123,17 +123,17 @@ export declare const activitiesExplorerActionGroupId: {
|
|
|
123
123
|
};
|
|
124
124
|
|
|
125
125
|
/**
|
|
126
|
-
* @
|
|
126
|
+
* @public
|
|
127
127
|
*/
|
|
128
128
|
export declare const activitiesExplorerActionGroupIds: readonly ["exporting", "refreshing", "workflow"];
|
|
129
129
|
|
|
130
130
|
/**
|
|
131
|
-
* @
|
|
131
|
+
* @public
|
|
132
132
|
*/
|
|
133
133
|
export declare type ActivitiesExplorerActionId = ValuesOfArray<typeof activitiesExplorerActionIds>;
|
|
134
134
|
|
|
135
135
|
/**
|
|
136
|
-
* @
|
|
136
|
+
* @public
|
|
137
137
|
*/
|
|
138
138
|
export declare const activitiesExplorerActionId: {
|
|
139
139
|
export: "export";
|
|
@@ -145,7 +145,7 @@ export declare const activitiesExplorerActionId: {
|
|
|
145
145
|
};
|
|
146
146
|
|
|
147
147
|
/**
|
|
148
|
-
* @
|
|
148
|
+
* @public
|
|
149
149
|
*/
|
|
150
150
|
export declare const activitiesExplorerActionIds: readonly ["export", "refresh", "startActivity", "finishActivity", "restartActivity", "assignActivity"];
|
|
151
151
|
|
|
@@ -157,7 +157,7 @@ export declare interface ActivitiesExplorerApiStorage {
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
/**
|
|
160
|
-
* @
|
|
160
|
+
* @public
|
|
161
161
|
*/
|
|
162
162
|
export declare interface ActivitiesExplorerExtensions {
|
|
163
163
|
actions: ReadonlyArray<ActionExtension>;
|
|
@@ -165,7 +165,7 @@ export declare interface ActivitiesExplorerExtensions {
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
/**
|
|
168
|
-
* @
|
|
168
|
+
* @public
|
|
169
169
|
*/
|
|
170
170
|
export declare class ActivitiesExplorerExtensionsBuilder {
|
|
171
171
|
private _actions;
|
|
@@ -182,29 +182,29 @@ export declare interface ActivitiesExplorerHooksApiStorage {
|
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
/**
|
|
185
|
-
* @
|
|
185
|
+
* @public
|
|
186
186
|
*/
|
|
187
187
|
export declare type ActivitiesExplorerTableColumnExtension = TableColumnExtension<ActivityInstance>;
|
|
188
188
|
|
|
189
189
|
/**
|
|
190
|
-
* @
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
export declare interface ActivitiesExplorerTableColumnExtensionComponentProps extends TableColumnExtensionComponentProps<ActivityInstance> {
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
/**
|
|
196
|
-
* @
|
|
196
|
+
* @public
|
|
197
197
|
*/
|
|
198
198
|
export declare interface ActivitiesExplorerTableColumnExtensionConfiguration extends TableColumnExtensionConfiguration<ActivityInstance> {
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
/**
|
|
202
|
-
* @
|
|
202
|
+
* @public
|
|
203
203
|
*/
|
|
204
204
|
export declare type ActivitiesExplorerTableColumnIsAvailableHook = TableColumnIsAvailableHook;
|
|
205
205
|
|
|
206
206
|
/**
|
|
207
|
-
* @
|
|
207
|
+
* @public
|
|
208
208
|
*/
|
|
209
209
|
export declare interface ActivitiesExplorerTableExtensions {
|
|
210
210
|
actions: ReadonlyArray<ActionExtension>;
|
|
@@ -214,7 +214,7 @@ export declare interface ActivitiesExplorerTableExtensions {
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
* @
|
|
217
|
+
* @public
|
|
218
218
|
*/
|
|
219
219
|
export declare class ActivitiesExplorerTableExtensionsBuilder {
|
|
220
220
|
private _actions;
|
|
@@ -227,24 +227,24 @@ export declare class ActivitiesExplorerTableExtensionsBuilder {
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
/**
|
|
230
|
-
* @
|
|
230
|
+
* @public
|
|
231
231
|
*/
|
|
232
232
|
export declare type ActivitiesExplorerTableHook = () => ActivitiesExplorerTableHookResult;
|
|
233
233
|
|
|
234
234
|
/**
|
|
235
|
-
* @
|
|
235
|
+
* @public
|
|
236
236
|
*/
|
|
237
237
|
export declare interface ActivitiesExplorerTableHookResult {
|
|
238
238
|
refresh: () => void;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
/**
|
|
242
|
-
* @
|
|
242
|
+
* @public
|
|
243
243
|
*/
|
|
244
244
|
export declare type ActivityInstancesQueryHook = (props?: ActivityInstancesQueryProps, options?: QueryOptions<ReadonlyArray<ActivityInstance> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<ActivityInstance> | undefined, ApiError>;
|
|
245
245
|
|
|
246
246
|
/**
|
|
247
|
-
* @
|
|
247
|
+
* @public
|
|
248
248
|
*/
|
|
249
249
|
export declare interface ActivityInstancesQueryProps {
|
|
250
250
|
forAllUsers?: boolean;
|
|
@@ -253,12 +253,12 @@ export declare interface ActivityInstancesQueryProps {
|
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
/**
|
|
256
|
-
* @
|
|
256
|
+
* @public
|
|
257
257
|
*/
|
|
258
258
|
export declare type AddToBundleMutationHook = (options?: UseMutationOptions<MutationResponse, ApiError, AddToBundleRequest>) => UseMutationResult<MutationResponse, ApiError, AddToBundleRequest>;
|
|
259
259
|
|
|
260
260
|
/**
|
|
261
|
-
* @
|
|
261
|
+
* @public
|
|
262
262
|
*/
|
|
263
263
|
export declare interface AddToBundleRequest {
|
|
264
264
|
bundleId: ItemUri;
|
|
@@ -267,12 +267,12 @@ export declare interface AddToBundleRequest {
|
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
/**
|
|
270
|
-
* @
|
|
270
|
+
* @public
|
|
271
271
|
*/
|
|
272
272
|
export declare type AssignActivitiesMutationHook = (options?: BatchMutationOptions<AssignActivitiesRequest>) => UseMutationResult<Batch, ApiError, AssignActivitiesRequest>;
|
|
273
273
|
|
|
274
274
|
/**
|
|
275
|
-
* @
|
|
275
|
+
* @public
|
|
276
276
|
*/
|
|
277
277
|
export declare interface AssignActivitiesRequest {
|
|
278
278
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -280,12 +280,12 @@ export declare interface AssignActivitiesRequest {
|
|
|
280
280
|
}
|
|
281
281
|
|
|
282
282
|
/**
|
|
283
|
-
* @
|
|
283
|
+
* @public
|
|
284
284
|
*/
|
|
285
285
|
export declare type AssignActivityMutationHook = (options?: UseMutationOptions<ActivityInstance, ApiError, AssignActivityRequest>) => UseMutationResult<ActivityInstance, ApiError, AssignActivityRequest>;
|
|
286
286
|
|
|
287
287
|
/**
|
|
288
|
-
* @
|
|
288
|
+
* @public
|
|
289
289
|
*/
|
|
290
290
|
export declare interface AssignActivityRequest {
|
|
291
291
|
activityId: ItemUri;
|
|
@@ -293,12 +293,12 @@ export declare interface AssignActivityRequest {
|
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
/**
|
|
296
|
-
* @
|
|
296
|
+
* @public
|
|
297
297
|
*/
|
|
298
298
|
export declare type AutoClassifyItemMutationHook = (options?: UseMutationOptions<ClassificationInfo, ApiError, AutoClassifyItemRequest>) => UseMutationResult<ClassificationInfo, ApiError, AutoClassifyItemRequest>;
|
|
299
299
|
|
|
300
300
|
/**
|
|
301
|
-
* @
|
|
301
|
+
* @public
|
|
302
302
|
*/
|
|
303
303
|
export declare interface AutoClassifyItemRequest {
|
|
304
304
|
itemId: ItemUri;
|
|
@@ -306,12 +306,12 @@ export declare interface AutoClassifyItemRequest {
|
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
* @
|
|
309
|
+
* @public
|
|
310
310
|
*/
|
|
311
311
|
export declare type AutoClassifyItemsMutationHook = (options?: BatchMutationOptions<AutoClassifyItemsRequest>) => UseMutationResult<Batch, ApiError, AutoClassifyItemsRequest>;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
|
-
* @
|
|
314
|
+
* @public
|
|
315
315
|
*/
|
|
316
316
|
export declare interface AutoClassifyItemsRequest {
|
|
317
317
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -319,7 +319,7 @@ export declare interface AutoClassifyItemsRequest {
|
|
|
319
319
|
}
|
|
320
320
|
|
|
321
321
|
/**
|
|
322
|
-
* @
|
|
322
|
+
* @public
|
|
323
323
|
*/
|
|
324
324
|
declare type BatchMutationOptions<TVariables> = Without<UseMutationOptions<Batch, ApiError, TVariables>, 'mutationFn'>;
|
|
325
325
|
|
|
@@ -331,12 +331,12 @@ export declare interface BundleEditorApiStorage {
|
|
|
331
331
|
}
|
|
332
332
|
|
|
333
333
|
/**
|
|
334
|
-
* @
|
|
334
|
+
* @public
|
|
335
335
|
*/
|
|
336
336
|
export declare type BundleEditorHook = () => BundleEditorHookResult | undefined;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
* @
|
|
339
|
+
* @public
|
|
340
340
|
*/
|
|
341
341
|
export declare interface BundleEditorHookResult {
|
|
342
342
|
bundle: Bundle;
|
|
@@ -359,12 +359,12 @@ export declare interface BundleEditorHooksApiStorage {
|
|
|
359
359
|
export declare const Button: ButtonComponent;
|
|
360
360
|
|
|
361
361
|
/**
|
|
362
|
-
* @
|
|
362
|
+
* @public
|
|
363
363
|
*/
|
|
364
364
|
export declare type ButtonComponent = FunctionComponent<ButtonProps>;
|
|
365
365
|
|
|
366
366
|
/**
|
|
367
|
-
* @
|
|
367
|
+
* @public
|
|
368
368
|
*/
|
|
369
369
|
export declare interface ButtonProps {
|
|
370
370
|
/**
|
|
@@ -400,12 +400,12 @@ export declare interface CategoryEditorApiStorage {
|
|
|
400
400
|
}
|
|
401
401
|
|
|
402
402
|
/**
|
|
403
|
-
* @
|
|
403
|
+
* @public
|
|
404
404
|
*/
|
|
405
405
|
export declare type CategoryEditorHook = () => CategoryEditorHookResult | undefined;
|
|
406
406
|
|
|
407
407
|
/**
|
|
408
|
-
* @
|
|
408
|
+
* @public
|
|
409
409
|
*/
|
|
410
410
|
export declare interface CategoryEditorHookResult {
|
|
411
411
|
category: KeywordCategory;
|
|
@@ -422,12 +422,12 @@ export declare interface CategoryEditorHooksApiStorage {
|
|
|
422
422
|
}
|
|
423
423
|
|
|
424
424
|
/**
|
|
425
|
-
* @
|
|
425
|
+
* @public
|
|
426
426
|
*/
|
|
427
427
|
export declare type ChangeUserLanguageMutationHook = (options?: UseMutationOptions<User, ApiError, ChangeUserLanguageRequest>) => UseMutationResult<User, ApiError, ChangeUserLanguageRequest>;
|
|
428
428
|
|
|
429
429
|
/**
|
|
430
|
-
* @
|
|
430
|
+
* @public
|
|
431
431
|
*/
|
|
432
432
|
export declare interface ChangeUserLanguageRequest {
|
|
433
433
|
userId: ItemUri;
|
|
@@ -435,12 +435,12 @@ export declare interface ChangeUserLanguageRequest {
|
|
|
435
435
|
}
|
|
436
436
|
|
|
437
437
|
/**
|
|
438
|
-
* @
|
|
438
|
+
* @public
|
|
439
439
|
*/
|
|
440
440
|
export declare type ChangeUserLocaleMutationHook = (options?: UseMutationOptions<User, ApiError, ChangeUserLocaleRequest>) => UseMutationResult<User, ApiError, ChangeUserLocaleRequest>;
|
|
441
441
|
|
|
442
442
|
/**
|
|
443
|
-
* @
|
|
443
|
+
* @public
|
|
444
444
|
*/
|
|
445
445
|
export declare interface ChangeUserLocaleRequest {
|
|
446
446
|
userId: ItemUri;
|
|
@@ -448,12 +448,12 @@ export declare interface ChangeUserLocaleRequest {
|
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
/**
|
|
451
|
-
* @
|
|
451
|
+
* @public
|
|
452
452
|
*/
|
|
453
453
|
export declare type Color = keyof ColorPalette;
|
|
454
454
|
|
|
455
455
|
/**
|
|
456
|
-
* @
|
|
456
|
+
* @public
|
|
457
457
|
*/
|
|
458
458
|
export declare interface ColorPalette {
|
|
459
459
|
transparent: string;
|
|
@@ -485,7 +485,7 @@ export declare interface ColorPalette {
|
|
|
485
485
|
}
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
|
-
* @
|
|
488
|
+
* @public
|
|
489
489
|
*/
|
|
490
490
|
export declare interface ColorProps {
|
|
491
491
|
color?: Color | 'inherit';
|
|
@@ -499,12 +499,12 @@ export declare interface ComponentEditorApiStorage {
|
|
|
499
499
|
}
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
* @
|
|
502
|
+
* @public
|
|
503
503
|
*/
|
|
504
504
|
export declare type ComponentEditorHook = () => ComponentEditorHookResult | undefined;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
* @
|
|
507
|
+
* @public
|
|
508
508
|
*/
|
|
509
509
|
export declare interface ComponentEditorHookResult {
|
|
510
510
|
component: Component | MultimediaComponent | ExternalMultimediaComponent;
|
|
@@ -521,12 +521,12 @@ export declare interface ComponentEditorHooksApiStorage {
|
|
|
521
521
|
}
|
|
522
522
|
|
|
523
523
|
/**
|
|
524
|
-
* @
|
|
524
|
+
* @public
|
|
525
525
|
*/
|
|
526
526
|
export declare type ConfirmationHook = (args: ConfirmationHookArguments) => ConfirmationHookResult;
|
|
527
527
|
|
|
528
528
|
/**
|
|
529
|
-
* @
|
|
529
|
+
* @public
|
|
530
530
|
*/
|
|
531
531
|
export declare interface ConfirmationHookArguments {
|
|
532
532
|
title: string;
|
|
@@ -538,12 +538,12 @@ export declare interface ConfirmationHookArguments {
|
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
/**
|
|
541
|
-
* @
|
|
541
|
+
* @public
|
|
542
542
|
*/
|
|
543
543
|
export declare type ConfirmationHookResult = () => void;
|
|
544
544
|
|
|
545
545
|
/**
|
|
546
|
-
* @
|
|
546
|
+
* @public
|
|
547
547
|
*/
|
|
548
548
|
export declare interface ContentEditorExtensions {
|
|
549
549
|
richTextField: RichTextFieldExtensions;
|
|
@@ -551,7 +551,7 @@ export declare interface ContentEditorExtensions {
|
|
|
551
551
|
}
|
|
552
552
|
|
|
553
553
|
/**
|
|
554
|
-
* @
|
|
554
|
+
* @public
|
|
555
555
|
*/
|
|
556
556
|
export declare class ContentEditorExtensionsBuilder {
|
|
557
557
|
private _formFields;
|
|
@@ -561,12 +561,12 @@ export declare class ContentEditorExtensionsBuilder {
|
|
|
561
561
|
}
|
|
562
562
|
|
|
563
563
|
/**
|
|
564
|
-
* @
|
|
564
|
+
* @public
|
|
565
565
|
*/
|
|
566
566
|
export declare type ContentEditorFormFieldExtension = () => ContentEditorFormFieldExtensionConfiguration;
|
|
567
567
|
|
|
568
568
|
/**
|
|
569
|
-
* @
|
|
569
|
+
* @public
|
|
570
570
|
*/
|
|
571
571
|
export declare interface ContentEditorFormFieldExtensionConfiguration {
|
|
572
572
|
/**
|
|
@@ -584,7 +584,7 @@ export declare interface ContentEditorFormFieldExtensionConfiguration {
|
|
|
584
584
|
}
|
|
585
585
|
|
|
586
586
|
/**
|
|
587
|
-
* @
|
|
587
|
+
* @public
|
|
588
588
|
*/
|
|
589
589
|
export declare interface ContentEditorFormFieldExtensionProps<T = any> {
|
|
590
590
|
/**
|
|
@@ -610,7 +610,7 @@ export declare interface ContentEditorFormFieldExtensionProps<T = any> {
|
|
|
610
610
|
}
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
* @
|
|
613
|
+
* @public
|
|
614
614
|
*/
|
|
615
615
|
export declare interface ContentEditorFormFieldHookProps {
|
|
616
616
|
/**
|
|
@@ -624,7 +624,7 @@ export declare interface ContentEditorFormFieldHookProps {
|
|
|
624
624
|
}
|
|
625
625
|
|
|
626
626
|
/**
|
|
627
|
-
* @
|
|
627
|
+
* @public
|
|
628
628
|
*/
|
|
629
629
|
export declare interface ContentEditorFormFieldHookResult {
|
|
630
630
|
/**
|
|
@@ -641,12 +641,12 @@ export declare interface ContentEditorFormFieldHookResult {
|
|
|
641
641
|
}
|
|
642
642
|
|
|
643
643
|
/**
|
|
644
|
-
* @
|
|
644
|
+
* @public
|
|
645
645
|
*/
|
|
646
646
|
export declare type ContentExplorerActionGroupId = ValuesOfArray<typeof contentExplorerActionGroupIds>;
|
|
647
647
|
|
|
648
648
|
/**
|
|
649
|
-
* @
|
|
649
|
+
* @public
|
|
650
650
|
*/
|
|
651
651
|
export declare const contentExplorerActionGroupId: {
|
|
652
652
|
bundle: "bundle";
|
|
@@ -665,17 +665,17 @@ export declare const contentExplorerActionGroupId: {
|
|
|
665
665
|
};
|
|
666
666
|
|
|
667
667
|
/**
|
|
668
|
-
* @
|
|
668
|
+
* @public
|
|
669
669
|
*/
|
|
670
670
|
export declare const contentExplorerActionGroupIds: readonly ["browsing", "bundle", "classification", "clipboard", "creation", "deletion", "editing", "exporting", "blueprinting", "publishing", "refreshing", "translation", "workflow"];
|
|
671
671
|
|
|
672
672
|
/**
|
|
673
|
-
* @
|
|
673
|
+
* @public
|
|
674
674
|
*/
|
|
675
675
|
export declare type ContentExplorerActionId = ValuesOfArray<typeof contentExplorerActionIds>;
|
|
676
676
|
|
|
677
677
|
/**
|
|
678
|
-
* @
|
|
678
|
+
* @public
|
|
679
679
|
*/
|
|
680
680
|
export declare const contentExplorerActionId: {
|
|
681
681
|
export: "export";
|
|
@@ -713,7 +713,7 @@ export declare const contentExplorerActionId: {
|
|
|
713
713
|
};
|
|
714
714
|
|
|
715
715
|
/**
|
|
716
|
-
* @
|
|
716
|
+
* @public
|
|
717
717
|
*/
|
|
718
718
|
export declare const contentExplorerActionIds: readonly ["openEditor", "openEditorInNewTab", "addSelectedItemsToBundle", "addToBundle", "removeFromBundle", "autoClassify", "copy", "cut", "paste", "newBundle", "newCategory", "newComponent", "newFolder", "newKeyword", "newMultimediaComponent", "newPage", "newStructureGroup", "uploadMultimediaComponent", "delete", "finishEditing", "revert", "export", "localize", "unlocalize", "publish", "unpublish", "openPublishingQueue", "refresh", "openTranslationQueue", "translate", "translateTarget", "startWorkflow"];
|
|
719
719
|
|
|
@@ -726,7 +726,7 @@ export declare interface ContentExplorerApiStorage {
|
|
|
726
726
|
}
|
|
727
727
|
|
|
728
728
|
/**
|
|
729
|
-
* @
|
|
729
|
+
* @public
|
|
730
730
|
*/
|
|
731
731
|
export declare interface ContentExplorerExtensions {
|
|
732
732
|
table: ContentExplorerTableExtensions;
|
|
@@ -734,7 +734,7 @@ export declare interface ContentExplorerExtensions {
|
|
|
734
734
|
}
|
|
735
735
|
|
|
736
736
|
/**
|
|
737
|
-
* @
|
|
737
|
+
* @public
|
|
738
738
|
*/
|
|
739
739
|
export declare class ContentExplorerExtensionsBuilder {
|
|
740
740
|
readonly table: ContentExplorerTableExtensionsBuilder;
|
|
@@ -743,12 +743,12 @@ export declare class ContentExplorerExtensionsBuilder {
|
|
|
743
743
|
}
|
|
744
744
|
|
|
745
745
|
/**
|
|
746
|
-
* @
|
|
746
|
+
* @public
|
|
747
747
|
*/
|
|
748
748
|
export declare type ContentExplorerHierarchy = ReadonlyHierarchy<ContentExplorerNodeData>;
|
|
749
749
|
|
|
750
750
|
/**
|
|
751
|
-
* @
|
|
751
|
+
* @public
|
|
752
752
|
*/
|
|
753
753
|
export declare interface ContentExplorerHierarchyUtilsExtensionApi {
|
|
754
754
|
isItemNode: (node: ContentExplorerNode) => node is ContentExplorerItemNode;
|
|
@@ -759,12 +759,12 @@ export declare interface ContentExplorerHierarchyUtilsExtensionApi {
|
|
|
759
759
|
}
|
|
760
760
|
|
|
761
761
|
/**
|
|
762
|
-
* @
|
|
762
|
+
* @public
|
|
763
763
|
*/
|
|
764
764
|
export declare type ContentExplorerHook = () => ContentExplorerHookResult;
|
|
765
765
|
|
|
766
766
|
/**
|
|
767
|
-
* @
|
|
767
|
+
* @public
|
|
768
768
|
*/
|
|
769
769
|
export declare interface ContentExplorerHookResult {
|
|
770
770
|
hierarchy: ContentExplorerHierarchy;
|
|
@@ -783,12 +783,12 @@ export declare interface ContentExplorerHooksApiStorage {
|
|
|
783
783
|
}
|
|
784
784
|
|
|
785
785
|
/**
|
|
786
|
-
* @
|
|
786
|
+
* @public
|
|
787
787
|
*/
|
|
788
788
|
export declare type ContentExplorerItemNode = ReadonlyHierarchyNode<ContentExplorerItemNodeData>;
|
|
789
789
|
|
|
790
790
|
/**
|
|
791
|
-
* @
|
|
791
|
+
* @public
|
|
792
792
|
*/
|
|
793
793
|
export declare interface ContentExplorerItemNodeData extends ContentExplorerNodeData {
|
|
794
794
|
/**
|
|
@@ -798,12 +798,12 @@ export declare interface ContentExplorerItemNodeData extends ContentExplorerNode
|
|
|
798
798
|
}
|
|
799
799
|
|
|
800
800
|
/**
|
|
801
|
-
* @
|
|
801
|
+
* @public
|
|
802
802
|
*/
|
|
803
803
|
export declare type ContentExplorerNode = ReadonlyHierarchyNode<ContentExplorerNodeData>;
|
|
804
804
|
|
|
805
805
|
/**
|
|
806
|
-
* @
|
|
806
|
+
* @public
|
|
807
807
|
*/
|
|
808
808
|
export declare interface ContentExplorerNodeData {
|
|
809
809
|
/**
|
|
@@ -822,12 +822,12 @@ export declare interface ContentExplorerNodeData {
|
|
|
822
822
|
}
|
|
823
823
|
|
|
824
824
|
/**
|
|
825
|
-
* @
|
|
825
|
+
* @public
|
|
826
826
|
*/
|
|
827
827
|
export declare type ContentExplorerTableActionGroupId = ValuesOfArray<typeof contentExplorerTableActionGroupIds>;
|
|
828
828
|
|
|
829
829
|
/**
|
|
830
|
-
* @
|
|
830
|
+
* @public
|
|
831
831
|
*/
|
|
832
832
|
export declare const contentExplorerTableActionGroupId: {
|
|
833
833
|
bundle: "bundle";
|
|
@@ -846,17 +846,17 @@ export declare const contentExplorerTableActionGroupId: {
|
|
|
846
846
|
};
|
|
847
847
|
|
|
848
848
|
/**
|
|
849
|
-
* @
|
|
849
|
+
* @public
|
|
850
850
|
*/
|
|
851
851
|
export declare const contentExplorerTableActionGroupIds: readonly ["browsing", "bundle", "classification", "clipboard", "creation", "deletion", "editing", "exporting", "blueprinting", "publishing", "refreshing", "translation", "workflow"];
|
|
852
852
|
|
|
853
853
|
/**
|
|
854
|
-
* @
|
|
854
|
+
* @public
|
|
855
855
|
*/
|
|
856
856
|
export declare type ContentExplorerTableActionId = ValuesOfArray<typeof contentExplorerTableActionIds>;
|
|
857
857
|
|
|
858
858
|
/**
|
|
859
|
-
* @
|
|
859
|
+
* @public
|
|
860
860
|
*/
|
|
861
861
|
export declare const contentExplorerTableActionId: {
|
|
862
862
|
export: "export";
|
|
@@ -895,34 +895,34 @@ export declare const contentExplorerTableActionId: {
|
|
|
895
895
|
};
|
|
896
896
|
|
|
897
897
|
/**
|
|
898
|
-
* @
|
|
898
|
+
* @public
|
|
899
899
|
*/
|
|
900
900
|
export declare const contentExplorerTableActionIds: readonly ["openEditor", "openEditorInNewTab", "addSelectedItemsToBundle", "addToBundle", "removeFromBundle", "autoClassify", "copy", "cut", "paste", "newBundle", "newCategory", "newComponent", "newFolder", "newKeyword", "newMultimediaComponent", "newPage", "newStructureGroup", "uploadMultimediaComponent", "delete", "finishEditing", "revert", "export", "localize", "unlocalize", "publish", "unpublish", "openPublishingQueue", "refresh", "openTranslationQueue", "translate", "translateTarget", "startWorkflow", "open"];
|
|
901
901
|
|
|
902
902
|
/**
|
|
903
|
-
* @
|
|
903
|
+
* @public
|
|
904
904
|
*/
|
|
905
905
|
export declare type ContentExplorerTableColumnExtension = TableColumnExtension<IdentifiableObject>;
|
|
906
906
|
|
|
907
907
|
/**
|
|
908
|
-
* @
|
|
908
|
+
* @public
|
|
909
909
|
*/
|
|
910
910
|
export declare interface ContentExplorerTableColumnExtensionComponentProps extends TableColumnExtensionComponentProps<IdentifiableObject> {
|
|
911
911
|
}
|
|
912
912
|
|
|
913
913
|
/**
|
|
914
|
-
* @
|
|
914
|
+
* @public
|
|
915
915
|
*/
|
|
916
916
|
export declare interface ContentExplorerTableColumnExtensionConfiguration extends TableColumnExtensionConfiguration<IdentifiableObject> {
|
|
917
917
|
}
|
|
918
918
|
|
|
919
919
|
/**
|
|
920
|
-
* @
|
|
920
|
+
* @public
|
|
921
921
|
*/
|
|
922
922
|
export declare type ContentExplorerTableColumnIsAvailableHook = TableColumnIsAvailableHook;
|
|
923
923
|
|
|
924
924
|
/**
|
|
925
|
-
* @
|
|
925
|
+
* @public
|
|
926
926
|
*/
|
|
927
927
|
export declare interface ContentExplorerTableExtensions {
|
|
928
928
|
actions: ReadonlyArray<ActionExtension>;
|
|
@@ -932,7 +932,7 @@ export declare interface ContentExplorerTableExtensions {
|
|
|
932
932
|
}
|
|
933
933
|
|
|
934
934
|
/**
|
|
935
|
-
* @
|
|
935
|
+
* @public
|
|
936
936
|
*/
|
|
937
937
|
export declare class ContentExplorerTableExtensionsBuilder {
|
|
938
938
|
private _actions;
|
|
@@ -945,24 +945,24 @@ export declare class ContentExplorerTableExtensionsBuilder {
|
|
|
945
945
|
}
|
|
946
946
|
|
|
947
947
|
/**
|
|
948
|
-
* @
|
|
948
|
+
* @public
|
|
949
949
|
*/
|
|
950
950
|
export declare type ContentExplorerTableHook = () => ContentExplorerTableHookResult;
|
|
951
951
|
|
|
952
952
|
/**
|
|
953
|
-
* @
|
|
953
|
+
* @public
|
|
954
954
|
*/
|
|
955
955
|
export declare interface ContentExplorerTableHookResult {
|
|
956
956
|
refresh: () => void;
|
|
957
957
|
}
|
|
958
958
|
|
|
959
959
|
/**
|
|
960
|
-
* @
|
|
960
|
+
* @public
|
|
961
961
|
*/
|
|
962
962
|
export declare type ContentExplorerTreeActionGroupId = ValuesOfArray<typeof contentExplorerTreeActionGroupIds>;
|
|
963
963
|
|
|
964
964
|
/**
|
|
965
|
-
* @
|
|
965
|
+
* @public
|
|
966
966
|
*/
|
|
967
967
|
export declare const contentExplorerTreeActionGroupId: {
|
|
968
968
|
bundle: "bundle";
|
|
@@ -981,17 +981,17 @@ export declare const contentExplorerTreeActionGroupId: {
|
|
|
981
981
|
};
|
|
982
982
|
|
|
983
983
|
/**
|
|
984
|
-
* @
|
|
984
|
+
* @public
|
|
985
985
|
*/
|
|
986
986
|
export declare const contentExplorerTreeActionGroupIds: readonly ["browsing", "bundle", "classification", "clipboard", "creation", "deletion", "editing", "exporting", "blueprinting", "publishing", "refreshing", "translation", "workflow"];
|
|
987
987
|
|
|
988
988
|
/**
|
|
989
|
-
* @
|
|
989
|
+
* @public
|
|
990
990
|
*/
|
|
991
991
|
export declare type ContentExplorerTreeActionId = ValuesOfArray<typeof contentExplorerTreeActionIds>;
|
|
992
992
|
|
|
993
993
|
/**
|
|
994
|
-
* @
|
|
994
|
+
* @public
|
|
995
995
|
*/
|
|
996
996
|
export declare const contentExplorerTreeActionId: {
|
|
997
997
|
export: "export";
|
|
@@ -1029,12 +1029,12 @@ export declare const contentExplorerTreeActionId: {
|
|
|
1029
1029
|
};
|
|
1030
1030
|
|
|
1031
1031
|
/**
|
|
1032
|
-
* @
|
|
1032
|
+
* @public
|
|
1033
1033
|
*/
|
|
1034
1034
|
export declare const contentExplorerTreeActionIds: readonly ["openEditor", "openEditorInNewTab", "addSelectedItemsToBundle", "addToBundle", "removeFromBundle", "autoClassify", "copy", "cut", "paste", "newBundle", "newCategory", "newComponent", "newFolder", "newKeyword", "newMultimediaComponent", "newPage", "newStructureGroup", "uploadMultimediaComponent", "delete", "finishEditing", "revert", "export", "localize", "unlocalize", "publish", "unpublish", "openPublishingQueue", "refresh", "openTranslationQueue", "translate", "translateTarget", "startWorkflow"];
|
|
1035
1035
|
|
|
1036
1036
|
/**
|
|
1037
|
-
* @
|
|
1037
|
+
* @public
|
|
1038
1038
|
*/
|
|
1039
1039
|
export declare interface ContentExplorerTreeExtensions {
|
|
1040
1040
|
actions: ReadonlyArray<ActionExtension>;
|
|
@@ -1042,7 +1042,7 @@ export declare interface ContentExplorerTreeExtensions {
|
|
|
1042
1042
|
}
|
|
1043
1043
|
|
|
1044
1044
|
/**
|
|
1045
|
-
* @
|
|
1045
|
+
* @public
|
|
1046
1046
|
*/
|
|
1047
1047
|
export declare class ContentExplorerTreeExtensionsBuilder {
|
|
1048
1048
|
private _actions;
|
|
@@ -1052,12 +1052,12 @@ export declare class ContentExplorerTreeExtensionsBuilder {
|
|
|
1052
1052
|
}
|
|
1053
1053
|
|
|
1054
1054
|
/**
|
|
1055
|
-
* @
|
|
1055
|
+
* @public
|
|
1056
1056
|
*/
|
|
1057
1057
|
export declare type ContentExplorerTreeHook = () => ContentExplorerTreeHookResult;
|
|
1058
1058
|
|
|
1059
1059
|
/**
|
|
1060
|
-
* @
|
|
1060
|
+
* @public
|
|
1061
1061
|
*/
|
|
1062
1062
|
export declare interface ContentExplorerTreeHookResult {
|
|
1063
1063
|
refresh: () => void;
|
|
@@ -1071,12 +1071,12 @@ export declare interface ContentExplorerUtilsApiStorage {
|
|
|
1071
1071
|
}
|
|
1072
1072
|
|
|
1073
1073
|
/**
|
|
1074
|
-
* @
|
|
1074
|
+
* @public
|
|
1075
1075
|
*/
|
|
1076
1076
|
export declare type CopyItemMutationHook = (options?: UseMutationOptions<RepositoryLocalObject, ApiError, CopyItemRequest>) => UseMutationResult<RepositoryLocalObject, ApiError, CopyItemRequest>;
|
|
1077
1077
|
|
|
1078
1078
|
/**
|
|
1079
|
-
* @
|
|
1079
|
+
* @public
|
|
1080
1080
|
*/
|
|
1081
1081
|
export declare interface CopyItemRequest {
|
|
1082
1082
|
itemId: ItemUri;
|
|
@@ -1084,12 +1084,12 @@ export declare interface CopyItemRequest {
|
|
|
1084
1084
|
}
|
|
1085
1085
|
|
|
1086
1086
|
/**
|
|
1087
|
-
* @
|
|
1087
|
+
* @public
|
|
1088
1088
|
*/
|
|
1089
1089
|
export declare type CopyItemsMutationHook = (options?: BatchMutationOptions<CopyItemsRequest>) => UseMutationResult<Batch, ApiError, CopyItemsRequest>;
|
|
1090
1090
|
|
|
1091
1091
|
/**
|
|
1092
|
-
* @
|
|
1092
|
+
* @public
|
|
1093
1093
|
*/
|
|
1094
1094
|
export declare interface CopyItemsRequest {
|
|
1095
1095
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -1097,51 +1097,51 @@ export declare interface CopyItemsRequest {
|
|
|
1097
1097
|
}
|
|
1098
1098
|
|
|
1099
1099
|
/**
|
|
1100
|
-
* @
|
|
1100
|
+
* @public
|
|
1101
1101
|
*/
|
|
1102
1102
|
export declare const createExtensionGlobals: () => CreateExtensionGlobalsResult;
|
|
1103
1103
|
|
|
1104
1104
|
/**
|
|
1105
|
-
* @
|
|
1105
|
+
* @public
|
|
1106
1106
|
*/
|
|
1107
1107
|
export declare interface CreateExtensionGlobalsResult extends ExtensionGlobals {
|
|
1108
1108
|
initialize: (globals: ExtensionGlobals) => void;
|
|
1109
1109
|
}
|
|
1110
1110
|
|
|
1111
1111
|
/**
|
|
1112
|
-
* @
|
|
1112
|
+
* @public
|
|
1113
1113
|
*/
|
|
1114
1114
|
export declare type CreateTranslationJobMutationHook = (options: UseMutationOptions<TranslationJob, ApiError, CreateTranslationJobRequest>) => UseMutationResult<TranslationJob, ApiError, CreateTranslationJobRequest>;
|
|
1115
1115
|
|
|
1116
1116
|
/**
|
|
1117
|
-
* @
|
|
1117
|
+
* @public
|
|
1118
1118
|
*/
|
|
1119
1119
|
export declare interface CreateTranslationJobRequest {
|
|
1120
1120
|
translationJob: TranslationJob;
|
|
1121
1121
|
}
|
|
1122
1122
|
|
|
1123
1123
|
/**
|
|
1124
|
-
* @
|
|
1124
|
+
* @public
|
|
1125
1125
|
*/
|
|
1126
1126
|
export declare type CustomIcon = ReactElement<CustomIconProps>;
|
|
1127
1127
|
|
|
1128
1128
|
/**
|
|
1129
|
-
* @
|
|
1129
|
+
* @public
|
|
1130
1130
|
*/
|
|
1131
1131
|
export declare type CustomIconProps = Omit<IconProps, 'children' | 'viewBox'>;
|
|
1132
1132
|
|
|
1133
1133
|
/**
|
|
1134
|
-
* @
|
|
1134
|
+
* @public
|
|
1135
1135
|
*/
|
|
1136
1136
|
export declare type DefaultModelType = Extract<ItemType, 'bundle' | 'searchFolder' | 'schema' | 'page' | 'pageTemplate' | 'component' | 'componentTemplate' | 'folder' | 'keyword' | 'structureGroup' | 'templateBuildingBlock' | 'publication' | 'keywordCategory' | 'userGroup' | 'processDefinition' | 'businessProcessType' | 'multimediaType' | 'user' | 'targetGroup'>;
|
|
1137
1137
|
|
|
1138
1138
|
/**
|
|
1139
|
-
* @
|
|
1139
|
+
* @public
|
|
1140
1140
|
*/
|
|
1141
1141
|
export declare type DefaultTranslationJobQueryHook = (props: DefaultTranslationJobQueryProps | undefined, options?: QueryOptions<TranslationJob | undefined, ApiError>) => UseQueryResult<TranslationJob | undefined, ApiError>;
|
|
1142
1142
|
|
|
1143
1143
|
/**
|
|
1144
|
-
* @
|
|
1144
|
+
* @public
|
|
1145
1145
|
*/
|
|
1146
1146
|
export declare interface DefaultTranslationJobQueryProps {
|
|
1147
1147
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -1149,12 +1149,12 @@ export declare interface DefaultTranslationJobQueryProps {
|
|
|
1149
1149
|
}
|
|
1150
1150
|
|
|
1151
1151
|
/**
|
|
1152
|
-
* @
|
|
1152
|
+
* @public
|
|
1153
1153
|
*/
|
|
1154
1154
|
export declare type DeleteItemMutationHook = (options?: UseMutationOptions<void, ApiError, DeleteItemRequest>) => UseMutationResult<void, ApiError, DeleteItemRequest>;
|
|
1155
1155
|
|
|
1156
1156
|
/**
|
|
1157
|
-
* @
|
|
1157
|
+
* @public
|
|
1158
1158
|
*/
|
|
1159
1159
|
export declare interface DeleteItemRequest {
|
|
1160
1160
|
item: IdentifiableObject;
|
|
@@ -1162,12 +1162,12 @@ export declare interface DeleteItemRequest {
|
|
|
1162
1162
|
}
|
|
1163
1163
|
|
|
1164
1164
|
/**
|
|
1165
|
-
* @
|
|
1165
|
+
* @public
|
|
1166
1166
|
*/
|
|
1167
1167
|
export declare type DeleteItemsMutationHook = (options?: BatchMutationOptions<DeleteItemsRequest>) => UseMutationResult<Batch, ApiError, DeleteItemsRequest>;
|
|
1168
1168
|
|
|
1169
1169
|
/**
|
|
1170
|
-
* @
|
|
1170
|
+
* @public
|
|
1171
1171
|
*/
|
|
1172
1172
|
export declare interface DeleteItemsRequest {
|
|
1173
1173
|
items: ReadonlyArray<IdentifiableObject>;
|
|
@@ -1210,7 +1210,7 @@ export declare interface ExtensionApiImplementationStorage {
|
|
|
1210
1210
|
}
|
|
1211
1211
|
|
|
1212
1212
|
/**
|
|
1213
|
-
* @
|
|
1213
|
+
* @public
|
|
1214
1214
|
*/
|
|
1215
1215
|
export declare class ExtensionBuilder {
|
|
1216
1216
|
readonly header: HeaderExtensionsBuilder;
|
|
@@ -1222,7 +1222,7 @@ export declare class ExtensionBuilder {
|
|
|
1222
1222
|
}
|
|
1223
1223
|
|
|
1224
1224
|
/**
|
|
1225
|
-
* @
|
|
1225
|
+
* @public
|
|
1226
1226
|
*/
|
|
1227
1227
|
export declare interface ExtensionGlobals {
|
|
1228
1228
|
t: (key: string, options?: Record<string, any>) => string;
|
|
@@ -1230,7 +1230,7 @@ export declare interface ExtensionGlobals {
|
|
|
1230
1230
|
}
|
|
1231
1231
|
|
|
1232
1232
|
/**
|
|
1233
|
-
* @
|
|
1233
|
+
* @public
|
|
1234
1234
|
*/
|
|
1235
1235
|
export declare interface ExtensionModule {
|
|
1236
1236
|
runtimeInfo: RuntimeInformation;
|
|
@@ -1239,7 +1239,7 @@ export declare interface ExtensionModule {
|
|
|
1239
1239
|
}
|
|
1240
1240
|
|
|
1241
1241
|
/**
|
|
1242
|
-
* @
|
|
1242
|
+
* @public
|
|
1243
1243
|
*/
|
|
1244
1244
|
export declare interface ExtensionPoints {
|
|
1245
1245
|
header: HeaderExtensions;
|
|
@@ -1250,36 +1250,36 @@ export declare interface ExtensionPoints {
|
|
|
1250
1250
|
}
|
|
1251
1251
|
|
|
1252
1252
|
/**
|
|
1253
|
-
* @
|
|
1253
|
+
* @public
|
|
1254
1254
|
*/
|
|
1255
1255
|
export declare type FavoritesQueryHook = (options?: QueryOptions<ReadonlyArray<IdentifiableObject> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<IdentifiableObject> | undefined, ApiError>;
|
|
1256
1256
|
|
|
1257
1257
|
/**
|
|
1258
|
-
* @
|
|
1258
|
+
* @public
|
|
1259
1259
|
*/
|
|
1260
1260
|
export declare interface FinishActivitiesHookResult {
|
|
1261
1261
|
mutateAsync: ({ requestData }: FinishActivitiesRequest) => Promise<Batch[]>;
|
|
1262
1262
|
}
|
|
1263
1263
|
|
|
1264
1264
|
/**
|
|
1265
|
-
* @
|
|
1265
|
+
* @public
|
|
1266
1266
|
*/
|
|
1267
1267
|
export declare type FinishActivitiesMutationHook = (options?: FinishActivitiesMutationOptions) => FinishActivitiesHookResult;
|
|
1268
1268
|
|
|
1269
1269
|
/**
|
|
1270
|
-
* @
|
|
1270
|
+
* @public
|
|
1271
1271
|
*/
|
|
1272
1272
|
export declare type FinishActivitiesMutationOptions = Without<UseMutationOptions<Batch[], ApiError, FinishActivitiesRequest>, 'mutationFn'>;
|
|
1273
1273
|
|
|
1274
1274
|
/**
|
|
1275
|
-
* @
|
|
1275
|
+
* @public
|
|
1276
1276
|
*/
|
|
1277
1277
|
export declare interface FinishActivitiesRequest {
|
|
1278
1278
|
requestData: ReadonlyArray<FinishActivitiesRequestData>;
|
|
1279
1279
|
}
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
|
-
* @
|
|
1282
|
+
* @public
|
|
1283
1283
|
*/
|
|
1284
1284
|
export declare interface FinishActivitiesRequestData {
|
|
1285
1285
|
activityInstances: ReadonlyArray<ActivityInstance>;
|
|
@@ -1288,12 +1288,12 @@ export declare interface FinishActivitiesRequestData {
|
|
|
1288
1288
|
}
|
|
1289
1289
|
|
|
1290
1290
|
/**
|
|
1291
|
-
* @
|
|
1291
|
+
* @public
|
|
1292
1292
|
*/
|
|
1293
1293
|
export declare type FinishActivityMutationHook = (options?: UseMutationOptions<FinishActivityResult, ApiError, FinishActivityRequest>) => UseMutationResult<FinishActivityResult, ApiError, FinishActivityRequest>;
|
|
1294
1294
|
|
|
1295
1295
|
/**
|
|
1296
|
-
* @
|
|
1296
|
+
* @public
|
|
1297
1297
|
*/
|
|
1298
1298
|
export declare interface FinishActivityRequest {
|
|
1299
1299
|
activityId: ItemUri;
|
|
@@ -1302,12 +1302,12 @@ export declare interface FinishActivityRequest {
|
|
|
1302
1302
|
}
|
|
1303
1303
|
|
|
1304
1304
|
/**
|
|
1305
|
-
* @
|
|
1305
|
+
* @public
|
|
1306
1306
|
*/
|
|
1307
1307
|
export declare type FinishEditingItemMutationHook = (options?: UseMutationOptions<RepositoryLocalObject, ApiError, FinishEditingItemRequest>) => UseMutationResult<RepositoryLocalObject, ApiError, FinishEditingItemRequest>;
|
|
1308
1308
|
|
|
1309
1309
|
/**
|
|
1310
|
-
* @
|
|
1310
|
+
* @public
|
|
1311
1311
|
*/
|
|
1312
1312
|
export declare interface FinishEditingItemRequest {
|
|
1313
1313
|
item: VersionedItem;
|
|
@@ -1315,12 +1315,12 @@ export declare interface FinishEditingItemRequest {
|
|
|
1315
1315
|
}
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
1318
|
-
* @
|
|
1318
|
+
* @public
|
|
1319
1319
|
*/
|
|
1320
1320
|
export declare type FinishEditingItemsMutationHook = (options?: BatchMutationOptions<FinishItemsRequest>) => UseMutationResult<Batch, ApiError, FinishItemsRequest>;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
|
-
* @
|
|
1323
|
+
* @public
|
|
1324
1324
|
*/
|
|
1325
1325
|
export declare interface FinishItemsRequest {
|
|
1326
1326
|
items: ReadonlyArray<VersionedItem>;
|
|
@@ -1335,12 +1335,12 @@ export declare interface FolderEditorApiStorage {
|
|
|
1335
1335
|
}
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
1338
|
-
* @
|
|
1338
|
+
* @public
|
|
1339
1339
|
*/
|
|
1340
1340
|
export declare type FolderEditorHook = () => FolderEditorHookResult | undefined;
|
|
1341
1341
|
|
|
1342
1342
|
/**
|
|
1343
|
-
* @
|
|
1343
|
+
* @public
|
|
1344
1344
|
*/
|
|
1345
1345
|
export declare interface FolderEditorHookResult {
|
|
1346
1346
|
folder: Folder;
|
|
@@ -1357,7 +1357,7 @@ export declare interface FolderEditorHooksApiStorage {
|
|
|
1357
1357
|
}
|
|
1358
1358
|
|
|
1359
1359
|
/**
|
|
1360
|
-
* @
|
|
1360
|
+
* @public
|
|
1361
1361
|
*/
|
|
1362
1362
|
export declare const frameworkInfo: {
|
|
1363
1363
|
version: string;
|
|
@@ -1489,14 +1489,14 @@ export declare interface GeneralQueriesApiStorage {
|
|
|
1489
1489
|
declare type GetListBuilderItemId<TItem> = (item: TItem) => string;
|
|
1490
1490
|
|
|
1491
1491
|
/**
|
|
1492
|
-
* @
|
|
1492
|
+
* @public
|
|
1493
1493
|
*/
|
|
1494
1494
|
export declare interface HeaderExtensions {
|
|
1495
1495
|
navigation: NavigationExtensions;
|
|
1496
1496
|
}
|
|
1497
1497
|
|
|
1498
1498
|
/**
|
|
1499
|
-
* @
|
|
1499
|
+
* @public
|
|
1500
1500
|
*/
|
|
1501
1501
|
export declare class HeaderExtensionsBuilder {
|
|
1502
1502
|
readonly navigation: NavigationExtensionsBuilder;
|
|
@@ -1510,12 +1510,12 @@ export declare class HeaderExtensionsBuilder {
|
|
|
1510
1510
|
export declare const Icon: IconComponent;
|
|
1511
1511
|
|
|
1512
1512
|
/**
|
|
1513
|
-
* @
|
|
1513
|
+
* @public
|
|
1514
1514
|
*/
|
|
1515
1515
|
export declare type IconComponent = FunctionComponent<IconProps>;
|
|
1516
1516
|
|
|
1517
1517
|
/**
|
|
1518
|
-
* @
|
|
1518
|
+
* @public
|
|
1519
1519
|
*/
|
|
1520
1520
|
export declare interface IconProps extends TooltipProps, SpaceProps, SizeProps, ColorProps {
|
|
1521
1521
|
/**
|
|
@@ -1529,49 +1529,49 @@ export declare interface IconProps extends TooltipProps, SpaceProps, SizeProps,
|
|
|
1529
1529
|
}
|
|
1530
1530
|
|
|
1531
1531
|
/**
|
|
1532
|
-
* @
|
|
1532
|
+
* @public
|
|
1533
1533
|
*/
|
|
1534
1534
|
export declare const isFavoritesNodeId: (nodeId: string) => boolean;
|
|
1535
1535
|
|
|
1536
1536
|
/**
|
|
1537
|
-
* @
|
|
1537
|
+
* @public
|
|
1538
1538
|
*/
|
|
1539
1539
|
export declare const isItemInProgressNodeId: (nodeId: string) => boolean;
|
|
1540
1540
|
|
|
1541
1541
|
/**
|
|
1542
|
-
* @
|
|
1542
|
+
* @public
|
|
1543
1543
|
*/
|
|
1544
1544
|
export declare const isItemNode: (node: ContentExplorerNode) => node is ContentExplorerItemNode;
|
|
1545
1545
|
|
|
1546
1546
|
/**
|
|
1547
|
-
* @
|
|
1547
|
+
* @public
|
|
1548
1548
|
*/
|
|
1549
1549
|
export declare const isPublicationsNodeId: (nodeId: string) => boolean;
|
|
1550
1550
|
|
|
1551
1551
|
/**
|
|
1552
|
-
* @
|
|
1552
|
+
* @public
|
|
1553
1553
|
*/
|
|
1554
1554
|
export declare const isRootNodeId: (nodeId: string) => boolean;
|
|
1555
1555
|
|
|
1556
1556
|
/**
|
|
1557
|
-
* @
|
|
1557
|
+
* @public
|
|
1558
1558
|
*/
|
|
1559
1559
|
export declare type ItemBlueprintHierarchyQueryHook = (props: ItemBlueprintHierarchyQueryProps | undefined, options?: QueryOptions<ItemBlueprintHierarchy | undefined, ApiError>) => UseQueryResult<ItemBlueprintHierarchy | undefined, ApiError>;
|
|
1560
1560
|
|
|
1561
1561
|
/**
|
|
1562
|
-
* @
|
|
1562
|
+
* @public
|
|
1563
1563
|
*/
|
|
1564
1564
|
export declare interface ItemBlueprintHierarchyQueryProps {
|
|
1565
1565
|
itemId: ItemUri;
|
|
1566
1566
|
}
|
|
1567
1567
|
|
|
1568
1568
|
/**
|
|
1569
|
-
* @
|
|
1569
|
+
* @public
|
|
1570
1570
|
*/
|
|
1571
1571
|
export declare type ItemChildrenQueryHook = (props: ItemChildrenQueryProps | undefined, options?: QueryOptions<ReadonlyArray<RepositoryLocalObject> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<RepositoryLocalObject> | undefined, ApiError>;
|
|
1572
1572
|
|
|
1573
1573
|
/**
|
|
1574
|
-
* @
|
|
1574
|
+
* @public
|
|
1575
1575
|
*/
|
|
1576
1576
|
export declare interface ItemChildrenQueryProps {
|
|
1577
1577
|
/**
|
|
@@ -1585,12 +1585,12 @@ export declare interface ItemChildrenQueryProps {
|
|
|
1585
1585
|
}
|
|
1586
1586
|
|
|
1587
1587
|
/**
|
|
1588
|
-
* @
|
|
1588
|
+
* @public
|
|
1589
1589
|
*/
|
|
1590
1590
|
export declare type ItemClassifiedItemsQueryHook = (props: ItemClassifiedItemsQueryProps | undefined, options?: QueryOptions<ReadonlyArray<RepositoryLocalObject> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<RepositoryLocalObject> | undefined, ApiError>;
|
|
1591
1591
|
|
|
1592
1592
|
/**
|
|
1593
|
-
* @
|
|
1593
|
+
* @public
|
|
1594
1594
|
*/
|
|
1595
1595
|
export declare interface ItemClassifiedItemsQueryProps {
|
|
1596
1596
|
/**
|
|
@@ -1617,72 +1617,72 @@ export declare interface ItemClassifiedItemsQueryProps {
|
|
|
1617
1617
|
}
|
|
1618
1618
|
|
|
1619
1619
|
/**
|
|
1620
|
-
* @
|
|
1620
|
+
* @public
|
|
1621
1621
|
*/
|
|
1622
1622
|
export declare type ItemDefaultDataQueryHook = <TItem extends IdentifiableObject>(props: ItemDefaultDataQueryProps | undefined, options?: QueryOptions<TItem | undefined, ApiError>) => UseQueryResult<TItem | undefined, ApiError>;
|
|
1623
1623
|
|
|
1624
1624
|
/**
|
|
1625
|
-
* @
|
|
1625
|
+
* @public
|
|
1626
1626
|
*/
|
|
1627
1627
|
export declare interface ItemDefaultDataQueryProps {
|
|
1628
1628
|
modelType: DefaultModelType;
|
|
1629
1629
|
}
|
|
1630
1630
|
|
|
1631
1631
|
/**
|
|
1632
|
-
* @
|
|
1632
|
+
* @public
|
|
1633
1633
|
*/
|
|
1634
1634
|
export declare type ItemHistoryQueryHook = (props: ItemHistoryQueryProps | undefined, options?: QueryOptions<ReadonlyArray<VersionedItem> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<VersionedItem> | undefined, ApiError>;
|
|
1635
1635
|
|
|
1636
1636
|
/**
|
|
1637
|
-
* @
|
|
1637
|
+
* @public
|
|
1638
1638
|
*/
|
|
1639
1639
|
export declare interface ItemHistoryQueryProps {
|
|
1640
1640
|
itemId: ItemUri;
|
|
1641
1641
|
}
|
|
1642
1642
|
|
|
1643
1643
|
/**
|
|
1644
|
-
* @
|
|
1644
|
+
* @public
|
|
1645
1645
|
*/
|
|
1646
1646
|
export declare type ItemPublishedPagesQueryHook = (props: ItemPublishedPagesQueryProps | undefined, options?: QueryOptions<ReadonlyArray<Page> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<Page> | undefined, ApiError>;
|
|
1647
1647
|
|
|
1648
1648
|
/**
|
|
1649
|
-
* @
|
|
1649
|
+
* @public
|
|
1650
1650
|
*/
|
|
1651
1651
|
export declare interface ItemPublishedPagesQueryProps {
|
|
1652
1652
|
itemId: ItemUri;
|
|
1653
1653
|
}
|
|
1654
1654
|
|
|
1655
1655
|
/**
|
|
1656
|
-
* @
|
|
1656
|
+
* @public
|
|
1657
1657
|
*/
|
|
1658
1658
|
export declare type ItemPublishedToQueryHook = (props: ItemPublishedToQueryProps | undefined, options?: QueryOptions<ReadonlyArray<PublishInfo> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<PublishInfo> | undefined, ApiError>;
|
|
1659
1659
|
|
|
1660
1660
|
/**
|
|
1661
|
-
* @
|
|
1661
|
+
* @public
|
|
1662
1662
|
*/
|
|
1663
1663
|
export declare interface ItemPublishedToQueryProps {
|
|
1664
1664
|
itemId: ItemUri;
|
|
1665
1665
|
}
|
|
1666
1666
|
|
|
1667
1667
|
/**
|
|
1668
|
-
* @
|
|
1668
|
+
* @public
|
|
1669
1669
|
*/
|
|
1670
1670
|
export declare type ItemPublishUrlsQueryHook = (props: ItemPublishUrlsQueryProps | undefined, options?: QueryOptions<ReadonlyArray<PublishUrlInfo> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<PublishUrlInfo> | undefined, ApiError>;
|
|
1671
1671
|
|
|
1672
1672
|
/**
|
|
1673
|
-
* @
|
|
1673
|
+
* @public
|
|
1674
1674
|
*/
|
|
1675
1675
|
export declare interface ItemPublishUrlsQueryProps {
|
|
1676
1676
|
itemId: ItemUri;
|
|
1677
1677
|
}
|
|
1678
1678
|
|
|
1679
1679
|
/**
|
|
1680
|
-
* @
|
|
1680
|
+
* @public
|
|
1681
1681
|
*/
|
|
1682
1682
|
export declare type ItemQueryHook = <TItem extends IdentifiableObject>(props: ItemQueryProps | undefined, options?: QueryOptions<TItem | undefined, ApiError>) => UseQueryResult<TItem | undefined, ApiError>;
|
|
1683
1683
|
|
|
1684
1684
|
/**
|
|
1685
|
-
* @
|
|
1685
|
+
* @public
|
|
1686
1686
|
*/
|
|
1687
1687
|
export declare interface ItemQueryProps {
|
|
1688
1688
|
itemId: ItemUri;
|
|
@@ -1690,12 +1690,12 @@ export declare interface ItemQueryProps {
|
|
|
1690
1690
|
}
|
|
1691
1691
|
|
|
1692
1692
|
/**
|
|
1693
|
-
* @
|
|
1693
|
+
* @public
|
|
1694
1694
|
*/
|
|
1695
1695
|
export declare type ItemsInProgressQueryHook = (props?: ItemsInProgressQueryProps, options?: QueryOptions<ReadonlyArray<VersionedItem> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<VersionedItem> | undefined, ApiError>;
|
|
1696
1696
|
|
|
1697
1697
|
/**
|
|
1698
|
-
* @
|
|
1698
|
+
* @public
|
|
1699
1699
|
*/
|
|
1700
1700
|
export declare interface ItemsInProgressQueryProps {
|
|
1701
1701
|
forAllUsers?: boolean;
|
|
@@ -1703,12 +1703,12 @@ export declare interface ItemsInProgressQueryProps {
|
|
|
1703
1703
|
}
|
|
1704
1704
|
|
|
1705
1705
|
/**
|
|
1706
|
-
* @
|
|
1706
|
+
* @public
|
|
1707
1707
|
*/
|
|
1708
1708
|
export declare type ItemsQueryHook = <TItem extends IdentifiableObject>(props: ItemsQueryProps | undefined, options?: QueryOptions<ReadonlyArray<TItem> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<TItem> | undefined, ApiError>;
|
|
1709
1709
|
|
|
1710
1710
|
/**
|
|
1711
|
-
* @
|
|
1711
|
+
* @public
|
|
1712
1712
|
*/
|
|
1713
1713
|
export declare interface ItemsQueryProps {
|
|
1714
1714
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -1717,46 +1717,46 @@ export declare interface ItemsQueryProps {
|
|
|
1717
1717
|
}
|
|
1718
1718
|
|
|
1719
1719
|
/**
|
|
1720
|
-
* @
|
|
1720
|
+
* @public
|
|
1721
1721
|
*/
|
|
1722
1722
|
export declare type ItemsToPublishQueryHook = (props: PublishItemsRequest | undefined, options?: QueryOptions<ResolvedItem[] | undefined, ApiError>) => UseQueryResult<ResolvedItem[] | undefined, ApiError>;
|
|
1723
1723
|
|
|
1724
1724
|
/**
|
|
1725
|
-
* @
|
|
1725
|
+
* @public
|
|
1726
1726
|
*/
|
|
1727
1727
|
export declare type ItemsToUnpublishQueryHook = (props: UnpublishItemsRequest | undefined, options?: QueryOptions<ResolvedItem[] | undefined, ApiError>) => UseQueryResult<ResolvedItem[] | undefined, ApiError>;
|
|
1728
1728
|
|
|
1729
1729
|
/**
|
|
1730
|
-
* @
|
|
1730
|
+
* @public
|
|
1731
1731
|
*/
|
|
1732
1732
|
export declare type ItemTranslationInfoQueryHook = (props: ItemTranslationInfoQueryProps | undefined, options?: QueryOptions<TranslationInfo | undefined, ApiError>) => UseQueryResult<TranslationInfo | undefined, ApiError>;
|
|
1733
1733
|
|
|
1734
1734
|
/**
|
|
1735
|
-
* @
|
|
1735
|
+
* @public
|
|
1736
1736
|
*/
|
|
1737
1737
|
export declare interface ItemTranslationInfoQueryProps {
|
|
1738
1738
|
itemId: ItemUri;
|
|
1739
1739
|
}
|
|
1740
1740
|
|
|
1741
1741
|
/**
|
|
1742
|
-
* @
|
|
1742
|
+
* @public
|
|
1743
1743
|
*/
|
|
1744
1744
|
export declare type ItemUsedByQueryHook = <TItem extends IdentifiableObject>(props: ItemUsedByQueryProps | undefined, options?: QueryOptions<ReadonlyArray<TItem> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<TItem> | undefined, ApiError>;
|
|
1745
1745
|
|
|
1746
1746
|
/**
|
|
1747
|
-
* @
|
|
1747
|
+
* @public
|
|
1748
1748
|
*/
|
|
1749
1749
|
export declare interface ItemUsedByQueryProps {
|
|
1750
1750
|
itemId: ItemUri;
|
|
1751
1751
|
}
|
|
1752
1752
|
|
|
1753
1753
|
/**
|
|
1754
|
-
* @
|
|
1754
|
+
* @public
|
|
1755
1755
|
*/
|
|
1756
1756
|
export declare type ItemUsesQueryHook = <TItem extends IdentifiableObject>(props: ItemUsesQueryProps | undefined, options?: QueryOptions<ReadonlyArray<TItem> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<TItem> | undefined, ApiError>;
|
|
1757
1757
|
|
|
1758
1758
|
/**
|
|
1759
|
-
* @
|
|
1759
|
+
* @public
|
|
1760
1760
|
*/
|
|
1761
1761
|
export declare interface ItemUsesQueryProps {
|
|
1762
1762
|
itemId: ItemUri;
|
|
@@ -1770,12 +1770,12 @@ export declare interface KeywordEditorApiStorage {
|
|
|
1770
1770
|
}
|
|
1771
1771
|
|
|
1772
1772
|
/**
|
|
1773
|
-
* @
|
|
1773
|
+
* @public
|
|
1774
1774
|
*/
|
|
1775
1775
|
export declare type KeywordEditorHook = () => KeywordEditorHookResult | undefined;
|
|
1776
1776
|
|
|
1777
1777
|
/**
|
|
1778
|
-
* @
|
|
1778
|
+
* @public
|
|
1779
1779
|
*/
|
|
1780
1780
|
export declare interface KeywordEditorHookResult {
|
|
1781
1781
|
keyword: Keyword;
|
|
@@ -1792,7 +1792,7 @@ export declare interface KeywordEditorHooksApiStorage {
|
|
|
1792
1792
|
}
|
|
1793
1793
|
|
|
1794
1794
|
/**
|
|
1795
|
-
* @
|
|
1795
|
+
* @public
|
|
1796
1796
|
*/
|
|
1797
1797
|
export declare type LanguageCode = 'de' | 'en' | 'es' | 'fr' | 'nl' | 'zh' | 'ja';
|
|
1798
1798
|
|
|
@@ -1803,7 +1803,7 @@ export declare type LanguageCode = 'de' | 'en' | 'es' | 'fr' | 'nl' | 'zh' | 'ja
|
|
|
1803
1803
|
export declare const Link: LinkComponent;
|
|
1804
1804
|
|
|
1805
1805
|
/**
|
|
1806
|
-
* @
|
|
1806
|
+
* @public
|
|
1807
1807
|
*/
|
|
1808
1808
|
export declare type LinkComponent = FunctionComponent<LinkProps>;
|
|
1809
1809
|
|
|
@@ -1837,12 +1837,12 @@ declare type ListBuilderConfiguration<TItem> = TItem[];
|
|
|
1837
1837
|
declare type ListBuilderConfigurationExtension<TItem> = (currentList: ListBuilderConfiguration<TItem>, defaultList: ListBuilderConfiguration<TItem>) => void;
|
|
1838
1838
|
|
|
1839
1839
|
/**
|
|
1840
|
-
* @
|
|
1840
|
+
* @public
|
|
1841
1841
|
*/
|
|
1842
1842
|
export declare type LocalizeItemMutationHook = (options?: UseMutationOptions<RepositoryLocalObject, ApiError, LocalizeItemRequest>) => UseMutationResult<RepositoryLocalObject, ApiError, LocalizeItemRequest>;
|
|
1843
1843
|
|
|
1844
1844
|
/**
|
|
1845
|
-
* @
|
|
1845
|
+
* @public
|
|
1846
1846
|
*/
|
|
1847
1847
|
export declare interface LocalizeItemRequest {
|
|
1848
1848
|
itemId: ItemUri;
|
|
@@ -1850,12 +1850,12 @@ export declare interface LocalizeItemRequest {
|
|
|
1850
1850
|
}
|
|
1851
1851
|
|
|
1852
1852
|
/**
|
|
1853
|
-
* @
|
|
1853
|
+
* @public
|
|
1854
1854
|
*/
|
|
1855
1855
|
export declare type LocalizeItemsMutationHook = (options?: BatchMutationOptions<LocalizeItemsRequest>) => UseMutationResult<Batch, ApiError, LocalizeItemsRequest>;
|
|
1856
1856
|
|
|
1857
1857
|
/**
|
|
1858
|
-
* @
|
|
1858
|
+
* @public
|
|
1859
1859
|
*/
|
|
1860
1860
|
export declare interface LocalizeItemsRequest {
|
|
1861
1861
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -1863,12 +1863,12 @@ export declare interface LocalizeItemsRequest {
|
|
|
1863
1863
|
}
|
|
1864
1864
|
|
|
1865
1865
|
/**
|
|
1866
|
-
* @
|
|
1866
|
+
* @public
|
|
1867
1867
|
*/
|
|
1868
1868
|
export declare type MoveItemMutationHook = (options?: UseMutationOptions<RepositoryLocalObject, ApiError, MoveItemRequest>) => UseMutationResult<RepositoryLocalObject, ApiError, MoveItemRequest>;
|
|
1869
1869
|
|
|
1870
1870
|
/**
|
|
1871
|
-
* @
|
|
1871
|
+
* @public
|
|
1872
1872
|
*/
|
|
1873
1873
|
export declare interface MoveItemRequest {
|
|
1874
1874
|
itemId: ItemUri;
|
|
@@ -1877,12 +1877,12 @@ export declare interface MoveItemRequest {
|
|
|
1877
1877
|
}
|
|
1878
1878
|
|
|
1879
1879
|
/**
|
|
1880
|
-
* @
|
|
1880
|
+
* @public
|
|
1881
1881
|
*/
|
|
1882
1882
|
export declare type MoveItemsMutationHook = (options?: BatchMutationOptions<MoveItemsRequest>) => UseMutationResult<Batch, ApiError, MoveItemsRequest>;
|
|
1883
1883
|
|
|
1884
1884
|
/**
|
|
1885
|
-
* @
|
|
1885
|
+
* @public
|
|
1886
1886
|
*/
|
|
1887
1887
|
export declare interface MoveItemsRequest {
|
|
1888
1888
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -1891,7 +1891,7 @@ export declare interface MoveItemsRequest {
|
|
|
1891
1891
|
}
|
|
1892
1892
|
|
|
1893
1893
|
/**
|
|
1894
|
-
* @
|
|
1894
|
+
* @public
|
|
1895
1895
|
*/
|
|
1896
1896
|
export declare interface MultimediaUploadResult {
|
|
1897
1897
|
componentLink?: Link_2;
|
|
@@ -1899,7 +1899,7 @@ export declare interface MultimediaUploadResult {
|
|
|
1899
1899
|
}
|
|
1900
1900
|
|
|
1901
1901
|
/**
|
|
1902
|
-
* @
|
|
1902
|
+
* @public
|
|
1903
1903
|
*/
|
|
1904
1904
|
export declare interface MutationResponse {
|
|
1905
1905
|
bundle: IdentifiableObject;
|
|
@@ -1907,7 +1907,7 @@ export declare interface MutationResponse {
|
|
|
1907
1907
|
}
|
|
1908
1908
|
|
|
1909
1909
|
/**
|
|
1910
|
-
* @
|
|
1910
|
+
* @public
|
|
1911
1911
|
*/
|
|
1912
1912
|
export declare interface NavigateToContentExplorerProps {
|
|
1913
1913
|
contextNodeId?: string;
|
|
@@ -1915,7 +1915,7 @@ export declare interface NavigateToContentExplorerProps {
|
|
|
1915
1915
|
}
|
|
1916
1916
|
|
|
1917
1917
|
/**
|
|
1918
|
-
* @
|
|
1918
|
+
* @public
|
|
1919
1919
|
*/
|
|
1920
1920
|
export declare interface NavigationExtensions {
|
|
1921
1921
|
items: ReadonlyArray<NavigationItemExtension>;
|
|
@@ -1923,7 +1923,7 @@ export declare interface NavigationExtensions {
|
|
|
1923
1923
|
}
|
|
1924
1924
|
|
|
1925
1925
|
/**
|
|
1926
|
-
* @
|
|
1926
|
+
* @public
|
|
1927
1927
|
*/
|
|
1928
1928
|
export declare class NavigationExtensionsBuilder {
|
|
1929
1929
|
private _navigationItemExtensions;
|
|
@@ -1933,12 +1933,12 @@ export declare class NavigationExtensionsBuilder {
|
|
|
1933
1933
|
}
|
|
1934
1934
|
|
|
1935
1935
|
/**
|
|
1936
|
-
* @
|
|
1936
|
+
* @public
|
|
1937
1937
|
*/
|
|
1938
1938
|
export declare type NavigationItemExtension = () => NavigationItemExtensionConfiguration;
|
|
1939
1939
|
|
|
1940
1940
|
/**
|
|
1941
|
-
* @
|
|
1941
|
+
* @public
|
|
1942
1942
|
*/
|
|
1943
1943
|
export declare interface NavigationItemExtensionConfiguration {
|
|
1944
1944
|
/**
|
|
@@ -1960,7 +1960,7 @@ export declare interface NavigationItemExtensionConfiguration {
|
|
|
1960
1960
|
}
|
|
1961
1961
|
|
|
1962
1962
|
/**
|
|
1963
|
-
* @
|
|
1963
|
+
* @public
|
|
1964
1964
|
*/
|
|
1965
1965
|
export declare type NavigationItemHook = () => {
|
|
1966
1966
|
/**
|
|
@@ -1987,12 +1987,12 @@ export declare type NavigationItemHook = () => {
|
|
|
1987
1987
|
};
|
|
1988
1988
|
|
|
1989
1989
|
/**
|
|
1990
|
-
* @
|
|
1990
|
+
* @public
|
|
1991
1991
|
*/
|
|
1992
1992
|
export declare type NavigationItemId = ValuesOfArray<typeof navigationItemIds>;
|
|
1993
1993
|
|
|
1994
1994
|
/**
|
|
1995
|
-
* @
|
|
1995
|
+
* @public
|
|
1996
1996
|
*/
|
|
1997
1997
|
export declare const navigationItemId: {
|
|
1998
1998
|
activitiesExplorer: "activitiesExplorer";
|
|
@@ -2000,12 +2000,12 @@ export declare const navigationItemId: {
|
|
|
2000
2000
|
};
|
|
2001
2001
|
|
|
2002
2002
|
/**
|
|
2003
|
-
* @
|
|
2003
|
+
* @public
|
|
2004
2004
|
*/
|
|
2005
2005
|
export declare const navigationItemIds: readonly ["activitiesExplorer", "contentExplorer"];
|
|
2006
2006
|
|
|
2007
2007
|
/**
|
|
2008
|
-
* @
|
|
2008
|
+
* @public
|
|
2009
2009
|
*/
|
|
2010
2010
|
export declare interface NavigationItemRenderLabel {
|
|
2011
2011
|
/**
|
|
@@ -2015,24 +2015,24 @@ export declare interface NavigationItemRenderLabel {
|
|
|
2015
2015
|
}
|
|
2016
2016
|
|
|
2017
2017
|
/**
|
|
2018
|
-
* @
|
|
2018
|
+
* @public
|
|
2019
2019
|
*/
|
|
2020
2020
|
export declare type NotificationsHook = () => NotificationsHookResult;
|
|
2021
2021
|
|
|
2022
2022
|
/**
|
|
2023
|
-
* @
|
|
2023
|
+
* @public
|
|
2024
2024
|
*/
|
|
2025
2025
|
export declare interface NotificationsHookResult {
|
|
2026
2026
|
notify: (args: NotifyArguments) => void;
|
|
2027
2027
|
}
|
|
2028
2028
|
|
|
2029
2029
|
/**
|
|
2030
|
-
* @
|
|
2030
|
+
* @public
|
|
2031
2031
|
*/
|
|
2032
2032
|
export declare type NotificationType = 'error' | 'info' | 'success' | 'warning';
|
|
2033
2033
|
|
|
2034
2034
|
/**
|
|
2035
|
-
* @
|
|
2035
|
+
* @public
|
|
2036
2036
|
*/
|
|
2037
2037
|
export declare interface NotifyArguments {
|
|
2038
2038
|
type: NotificationType;
|
|
@@ -2049,12 +2049,12 @@ export declare interface PageEditorApiStorage {
|
|
|
2049
2049
|
}
|
|
2050
2050
|
|
|
2051
2051
|
/**
|
|
2052
|
-
* @
|
|
2052
|
+
* @public
|
|
2053
2053
|
*/
|
|
2054
2054
|
export declare type PageEditorHook = () => PageEditorHookResult | undefined;
|
|
2055
2055
|
|
|
2056
2056
|
/**
|
|
2057
|
-
* @
|
|
2057
|
+
* @public
|
|
2058
2058
|
*/
|
|
2059
2059
|
export declare interface PageEditorHookResult {
|
|
2060
2060
|
page: Page;
|
|
@@ -2073,41 +2073,41 @@ export declare interface PageEditorHooksApiStorage {
|
|
|
2073
2073
|
}
|
|
2074
2074
|
|
|
2075
2075
|
/**
|
|
2076
|
-
* @
|
|
2076
|
+
* @public
|
|
2077
2077
|
*/
|
|
2078
2078
|
export declare type PublicationBlueprintHierarchyQueryHook = (props: PublicationBlueprintHierarchyQueryProps | undefined, options?: QueryOptions<PublicationBlueprintHierarchy | undefined, ApiError>) => UseQueryResult<PublicationBlueprintHierarchy | undefined, ApiError>;
|
|
2079
2079
|
|
|
2080
2080
|
/**
|
|
2081
|
-
* @
|
|
2081
|
+
* @public
|
|
2082
2082
|
*/
|
|
2083
2083
|
export declare interface PublicationBlueprintHierarchyQueryProps {
|
|
2084
2084
|
publicationId: ItemUri;
|
|
2085
2085
|
}
|
|
2086
2086
|
|
|
2087
2087
|
/**
|
|
2088
|
-
* @
|
|
2088
|
+
* @public
|
|
2089
2089
|
*/
|
|
2090
2090
|
export declare type PublicationsQueryHook = (options?: QueryOptions<ReadonlyArray<Publication> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<Publication> | undefined, ApiError>;
|
|
2091
2091
|
|
|
2092
2092
|
/**
|
|
2093
|
-
* @
|
|
2093
|
+
* @public
|
|
2094
2094
|
*/
|
|
2095
2095
|
export declare type PublishableTargetTypesQueryHook = (props: PublishableTargetTypesQueryProps | undefined, options?: QueryOptions<ReadonlyArray<TargetType> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<TargetType> | undefined, ApiError>;
|
|
2096
2096
|
|
|
2097
2097
|
/**
|
|
2098
|
-
* @
|
|
2098
|
+
* @public
|
|
2099
2099
|
*/
|
|
2100
2100
|
export declare interface PublishableTargetTypesQueryProps {
|
|
2101
2101
|
businessProcessTypeId: ItemUri;
|
|
2102
2102
|
}
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
|
-
* @
|
|
2105
|
+
* @public
|
|
2106
2106
|
*/
|
|
2107
2107
|
export declare type PublishItemsMutationHook = (options?: UseMutationOptions<PublishTransactionsCreationResult, ApiError, PublishItemsRequest>) => UseMutationResult<PublishTransactionsCreationResult, ApiError, PublishItemsRequest>;
|
|
2108
2108
|
|
|
2109
2109
|
/**
|
|
2110
|
-
* @
|
|
2110
|
+
* @public
|
|
2111
2111
|
*/
|
|
2112
2112
|
export declare interface PublishItemsRequest {
|
|
2113
2113
|
/**
|
|
@@ -2163,7 +2163,7 @@ export declare interface PublishItemsRequest {
|
|
|
2163
2163
|
}
|
|
2164
2164
|
|
|
2165
2165
|
/**
|
|
2166
|
-
* @
|
|
2166
|
+
* @public
|
|
2167
2167
|
*/
|
|
2168
2168
|
export declare type QueryOptions<TQueryFnData = unknown, TError = unknown, TData = TQueryFnData, TQueryKey extends QueryKey = QueryKey> = Omit<UseQueryOptions<TQueryFnData, TError, TData, TQueryKey>, 'queryKey' | 'queryFn'>;
|
|
2169
2169
|
|
|
@@ -2198,12 +2198,12 @@ declare interface ReadonlyHierarchyNode<TData> {
|
|
|
2198
2198
|
}
|
|
2199
2199
|
|
|
2200
2200
|
/**
|
|
2201
|
-
* @
|
|
2201
|
+
* @public
|
|
2202
2202
|
*/
|
|
2203
2203
|
export declare type RemoveFromBundleMutationHook = (options?: UseMutationOptions<IdentifiableObject, ApiError, RemoveFromBundleRequest>) => UseMutationResult<IdentifiableObject, ApiError, RemoveFromBundleRequest>;
|
|
2204
2204
|
|
|
2205
2205
|
/**
|
|
2206
|
-
* @
|
|
2206
|
+
* @public
|
|
2207
2207
|
*/
|
|
2208
2208
|
export declare interface RemoveFromBundleRequest {
|
|
2209
2209
|
bundleId: ItemUri;
|
|
@@ -2211,36 +2211,36 @@ export declare interface RemoveFromBundleRequest {
|
|
|
2211
2211
|
}
|
|
2212
2212
|
|
|
2213
2213
|
/**
|
|
2214
|
-
* @
|
|
2214
|
+
* @public
|
|
2215
2215
|
*/
|
|
2216
2216
|
export declare type RestartActivitiesMutationHook = (options?: BatchMutationOptions<RestartActivitiesRequest>) => UseMutationResult<Batch, ApiError, RestartActivitiesRequest>;
|
|
2217
2217
|
|
|
2218
2218
|
/**
|
|
2219
|
-
* @
|
|
2219
|
+
* @public
|
|
2220
2220
|
*/
|
|
2221
2221
|
export declare interface RestartActivitiesRequest {
|
|
2222
2222
|
activityInstances: ReadonlyArray<ActivityInstance>;
|
|
2223
2223
|
}
|
|
2224
2224
|
|
|
2225
2225
|
/**
|
|
2226
|
-
* @
|
|
2226
|
+
* @public
|
|
2227
2227
|
*/
|
|
2228
2228
|
export declare type RestartActivityMutationHook = (options?: UseMutationOptions<ActivityInstance, ApiError, RestartActivityRequest>) => UseMutationResult<ActivityInstance, ApiError, RestartActivityRequest>;
|
|
2229
2229
|
|
|
2230
2230
|
/**
|
|
2231
|
-
* @
|
|
2231
|
+
* @public
|
|
2232
2232
|
*/
|
|
2233
2233
|
export declare interface RestartActivityRequest {
|
|
2234
2234
|
activityInstanceId: ItemUri;
|
|
2235
2235
|
}
|
|
2236
2236
|
|
|
2237
2237
|
/**
|
|
2238
|
-
* @
|
|
2238
|
+
* @public
|
|
2239
2239
|
*/
|
|
2240
2240
|
export declare type RevertItemMutationHook = (options?: UseMutationOptions<RepositoryLocalObject | void, ApiError, RevertItemRequest>) => UseMutationResult<RepositoryLocalObject | void, ApiError, RevertItemRequest>;
|
|
2241
2241
|
|
|
2242
2242
|
/**
|
|
2243
|
-
* @
|
|
2243
|
+
* @public
|
|
2244
2244
|
*/
|
|
2245
2245
|
export declare interface RevertItemRequest {
|
|
2246
2246
|
item: IdentifiableObject;
|
|
@@ -2248,12 +2248,12 @@ export declare interface RevertItemRequest {
|
|
|
2248
2248
|
}
|
|
2249
2249
|
|
|
2250
2250
|
/**
|
|
2251
|
-
* @
|
|
2251
|
+
* @public
|
|
2252
2252
|
*/
|
|
2253
2253
|
export declare type RevertItemsMutationHook = (options?: BatchMutationOptions<RevertItemsRequest>) => UseMutationResult<Batch, ApiError, RevertItemsRequest>;
|
|
2254
2254
|
|
|
2255
2255
|
/**
|
|
2256
|
-
* @
|
|
2256
|
+
* @public
|
|
2257
2257
|
*/
|
|
2258
2258
|
export declare interface RevertItemsRequest {
|
|
2259
2259
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -2261,7 +2261,7 @@ export declare interface RevertItemsRequest {
|
|
|
2261
2261
|
}
|
|
2262
2262
|
|
|
2263
2263
|
/**
|
|
2264
|
-
* @
|
|
2264
|
+
* @public
|
|
2265
2265
|
*/
|
|
2266
2266
|
export declare interface RichTextFieldConfig {
|
|
2267
2267
|
readonly id: string;
|
|
@@ -2269,12 +2269,12 @@ export declare interface RichTextFieldConfig {
|
|
|
2269
2269
|
}
|
|
2270
2270
|
|
|
2271
2271
|
/**
|
|
2272
|
-
* @
|
|
2272
|
+
* @public
|
|
2273
2273
|
*/
|
|
2274
2274
|
export declare type RichTextFieldCustomization = (configuration: RichTextFieldOptions) => void;
|
|
2275
2275
|
|
|
2276
2276
|
/**
|
|
2277
|
-
* @
|
|
2277
|
+
* @public
|
|
2278
2278
|
*/
|
|
2279
2279
|
export declare interface RichTextFieldExtensions {
|
|
2280
2280
|
readonly customizations: RichTextFieldConfig[];
|
|
@@ -2282,7 +2282,7 @@ export declare interface RichTextFieldExtensions {
|
|
|
2282
2282
|
}
|
|
2283
2283
|
|
|
2284
2284
|
/**
|
|
2285
|
-
* @
|
|
2285
|
+
* @public
|
|
2286
2286
|
*/
|
|
2287
2287
|
export declare class RichTextFieldExtensionsBuilder {
|
|
2288
2288
|
private _customizations;
|
|
@@ -2293,12 +2293,12 @@ export declare class RichTextFieldExtensionsBuilder {
|
|
|
2293
2293
|
}
|
|
2294
2294
|
|
|
2295
2295
|
/**
|
|
2296
|
-
* @
|
|
2296
|
+
* @public
|
|
2297
2297
|
*/
|
|
2298
2298
|
export declare type RichTextFieldHook = (props: RichTextFieldHookProps) => RichTextFieldHookResult;
|
|
2299
2299
|
|
|
2300
2300
|
/**
|
|
2301
|
-
* @
|
|
2301
|
+
* @public
|
|
2302
2302
|
*/
|
|
2303
2303
|
export declare interface RichTextFieldHookProps {
|
|
2304
2304
|
/**
|
|
@@ -2312,7 +2312,7 @@ export declare interface RichTextFieldHookProps {
|
|
|
2312
2312
|
}
|
|
2313
2313
|
|
|
2314
2314
|
/**
|
|
2315
|
-
* @
|
|
2315
|
+
* @public
|
|
2316
2316
|
*/
|
|
2317
2317
|
export declare type RichTextFieldHookResult = {
|
|
2318
2318
|
readonly customize?: RichTextFieldCustomization;
|
|
@@ -2321,12 +2321,12 @@ export declare type RichTextFieldHookResult = {
|
|
|
2321
2321
|
};
|
|
2322
2322
|
|
|
2323
2323
|
/**
|
|
2324
|
-
* @
|
|
2324
|
+
* @public
|
|
2325
2325
|
*/
|
|
2326
2326
|
export declare type RichTextFieldOptions = Omit<RawEditorOptions, 'id' | 'selector' | 'setup' | 'target'>;
|
|
2327
2327
|
|
|
2328
2328
|
/**
|
|
2329
|
-
* @
|
|
2329
|
+
* @public
|
|
2330
2330
|
*/
|
|
2331
2331
|
export declare interface RichTextFieldPlugin {
|
|
2332
2332
|
readonly id: string;
|
|
@@ -2334,17 +2334,17 @@ export declare interface RichTextFieldPlugin {
|
|
|
2334
2334
|
}
|
|
2335
2335
|
|
|
2336
2336
|
/**
|
|
2337
|
-
* @
|
|
2337
|
+
* @public
|
|
2338
2338
|
*/
|
|
2339
2339
|
export declare type RichTextFieldSetup = RawEditorOptions['setup'];
|
|
2340
2340
|
|
|
2341
2341
|
/**
|
|
2342
|
-
* @
|
|
2342
|
+
* @public
|
|
2343
2343
|
*/
|
|
2344
2344
|
export declare type RollbackItemMutationHook = (options?: UseMutationOptions<RepositoryLocalObject, ApiError, RollbackItemRequest>) => UseMutationResult<RepositoryLocalObject, ApiError, RollbackItemRequest>;
|
|
2345
2345
|
|
|
2346
2346
|
/**
|
|
2347
|
-
* @
|
|
2347
|
+
* @public
|
|
2348
2348
|
*/
|
|
2349
2349
|
export declare interface RollbackItemRequest {
|
|
2350
2350
|
itemId: ItemUri;
|
|
@@ -2353,7 +2353,7 @@ export declare interface RollbackItemRequest {
|
|
|
2353
2353
|
}
|
|
2354
2354
|
|
|
2355
2355
|
/**
|
|
2356
|
-
* @
|
|
2356
|
+
* @public
|
|
2357
2357
|
*/
|
|
2358
2358
|
export declare interface RuntimeInformation {
|
|
2359
2359
|
name: string;
|
|
@@ -2361,12 +2361,12 @@ export declare interface RuntimeInformation {
|
|
|
2361
2361
|
}
|
|
2362
2362
|
|
|
2363
2363
|
/**
|
|
2364
|
-
* @
|
|
2364
|
+
* @public
|
|
2365
2365
|
*/
|
|
2366
2366
|
export declare type SearchInContainerQueryHook = (props: SearchInContainerQueryProps | undefined, options?: QueryOptions<ReadonlyArray<IdentifiableObject> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<IdentifiableObject> | undefined, ApiError>;
|
|
2367
2367
|
|
|
2368
2368
|
/**
|
|
2369
|
-
* @
|
|
2369
|
+
* @public
|
|
2370
2370
|
*/
|
|
2371
2371
|
export declare interface SearchInContainerQueryProps {
|
|
2372
2372
|
/**
|
|
@@ -2387,7 +2387,7 @@ export declare interface SearchInContainerQueryProps {
|
|
|
2387
2387
|
}
|
|
2388
2388
|
|
|
2389
2389
|
/**
|
|
2390
|
-
* @
|
|
2390
|
+
* @public
|
|
2391
2391
|
*/
|
|
2392
2392
|
export declare interface SizeProps {
|
|
2393
2393
|
/**
|
|
@@ -2411,7 +2411,7 @@ export declare interface SizeProps {
|
|
|
2411
2411
|
}
|
|
2412
2412
|
|
|
2413
2413
|
/**
|
|
2414
|
-
* @
|
|
2414
|
+
* @public
|
|
2415
2415
|
*/
|
|
2416
2416
|
export declare interface SpaceProps {
|
|
2417
2417
|
margin?: SpacingUnit | SpacingUnit[];
|
|
@@ -2427,41 +2427,41 @@ export declare interface SpaceProps {
|
|
|
2427
2427
|
}
|
|
2428
2428
|
|
|
2429
2429
|
/**
|
|
2430
|
-
* @
|
|
2430
|
+
* @public
|
|
2431
2431
|
*/
|
|
2432
2432
|
export declare type SpacingUnit = 'zero' | 'nano' | 'xs' | 'sm' | 'md' | 'lg';
|
|
2433
2433
|
|
|
2434
2434
|
/**
|
|
2435
|
-
* @
|
|
2435
|
+
* @public
|
|
2436
2436
|
*/
|
|
2437
2437
|
export declare type StartActivitiesMutationHook = (options?: BatchMutationOptions<StartActivitiesRequest>) => UseMutationResult<Batch, ApiError, StartActivitiesRequest>;
|
|
2438
2438
|
|
|
2439
2439
|
/**
|
|
2440
|
-
* @
|
|
2440
|
+
* @public
|
|
2441
2441
|
*/
|
|
2442
2442
|
export declare interface StartActivitiesRequest {
|
|
2443
2443
|
activityInstances: ReadonlyArray<ActivityInstance>;
|
|
2444
2444
|
}
|
|
2445
2445
|
|
|
2446
2446
|
/**
|
|
2447
|
-
* @
|
|
2447
|
+
* @public
|
|
2448
2448
|
*/
|
|
2449
2449
|
export declare type StartActivityMutationHook = (options?: UseMutationOptions<ActivityInstance, ApiError, StartActivityRequest>) => UseMutationResult<ActivityInstance, ApiError, StartActivityRequest>;
|
|
2450
2450
|
|
|
2451
2451
|
/**
|
|
2452
|
-
* @
|
|
2452
|
+
* @public
|
|
2453
2453
|
*/
|
|
2454
2454
|
export declare interface StartActivityRequest {
|
|
2455
2455
|
activityInstanceId: ItemUri;
|
|
2456
2456
|
}
|
|
2457
2457
|
|
|
2458
2458
|
/**
|
|
2459
|
-
* @
|
|
2459
|
+
* @public
|
|
2460
2460
|
*/
|
|
2461
2461
|
export declare type StartWorkflowMutationHook = (options?: UseMutationOptions<ProcessInstance, ApiError, StartWorkflowRequest>) => UseMutationResult<ProcessInstance, ApiError, StartWorkflowRequest>;
|
|
2462
2462
|
|
|
2463
2463
|
/**
|
|
2464
|
-
* @
|
|
2464
|
+
* @public
|
|
2465
2465
|
*/
|
|
2466
2466
|
export declare interface StartWorkflowRequest {
|
|
2467
2467
|
itemId: ItemUri;
|
|
@@ -2475,12 +2475,12 @@ export declare interface StructureGroupEditorApiStorage {
|
|
|
2475
2475
|
}
|
|
2476
2476
|
|
|
2477
2477
|
/**
|
|
2478
|
-
* @
|
|
2478
|
+
* @public
|
|
2479
2479
|
*/
|
|
2480
2480
|
export declare type StructureGroupEditorHook = () => StructureGroupEditorHookResult | undefined;
|
|
2481
2481
|
|
|
2482
2482
|
/**
|
|
2483
|
-
* @
|
|
2483
|
+
* @public
|
|
2484
2484
|
*/
|
|
2485
2485
|
export declare interface StructureGroupEditorHookResult {
|
|
2486
2486
|
structureGroup: StructureGroup;
|
|
@@ -2497,12 +2497,12 @@ export declare interface StructureGroupEditorHooksApiStorage {
|
|
|
2497
2497
|
}
|
|
2498
2498
|
|
|
2499
2499
|
/**
|
|
2500
|
-
* @
|
|
2500
|
+
* @public
|
|
2501
2501
|
*/
|
|
2502
2502
|
export declare type SystemSearchQueryHook = (props?: SystemSearchQueryProps, options?: QueryOptions<ReadonlyArray<IdentifiableObject> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<IdentifiableObject> | undefined, ApiError>;
|
|
2503
2503
|
|
|
2504
2504
|
/**
|
|
2505
|
-
* @
|
|
2505
|
+
* @public
|
|
2506
2506
|
*/
|
|
2507
2507
|
export declare interface SystemSearchQueryProps {
|
|
2508
2508
|
/**
|
|
@@ -2522,12 +2522,12 @@ export declare interface SystemSearchQueryProps {
|
|
|
2522
2522
|
}
|
|
2523
2523
|
|
|
2524
2524
|
/**
|
|
2525
|
-
* @
|
|
2525
|
+
* @public
|
|
2526
2526
|
*/
|
|
2527
2527
|
export declare type TableColumnExtension<TItem extends IdentifiableObject> = () => TableColumnExtensionConfiguration<TItem>;
|
|
2528
2528
|
|
|
2529
2529
|
/**
|
|
2530
|
-
* @
|
|
2530
|
+
* @public
|
|
2531
2531
|
*/
|
|
2532
2532
|
export declare interface TableColumnExtensionComponentProps<TItem extends IdentifiableObject> {
|
|
2533
2533
|
/**
|
|
@@ -2537,7 +2537,7 @@ export declare interface TableColumnExtensionComponentProps<TItem extends Identi
|
|
|
2537
2537
|
}
|
|
2538
2538
|
|
|
2539
2539
|
/**
|
|
2540
|
-
* @
|
|
2540
|
+
* @public
|
|
2541
2541
|
*/
|
|
2542
2542
|
export declare interface TableColumnExtensionConfiguration<TItem extends IdentifiableObject> {
|
|
2543
2543
|
/**
|
|
@@ -2571,18 +2571,18 @@ export declare interface TableColumnExtensionConfiguration<TItem extends Identif
|
|
|
2571
2571
|
}
|
|
2572
2572
|
|
|
2573
2573
|
/**
|
|
2574
|
-
* @
|
|
2574
|
+
* @public
|
|
2575
2575
|
*/
|
|
2576
2576
|
export declare type TableColumnIsAvailableHook = () => boolean;
|
|
2577
2577
|
|
|
2578
2578
|
/**
|
|
2579
|
-
* @
|
|
2579
|
+
* @public
|
|
2580
2580
|
*/
|
|
2581
2581
|
declare const Text_2: TextComponent;
|
|
2582
2582
|
export { Text_2 as Text }
|
|
2583
2583
|
|
|
2584
2584
|
/**
|
|
2585
|
-
* @
|
|
2585
|
+
* @public
|
|
2586
2586
|
*/
|
|
2587
2587
|
export declare type TextComponent = FunctionComponent<TextProps>;
|
|
2588
2588
|
|
|
@@ -2593,26 +2593,26 @@ export declare type TextComponent = FunctionComponent<TextProps>;
|
|
|
2593
2593
|
export declare const TextLink: TextLinkComponent;
|
|
2594
2594
|
|
|
2595
2595
|
/**
|
|
2596
|
-
* @
|
|
2596
|
+
* @public
|
|
2597
2597
|
*/
|
|
2598
2598
|
export declare type TextLinkComponent = FunctionComponent<TextLinkProps>;
|
|
2599
2599
|
|
|
2600
2600
|
/**
|
|
2601
|
-
* @
|
|
2601
|
+
* @public
|
|
2602
2602
|
*/
|
|
2603
2603
|
export declare interface TextLinkProps extends TextProps, LinkProps {
|
|
2604
2604
|
text: string;
|
|
2605
2605
|
}
|
|
2606
2606
|
|
|
2607
2607
|
/**
|
|
2608
|
-
* @
|
|
2608
|
+
* @public
|
|
2609
2609
|
*/
|
|
2610
2610
|
export declare interface TextProps {
|
|
2611
2611
|
children?: ReactNode;
|
|
2612
2612
|
}
|
|
2613
2613
|
|
|
2614
2614
|
/**
|
|
2615
|
-
* @
|
|
2615
|
+
* @public
|
|
2616
2616
|
*/
|
|
2617
2617
|
export declare interface TooltipProps {
|
|
2618
2618
|
/**
|
|
@@ -2622,14 +2622,14 @@ export declare interface TooltipProps {
|
|
|
2622
2622
|
}
|
|
2623
2623
|
|
|
2624
2624
|
/**
|
|
2625
|
-
* @
|
|
2625
|
+
* @public
|
|
2626
2626
|
*/
|
|
2627
2627
|
export declare interface TranslationExtensions {
|
|
2628
2628
|
translations: ReadonlyArray<TranslationItemExtension>;
|
|
2629
2629
|
}
|
|
2630
2630
|
|
|
2631
2631
|
/**
|
|
2632
|
-
* @
|
|
2632
|
+
* @public
|
|
2633
2633
|
*/
|
|
2634
2634
|
export declare class TranslationExtensionsBuilder {
|
|
2635
2635
|
private _translations;
|
|
@@ -2644,12 +2644,12 @@ export declare class TranslationExtensionsBuilder {
|
|
|
2644
2644
|
}
|
|
2645
2645
|
|
|
2646
2646
|
/**
|
|
2647
|
-
* @
|
|
2647
|
+
* @public
|
|
2648
2648
|
*/
|
|
2649
2649
|
export declare type TranslationItemExtension = () => TranslationItemExtensionConfiguration;
|
|
2650
2650
|
|
|
2651
2651
|
/**
|
|
2652
|
-
* @
|
|
2652
|
+
* @public
|
|
2653
2653
|
*/
|
|
2654
2654
|
export declare interface TranslationItemExtensionConfiguration {
|
|
2655
2655
|
/**
|
|
@@ -2663,12 +2663,12 @@ export declare interface TranslationItemExtensionConfiguration {
|
|
|
2663
2663
|
}
|
|
2664
2664
|
|
|
2665
2665
|
/**
|
|
2666
|
-
* @
|
|
2666
|
+
* @public
|
|
2667
2667
|
*/
|
|
2668
2668
|
export declare type UnlocalizeItemMutationHook = (options?: UseMutationOptions<RepositoryLocalObject, ApiError, UnlocalizeItemRequest>) => UseMutationResult<RepositoryLocalObject, ApiError, UnlocalizeItemRequest>;
|
|
2669
2669
|
|
|
2670
2670
|
/**
|
|
2671
|
-
* @
|
|
2671
|
+
* @public
|
|
2672
2672
|
*/
|
|
2673
2673
|
export declare interface UnlocalizeItemRequest {
|
|
2674
2674
|
itemId: ItemUri;
|
|
@@ -2677,12 +2677,12 @@ export declare interface UnlocalizeItemRequest {
|
|
|
2677
2677
|
}
|
|
2678
2678
|
|
|
2679
2679
|
/**
|
|
2680
|
-
* @
|
|
2680
|
+
* @public
|
|
2681
2681
|
*/
|
|
2682
2682
|
export declare type UnlocalizeItemsMutationHook = (options?: BatchMutationOptions<UnlocalizeItemsRequest>) => UseMutationResult<Batch, ApiError, UnlocalizeItemsRequest>;
|
|
2683
2683
|
|
|
2684
2684
|
/**
|
|
2685
|
-
* @
|
|
2685
|
+
* @public
|
|
2686
2686
|
*/
|
|
2687
2687
|
export declare interface UnlocalizeItemsRequest {
|
|
2688
2688
|
itemIds: ReadonlyArray<ItemUri>;
|
|
@@ -2690,12 +2690,12 @@ export declare interface UnlocalizeItemsRequest {
|
|
|
2690
2690
|
}
|
|
2691
2691
|
|
|
2692
2692
|
/**
|
|
2693
|
-
* @
|
|
2693
|
+
* @public
|
|
2694
2694
|
*/
|
|
2695
2695
|
export declare type UnpublishItemsMutationHook = (options?: UseMutationOptions<PublishTransactionsCreationResult, ApiError, UnpublishItemsRequest>) => UseMutationResult<PublishTransactionsCreationResult, ApiError, UnpublishItemsRequest>;
|
|
2696
2696
|
|
|
2697
2697
|
/**
|
|
2698
|
-
* @
|
|
2698
|
+
* @public
|
|
2699
2699
|
*/
|
|
2700
2700
|
export declare interface UnpublishItemsRequest {
|
|
2701
2701
|
/**
|
|
@@ -2735,24 +2735,24 @@ export declare interface UnpublishItemsRequest {
|
|
|
2735
2735
|
}
|
|
2736
2736
|
|
|
2737
2737
|
/**
|
|
2738
|
-
* @
|
|
2738
|
+
* @public
|
|
2739
2739
|
*/
|
|
2740
2740
|
export declare type UpdateItemMutationHook = (options?: UseMutationOptions<IdentifiableObject, ApiError, UpdateItemRequest>) => UseMutationResult<IdentifiableObject, ApiError, UpdateItemRequest>;
|
|
2741
2741
|
|
|
2742
2742
|
/**
|
|
2743
|
-
* @
|
|
2743
|
+
* @public
|
|
2744
2744
|
*/
|
|
2745
2745
|
export declare interface UpdateItemRequest {
|
|
2746
2746
|
item: IdentifiableObject;
|
|
2747
2747
|
}
|
|
2748
2748
|
|
|
2749
2749
|
/**
|
|
2750
|
-
* @
|
|
2750
|
+
* @public
|
|
2751
2751
|
*/
|
|
2752
2752
|
export declare type UploadMultimediaMutationHook = (options?: UseMutationOptions<UploadMultimediaMutationResult, ApiError, UploadMultimediaRequest>) => UseMutationResult<UploadMultimediaMutationResult, ApiError, UploadMultimediaRequest>;
|
|
2753
2753
|
|
|
2754
2754
|
/**
|
|
2755
|
-
* @
|
|
2755
|
+
* @public
|
|
2756
2756
|
*/
|
|
2757
2757
|
export declare interface UploadMultimediaMutationResult {
|
|
2758
2758
|
processId: string;
|
|
@@ -2760,7 +2760,7 @@ export declare interface UploadMultimediaMutationResult {
|
|
|
2760
2760
|
}
|
|
2761
2761
|
|
|
2762
2762
|
/**
|
|
2763
|
-
* @
|
|
2763
|
+
* @public
|
|
2764
2764
|
*/
|
|
2765
2765
|
export declare interface UploadMultimediaRequest {
|
|
2766
2766
|
files: ReadonlyArray<File>;
|
|
@@ -2769,312 +2769,312 @@ export declare interface UploadMultimediaRequest {
|
|
|
2769
2769
|
}
|
|
2770
2770
|
|
|
2771
2771
|
/**
|
|
2772
|
-
* @
|
|
2772
|
+
* @public
|
|
2773
2773
|
*/
|
|
2774
2774
|
export declare const useActivitiesExplorerTable: ActivitiesExplorerTableHook;
|
|
2775
2775
|
|
|
2776
2776
|
/**
|
|
2777
|
-
* @
|
|
2777
|
+
* @public
|
|
2778
2778
|
*/
|
|
2779
2779
|
export declare const useActivityInstancesQuery: ActivityInstancesQueryHook;
|
|
2780
2780
|
|
|
2781
2781
|
/**
|
|
2782
|
-
* @
|
|
2782
|
+
* @public
|
|
2783
2783
|
*/
|
|
2784
2784
|
export declare const useAddToBundleMutation: AddToBundleMutationHook;
|
|
2785
2785
|
|
|
2786
2786
|
/**
|
|
2787
|
-
* @
|
|
2787
|
+
* @public
|
|
2788
2788
|
*/
|
|
2789
2789
|
export declare const useAssignActivitiesMutation: AssignActivitiesMutationHook;
|
|
2790
2790
|
|
|
2791
2791
|
/**
|
|
2792
|
-
* @
|
|
2792
|
+
* @public
|
|
2793
2793
|
*/
|
|
2794
2794
|
export declare const useAssignActivityMutation: AssignActivityMutationHook;
|
|
2795
2795
|
|
|
2796
2796
|
/**
|
|
2797
|
-
* @
|
|
2797
|
+
* @public
|
|
2798
2798
|
*/
|
|
2799
2799
|
export declare const useAutoClassifyItemMutation: AutoClassifyItemMutationHook;
|
|
2800
2800
|
|
|
2801
2801
|
/**
|
|
2802
|
-
* @
|
|
2802
|
+
* @public
|
|
2803
2803
|
*/
|
|
2804
2804
|
export declare const useAutoClassifyItemsMutation: AutoClassifyItemsMutationHook;
|
|
2805
2805
|
|
|
2806
2806
|
/**
|
|
2807
|
-
* @
|
|
2807
|
+
* @public
|
|
2808
2808
|
*/
|
|
2809
2809
|
export declare const useBundleEditor: BundleEditorHook;
|
|
2810
2810
|
|
|
2811
2811
|
/**
|
|
2812
|
-
* @
|
|
2812
|
+
* @public
|
|
2813
2813
|
*/
|
|
2814
2814
|
export declare const useCategoryEditor: CategoryEditorHook;
|
|
2815
2815
|
|
|
2816
2816
|
/**
|
|
2817
|
-
* @
|
|
2817
|
+
* @public
|
|
2818
2818
|
*/
|
|
2819
2819
|
export declare const useChangeUserLanguageMutation: ChangeUserLanguageMutationHook;
|
|
2820
2820
|
|
|
2821
2821
|
/**
|
|
2822
|
-
* @
|
|
2822
|
+
* @public
|
|
2823
2823
|
*/
|
|
2824
2824
|
export declare const useChangeUserLocaleMutation: ChangeUserLocaleMutationHook;
|
|
2825
2825
|
|
|
2826
2826
|
/**
|
|
2827
|
-
* @
|
|
2827
|
+
* @public
|
|
2828
2828
|
*/
|
|
2829
2829
|
export declare const useComponentEditor: ComponentEditorHook;
|
|
2830
2830
|
|
|
2831
2831
|
/**
|
|
2832
|
-
* @
|
|
2832
|
+
* @public
|
|
2833
2833
|
*/
|
|
2834
2834
|
export declare const useConfirmation: ConfirmationHook;
|
|
2835
2835
|
|
|
2836
2836
|
/**
|
|
2837
|
-
* @
|
|
2837
|
+
* @public
|
|
2838
2838
|
*/
|
|
2839
2839
|
export declare const useContentExplorer: ContentExplorerHook;
|
|
2840
2840
|
|
|
2841
2841
|
/**
|
|
2842
|
-
* @
|
|
2842
|
+
* @public
|
|
2843
2843
|
*/
|
|
2844
2844
|
export declare const useContentExplorerTable: ContentExplorerTableHook;
|
|
2845
2845
|
|
|
2846
2846
|
/**
|
|
2847
|
-
* @
|
|
2847
|
+
* @public
|
|
2848
2848
|
*/
|
|
2849
2849
|
export declare const useContentExplorerTree: ContentExplorerTreeHook;
|
|
2850
2850
|
|
|
2851
2851
|
/**
|
|
2852
|
-
* @
|
|
2852
|
+
* @public
|
|
2853
2853
|
*/
|
|
2854
2854
|
export declare const useCopyItemMutation: CopyItemMutationHook;
|
|
2855
2855
|
|
|
2856
2856
|
/**
|
|
2857
|
-
* @
|
|
2857
|
+
* @public
|
|
2858
2858
|
*/
|
|
2859
2859
|
export declare const useCopyItemsMutation: CopyItemsMutationHook;
|
|
2860
2860
|
|
|
2861
2861
|
/**
|
|
2862
|
-
* @
|
|
2862
|
+
* @public
|
|
2863
2863
|
*/
|
|
2864
2864
|
export declare const useCreateTranslationJobMutation: CreateTranslationJobMutationHook;
|
|
2865
2865
|
|
|
2866
2866
|
/**
|
|
2867
|
-
* @
|
|
2867
|
+
* @public
|
|
2868
2868
|
*/
|
|
2869
2869
|
export declare const useDefaultTranslationJobQuery: DefaultTranslationJobQueryHook;
|
|
2870
2870
|
|
|
2871
2871
|
/**
|
|
2872
|
-
* @
|
|
2872
|
+
* @public
|
|
2873
2873
|
*/
|
|
2874
2874
|
export declare const useDeleteItemMutation: DeleteItemMutationHook;
|
|
2875
2875
|
|
|
2876
2876
|
/**
|
|
2877
|
-
* @
|
|
2877
|
+
* @public
|
|
2878
2878
|
*/
|
|
2879
2879
|
export declare const useDeleteItemsMutation: DeleteItemsMutationHook;
|
|
2880
2880
|
|
|
2881
2881
|
/**
|
|
2882
|
-
* @
|
|
2882
|
+
* @public
|
|
2883
2883
|
*/
|
|
2884
2884
|
export declare const useFavoritesQuery: FavoritesQueryHook;
|
|
2885
2885
|
|
|
2886
2886
|
/**
|
|
2887
|
-
* @
|
|
2887
|
+
* @public
|
|
2888
2888
|
*/
|
|
2889
2889
|
export declare const useFinishActivitiesMutation: FinishActivitiesMutationHook;
|
|
2890
2890
|
|
|
2891
2891
|
/**
|
|
2892
|
-
* @
|
|
2892
|
+
* @public
|
|
2893
2893
|
*/
|
|
2894
2894
|
export declare const useFinishActivityMutation: FinishActivityMutationHook;
|
|
2895
2895
|
|
|
2896
2896
|
/**
|
|
2897
|
-
* @
|
|
2897
|
+
* @public
|
|
2898
2898
|
*/
|
|
2899
2899
|
export declare const useFinishEditingItemMutation: FinishEditingItemMutationHook;
|
|
2900
2900
|
|
|
2901
2901
|
/**
|
|
2902
|
-
* @
|
|
2902
|
+
* @public
|
|
2903
2903
|
*/
|
|
2904
2904
|
export declare const useFinishEditingItemsMutation: FinishEditingItemsMutationHook;
|
|
2905
2905
|
|
|
2906
2906
|
/**
|
|
2907
|
-
* @
|
|
2907
|
+
* @public
|
|
2908
2908
|
*/
|
|
2909
2909
|
export declare const useFolderEditor: FolderEditorHook;
|
|
2910
2910
|
|
|
2911
2911
|
/**
|
|
2912
|
-
* @
|
|
2912
|
+
* @public
|
|
2913
2913
|
*/
|
|
2914
2914
|
export declare const useItemBlueprintHierarchyQuery: ItemBlueprintHierarchyQueryHook;
|
|
2915
2915
|
|
|
2916
2916
|
/**
|
|
2917
|
-
* @
|
|
2917
|
+
* @public
|
|
2918
2918
|
*/
|
|
2919
2919
|
export declare const useItemChildrenQuery: ItemChildrenQueryHook;
|
|
2920
2920
|
|
|
2921
2921
|
/**
|
|
2922
|
-
* @
|
|
2922
|
+
* @public
|
|
2923
2923
|
*/
|
|
2924
2924
|
export declare const useItemClassifiedItemsQuery: ItemClassifiedItemsQueryHook;
|
|
2925
2925
|
|
|
2926
2926
|
/**
|
|
2927
|
-
* @
|
|
2927
|
+
* @public
|
|
2928
2928
|
*/
|
|
2929
2929
|
export declare const useItemDefaultDataQuery: ItemDefaultDataQueryHook;
|
|
2930
2930
|
|
|
2931
2931
|
/**
|
|
2932
|
-
* @
|
|
2932
|
+
* @public
|
|
2933
2933
|
*/
|
|
2934
2934
|
export declare const useItemHistoryQuery: ItemHistoryQueryHook;
|
|
2935
2935
|
|
|
2936
2936
|
/**
|
|
2937
|
-
* @
|
|
2937
|
+
* @public
|
|
2938
2938
|
*/
|
|
2939
2939
|
export declare const useItemPublishedPagesQuery: ItemPublishedPagesQueryHook;
|
|
2940
2940
|
|
|
2941
2941
|
/**
|
|
2942
|
-
* @
|
|
2942
|
+
* @public
|
|
2943
2943
|
*/
|
|
2944
2944
|
export declare const useItemPublishedToQuery: ItemPublishedToQueryHook;
|
|
2945
2945
|
|
|
2946
2946
|
/**
|
|
2947
|
-
* @
|
|
2947
|
+
* @public
|
|
2948
2948
|
*/
|
|
2949
2949
|
export declare const useItemPublishUrlsQuery: ItemPublishUrlsQueryHook;
|
|
2950
2950
|
|
|
2951
2951
|
/**
|
|
2952
|
-
* @
|
|
2952
|
+
* @public
|
|
2953
2953
|
*/
|
|
2954
2954
|
export declare const useItemQuery: ItemQueryHook;
|
|
2955
2955
|
|
|
2956
2956
|
/**
|
|
2957
|
-
* @
|
|
2957
|
+
* @public
|
|
2958
2958
|
*/
|
|
2959
2959
|
export declare const useItemsInProgressQuery: ItemsInProgressQueryHook;
|
|
2960
2960
|
|
|
2961
2961
|
/**
|
|
2962
|
-
* @
|
|
2962
|
+
* @public
|
|
2963
2963
|
*/
|
|
2964
2964
|
export declare const useItemsQuery: ItemsQueryHook;
|
|
2965
2965
|
|
|
2966
2966
|
/**
|
|
2967
|
-
* @
|
|
2967
|
+
* @public
|
|
2968
2968
|
*/
|
|
2969
2969
|
export declare const useItemsToPublishQuery: ItemsToPublishQueryHook;
|
|
2970
2970
|
|
|
2971
2971
|
/**
|
|
2972
|
-
* @
|
|
2972
|
+
* @public
|
|
2973
2973
|
*/
|
|
2974
2974
|
export declare const useItemsToUnpublishQuery: ItemsToUnpublishQueryHook;
|
|
2975
2975
|
|
|
2976
2976
|
/**
|
|
2977
|
-
* @
|
|
2977
|
+
* @public
|
|
2978
2978
|
*/
|
|
2979
2979
|
export declare const useItemTranslationInfoQuery: ItemTranslationInfoQueryHook;
|
|
2980
2980
|
|
|
2981
2981
|
/**
|
|
2982
|
-
* @
|
|
2982
|
+
* @public
|
|
2983
2983
|
*/
|
|
2984
2984
|
export declare const useItemUsedByQuery: ItemUsedByQueryHook;
|
|
2985
2985
|
|
|
2986
2986
|
/**
|
|
2987
|
-
* @
|
|
2987
|
+
* @public
|
|
2988
2988
|
*/
|
|
2989
2989
|
export declare const useItemUsesQuery: ItemUsesQueryHook;
|
|
2990
2990
|
|
|
2991
2991
|
/**
|
|
2992
|
-
* @
|
|
2992
|
+
* @public
|
|
2993
2993
|
*/
|
|
2994
2994
|
export declare const useKeywordEditor: KeywordEditorHook;
|
|
2995
2995
|
|
|
2996
2996
|
/**
|
|
2997
|
-
* @
|
|
2997
|
+
* @public
|
|
2998
2998
|
*/
|
|
2999
2999
|
export declare const useLocalizeItemMutation: LocalizeItemMutationHook;
|
|
3000
3000
|
|
|
3001
3001
|
/**
|
|
3002
|
-
* @
|
|
3002
|
+
* @public
|
|
3003
3003
|
*/
|
|
3004
3004
|
export declare const useLocalizeItemsMutation: LocalizeItemsMutationHook;
|
|
3005
3005
|
|
|
3006
3006
|
/**
|
|
3007
|
-
* @
|
|
3007
|
+
* @public
|
|
3008
3008
|
*/
|
|
3009
3009
|
export declare const useMoveItemMutation: MoveItemMutationHook;
|
|
3010
3010
|
|
|
3011
3011
|
/**
|
|
3012
|
-
* @
|
|
3012
|
+
* @public
|
|
3013
3013
|
*/
|
|
3014
3014
|
export declare const useMoveItemsMutation: MoveItemsMutationHook;
|
|
3015
3015
|
|
|
3016
3016
|
/**
|
|
3017
|
-
* @
|
|
3017
|
+
* @public
|
|
3018
3018
|
*/
|
|
3019
3019
|
export declare const useNotifications: NotificationsHook;
|
|
3020
3020
|
|
|
3021
3021
|
/**
|
|
3022
|
-
* @
|
|
3022
|
+
* @public
|
|
3023
3023
|
*/
|
|
3024
3024
|
export declare const usePageEditor: PageEditorHook;
|
|
3025
3025
|
|
|
3026
3026
|
/**
|
|
3027
|
-
* @
|
|
3027
|
+
* @public
|
|
3028
3028
|
*/
|
|
3029
3029
|
export declare const usePublicationBlueprintHierarchyQuery: PublicationBlueprintHierarchyQueryHook;
|
|
3030
3030
|
|
|
3031
3031
|
/**
|
|
3032
|
-
* @
|
|
3032
|
+
* @public
|
|
3033
3033
|
*/
|
|
3034
3034
|
export declare const usePublicationsQuery: PublicationsQueryHook;
|
|
3035
3035
|
|
|
3036
3036
|
/**
|
|
3037
|
-
* @
|
|
3037
|
+
* @public
|
|
3038
3038
|
*/
|
|
3039
3039
|
export declare const usePublishableTargetTypesQuery: PublishableTargetTypesQueryHook;
|
|
3040
3040
|
|
|
3041
3041
|
/**
|
|
3042
|
-
* @
|
|
3042
|
+
* @public
|
|
3043
3043
|
*/
|
|
3044
3044
|
export declare const usePublishItemsMutation: PublishItemsMutationHook;
|
|
3045
3045
|
|
|
3046
3046
|
/**
|
|
3047
|
-
* @
|
|
3047
|
+
* @public
|
|
3048
3048
|
*/
|
|
3049
3049
|
export declare const useRemoveFromBundleMutation: RemoveFromBundleMutationHook;
|
|
3050
3050
|
|
|
3051
3051
|
/**
|
|
3052
|
-
* @
|
|
3052
|
+
* @public
|
|
3053
3053
|
*/
|
|
3054
3054
|
export declare const useRestartActivitiesMutation: RestartActivitiesMutationHook;
|
|
3055
3055
|
|
|
3056
3056
|
/**
|
|
3057
|
-
* @
|
|
3057
|
+
* @public
|
|
3058
3058
|
*/
|
|
3059
3059
|
export declare const useRestartActivityMutation: RestartActivityMutationHook;
|
|
3060
3060
|
|
|
3061
3061
|
/**
|
|
3062
|
-
* @
|
|
3062
|
+
* @public
|
|
3063
3063
|
*/
|
|
3064
3064
|
export declare const useRevertItemMutation: RevertItemMutationHook;
|
|
3065
3065
|
|
|
3066
3066
|
/**
|
|
3067
|
-
* @
|
|
3067
|
+
* @public
|
|
3068
3068
|
*/
|
|
3069
3069
|
export declare const useRevertItemsMutation: RevertItemsMutationHook;
|
|
3070
3070
|
|
|
3071
3071
|
/**
|
|
3072
|
-
* @
|
|
3072
|
+
* @public
|
|
3073
3073
|
*/
|
|
3074
3074
|
export declare type UserGroupsQueryHook = (props?: UserGroupsQueryProps, options?: QueryOptions<ReadonlyArray<UserGroup> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<UserGroup> | undefined, ApiError>;
|
|
3075
3075
|
|
|
3076
3076
|
/**
|
|
3077
|
-
* @
|
|
3077
|
+
* @public
|
|
3078
3078
|
*/
|
|
3079
3079
|
export declare interface UserGroupsQueryProps {
|
|
3080
3080
|
inPublicationId?: ItemUri;
|
|
@@ -3084,39 +3084,39 @@ export declare interface UserGroupsQueryProps {
|
|
|
3084
3084
|
}
|
|
3085
3085
|
|
|
3086
3086
|
/**
|
|
3087
|
-
* @
|
|
3087
|
+
* @public
|
|
3088
3088
|
*/
|
|
3089
3089
|
export declare type UserGroupsQuerySearchMode = StringSearchMode;
|
|
3090
3090
|
|
|
3091
3091
|
/**
|
|
3092
|
-
* @
|
|
3092
|
+
* @public
|
|
3093
3093
|
*/
|
|
3094
3094
|
export declare const useRollbackItemMutation: RollbackItemMutationHook;
|
|
3095
3095
|
|
|
3096
3096
|
/**
|
|
3097
|
-
* @
|
|
3097
|
+
* @public
|
|
3098
3098
|
*/
|
|
3099
3099
|
export declare type UserProfileHook = () => UserProfileHookResult;
|
|
3100
3100
|
|
|
3101
3101
|
/**
|
|
3102
|
-
* @
|
|
3102
|
+
* @public
|
|
3103
3103
|
*/
|
|
3104
3104
|
export declare interface UserProfileHookResult {
|
|
3105
3105
|
userProfile: UserProfile;
|
|
3106
3106
|
}
|
|
3107
3107
|
|
|
3108
3108
|
/**
|
|
3109
|
-
* @
|
|
3109
|
+
* @public
|
|
3110
3110
|
*/
|
|
3111
3111
|
export declare type UserProfileQueryHook = (options?: QueryOptions<UserProfile | undefined, ApiError>) => UseQueryResult<UserProfile | undefined, ApiError>;
|
|
3112
3112
|
|
|
3113
3113
|
/**
|
|
3114
|
-
* @
|
|
3114
|
+
* @public
|
|
3115
3115
|
*/
|
|
3116
3116
|
export declare type UsersQueryHook = (props?: UsersQueryProps, options?: QueryOptions<ReadonlyArray<User> | undefined, ApiError>) => UseQueryResult<ReadonlyArray<User> | undefined, ApiError>;
|
|
3117
3117
|
|
|
3118
3118
|
/**
|
|
3119
|
-
* @
|
|
3119
|
+
* @public
|
|
3120
3120
|
*/
|
|
3121
3121
|
export declare interface UsersQueryProps {
|
|
3122
3122
|
predefined?: boolean;
|
|
@@ -3126,82 +3126,82 @@ export declare interface UsersQueryProps {
|
|
|
3126
3126
|
}
|
|
3127
3127
|
|
|
3128
3128
|
/**
|
|
3129
|
-
* @
|
|
3129
|
+
* @public
|
|
3130
3130
|
*/
|
|
3131
3131
|
export declare type UsersQuerySearchMode = StringSearchMode;
|
|
3132
3132
|
|
|
3133
3133
|
/**
|
|
3134
|
-
* @
|
|
3134
|
+
* @public
|
|
3135
3135
|
*/
|
|
3136
3136
|
export declare const useSearchInContainerQuery: SearchInContainerQueryHook;
|
|
3137
3137
|
|
|
3138
3138
|
/**
|
|
3139
|
-
* @
|
|
3139
|
+
* @public
|
|
3140
3140
|
*/
|
|
3141
3141
|
export declare const useStartActivitiesMutation: StartActivitiesMutationHook;
|
|
3142
3142
|
|
|
3143
3143
|
/**
|
|
3144
|
-
* @
|
|
3144
|
+
* @public
|
|
3145
3145
|
*/
|
|
3146
3146
|
export declare const useStartActivityMutation: StartActivityMutationHook;
|
|
3147
3147
|
|
|
3148
3148
|
/**
|
|
3149
|
-
* @
|
|
3149
|
+
* @public
|
|
3150
3150
|
*/
|
|
3151
3151
|
export declare const useStartWorkflowMutation: StartWorkflowMutationHook;
|
|
3152
3152
|
|
|
3153
3153
|
/**
|
|
3154
|
-
* @
|
|
3154
|
+
* @public
|
|
3155
3155
|
*/
|
|
3156
3156
|
export declare const useStructureGroupEditor: StructureGroupEditorHook;
|
|
3157
3157
|
|
|
3158
3158
|
/**
|
|
3159
|
-
* @
|
|
3159
|
+
* @public
|
|
3160
3160
|
*/
|
|
3161
3161
|
export declare const useSystemSearchQuery: SystemSearchQueryHook;
|
|
3162
3162
|
|
|
3163
3163
|
/**
|
|
3164
|
-
* @
|
|
3164
|
+
* @public
|
|
3165
3165
|
*/
|
|
3166
3166
|
export declare const useUnlocalizeItemMutation: UnlocalizeItemMutationHook;
|
|
3167
3167
|
|
|
3168
3168
|
/**
|
|
3169
|
-
* @
|
|
3169
|
+
* @public
|
|
3170
3170
|
*/
|
|
3171
3171
|
export declare const useUnlocalizeItemsMutation: UnlocalizeItemsMutationHook;
|
|
3172
3172
|
|
|
3173
3173
|
/**
|
|
3174
|
-
* @
|
|
3174
|
+
* @public
|
|
3175
3175
|
*/
|
|
3176
3176
|
export declare const useUnpublishItemsMutation: UnpublishItemsMutationHook;
|
|
3177
3177
|
|
|
3178
3178
|
/**
|
|
3179
|
-
* @
|
|
3179
|
+
* @public
|
|
3180
3180
|
*/
|
|
3181
3181
|
export declare const useUpdateItemMutation: UpdateItemMutationHook;
|
|
3182
3182
|
|
|
3183
3183
|
/**
|
|
3184
|
-
* @
|
|
3184
|
+
* @public
|
|
3185
3185
|
*/
|
|
3186
3186
|
export declare const useUploadMultimediaMutation: UploadMultimediaMutationHook;
|
|
3187
3187
|
|
|
3188
3188
|
/**
|
|
3189
|
-
* @
|
|
3189
|
+
* @public
|
|
3190
3190
|
*/
|
|
3191
3191
|
export declare const useUserGroupsQuery: UserGroupsQueryHook;
|
|
3192
3192
|
|
|
3193
3193
|
/**
|
|
3194
|
-
* @
|
|
3194
|
+
* @public
|
|
3195
3195
|
*/
|
|
3196
3196
|
export declare const useUserProfile: UserProfileHook;
|
|
3197
3197
|
|
|
3198
3198
|
/**
|
|
3199
|
-
* @
|
|
3199
|
+
* @public
|
|
3200
3200
|
*/
|
|
3201
3201
|
export declare const useUserProfileQuery: UserProfileQueryHook;
|
|
3202
3202
|
|
|
3203
3203
|
/**
|
|
3204
|
-
* @
|
|
3204
|
+
* @public
|
|
3205
3205
|
*/
|
|
3206
3206
|
export declare const useUsersQuery: UsersQueryHook;
|
|
3207
3207
|
|