@umbraco-cms/backoffice 1.0.0-next.37dcc47c → 1.0.0-next.426eb58e
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/README.md +9 -8
- package/backend-api.d.ts +596 -280
- package/context-api.d.ts +76 -6
- package/controller.d.ts +7 -6
- package/custom-elements.json +8234 -0
- package/element.d.ts +6 -6
- package/entity-action.d.ts +29 -19
- package/extensions-api.d.ts +7 -5
- package/extensions-registry.d.ts +188 -20
- package/modal.d.ts +298 -17
- package/models.d.ts +14 -9
- package/notification.d.ts +1 -1
- package/observable-api.d.ts +90 -49
- package/package.json +6 -3
- package/picker-input.d.ts +24 -0
- package/property-editor.d.ts +1 -1
- package/repository.d.ts +99 -40
- package/resources.d.ts +25 -16
- package/router.d.ts +375 -0
- package/sorter.d.ts +103 -0
- package/store.d.ts +93 -52
- package/umbraco-package-schema.json +2439 -0
- package/utils.d.ts +4 -2
- package/vscode-html-custom-data.json +3351 -0
- package/workspace.d.ts +19 -12
package/backend-api.d.ts
CHANGED
|
@@ -40,15 +40,9 @@ interface OnCancel {
|
|
|
40
40
|
(cancelHandler: () => void): void;
|
|
41
41
|
}
|
|
42
42
|
declare class CancelablePromise<T> implements Promise<T> {
|
|
43
|
-
|
|
44
|
-
private _isResolved;
|
|
45
|
-
private _isRejected;
|
|
46
|
-
private _isCancelled;
|
|
47
|
-
private readonly _cancelHandlers;
|
|
48
|
-
private readonly _promise;
|
|
49
|
-
private _resolve?;
|
|
50
|
-
private _reject?;
|
|
43
|
+
#private;
|
|
51
44
|
constructor(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void, onCancel: OnCancel) => void);
|
|
45
|
+
get [Symbol.toStringTag](): string;
|
|
52
46
|
then<TResult1 = T, TResult2 = never>(onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null): Promise<TResult1 | TResult2>;
|
|
53
47
|
catch<TResult = never>(onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null): Promise<T | TResult>;
|
|
54
48
|
finally(onFinally?: (() => void) | null): Promise<T>;
|
|
@@ -99,8 +93,8 @@ declare enum AuditTypeModel {
|
|
|
99
93
|
}
|
|
100
94
|
|
|
101
95
|
type AuditLogBaseModel = {
|
|
102
|
-
|
|
103
|
-
|
|
96
|
+
userId?: string;
|
|
97
|
+
entityId?: string | null;
|
|
104
98
|
timestamp?: string;
|
|
105
99
|
logType?: AuditTypeModel;
|
|
106
100
|
entityType?: string | null;
|
|
@@ -115,6 +109,11 @@ type AuditLogWithUsernameResponseModel = (AuditLogBaseModel & {
|
|
|
115
109
|
userAvatars?: Array<string> | null;
|
|
116
110
|
});
|
|
117
111
|
|
|
112
|
+
type ChangePasswordUserRequestModel = {
|
|
113
|
+
newPassword?: string;
|
|
114
|
+
oldPassword?: string | null;
|
|
115
|
+
};
|
|
116
|
+
|
|
118
117
|
declare enum TelemetryLevelModel {
|
|
119
118
|
MINIMAL = "Minimal",
|
|
120
119
|
BASIC = "Basic",
|
|
@@ -163,8 +162,8 @@ type DocumentVariantResponseModel = (VariantResponseModelBaseModel & {
|
|
|
163
162
|
type ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel = {
|
|
164
163
|
values?: Array<DocumentValueModel>;
|
|
165
164
|
variants?: Array<DocumentVariantResponseModel>;
|
|
166
|
-
|
|
167
|
-
|
|
165
|
+
id?: string;
|
|
166
|
+
contentTypeId?: string;
|
|
168
167
|
};
|
|
169
168
|
|
|
170
169
|
type TreeItemPresentationModel = {
|
|
@@ -176,9 +175,9 @@ type TreeItemPresentationModel = {
|
|
|
176
175
|
|
|
177
176
|
type EntityTreeItemResponseModel = (TreeItemPresentationModel & {
|
|
178
177
|
$type: string;
|
|
179
|
-
|
|
178
|
+
id?: string;
|
|
180
179
|
isContainer?: boolean;
|
|
181
|
-
|
|
180
|
+
parentId?: string | null;
|
|
182
181
|
});
|
|
183
182
|
|
|
184
183
|
type ContentTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
|
@@ -199,18 +198,18 @@ declare enum ContentTypeCompositionTypeModel {
|
|
|
199
198
|
}
|
|
200
199
|
|
|
201
200
|
type ContentTypeCompositionModel = {
|
|
202
|
-
|
|
201
|
+
id?: string;
|
|
203
202
|
compositionType?: ContentTypeCompositionTypeModel;
|
|
204
203
|
};
|
|
205
204
|
|
|
206
205
|
type ContentTypeSortModel = {
|
|
207
|
-
|
|
206
|
+
id?: string;
|
|
208
207
|
sortOrder?: number;
|
|
209
208
|
};
|
|
210
209
|
|
|
211
210
|
type PropertyTypeContainerResponseModelBaseModel = {
|
|
212
|
-
|
|
213
|
-
|
|
211
|
+
id?: string;
|
|
212
|
+
parentId?: string | null;
|
|
214
213
|
name?: string | null;
|
|
215
214
|
type?: string;
|
|
216
215
|
sortOrder?: number;
|
|
@@ -230,12 +229,12 @@ type PropertyTypeValidationModel = {
|
|
|
230
229
|
};
|
|
231
230
|
|
|
232
231
|
type PropertyTypeResponseModelBaseModel = {
|
|
233
|
-
|
|
234
|
-
|
|
232
|
+
id?: string;
|
|
233
|
+
containerId?: string | null;
|
|
235
234
|
alias?: string;
|
|
236
235
|
name?: string;
|
|
237
236
|
description?: string | null;
|
|
238
|
-
|
|
237
|
+
dataTypeId?: string;
|
|
239
238
|
variesByCulture?: boolean;
|
|
240
239
|
variesBySegment?: boolean;
|
|
241
240
|
validation?: PropertyTypeValidationModel;
|
|
@@ -245,7 +244,7 @@ type PropertyTypeResponseModelBaseModel = {
|
|
|
245
244
|
type DocumentTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;
|
|
246
245
|
|
|
247
246
|
type ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel = {
|
|
248
|
-
|
|
247
|
+
id?: string;
|
|
249
248
|
alias?: string;
|
|
250
249
|
name?: string;
|
|
251
250
|
description?: string | null;
|
|
@@ -265,7 +264,7 @@ type MediaTypePropertyTypeContainerResponseModel = PropertyTypeContainerResponse
|
|
|
265
264
|
type MediaTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;
|
|
266
265
|
|
|
267
266
|
type ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel = {
|
|
268
|
-
|
|
267
|
+
id?: string;
|
|
269
268
|
alias?: string;
|
|
270
269
|
name?: string;
|
|
271
270
|
description?: string | null;
|
|
@@ -286,7 +285,7 @@ type ContentUrlInfoModel = {
|
|
|
286
285
|
};
|
|
287
286
|
|
|
288
287
|
type CopyDataTypeRequestModel = {
|
|
289
|
-
|
|
288
|
+
targetId?: string | null;
|
|
290
289
|
};
|
|
291
290
|
|
|
292
291
|
type VariantModelBaseModel = {
|
|
@@ -303,7 +302,7 @@ type DocumentVariantRequestModel = (VariantModelBaseModel & {
|
|
|
303
302
|
type CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel = {
|
|
304
303
|
values?: Array<DocumentValueModel>;
|
|
305
304
|
variants?: Array<DocumentVariantRequestModel>;
|
|
306
|
-
|
|
305
|
+
parentId?: string | null;
|
|
307
306
|
};
|
|
308
307
|
|
|
309
308
|
type MediaValueModel = (ValueModelBaseModel & {
|
|
@@ -317,7 +316,7 @@ type MediaVariantRequestModel = (VariantModelBaseModel & {
|
|
|
317
316
|
type CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel = {
|
|
318
317
|
values?: Array<MediaValueModel>;
|
|
319
318
|
variants?: Array<MediaVariantRequestModel>;
|
|
320
|
-
|
|
319
|
+
parentId?: string | null;
|
|
321
320
|
};
|
|
322
321
|
|
|
323
322
|
type DataTypePropertyPresentationModel = {
|
|
@@ -333,7 +332,8 @@ type DataTypeModelBaseModel = {
|
|
|
333
332
|
};
|
|
334
333
|
|
|
335
334
|
type CreateDataTypeRequestModel = (DataTypeModelBaseModel & {
|
|
336
|
-
|
|
335
|
+
id?: string | null;
|
|
336
|
+
parentId?: string | null;
|
|
337
337
|
});
|
|
338
338
|
|
|
339
339
|
type DictionaryItemTranslationModel = {
|
|
@@ -347,12 +347,12 @@ type DictionaryItemModelBaseModel = {
|
|
|
347
347
|
};
|
|
348
348
|
|
|
349
349
|
type CreateDictionaryItemRequestModel = (DictionaryItemModelBaseModel & {
|
|
350
|
-
|
|
350
|
+
parentId?: string | null;
|
|
351
351
|
});
|
|
352
352
|
|
|
353
353
|
type CreateDocumentRequestModel = (CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
|
|
354
|
-
|
|
355
|
-
|
|
354
|
+
contentTypeId?: string;
|
|
355
|
+
templateId?: string | null;
|
|
356
356
|
});
|
|
357
357
|
|
|
358
358
|
type FolderModelBaseModel = {
|
|
@@ -360,7 +360,8 @@ type FolderModelBaseModel = {
|
|
|
360
360
|
};
|
|
361
361
|
|
|
362
362
|
type CreateFolderRequestModel = (FolderModelBaseModel & {
|
|
363
|
-
|
|
363
|
+
id?: string | null;
|
|
364
|
+
parentId?: string | null;
|
|
364
365
|
});
|
|
365
366
|
|
|
366
367
|
type LanguageModelBaseModel = {
|
|
@@ -375,14 +376,14 @@ type CreateLanguageRequestModel = (LanguageModelBaseModel & {
|
|
|
375
376
|
});
|
|
376
377
|
|
|
377
378
|
type CreateMediaRequestModel = (CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel & {
|
|
378
|
-
|
|
379
|
+
contentTypeId?: string;
|
|
379
380
|
});
|
|
380
381
|
|
|
381
382
|
type PackageModelBaseModel = {
|
|
382
383
|
name?: string;
|
|
383
384
|
contentNodeId?: string | null;
|
|
384
385
|
contentLoadChildNodes?: boolean;
|
|
385
|
-
|
|
386
|
+
mediaIds?: Array<string>;
|
|
386
387
|
mediaLoadChildNodes?: boolean;
|
|
387
388
|
documentTypes?: Array<string>;
|
|
388
389
|
mediaTypes?: Array<string>;
|
|
@@ -406,7 +407,7 @@ type RelationTypeBaseModel = {
|
|
|
406
407
|
};
|
|
407
408
|
|
|
408
409
|
type CreateRelationTypeRequestModel = (RelationTypeBaseModel & {
|
|
409
|
-
|
|
410
|
+
id?: string | null;
|
|
410
411
|
});
|
|
411
412
|
|
|
412
413
|
type TemplateModelBaseModel = {
|
|
@@ -417,6 +418,20 @@ type TemplateModelBaseModel = {
|
|
|
417
418
|
|
|
418
419
|
type CreateTemplateRequestModel = TemplateModelBaseModel;
|
|
419
420
|
|
|
421
|
+
type UserPresentationBaseModel = {
|
|
422
|
+
email?: string;
|
|
423
|
+
userName?: string;
|
|
424
|
+
name?: string;
|
|
425
|
+
userGroupIds?: Array<string>;
|
|
426
|
+
};
|
|
427
|
+
|
|
428
|
+
type CreateUserRequestModel = UserPresentationBaseModel;
|
|
429
|
+
|
|
430
|
+
type CreateUserResponseModel = {
|
|
431
|
+
userId?: string;
|
|
432
|
+
initialPassword?: string | null;
|
|
433
|
+
};
|
|
434
|
+
|
|
420
435
|
type CultureReponseModel = {
|
|
421
436
|
name?: string;
|
|
422
437
|
englishName?: string;
|
|
@@ -447,32 +462,43 @@ type DatabaseSettingsPresentationModel = {
|
|
|
447
462
|
requiresConnectionTest?: boolean;
|
|
448
463
|
};
|
|
449
464
|
|
|
465
|
+
type ItemResponseModelBaseModel = {
|
|
466
|
+
name?: string;
|
|
467
|
+
id?: string;
|
|
468
|
+
};
|
|
469
|
+
|
|
470
|
+
type DataTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
471
|
+
icon?: string | null;
|
|
472
|
+
});
|
|
473
|
+
|
|
450
474
|
type DataTypePropertyReferenceModel = {
|
|
451
475
|
name?: string;
|
|
452
476
|
alias?: string;
|
|
453
477
|
};
|
|
454
478
|
|
|
455
479
|
type DataTypeReferenceResponseModel = {
|
|
456
|
-
|
|
480
|
+
id?: string;
|
|
457
481
|
type?: string;
|
|
458
482
|
properties?: Array<DataTypePropertyReferenceModel>;
|
|
459
483
|
};
|
|
460
484
|
|
|
461
|
-
type DataTypeResponseModel =
|
|
485
|
+
type DataTypeResponseModel = DataTypeModelBaseModel & {
|
|
462
486
|
$type: string;
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
}
|
|
487
|
+
id?: string;
|
|
488
|
+
parentId?: string | null;
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
type DictionaryItemItemResponseModel = ItemResponseModelBaseModel;
|
|
466
492
|
|
|
467
493
|
type DictionaryItemResponseModel = (DictionaryItemModelBaseModel & {
|
|
468
494
|
$type: string;
|
|
469
|
-
|
|
495
|
+
id?: string;
|
|
470
496
|
});
|
|
471
497
|
|
|
472
498
|
type DictionaryOverviewResponseModel = {
|
|
473
499
|
name?: string | null;
|
|
474
|
-
|
|
475
|
-
|
|
500
|
+
id?: string;
|
|
501
|
+
parentId?: string | null;
|
|
476
502
|
translatedIsoCodes?: Array<string>;
|
|
477
503
|
};
|
|
478
504
|
|
|
@@ -481,16 +507,31 @@ declare enum DirectionModel {
|
|
|
481
507
|
DESCENDING = "Descending"
|
|
482
508
|
}
|
|
483
509
|
|
|
510
|
+
type DisableUserRequestModel = {
|
|
511
|
+
userIds?: Array<string>;
|
|
512
|
+
};
|
|
513
|
+
|
|
514
|
+
type DocumentBlueprintResponseModel = ItemResponseModelBaseModel;
|
|
515
|
+
|
|
484
516
|
type DocumentBlueprintTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
|
485
517
|
$type: string;
|
|
486
|
-
|
|
518
|
+
documentTypeId?: string;
|
|
487
519
|
documentTypeAlias?: string;
|
|
488
520
|
documentTypeName?: string | null;
|
|
489
521
|
});
|
|
490
522
|
|
|
523
|
+
type DocumentItemResponseModel = (ItemResponseModelBaseModel & {
|
|
524
|
+
icon?: string | null;
|
|
525
|
+
});
|
|
526
|
+
|
|
527
|
+
type DocumentNotificationResponseModel = {
|
|
528
|
+
actionId?: string;
|
|
529
|
+
subscribed?: boolean;
|
|
530
|
+
};
|
|
531
|
+
|
|
491
532
|
type DocumentResponseModel = (ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel & {
|
|
492
533
|
urls?: Array<ContentUrlInfoModel>;
|
|
493
|
-
|
|
534
|
+
templateId?: string | null;
|
|
494
535
|
});
|
|
495
536
|
|
|
496
537
|
type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
|
|
@@ -500,9 +541,14 @@ type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
|
|
|
500
541
|
isEdited?: boolean;
|
|
501
542
|
});
|
|
502
543
|
|
|
544
|
+
type DocumentTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
545
|
+
isElement?: boolean;
|
|
546
|
+
icon?: string | null;
|
|
547
|
+
});
|
|
548
|
+
|
|
503
549
|
type DocumentTypeResponseModel = (ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel & {
|
|
504
|
-
|
|
505
|
-
|
|
550
|
+
allowedTemplateIds?: Array<string>;
|
|
551
|
+
defaultTemplateId?: string | null;
|
|
506
552
|
cleanup?: ContentTypeCleanupModel;
|
|
507
553
|
});
|
|
508
554
|
|
|
@@ -528,11 +574,21 @@ type DomainsPresentationModelBaseModel = {
|
|
|
528
574
|
|
|
529
575
|
type DomainsResponseModel = DomainsPresentationModelBaseModel;
|
|
530
576
|
|
|
577
|
+
type EnableUserRequestModel = {
|
|
578
|
+
userIds?: Array<string>;
|
|
579
|
+
};
|
|
580
|
+
|
|
531
581
|
type FieldPresentationModel = {
|
|
532
582
|
name?: string;
|
|
533
583
|
values?: Array<string>;
|
|
534
584
|
};
|
|
535
585
|
|
|
586
|
+
type FileItemResponseModelBaseModel = {
|
|
587
|
+
name?: string;
|
|
588
|
+
path?: string;
|
|
589
|
+
icon?: string;
|
|
590
|
+
};
|
|
591
|
+
|
|
536
592
|
type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
|
|
537
593
|
path?: string;
|
|
538
594
|
isFolder?: boolean;
|
|
@@ -540,12 +596,12 @@ type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
|
|
|
540
596
|
|
|
541
597
|
type FolderReponseModel = (FolderModelBaseModel & {
|
|
542
598
|
$type: string;
|
|
543
|
-
|
|
544
|
-
|
|
599
|
+
id?: string;
|
|
600
|
+
parentId?: string | null;
|
|
545
601
|
});
|
|
546
602
|
|
|
547
603
|
type HealthCheckActionRequestModel = {
|
|
548
|
-
|
|
604
|
+
healthCheckId?: string;
|
|
549
605
|
alias?: string | null;
|
|
550
606
|
name?: string | null;
|
|
551
607
|
description?: string | null;
|
|
@@ -560,7 +616,7 @@ type HealthCheckGroupPresentationBaseModel = {
|
|
|
560
616
|
};
|
|
561
617
|
|
|
562
618
|
type HealthCheckModelBaseModel = {
|
|
563
|
-
|
|
619
|
+
id?: string;
|
|
564
620
|
};
|
|
565
621
|
|
|
566
622
|
type HealthCheckModel = (HealthCheckModelBaseModel & {
|
|
@@ -609,15 +665,9 @@ type HelpPageResponseModel = {
|
|
|
609
665
|
type?: string | null;
|
|
610
666
|
};
|
|
611
667
|
|
|
612
|
-
type ImportDictionaryItemsPresentationModel = {
|
|
613
|
-
key?: string;
|
|
614
|
-
name?: string | null;
|
|
615
|
-
parentKey?: string | null;
|
|
616
|
-
};
|
|
617
|
-
|
|
618
668
|
type ImportDictionaryRequestModel = {
|
|
619
|
-
|
|
620
|
-
|
|
669
|
+
temporaryFileId?: string;
|
|
670
|
+
parentId?: string | null;
|
|
621
671
|
};
|
|
622
672
|
|
|
623
673
|
type IndexResponseModel = {
|
|
@@ -654,6 +704,15 @@ type InstallVResponseModel = {
|
|
|
654
704
|
telemetryLevel?: TelemetryLevelModel;
|
|
655
705
|
};
|
|
656
706
|
|
|
707
|
+
type InviteUserRequestModel = (CreateUserRequestModel & {
|
|
708
|
+
message?: string | null;
|
|
709
|
+
});
|
|
710
|
+
|
|
711
|
+
type LanguageItemResponseModel = {
|
|
712
|
+
name?: string;
|
|
713
|
+
isoCode?: string;
|
|
714
|
+
};
|
|
715
|
+
|
|
657
716
|
type LanguageResponseModel = (LanguageModelBaseModel & {
|
|
658
717
|
isoCode?: string;
|
|
659
718
|
});
|
|
@@ -699,12 +758,26 @@ type LogTemplateResponseModel = {
|
|
|
699
758
|
count?: number;
|
|
700
759
|
};
|
|
701
760
|
|
|
761
|
+
type MediaItemResponseModel = (ItemResponseModelBaseModel & {
|
|
762
|
+
icon?: string | null;
|
|
763
|
+
});
|
|
764
|
+
|
|
765
|
+
type MediaTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
766
|
+
icon?: string | null;
|
|
767
|
+
});
|
|
768
|
+
|
|
702
769
|
type MediaTypeResponseModel = ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel;
|
|
703
770
|
|
|
704
771
|
type MediaVariantResponseModel = (VariantResponseModelBaseModel & {
|
|
705
772
|
$type: string;
|
|
706
773
|
});
|
|
707
774
|
|
|
775
|
+
type MemberGroupItemReponseModel = ItemResponseModelBaseModel;
|
|
776
|
+
|
|
777
|
+
type MemberTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
778
|
+
icon?: string | null;
|
|
779
|
+
});
|
|
780
|
+
|
|
708
781
|
declare enum ModelsModeModel {
|
|
709
782
|
NOTHING = "Nothing",
|
|
710
783
|
IN_MEMORY_AUTO = "InMemoryAuto",
|
|
@@ -723,11 +796,11 @@ type ModelsBuilderResponseModel = {
|
|
|
723
796
|
};
|
|
724
797
|
|
|
725
798
|
type MoveDataTypeRequestModel = {
|
|
726
|
-
|
|
799
|
+
targetId?: string | null;
|
|
727
800
|
};
|
|
728
801
|
|
|
729
802
|
type MoveDictionaryRequestModel = {
|
|
730
|
-
|
|
803
|
+
targetId?: string | null;
|
|
731
804
|
};
|
|
732
805
|
|
|
733
806
|
type ObjectTypeResponseModel = {
|
|
@@ -761,7 +834,7 @@ type OutOfDateStatusResponseModel = {
|
|
|
761
834
|
};
|
|
762
835
|
|
|
763
836
|
type PackageDefinitionResponseModel = (PackageModelBaseModel & {
|
|
764
|
-
|
|
837
|
+
id?: string;
|
|
765
838
|
packagePath?: string;
|
|
766
839
|
});
|
|
767
840
|
|
|
@@ -883,13 +956,13 @@ type PagedPackageMigrationStatusResponseModel = {
|
|
|
883
956
|
|
|
884
957
|
type RecycleBinItemResponseModel = {
|
|
885
958
|
$type: string;
|
|
886
|
-
|
|
959
|
+
id?: string;
|
|
887
960
|
name?: string;
|
|
888
961
|
type?: string;
|
|
889
962
|
icon?: string;
|
|
890
963
|
hasChildren?: boolean;
|
|
891
964
|
isContainer?: boolean;
|
|
892
|
-
|
|
965
|
+
parentId?: string | null;
|
|
893
966
|
};
|
|
894
967
|
|
|
895
968
|
type PagedRecycleBinItemResponseModel = {
|
|
@@ -898,11 +971,11 @@ type PagedRecycleBinItemResponseModel = {
|
|
|
898
971
|
};
|
|
899
972
|
|
|
900
973
|
type RedirectUrlResponseModel = {
|
|
901
|
-
|
|
974
|
+
id?: string;
|
|
902
975
|
originalUrl?: string;
|
|
903
976
|
destinationUrl?: string;
|
|
904
977
|
created?: string;
|
|
905
|
-
|
|
978
|
+
contentId?: string;
|
|
906
979
|
culture?: string | null;
|
|
907
980
|
};
|
|
908
981
|
|
|
@@ -912,7 +985,7 @@ type PagedRedirectUrlResponseModel = {
|
|
|
912
985
|
};
|
|
913
986
|
|
|
914
987
|
type RelationItemResponseModel = {
|
|
915
|
-
|
|
988
|
+
nodeId?: string;
|
|
916
989
|
nodeName?: string | null;
|
|
917
990
|
nodeType?: string | null;
|
|
918
991
|
nodePublished?: boolean | null;
|
|
@@ -993,14 +1066,14 @@ type UserGroupBaseModel = {
|
|
|
993
1066
|
sections?: Array<string>;
|
|
994
1067
|
languages?: Array<string>;
|
|
995
1068
|
hasAccessToAllLanguages?: boolean;
|
|
996
|
-
|
|
997
|
-
|
|
1069
|
+
documentStartNodeId?: string | null;
|
|
1070
|
+
mediaStartNodeId?: string | null;
|
|
998
1071
|
permissions?: Array<string>;
|
|
999
1072
|
};
|
|
1000
1073
|
|
|
1001
1074
|
type UserGroupPresentationModel = (UserGroupBaseModel & {
|
|
1002
1075
|
$type: string;
|
|
1003
|
-
|
|
1076
|
+
id?: string;
|
|
1004
1077
|
});
|
|
1005
1078
|
|
|
1006
1079
|
type PagedUserGroupPresentationModel = {
|
|
@@ -1008,6 +1081,38 @@ type PagedUserGroupPresentationModel = {
|
|
|
1008
1081
|
items: Array<UserGroupPresentationModel>;
|
|
1009
1082
|
};
|
|
1010
1083
|
|
|
1084
|
+
declare enum UserStateModel {
|
|
1085
|
+
ACTIVE = "Active",
|
|
1086
|
+
DISABLED = "Disabled",
|
|
1087
|
+
LOCKED_OUT = "LockedOut",
|
|
1088
|
+
INVITED = "Invited",
|
|
1089
|
+
INACTIVE = "Inactive",
|
|
1090
|
+
ALL = "All"
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
type UserResponseModel = (UserPresentationBaseModel & {
|
|
1094
|
+
$type: string;
|
|
1095
|
+
id?: string;
|
|
1096
|
+
languageIsoCode?: string | null;
|
|
1097
|
+
contentStartNodeIds?: Array<string>;
|
|
1098
|
+
mediaStartNodeIds?: Array<string>;
|
|
1099
|
+
avatarUrls?: Array<string>;
|
|
1100
|
+
state?: UserStateModel;
|
|
1101
|
+
failedLoginAttempts?: number;
|
|
1102
|
+
createDate?: string;
|
|
1103
|
+
updateDate?: string;
|
|
1104
|
+
lastLoginDate?: string | null;
|
|
1105
|
+
lastlockoutDate?: string | null;
|
|
1106
|
+
lastPasswordChangeDate?: string | null;
|
|
1107
|
+
});
|
|
1108
|
+
|
|
1109
|
+
type PagedUserResponseModel = {
|
|
1110
|
+
total: number;
|
|
1111
|
+
items: Array<UserResponseModel>;
|
|
1112
|
+
};
|
|
1113
|
+
|
|
1114
|
+
type PartialViewItemResponseModel = FileItemResponseModelBaseModel;
|
|
1115
|
+
|
|
1011
1116
|
type ProblemDetailsModel = Record<string, any>;
|
|
1012
1117
|
|
|
1013
1118
|
type ProfilingStatusRequestModel = {
|
|
@@ -1028,8 +1133,10 @@ type RedirectUrlStatusResponseModel = {
|
|
|
1028
1133
|
userIsAdmin?: boolean;
|
|
1029
1134
|
};
|
|
1030
1135
|
|
|
1136
|
+
type RelationTypeItemResponseModel = ItemResponseModelBaseModel;
|
|
1137
|
+
|
|
1031
1138
|
type RelationTypeResponseModel = (RelationTypeBaseModel & {
|
|
1032
|
-
|
|
1139
|
+
id?: string;
|
|
1033
1140
|
alias?: string | null;
|
|
1034
1141
|
path?: string;
|
|
1035
1142
|
isSystemRelationType?: boolean;
|
|
@@ -1050,12 +1157,24 @@ type SavedLogSearchRequestModel = SavedLogSearchPresenationBaseModel;
|
|
|
1050
1157
|
|
|
1051
1158
|
type SaveUserGroupRequestModel = UserGroupBaseModel;
|
|
1052
1159
|
|
|
1160
|
+
type ScriptItemResponseModel = FileItemResponseModelBaseModel;
|
|
1161
|
+
|
|
1053
1162
|
type ServerStatusResponseModel = {
|
|
1054
1163
|
serverStatus?: RuntimeLevelModel;
|
|
1055
1164
|
};
|
|
1056
1165
|
|
|
1166
|
+
type SetAvatarRequestModel = {
|
|
1167
|
+
fileId?: string;
|
|
1168
|
+
};
|
|
1169
|
+
|
|
1170
|
+
type StaticFileItemResponseModel = FileItemResponseModelBaseModel;
|
|
1171
|
+
|
|
1172
|
+
type StylesheetItemResponseModel = FileItemResponseModelBaseModel;
|
|
1173
|
+
|
|
1057
1174
|
type TelemetryRequestModel = TelemetryRepresentationBaseModel;
|
|
1058
1175
|
|
|
1176
|
+
type TemplateItemResponseModel = ItemResponseModelBaseModel;
|
|
1177
|
+
|
|
1059
1178
|
type TemplateQueryExecuteFilterPresentationModel = {
|
|
1060
1179
|
propertyAlias?: string;
|
|
1061
1180
|
constraintValue?: string;
|
|
@@ -1068,7 +1187,7 @@ type TemplateQueryExecuteSortModel = {
|
|
|
1068
1187
|
};
|
|
1069
1188
|
|
|
1070
1189
|
type TemplateQueryExecuteModel = {
|
|
1071
|
-
|
|
1190
|
+
rootContentId?: string | null;
|
|
1072
1191
|
contentTypeAlias?: string | null;
|
|
1073
1192
|
filters?: Array<TemplateQueryExecuteFilterPresentationModel> | null;
|
|
1074
1193
|
sort?: TemplateQueryExecuteSortModel | null;
|
|
@@ -1111,13 +1230,23 @@ type TemplateQuerySettingsResponseModel = {
|
|
|
1111
1230
|
|
|
1112
1231
|
type TemplateResponseModel = (TemplateModelBaseModel & {
|
|
1113
1232
|
$type: string;
|
|
1114
|
-
|
|
1233
|
+
id?: string;
|
|
1115
1234
|
});
|
|
1116
1235
|
|
|
1117
1236
|
type TemplateScaffoldResponseModel = {
|
|
1118
1237
|
content?: string;
|
|
1119
1238
|
};
|
|
1120
1239
|
|
|
1240
|
+
type TemporaryFileResponseModel = {
|
|
1241
|
+
id?: string;
|
|
1242
|
+
availableUntil?: string | null;
|
|
1243
|
+
fileName?: string;
|
|
1244
|
+
};
|
|
1245
|
+
|
|
1246
|
+
type UnlockUsersRequestModel = {
|
|
1247
|
+
userIds?: Array<string>;
|
|
1248
|
+
};
|
|
1249
|
+
|
|
1121
1250
|
type UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel = {
|
|
1122
1251
|
values?: Array<DocumentValueModel>;
|
|
1123
1252
|
variants?: Array<DocumentVariantRequestModel>;
|
|
@@ -1132,8 +1261,12 @@ type UpdateDataTypeRequestModel = DataTypeModelBaseModel;
|
|
|
1132
1261
|
|
|
1133
1262
|
type UpdateDictionaryItemRequestModel = DictionaryItemModelBaseModel;
|
|
1134
1263
|
|
|
1264
|
+
type UpdateDocumentNotificationsRequestModel = {
|
|
1265
|
+
subscribedActionIds?: Array<string>;
|
|
1266
|
+
};
|
|
1267
|
+
|
|
1135
1268
|
type UpdateDocumentRequestModel = (UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
|
|
1136
|
-
|
|
1269
|
+
templateId?: string | null;
|
|
1137
1270
|
});
|
|
1138
1271
|
|
|
1139
1272
|
type UpdateDomainsRequestModel = DomainsPresentationModelBaseModel;
|
|
@@ -1154,6 +1287,17 @@ type UpdateTemplateRequestModel = TemplateModelBaseModel;
|
|
|
1154
1287
|
|
|
1155
1288
|
type UpdateUserGroupRequestModel = UserGroupBaseModel;
|
|
1156
1289
|
|
|
1290
|
+
type UpdateUserGroupsOnUserRequestModel = {
|
|
1291
|
+
userIds?: Array<string>;
|
|
1292
|
+
userGroupIds?: Array<string>;
|
|
1293
|
+
};
|
|
1294
|
+
|
|
1295
|
+
type UpdateUserRequestModel = (UserPresentationBaseModel & {
|
|
1296
|
+
languageIsoCode?: string;
|
|
1297
|
+
contentStartNodeIds?: Array<string>;
|
|
1298
|
+
mediaStartNodeIds?: Array<string>;
|
|
1299
|
+
});
|
|
1300
|
+
|
|
1157
1301
|
type UpgradeSettingsResponseModel = {
|
|
1158
1302
|
currentState?: string;
|
|
1159
1303
|
newState?: string;
|
|
@@ -1162,10 +1306,18 @@ type UpgradeSettingsResponseModel = {
|
|
|
1162
1306
|
readonly reportUrl?: string;
|
|
1163
1307
|
};
|
|
1164
1308
|
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1309
|
+
declare enum UserOrderModel {
|
|
1310
|
+
USER_NAME = "UserName",
|
|
1311
|
+
LANGUAGE = "Language",
|
|
1312
|
+
NAME = "Name",
|
|
1313
|
+
EMAIL = "Email",
|
|
1314
|
+
ID = "Id",
|
|
1315
|
+
CREATE_DATE = "CreateDate",
|
|
1316
|
+
UPDATE_DATE = "UpdateDate",
|
|
1317
|
+
IS_APPROVED = "IsApproved",
|
|
1318
|
+
IS_LOCKED_OUT = "IsLockedOut",
|
|
1319
|
+
LAST_LOGIN_DATE = "LastLoginDate"
|
|
1320
|
+
}
|
|
1169
1321
|
|
|
1170
1322
|
type VersionResponseModel = {
|
|
1171
1323
|
version?: string;
|
|
@@ -1186,8 +1338,8 @@ declare class AuditLogResource {
|
|
|
1186
1338
|
* @returns PagedAuditLogResponseModel Success
|
|
1187
1339
|
* @throws ApiError
|
|
1188
1340
|
*/
|
|
1189
|
-
static
|
|
1190
|
-
|
|
1341
|
+
static getAuditLogById({ id, orderDirection, sinceDate, skip, take, }: {
|
|
1342
|
+
id: string;
|
|
1191
1343
|
orderDirection?: DirectionModel;
|
|
1192
1344
|
sinceDate?: string;
|
|
1193
1345
|
skip?: number;
|
|
@@ -1228,46 +1380,46 @@ declare class DataTypeResource {
|
|
|
1228
1380
|
* @returns any Success
|
|
1229
1381
|
* @throws ApiError
|
|
1230
1382
|
*/
|
|
1231
|
-
static
|
|
1232
|
-
|
|
1383
|
+
static getDataTypeById({ id, }: {
|
|
1384
|
+
id: string;
|
|
1233
1385
|
}): CancelablePromise<DataTypeResponseModel>;
|
|
1234
1386
|
/**
|
|
1235
1387
|
* @returns any Success
|
|
1236
1388
|
* @throws ApiError
|
|
1237
1389
|
*/
|
|
1238
|
-
static
|
|
1239
|
-
|
|
1390
|
+
static deleteDataTypeById({ id, }: {
|
|
1391
|
+
id: string;
|
|
1240
1392
|
}): CancelablePromise<any>;
|
|
1241
1393
|
/**
|
|
1242
1394
|
* @returns any Success
|
|
1243
1395
|
* @throws ApiError
|
|
1244
1396
|
*/
|
|
1245
|
-
static
|
|
1246
|
-
|
|
1397
|
+
static putDataTypeById({ id, requestBody, }: {
|
|
1398
|
+
id: string;
|
|
1247
1399
|
requestBody?: UpdateDataTypeRequestModel;
|
|
1248
1400
|
}): CancelablePromise<any>;
|
|
1249
1401
|
/**
|
|
1250
1402
|
* @returns string Created
|
|
1251
1403
|
* @throws ApiError
|
|
1252
1404
|
*/
|
|
1253
|
-
static
|
|
1254
|
-
|
|
1405
|
+
static postDataTypeByIdCopy({ id, requestBody, }: {
|
|
1406
|
+
id: string;
|
|
1255
1407
|
requestBody?: CopyDataTypeRequestModel;
|
|
1256
1408
|
}): CancelablePromise<string>;
|
|
1257
1409
|
/**
|
|
1258
1410
|
* @returns any Success
|
|
1259
1411
|
* @throws ApiError
|
|
1260
1412
|
*/
|
|
1261
|
-
static
|
|
1262
|
-
|
|
1413
|
+
static postDataTypeByIdMove({ id, requestBody, }: {
|
|
1414
|
+
id: string;
|
|
1263
1415
|
requestBody?: MoveDataTypeRequestModel;
|
|
1264
1416
|
}): CancelablePromise<any>;
|
|
1265
1417
|
/**
|
|
1266
1418
|
* @returns any Success
|
|
1267
1419
|
* @throws ApiError
|
|
1268
1420
|
*/
|
|
1269
|
-
static
|
|
1270
|
-
|
|
1421
|
+
static getDataTypeByIdReferences({ id, }: {
|
|
1422
|
+
id: string;
|
|
1271
1423
|
}): CancelablePromise<Array<DataTypeReferenceResponseModel>>;
|
|
1272
1424
|
/**
|
|
1273
1425
|
* @returns string Created
|
|
@@ -1280,41 +1432,41 @@ declare class DataTypeResource {
|
|
|
1280
1432
|
* @returns any Success
|
|
1281
1433
|
* @throws ApiError
|
|
1282
1434
|
*/
|
|
1283
|
-
static
|
|
1284
|
-
|
|
1435
|
+
static getDataTypeFolderById({ id, }: {
|
|
1436
|
+
id: string;
|
|
1285
1437
|
}): CancelablePromise<FolderReponseModel>;
|
|
1286
1438
|
/**
|
|
1287
1439
|
* @returns any Success
|
|
1288
1440
|
* @throws ApiError
|
|
1289
1441
|
*/
|
|
1290
|
-
static
|
|
1291
|
-
|
|
1442
|
+
static deleteDataTypeFolderById({ id, }: {
|
|
1443
|
+
id: string;
|
|
1292
1444
|
}): CancelablePromise<any>;
|
|
1293
1445
|
/**
|
|
1294
1446
|
* @returns any Success
|
|
1295
1447
|
* @throws ApiError
|
|
1296
1448
|
*/
|
|
1297
|
-
static
|
|
1298
|
-
|
|
1449
|
+
static putDataTypeFolderById({ id, requestBody, }: {
|
|
1450
|
+
id: string;
|
|
1299
1451
|
requestBody?: UpdateFolderReponseModel;
|
|
1300
1452
|
}): CancelablePromise<any>;
|
|
1453
|
+
/**
|
|
1454
|
+
* @returns any Success
|
|
1455
|
+
* @throws ApiError
|
|
1456
|
+
*/
|
|
1457
|
+
static getDataTypeItem({ id, }: {
|
|
1458
|
+
id?: Array<string>;
|
|
1459
|
+
}): CancelablePromise<Array<DataTypeItemResponseModel>>;
|
|
1301
1460
|
/**
|
|
1302
1461
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1303
1462
|
* @throws ApiError
|
|
1304
1463
|
*/
|
|
1305
|
-
static getTreeDataTypeChildren({
|
|
1306
|
-
|
|
1464
|
+
static getTreeDataTypeChildren({ parentId, skip, take, foldersOnly, }: {
|
|
1465
|
+
parentId?: string;
|
|
1307
1466
|
skip?: number;
|
|
1308
1467
|
take?: number;
|
|
1309
1468
|
foldersOnly?: boolean;
|
|
1310
1469
|
}): CancelablePromise<PagedFolderTreeItemResponseModel>;
|
|
1311
|
-
/**
|
|
1312
|
-
* @returns any Success
|
|
1313
|
-
* @throws ApiError
|
|
1314
|
-
*/
|
|
1315
|
-
static getTreeDataTypeItem({ key, }: {
|
|
1316
|
-
key?: Array<string>;
|
|
1317
|
-
}): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
|
|
1318
1470
|
/**
|
|
1319
1471
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1320
1472
|
* @throws ApiError
|
|
@@ -1346,38 +1498,38 @@ declare class DictionaryResource {
|
|
|
1346
1498
|
* @returns any Success
|
|
1347
1499
|
* @throws ApiError
|
|
1348
1500
|
*/
|
|
1349
|
-
static
|
|
1350
|
-
|
|
1501
|
+
static getDictionaryById({ id, }: {
|
|
1502
|
+
id: string;
|
|
1351
1503
|
}): CancelablePromise<DictionaryItemResponseModel>;
|
|
1352
1504
|
/**
|
|
1353
1505
|
* @returns any Success
|
|
1354
1506
|
* @throws ApiError
|
|
1355
1507
|
*/
|
|
1356
|
-
static
|
|
1357
|
-
|
|
1508
|
+
static deleteDictionaryById({ id, }: {
|
|
1509
|
+
id: string;
|
|
1358
1510
|
}): CancelablePromise<any>;
|
|
1359
1511
|
/**
|
|
1360
1512
|
* @returns any Success
|
|
1361
1513
|
* @throws ApiError
|
|
1362
1514
|
*/
|
|
1363
|
-
static
|
|
1364
|
-
|
|
1515
|
+
static putDictionaryById({ id, requestBody, }: {
|
|
1516
|
+
id: string;
|
|
1365
1517
|
requestBody?: UpdateDictionaryItemRequestModel;
|
|
1366
1518
|
}): CancelablePromise<any>;
|
|
1367
1519
|
/**
|
|
1368
1520
|
* @returns binary Success
|
|
1369
1521
|
* @throws ApiError
|
|
1370
1522
|
*/
|
|
1371
|
-
static
|
|
1372
|
-
|
|
1523
|
+
static getDictionaryByIdExport({ id, includeChildren, }: {
|
|
1524
|
+
id: string;
|
|
1373
1525
|
includeChildren?: boolean;
|
|
1374
1526
|
}): CancelablePromise<Blob>;
|
|
1375
1527
|
/**
|
|
1376
1528
|
* @returns any Success
|
|
1377
1529
|
* @throws ApiError
|
|
1378
1530
|
*/
|
|
1379
|
-
static
|
|
1380
|
-
|
|
1531
|
+
static postDictionaryByIdMove({ id, requestBody, }: {
|
|
1532
|
+
id: string;
|
|
1381
1533
|
requestBody?: MoveDictionaryRequestModel;
|
|
1382
1534
|
}): CancelablePromise<any>;
|
|
1383
1535
|
/**
|
|
@@ -1391,25 +1543,18 @@ declare class DictionaryResource {
|
|
|
1391
1543
|
* @returns any Success
|
|
1392
1544
|
* @throws ApiError
|
|
1393
1545
|
*/
|
|
1394
|
-
static
|
|
1395
|
-
|
|
1396
|
-
}): CancelablePromise<
|
|
1546
|
+
static getDictionaryItem({ id, }: {
|
|
1547
|
+
id?: Array<string>;
|
|
1548
|
+
}): CancelablePromise<Array<DictionaryItemItemResponseModel>>;
|
|
1397
1549
|
/**
|
|
1398
1550
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1399
1551
|
* @throws ApiError
|
|
1400
1552
|
*/
|
|
1401
|
-
static getTreeDictionaryChildren({
|
|
1402
|
-
|
|
1553
|
+
static getTreeDictionaryChildren({ parentId, skip, take, }: {
|
|
1554
|
+
parentId?: string;
|
|
1403
1555
|
skip?: number;
|
|
1404
1556
|
take?: number;
|
|
1405
1557
|
}): CancelablePromise<PagedEntityTreeItemResponseModel>;
|
|
1406
|
-
/**
|
|
1407
|
-
* @returns any Success
|
|
1408
|
-
* @throws ApiError
|
|
1409
|
-
*/
|
|
1410
|
-
static getTreeDictionaryItem({ key, }: {
|
|
1411
|
-
key?: Array<string>;
|
|
1412
|
-
}): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
|
|
1413
1558
|
/**
|
|
1414
1559
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1415
1560
|
* @throws ApiError
|
|
@@ -1432,45 +1577,69 @@ declare class DocumentResource {
|
|
|
1432
1577
|
* @returns any Success
|
|
1433
1578
|
* @throws ApiError
|
|
1434
1579
|
*/
|
|
1435
|
-
static
|
|
1436
|
-
|
|
1580
|
+
static getDocumentById({ id, }: {
|
|
1581
|
+
id: string;
|
|
1437
1582
|
}): CancelablePromise<DocumentResponseModel>;
|
|
1438
1583
|
/**
|
|
1439
1584
|
* @returns any Success
|
|
1440
1585
|
* @throws ApiError
|
|
1441
1586
|
*/
|
|
1442
|
-
static
|
|
1443
|
-
|
|
1587
|
+
static deleteDocumentById({ id, }: {
|
|
1588
|
+
id: string;
|
|
1444
1589
|
}): CancelablePromise<any>;
|
|
1445
1590
|
/**
|
|
1446
1591
|
* @returns any Success
|
|
1447
1592
|
* @throws ApiError
|
|
1448
1593
|
*/
|
|
1449
|
-
static
|
|
1450
|
-
|
|
1594
|
+
static putDocumentById({ id, requestBody, }: {
|
|
1595
|
+
id: string;
|
|
1451
1596
|
requestBody?: UpdateDocumentRequestModel;
|
|
1452
1597
|
}): CancelablePromise<any>;
|
|
1453
1598
|
/**
|
|
1454
1599
|
* @returns any Success
|
|
1455
1600
|
* @throws ApiError
|
|
1456
1601
|
*/
|
|
1457
|
-
static
|
|
1458
|
-
|
|
1602
|
+
static getDocumentByIdDomains({ id, }: {
|
|
1603
|
+
id: string;
|
|
1459
1604
|
}): CancelablePromise<any>;
|
|
1460
1605
|
/**
|
|
1461
1606
|
* @returns any Success
|
|
1462
1607
|
* @throws ApiError
|
|
1463
1608
|
*/
|
|
1464
|
-
static
|
|
1465
|
-
|
|
1609
|
+
static putDocumentByIdDomains({ id, requestBody, }: {
|
|
1610
|
+
id: string;
|
|
1466
1611
|
requestBody?: UpdateDomainsRequestModel;
|
|
1467
1612
|
}): CancelablePromise<any>;
|
|
1613
|
+
/**
|
|
1614
|
+
* @returns any Success
|
|
1615
|
+
* @throws ApiError
|
|
1616
|
+
*/
|
|
1617
|
+
static getDocumentByIdNotifications({ id, }: {
|
|
1618
|
+
id: string;
|
|
1619
|
+
}): CancelablePromise<Array<DocumentNotificationResponseModel>>;
|
|
1620
|
+
/**
|
|
1621
|
+
* @returns any Success
|
|
1622
|
+
* @throws ApiError
|
|
1623
|
+
*/
|
|
1624
|
+
static putDocumentByIdNotifications({ id, requestBody, }: {
|
|
1625
|
+
id: string;
|
|
1626
|
+
requestBody?: UpdateDocumentNotificationsRequestModel;
|
|
1627
|
+
}): CancelablePromise<any>;
|
|
1628
|
+
/**
|
|
1629
|
+
* @returns any Success
|
|
1630
|
+
* @throws ApiError
|
|
1631
|
+
*/
|
|
1632
|
+
static getDocumentItem({ id, dataTypeId, culture, }: {
|
|
1633
|
+
id?: Array<string>;
|
|
1634
|
+
dataTypeId?: string;
|
|
1635
|
+
culture?: string;
|
|
1636
|
+
}): CancelablePromise<Array<DocumentItemResponseModel>>;
|
|
1468
1637
|
/**
|
|
1469
1638
|
* @returns PagedRecycleBinItemResponseModel Success
|
|
1470
1639
|
* @throws ApiError
|
|
1471
1640
|
*/
|
|
1472
|
-
static getRecycleBinDocumentChildren({
|
|
1473
|
-
|
|
1641
|
+
static getRecycleBinDocumentChildren({ parentId, skip, take, }: {
|
|
1642
|
+
parentId?: string;
|
|
1474
1643
|
skip?: number;
|
|
1475
1644
|
take?: number;
|
|
1476
1645
|
}): CancelablePromise<PagedRecycleBinItemResponseModel>;
|
|
@@ -1486,30 +1655,21 @@ declare class DocumentResource {
|
|
|
1486
1655
|
* @returns PagedDocumentTreeItemResponseModel Success
|
|
1487
1656
|
* @throws ApiError
|
|
1488
1657
|
*/
|
|
1489
|
-
static getTreeDocumentChildren({
|
|
1490
|
-
|
|
1658
|
+
static getTreeDocumentChildren({ parentId, skip, take, dataTypeId, culture, }: {
|
|
1659
|
+
parentId?: string;
|
|
1491
1660
|
skip?: number;
|
|
1492
1661
|
take?: number;
|
|
1493
|
-
|
|
1662
|
+
dataTypeId?: string;
|
|
1494
1663
|
culture?: string;
|
|
1495
1664
|
}): CancelablePromise<PagedDocumentTreeItemResponseModel>;
|
|
1496
|
-
/**
|
|
1497
|
-
* @returns any Success
|
|
1498
|
-
* @throws ApiError
|
|
1499
|
-
*/
|
|
1500
|
-
static getTreeDocumentItem({ key, dataTypeKey, culture, }: {
|
|
1501
|
-
key?: Array<string>;
|
|
1502
|
-
dataTypeKey?: string;
|
|
1503
|
-
culture?: string;
|
|
1504
|
-
}): CancelablePromise<Array<DocumentTreeItemResponseModel>>;
|
|
1505
1665
|
/**
|
|
1506
1666
|
* @returns PagedDocumentTreeItemResponseModel Success
|
|
1507
1667
|
* @throws ApiError
|
|
1508
1668
|
*/
|
|
1509
|
-
static getTreeDocumentRoot({ skip, take,
|
|
1669
|
+
static getTreeDocumentRoot({ skip, take, dataTypeId, culture, }: {
|
|
1510
1670
|
skip?: number;
|
|
1511
1671
|
take?: number;
|
|
1512
|
-
|
|
1672
|
+
dataTypeId?: string;
|
|
1513
1673
|
culture?: string;
|
|
1514
1674
|
}): CancelablePromise<PagedDocumentTreeItemResponseModel>;
|
|
1515
1675
|
}
|
|
@@ -1519,9 +1679,9 @@ declare class DocumentBlueprintResource {
|
|
|
1519
1679
|
* @returns any Success
|
|
1520
1680
|
* @throws ApiError
|
|
1521
1681
|
*/
|
|
1522
|
-
static
|
|
1523
|
-
|
|
1524
|
-
}): CancelablePromise<Array<
|
|
1682
|
+
static getDocumentBlueprintItem({ id, }: {
|
|
1683
|
+
id?: Array<string>;
|
|
1684
|
+
}): CancelablePromise<Array<DocumentBlueprintResponseModel>>;
|
|
1525
1685
|
/**
|
|
1526
1686
|
* @returns PagedDocumentBlueprintTreeItemResponseModel Success
|
|
1527
1687
|
* @throws ApiError
|
|
@@ -1537,26 +1697,26 @@ declare class DocumentTypeResource {
|
|
|
1537
1697
|
* @returns any Success
|
|
1538
1698
|
* @throws ApiError
|
|
1539
1699
|
*/
|
|
1540
|
-
static
|
|
1541
|
-
|
|
1700
|
+
static getDocumentTypeById({ id, }: {
|
|
1701
|
+
id: string;
|
|
1542
1702
|
}): CancelablePromise<DocumentTypeResponseModel>;
|
|
1703
|
+
/**
|
|
1704
|
+
* @returns any Success
|
|
1705
|
+
* @throws ApiError
|
|
1706
|
+
*/
|
|
1707
|
+
static getDocumentTypeItem({ id, }: {
|
|
1708
|
+
id?: Array<string>;
|
|
1709
|
+
}): CancelablePromise<Array<DocumentTypeItemResponseModel>>;
|
|
1543
1710
|
/**
|
|
1544
1711
|
* @returns PagedDocumentTypeTreeItemResponseModel Success
|
|
1545
1712
|
* @throws ApiError
|
|
1546
1713
|
*/
|
|
1547
|
-
static getTreeDocumentTypeChildren({
|
|
1548
|
-
|
|
1714
|
+
static getTreeDocumentTypeChildren({ parentId, skip, take, foldersOnly, }: {
|
|
1715
|
+
parentId?: string;
|
|
1549
1716
|
skip?: number;
|
|
1550
1717
|
take?: number;
|
|
1551
1718
|
foldersOnly?: boolean;
|
|
1552
1719
|
}): CancelablePromise<PagedDocumentTypeTreeItemResponseModel>;
|
|
1553
|
-
/**
|
|
1554
|
-
* @returns any Success
|
|
1555
|
-
* @throws ApiError
|
|
1556
|
-
*/
|
|
1557
|
-
static getTreeDocumentTypeItem({ key, }: {
|
|
1558
|
-
key?: Array<string>;
|
|
1559
|
-
}): CancelablePromise<Array<DocumentTypeTreeItemResponseModel>>;
|
|
1560
1720
|
/**
|
|
1561
1721
|
* @returns PagedDocumentTypeTreeItemResponseModel Success
|
|
1562
1722
|
* @throws ApiError
|
|
@@ -1699,6 +1859,13 @@ declare class LanguageResource {
|
|
|
1699
1859
|
isoCode: string;
|
|
1700
1860
|
requestBody?: UpdateLanguageRequestModel;
|
|
1701
1861
|
}): CancelablePromise<any>;
|
|
1862
|
+
/**
|
|
1863
|
+
* @returns any Success
|
|
1864
|
+
* @throws ApiError
|
|
1865
|
+
*/
|
|
1866
|
+
static getLanguageItem({ isoCode, }: {
|
|
1867
|
+
isoCode?: Array<string>;
|
|
1868
|
+
}): CancelablePromise<Array<LanguageItemResponseModel>>;
|
|
1702
1869
|
}
|
|
1703
1870
|
|
|
1704
1871
|
declare class LogViewerResource {
|
|
@@ -1792,30 +1959,38 @@ declare class MediaResource {
|
|
|
1792
1959
|
* @returns any Success
|
|
1793
1960
|
* @throws ApiError
|
|
1794
1961
|
*/
|
|
1795
|
-
static
|
|
1796
|
-
|
|
1962
|
+
static getMediaById({ id, }: {
|
|
1963
|
+
id: string;
|
|
1797
1964
|
}): CancelablePromise<DocumentResponseModel>;
|
|
1798
1965
|
/**
|
|
1799
1966
|
* @returns any Success
|
|
1800
1967
|
* @throws ApiError
|
|
1801
1968
|
*/
|
|
1802
|
-
static
|
|
1803
|
-
|
|
1969
|
+
static deleteMediaById({ id, }: {
|
|
1970
|
+
id: string;
|
|
1804
1971
|
}): CancelablePromise<any>;
|
|
1805
1972
|
/**
|
|
1806
1973
|
* @returns any Success
|
|
1807
1974
|
* @throws ApiError
|
|
1808
1975
|
*/
|
|
1809
|
-
static
|
|
1810
|
-
|
|
1976
|
+
static putMediaById({ id, requestBody, }: {
|
|
1977
|
+
id: string;
|
|
1811
1978
|
requestBody?: UpdateMediaRequestModel;
|
|
1812
1979
|
}): CancelablePromise<any>;
|
|
1980
|
+
/**
|
|
1981
|
+
* @returns any Success
|
|
1982
|
+
* @throws ApiError
|
|
1983
|
+
*/
|
|
1984
|
+
static getMediaItem({ id, dataTypeId, }: {
|
|
1985
|
+
id?: Array<string>;
|
|
1986
|
+
dataTypeId?: string;
|
|
1987
|
+
}): CancelablePromise<Array<MediaItemResponseModel>>;
|
|
1813
1988
|
/**
|
|
1814
1989
|
* @returns PagedRecycleBinItemResponseModel Success
|
|
1815
1990
|
* @throws ApiError
|
|
1816
1991
|
*/
|
|
1817
|
-
static getRecycleBinMediaChildren({
|
|
1818
|
-
|
|
1992
|
+
static getRecycleBinMediaChildren({ parentId, skip, take, }: {
|
|
1993
|
+
parentId?: string;
|
|
1819
1994
|
skip?: number;
|
|
1820
1995
|
take?: number;
|
|
1821
1996
|
}): CancelablePromise<PagedRecycleBinItemResponseModel>;
|
|
@@ -1831,28 +2006,28 @@ declare class MediaResource {
|
|
|
1831
2006
|
* @returns PagedContentTreeItemResponseModel Success
|
|
1832
2007
|
* @throws ApiError
|
|
1833
2008
|
*/
|
|
1834
|
-
static getTreeMediaChildren({
|
|
1835
|
-
|
|
2009
|
+
static getTreeMediaChildren({ parentId, skip, take, dataTypeId, }: {
|
|
2010
|
+
parentId?: string;
|
|
1836
2011
|
skip?: number;
|
|
1837
2012
|
take?: number;
|
|
1838
|
-
|
|
2013
|
+
dataTypeId?: string;
|
|
1839
2014
|
}): CancelablePromise<PagedContentTreeItemResponseModel>;
|
|
1840
2015
|
/**
|
|
1841
2016
|
* @returns any Success
|
|
1842
2017
|
* @throws ApiError
|
|
1843
2018
|
*/
|
|
1844
|
-
static getTreeMediaItem({
|
|
1845
|
-
|
|
1846
|
-
|
|
2019
|
+
static getTreeMediaItem({ id, dataTypeId, }: {
|
|
2020
|
+
id?: Array<string>;
|
|
2021
|
+
dataTypeId?: string;
|
|
1847
2022
|
}): CancelablePromise<Array<(ContentTreeItemResponseModel | DocumentTreeItemResponseModel)>>;
|
|
1848
2023
|
/**
|
|
1849
2024
|
* @returns PagedContentTreeItemResponseModel Success
|
|
1850
2025
|
* @throws ApiError
|
|
1851
2026
|
*/
|
|
1852
|
-
static getTreeMediaRoot({ skip, take,
|
|
2027
|
+
static getTreeMediaRoot({ skip, take, dataTypeId, }: {
|
|
1853
2028
|
skip?: number;
|
|
1854
2029
|
take?: number;
|
|
1855
|
-
|
|
2030
|
+
dataTypeId?: string;
|
|
1856
2031
|
}): CancelablePromise<PagedContentTreeItemResponseModel>;
|
|
1857
2032
|
}
|
|
1858
2033
|
|
|
@@ -1861,26 +2036,26 @@ declare class MediaTypeResource {
|
|
|
1861
2036
|
* @returns any Success
|
|
1862
2037
|
* @throws ApiError
|
|
1863
2038
|
*/
|
|
1864
|
-
static
|
|
1865
|
-
|
|
2039
|
+
static getMediaTypeById({ id, }: {
|
|
2040
|
+
id: string;
|
|
1866
2041
|
}): CancelablePromise<MediaTypeResponseModel>;
|
|
2042
|
+
/**
|
|
2043
|
+
* @returns any Success
|
|
2044
|
+
* @throws ApiError
|
|
2045
|
+
*/
|
|
2046
|
+
static getMediaTypeItem({ id, }: {
|
|
2047
|
+
id?: Array<string>;
|
|
2048
|
+
}): CancelablePromise<Array<MediaTypeItemResponseModel>>;
|
|
1867
2049
|
/**
|
|
1868
2050
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1869
2051
|
* @throws ApiError
|
|
1870
2052
|
*/
|
|
1871
|
-
static getTreeMediaTypeChildren({
|
|
1872
|
-
|
|
2053
|
+
static getTreeMediaTypeChildren({ parentId, skip, take, foldersOnly, }: {
|
|
2054
|
+
parentId?: string;
|
|
1873
2055
|
skip?: number;
|
|
1874
2056
|
take?: number;
|
|
1875
2057
|
foldersOnly?: boolean;
|
|
1876
2058
|
}): CancelablePromise<PagedFolderTreeItemResponseModel>;
|
|
1877
|
-
/**
|
|
1878
|
-
* @returns any Success
|
|
1879
|
-
* @throws ApiError
|
|
1880
|
-
*/
|
|
1881
|
-
static getTreeMediaTypeItem({ key, }: {
|
|
1882
|
-
key?: Array<string>;
|
|
1883
|
-
}): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
|
|
1884
2059
|
/**
|
|
1885
2060
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1886
2061
|
* @throws ApiError
|
|
@@ -1897,9 +2072,9 @@ declare class MemberGroupResource {
|
|
|
1897
2072
|
* @returns any Success
|
|
1898
2073
|
* @throws ApiError
|
|
1899
2074
|
*/
|
|
1900
|
-
static
|
|
1901
|
-
|
|
1902
|
-
}): CancelablePromise<Array<
|
|
2075
|
+
static getMemberGroupItem({ id, }: {
|
|
2076
|
+
id?: Array<string>;
|
|
2077
|
+
}): CancelablePromise<Array<MemberGroupItemReponseModel>>;
|
|
1903
2078
|
/**
|
|
1904
2079
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1905
2080
|
* @throws ApiError
|
|
@@ -1915,9 +2090,9 @@ declare class MemberTypeResource {
|
|
|
1915
2090
|
* @returns any Success
|
|
1916
2091
|
* @throws ApiError
|
|
1917
2092
|
*/
|
|
1918
|
-
static
|
|
1919
|
-
|
|
1920
|
-
}): CancelablePromise<Array<
|
|
2093
|
+
static getMemberTypeItem({ id, }: {
|
|
2094
|
+
id?: Array<string>;
|
|
2095
|
+
}): CancelablePromise<Array<MemberTypeItemResponseModel>>;
|
|
1921
2096
|
/**
|
|
1922
2097
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1923
2098
|
* @throws ApiError
|
|
@@ -1984,30 +2159,30 @@ declare class PackageResource {
|
|
|
1984
2159
|
* @returns any Success
|
|
1985
2160
|
* @throws ApiError
|
|
1986
2161
|
*/
|
|
1987
|
-
static
|
|
1988
|
-
|
|
2162
|
+
static getPackageCreatedById({ id, }: {
|
|
2163
|
+
id: string;
|
|
1989
2164
|
}): CancelablePromise<PackageDefinitionResponseModel>;
|
|
1990
2165
|
/**
|
|
1991
2166
|
* @returns any Success
|
|
1992
2167
|
* @throws ApiError
|
|
1993
2168
|
*/
|
|
1994
|
-
static
|
|
1995
|
-
|
|
2169
|
+
static deletePackageCreatedById({ id, }: {
|
|
2170
|
+
id: string;
|
|
1996
2171
|
}): CancelablePromise<any>;
|
|
1997
2172
|
/**
|
|
1998
2173
|
* @returns any Success
|
|
1999
2174
|
* @throws ApiError
|
|
2000
2175
|
*/
|
|
2001
|
-
static
|
|
2002
|
-
|
|
2176
|
+
static putPackageCreatedById({ id, requestBody, }: {
|
|
2177
|
+
id: string;
|
|
2003
2178
|
requestBody?: UpdatePackageRequestModel;
|
|
2004
2179
|
}): CancelablePromise<any>;
|
|
2005
2180
|
/**
|
|
2006
2181
|
* @returns binary Success
|
|
2007
2182
|
* @throws ApiError
|
|
2008
2183
|
*/
|
|
2009
|
-
static
|
|
2010
|
-
|
|
2184
|
+
static getPackageCreatedByIdDownload({ id, }: {
|
|
2185
|
+
id: string;
|
|
2011
2186
|
}): CancelablePromise<Blob>;
|
|
2012
2187
|
/**
|
|
2013
2188
|
* @returns any Success
|
|
@@ -2025,6 +2200,13 @@ declare class PackageResource {
|
|
|
2025
2200
|
}
|
|
2026
2201
|
|
|
2027
2202
|
declare class PartialViewResource {
|
|
2203
|
+
/**
|
|
2204
|
+
* @returns any Success
|
|
2205
|
+
* @throws ApiError
|
|
2206
|
+
*/
|
|
2207
|
+
static getPartialViewItem({ id, }: {
|
|
2208
|
+
id?: Array<string>;
|
|
2209
|
+
}): CancelablePromise<Array<PartialViewItemResponseModel>>;
|
|
2028
2210
|
/**
|
|
2029
2211
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2030
2212
|
* @throws ApiError
|
|
@@ -2034,13 +2216,6 @@ declare class PartialViewResource {
|
|
|
2034
2216
|
skip?: number;
|
|
2035
2217
|
take?: number;
|
|
2036
2218
|
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2037
|
-
/**
|
|
2038
|
-
* @returns any Success
|
|
2039
|
-
* @throws ApiError
|
|
2040
|
-
*/
|
|
2041
|
-
static getTreePartialViewItem({ path, }: {
|
|
2042
|
-
path?: Array<string>;
|
|
2043
|
-
}): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
|
|
2044
2219
|
/**
|
|
2045
2220
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2046
2221
|
* @throws ApiError
|
|
@@ -2103,8 +2278,8 @@ declare class RedirectManagementResource {
|
|
|
2103
2278
|
* @returns PagedRedirectUrlResponseModel Success
|
|
2104
2279
|
* @throws ApiError
|
|
2105
2280
|
*/
|
|
2106
|
-
static
|
|
2107
|
-
|
|
2281
|
+
static getRedirectManagementById({ id, skip, take, }: {
|
|
2282
|
+
id: string;
|
|
2108
2283
|
skip?: number;
|
|
2109
2284
|
take?: number;
|
|
2110
2285
|
}): CancelablePromise<PagedRedirectUrlResponseModel>;
|
|
@@ -2112,8 +2287,8 @@ declare class RedirectManagementResource {
|
|
|
2112
2287
|
* @returns any Success
|
|
2113
2288
|
* @throws ApiError
|
|
2114
2289
|
*/
|
|
2115
|
-
static
|
|
2116
|
-
|
|
2290
|
+
static deleteRedirectManagementById({ id, }: {
|
|
2291
|
+
id: string;
|
|
2117
2292
|
}): CancelablePromise<any>;
|
|
2118
2293
|
/**
|
|
2119
2294
|
* @returns any Success
|
|
@@ -2151,8 +2326,8 @@ declare class RelationResource {
|
|
|
2151
2326
|
* @returns PagedRelationResponseModel Success
|
|
2152
2327
|
* @throws ApiError
|
|
2153
2328
|
*/
|
|
2154
|
-
static
|
|
2155
|
-
|
|
2329
|
+
static getRelationTypeById({ id, skip, take, }: {
|
|
2330
|
+
id: string;
|
|
2156
2331
|
skip?: number;
|
|
2157
2332
|
take?: number;
|
|
2158
2333
|
}): CancelablePromise<PagedRelationResponseModel>;
|
|
@@ -2170,31 +2345,31 @@ declare class RelationTypeResource {
|
|
|
2170
2345
|
* @returns any Success
|
|
2171
2346
|
* @throws ApiError
|
|
2172
2347
|
*/
|
|
2173
|
-
static
|
|
2174
|
-
|
|
2348
|
+
static getRelationTypeById({ id, }: {
|
|
2349
|
+
id: string;
|
|
2175
2350
|
}): CancelablePromise<RelationTypeResponseModel>;
|
|
2176
2351
|
/**
|
|
2177
2352
|
* @returns any Success
|
|
2178
2353
|
* @throws ApiError
|
|
2179
2354
|
*/
|
|
2180
|
-
static
|
|
2181
|
-
|
|
2355
|
+
static deleteRelationTypeById({ id, }: {
|
|
2356
|
+
id: string;
|
|
2182
2357
|
}): CancelablePromise<any>;
|
|
2183
2358
|
/**
|
|
2184
2359
|
* @returns any Success
|
|
2185
2360
|
* @throws ApiError
|
|
2186
2361
|
*/
|
|
2187
|
-
static
|
|
2188
|
-
|
|
2362
|
+
static putRelationTypeById({ id, requestBody, }: {
|
|
2363
|
+
id: string;
|
|
2189
2364
|
requestBody?: UpdateRelationTypeRequestModel;
|
|
2190
2365
|
}): CancelablePromise<RelationTypeResponseModel>;
|
|
2191
2366
|
/**
|
|
2192
2367
|
* @returns any Success
|
|
2193
2368
|
* @throws ApiError
|
|
2194
2369
|
*/
|
|
2195
|
-
static
|
|
2196
|
-
|
|
2197
|
-
}): CancelablePromise<Array<
|
|
2370
|
+
static getRelationTypeItem({ id, }: {
|
|
2371
|
+
id?: Array<string>;
|
|
2372
|
+
}): CancelablePromise<Array<RelationTypeItemResponseModel>>;
|
|
2198
2373
|
/**
|
|
2199
2374
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2200
2375
|
* @throws ApiError
|
|
@@ -2206,6 +2381,13 @@ declare class RelationTypeResource {
|
|
|
2206
2381
|
}
|
|
2207
2382
|
|
|
2208
2383
|
declare class ScriptResource {
|
|
2384
|
+
/**
|
|
2385
|
+
* @returns any Success
|
|
2386
|
+
* @throws ApiError
|
|
2387
|
+
*/
|
|
2388
|
+
static getScriptItem({ path, }: {
|
|
2389
|
+
path?: Array<string>;
|
|
2390
|
+
}): CancelablePromise<Array<ScriptItemResponseModel>>;
|
|
2209
2391
|
/**
|
|
2210
2392
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2211
2393
|
* @throws ApiError
|
|
@@ -2215,13 +2397,6 @@ declare class ScriptResource {
|
|
|
2215
2397
|
skip?: number;
|
|
2216
2398
|
take?: number;
|
|
2217
2399
|
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2218
|
-
/**
|
|
2219
|
-
* @returns any Success
|
|
2220
|
-
* @throws ApiError
|
|
2221
|
-
*/
|
|
2222
|
-
static getTreeScriptItem({ path, }: {
|
|
2223
|
-
path?: Array<string>;
|
|
2224
|
-
}): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
|
|
2225
2400
|
/**
|
|
2226
2401
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2227
2402
|
* @throws ApiError
|
|
@@ -2289,13 +2464,6 @@ declare class StaticFileResource {
|
|
|
2289
2464
|
skip?: number;
|
|
2290
2465
|
take?: number;
|
|
2291
2466
|
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2292
|
-
/**
|
|
2293
|
-
* @returns any Success
|
|
2294
|
-
* @throws ApiError
|
|
2295
|
-
*/
|
|
2296
|
-
static getTreeStaticFileItem({ path, }: {
|
|
2297
|
-
path?: Array<string>;
|
|
2298
|
-
}): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
|
|
2299
2467
|
/**
|
|
2300
2468
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2301
2469
|
* @throws ApiError
|
|
@@ -2307,6 +2475,13 @@ declare class StaticFileResource {
|
|
|
2307
2475
|
}
|
|
2308
2476
|
|
|
2309
2477
|
declare class StylesheetResource {
|
|
2478
|
+
/**
|
|
2479
|
+
* @returns any Success
|
|
2480
|
+
* @throws ApiError
|
|
2481
|
+
*/
|
|
2482
|
+
static getStylesheetItem({ path, }: {
|
|
2483
|
+
path?: Array<string>;
|
|
2484
|
+
}): CancelablePromise<Array<ScriptItemResponseModel>>;
|
|
2310
2485
|
/**
|
|
2311
2486
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2312
2487
|
* @throws ApiError
|
|
@@ -2316,13 +2491,6 @@ declare class StylesheetResource {
|
|
|
2316
2491
|
skip?: number;
|
|
2317
2492
|
take?: number;
|
|
2318
2493
|
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2319
|
-
/**
|
|
2320
|
-
* @returns any Success
|
|
2321
|
-
* @throws ApiError
|
|
2322
|
-
*/
|
|
2323
|
-
static getTreeStylesheetItem({ path, }: {
|
|
2324
|
-
path?: Array<string>;
|
|
2325
|
-
}): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
|
|
2326
2494
|
/**
|
|
2327
2495
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2328
2496
|
* @throws ApiError
|
|
@@ -2368,24 +2536,31 @@ declare class TemplateResource {
|
|
|
2368
2536
|
* @returns any Success
|
|
2369
2537
|
* @throws ApiError
|
|
2370
2538
|
*/
|
|
2371
|
-
static
|
|
2372
|
-
|
|
2539
|
+
static getTemplateById({ id, }: {
|
|
2540
|
+
id: string;
|
|
2373
2541
|
}): CancelablePromise<TemplateResponseModel>;
|
|
2374
2542
|
/**
|
|
2375
2543
|
* @returns any Success
|
|
2376
2544
|
* @throws ApiError
|
|
2377
2545
|
*/
|
|
2378
|
-
static
|
|
2379
|
-
|
|
2546
|
+
static deleteTemplateById({ id, }: {
|
|
2547
|
+
id: string;
|
|
2380
2548
|
}): CancelablePromise<any>;
|
|
2381
2549
|
/**
|
|
2382
2550
|
* @returns any Success
|
|
2383
2551
|
* @throws ApiError
|
|
2384
2552
|
*/
|
|
2385
|
-
static
|
|
2386
|
-
|
|
2553
|
+
static putTemplateById({ id, requestBody, }: {
|
|
2554
|
+
id: string;
|
|
2387
2555
|
requestBody?: UpdateTemplateRequestModel;
|
|
2388
2556
|
}): CancelablePromise<any>;
|
|
2557
|
+
/**
|
|
2558
|
+
* @returns any Success
|
|
2559
|
+
* @throws ApiError
|
|
2560
|
+
*/
|
|
2561
|
+
static getTemplateItem({ id, }: {
|
|
2562
|
+
id?: Array<string>;
|
|
2563
|
+
}): CancelablePromise<Array<TemplateItemResponseModel>>;
|
|
2389
2564
|
/**
|
|
2390
2565
|
* @returns any Success
|
|
2391
2566
|
* @throws ApiError
|
|
@@ -2407,18 +2582,11 @@ declare class TemplateResource {
|
|
|
2407
2582
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2408
2583
|
* @throws ApiError
|
|
2409
2584
|
*/
|
|
2410
|
-
static getTreeTemplateChildren({
|
|
2411
|
-
|
|
2585
|
+
static getTreeTemplateChildren({ parentId, skip, take, }: {
|
|
2586
|
+
parentId?: string;
|
|
2412
2587
|
skip?: number;
|
|
2413
2588
|
take?: number;
|
|
2414
2589
|
}): CancelablePromise<PagedEntityTreeItemResponseModel>;
|
|
2415
|
-
/**
|
|
2416
|
-
* @returns any Success
|
|
2417
|
-
* @throws ApiError
|
|
2418
|
-
*/
|
|
2419
|
-
static getTreeTemplateItem({ key, }: {
|
|
2420
|
-
key?: Array<string>;
|
|
2421
|
-
}): CancelablePromise<Array<(EntityTreeItemResponseModel | ContentTreeItemResponseModel | DocumentBlueprintTreeItemResponseModel | DocumentTreeItemResponseModel | DocumentTypeTreeItemResponseModel | FolderTreeItemResponseModel)>>;
|
|
2422
2590
|
/**
|
|
2423
2591
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2424
2592
|
* @throws ApiError
|
|
@@ -2429,13 +2597,40 @@ declare class TemplateResource {
|
|
|
2429
2597
|
}): CancelablePromise<PagedEntityTreeItemResponseModel>;
|
|
2430
2598
|
}
|
|
2431
2599
|
|
|
2600
|
+
declare class TemporaryFileResource {
|
|
2601
|
+
/**
|
|
2602
|
+
* @returns string Created
|
|
2603
|
+
* @throws ApiError
|
|
2604
|
+
*/
|
|
2605
|
+
static postTemporaryfile({ formData, }: {
|
|
2606
|
+
formData?: {
|
|
2607
|
+
Id?: string;
|
|
2608
|
+
File?: Blob;
|
|
2609
|
+
};
|
|
2610
|
+
}): CancelablePromise<string>;
|
|
2611
|
+
/**
|
|
2612
|
+
* @returns any Success
|
|
2613
|
+
* @throws ApiError
|
|
2614
|
+
*/
|
|
2615
|
+
static getTemporaryfileById({ id, }: {
|
|
2616
|
+
id: string;
|
|
2617
|
+
}): CancelablePromise<TemporaryFileResponseModel>;
|
|
2618
|
+
/**
|
|
2619
|
+
* @returns any Success
|
|
2620
|
+
* @throws ApiError
|
|
2621
|
+
*/
|
|
2622
|
+
static deleteTemporaryfileById({ id, }: {
|
|
2623
|
+
id: string;
|
|
2624
|
+
}): CancelablePromise<any>;
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2432
2627
|
declare class TrackedReferenceResource {
|
|
2433
2628
|
/**
|
|
2434
2629
|
* @returns PagedRelationItemResponseModel Success
|
|
2435
2630
|
* @throws ApiError
|
|
2436
2631
|
*/
|
|
2437
|
-
static
|
|
2438
|
-
|
|
2632
|
+
static getTrackedReferenceById({ id, skip, take, filterMustBeIsDependency, }: {
|
|
2633
|
+
id: string;
|
|
2439
2634
|
skip?: number;
|
|
2440
2635
|
take?: number;
|
|
2441
2636
|
filterMustBeIsDependency?: boolean;
|
|
@@ -2444,8 +2639,8 @@ declare class TrackedReferenceResource {
|
|
|
2444
2639
|
* @returns PagedRelationItemResponseModel Success
|
|
2445
2640
|
* @throws ApiError
|
|
2446
2641
|
*/
|
|
2447
|
-
static
|
|
2448
|
-
|
|
2642
|
+
static getTrackedReferenceDescendantsByParentId({ parentId, skip, take, filterMustBeIsDependency, }: {
|
|
2643
|
+
parentId: string;
|
|
2449
2644
|
skip?: number;
|
|
2450
2645
|
take?: number;
|
|
2451
2646
|
filterMustBeIsDependency?: boolean;
|
|
@@ -2454,8 +2649,8 @@ declare class TrackedReferenceResource {
|
|
|
2454
2649
|
* @returns PagedRelationItemResponseModel Success
|
|
2455
2650
|
* @throws ApiError
|
|
2456
2651
|
*/
|
|
2457
|
-
static getTrackedReferenceItem({
|
|
2458
|
-
|
|
2652
|
+
static getTrackedReferenceItem({ id, skip, take, filterMustBeIsDependency, }: {
|
|
2653
|
+
id?: Array<string>;
|
|
2459
2654
|
skip?: number;
|
|
2460
2655
|
take?: number;
|
|
2461
2656
|
filterMustBeIsDependency?: boolean;
|
|
@@ -2495,24 +2690,145 @@ declare class UserGroupsResource {
|
|
|
2495
2690
|
* @returns any Success
|
|
2496
2691
|
* @throws ApiError
|
|
2497
2692
|
*/
|
|
2498
|
-
static
|
|
2499
|
-
|
|
2693
|
+
static getUserGroupsById({ id, }: {
|
|
2694
|
+
id: string;
|
|
2500
2695
|
}): CancelablePromise<UserGroupPresentationModel>;
|
|
2501
2696
|
/**
|
|
2502
2697
|
* @returns any Success
|
|
2503
2698
|
* @throws ApiError
|
|
2504
2699
|
*/
|
|
2505
|
-
static
|
|
2506
|
-
|
|
2700
|
+
static deleteUserGroupsById({ id, }: {
|
|
2701
|
+
id: string;
|
|
2507
2702
|
}): CancelablePromise<any>;
|
|
2508
2703
|
/**
|
|
2509
2704
|
* @returns any Success
|
|
2510
2705
|
* @throws ApiError
|
|
2511
2706
|
*/
|
|
2512
|
-
static
|
|
2513
|
-
|
|
2707
|
+
static putUserGroupsById({ id, requestBody, }: {
|
|
2708
|
+
id: string;
|
|
2514
2709
|
requestBody?: UpdateUserGroupRequestModel;
|
|
2515
2710
|
}): CancelablePromise<any>;
|
|
2516
2711
|
}
|
|
2517
2712
|
|
|
2518
|
-
|
|
2713
|
+
declare class UsersResource {
|
|
2714
|
+
/**
|
|
2715
|
+
* @returns any Success
|
|
2716
|
+
* @throws ApiError
|
|
2717
|
+
*/
|
|
2718
|
+
static postUsers({ requestBody, }: {
|
|
2719
|
+
requestBody?: (CreateUserRequestModel | InviteUserRequestModel);
|
|
2720
|
+
}): CancelablePromise<CreateUserResponseModel>;
|
|
2721
|
+
/**
|
|
2722
|
+
* @returns PagedUserResponseModel Success
|
|
2723
|
+
* @throws ApiError
|
|
2724
|
+
*/
|
|
2725
|
+
static getUsers({ skip, take, }: {
|
|
2726
|
+
skip?: number;
|
|
2727
|
+
take?: number;
|
|
2728
|
+
}): CancelablePromise<PagedUserResponseModel>;
|
|
2729
|
+
/**
|
|
2730
|
+
* @returns any Success
|
|
2731
|
+
* @throws ApiError
|
|
2732
|
+
*/
|
|
2733
|
+
static getUsersById({ id, }: {
|
|
2734
|
+
id: string;
|
|
2735
|
+
}): CancelablePromise<UserResponseModel>;
|
|
2736
|
+
/**
|
|
2737
|
+
* @returns any Success
|
|
2738
|
+
* @throws ApiError
|
|
2739
|
+
*/
|
|
2740
|
+
static deleteUsersById({ id, }: {
|
|
2741
|
+
id: string;
|
|
2742
|
+
}): CancelablePromise<any>;
|
|
2743
|
+
/**
|
|
2744
|
+
* @returns any Success
|
|
2745
|
+
* @throws ApiError
|
|
2746
|
+
*/
|
|
2747
|
+
static putUsersById({ id, requestBody, }: {
|
|
2748
|
+
id: string;
|
|
2749
|
+
requestBody?: UpdateUserRequestModel;
|
|
2750
|
+
}): CancelablePromise<any>;
|
|
2751
|
+
/**
|
|
2752
|
+
* @returns any Success
|
|
2753
|
+
* @throws ApiError
|
|
2754
|
+
*/
|
|
2755
|
+
static deleteUsersAvatarById({ id, }: {
|
|
2756
|
+
id: string;
|
|
2757
|
+
}): CancelablePromise<any>;
|
|
2758
|
+
/**
|
|
2759
|
+
* @returns any Success
|
|
2760
|
+
* @throws ApiError
|
|
2761
|
+
*/
|
|
2762
|
+
static postUsersAvatarById({ id, requestBody, }: {
|
|
2763
|
+
id: string;
|
|
2764
|
+
requestBody?: SetAvatarRequestModel;
|
|
2765
|
+
}): CancelablePromise<any>;
|
|
2766
|
+
/**
|
|
2767
|
+
* @returns any Success
|
|
2768
|
+
* @throws ApiError
|
|
2769
|
+
*/
|
|
2770
|
+
static postUsersChangePasswordById({ id, requestBody, }: {
|
|
2771
|
+
id: string;
|
|
2772
|
+
requestBody?: ChangePasswordUserRequestModel;
|
|
2773
|
+
}): CancelablePromise<any>;
|
|
2774
|
+
/**
|
|
2775
|
+
* @returns any Success
|
|
2776
|
+
* @throws ApiError
|
|
2777
|
+
*/
|
|
2778
|
+
static postUsersDisable({ requestBody, }: {
|
|
2779
|
+
requestBody?: DisableUserRequestModel;
|
|
2780
|
+
}): CancelablePromise<any>;
|
|
2781
|
+
/**
|
|
2782
|
+
* @returns any Success
|
|
2783
|
+
* @throws ApiError
|
|
2784
|
+
*/
|
|
2785
|
+
static postUsersEnable({ requestBody, }: {
|
|
2786
|
+
requestBody?: EnableUserRequestModel;
|
|
2787
|
+
}): CancelablePromise<any>;
|
|
2788
|
+
/**
|
|
2789
|
+
* @returns any Success
|
|
2790
|
+
* @throws ApiError
|
|
2791
|
+
*/
|
|
2792
|
+
static getUsersFilter({ skip, take, orderBy, orderDirection, userGroupIds, userStates, filter, }: {
|
|
2793
|
+
skip?: number;
|
|
2794
|
+
take?: number;
|
|
2795
|
+
orderBy?: UserOrderModel;
|
|
2796
|
+
orderDirection?: DirectionModel;
|
|
2797
|
+
userGroupIds?: Array<string>;
|
|
2798
|
+
userStates?: Array<UserStateModel>;
|
|
2799
|
+
filter?: string;
|
|
2800
|
+
}): CancelablePromise<any>;
|
|
2801
|
+
/**
|
|
2802
|
+
* @returns any Success
|
|
2803
|
+
* @throws ApiError
|
|
2804
|
+
*/
|
|
2805
|
+
static postUsersInvite({ requestBody, }: {
|
|
2806
|
+
requestBody?: InviteUserRequestModel;
|
|
2807
|
+
}): CancelablePromise<any>;
|
|
2808
|
+
/**
|
|
2809
|
+
* @returns any Success
|
|
2810
|
+
* @throws ApiError
|
|
2811
|
+
*/
|
|
2812
|
+
static postUsersSetUserGroups({ requestBody, }: {
|
|
2813
|
+
requestBody?: UpdateUserGroupsOnUserRequestModel;
|
|
2814
|
+
}): CancelablePromise<any>;
|
|
2815
|
+
/**
|
|
2816
|
+
* @returns any Success
|
|
2817
|
+
* @throws ApiError
|
|
2818
|
+
*/
|
|
2819
|
+
static postUsersUnlock({ requestBody, }: {
|
|
2820
|
+
requestBody?: UnlockUsersRequestModel;
|
|
2821
|
+
}): CancelablePromise<any>;
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
declare class V1Resource {
|
|
2825
|
+
/**
|
|
2826
|
+
* @returns any Success
|
|
2827
|
+
* @throws ApiError
|
|
2828
|
+
*/
|
|
2829
|
+
static getItem({ path, }: {
|
|
2830
|
+
path?: Array<string>;
|
|
2831
|
+
}): CancelablePromise<Array<StaticFileItemResponseModel>>;
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
export { ApiError, AuditLogBaseModel, AuditLogResource, AuditLogResponseModel, AuditLogWithUsernameResponseModel, AuditTypeModel, CancelError, CancelablePromise, ChangePasswordUserRequestModel, ConsentLevelPresentationModel, ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel, ContentStateModel, ContentTreeItemResponseModel, ContentTypeCleanupModel, ContentTypeCompositionModel, ContentTypeCompositionTypeModel, ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel, ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel, ContentTypeSortModel, ContentUrlInfoModel, CopyDataTypeRequestModel, CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel, CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel, CreateDataTypeRequestModel, CreateDictionaryItemRequestModel, CreateDocumentRequestModel, CreateFolderRequestModel, CreateLanguageRequestModel, CreateMediaRequestModel, CreatePackageRequestModel, CreateRelationTypeRequestModel, CreateTemplateRequestModel, CreateUserRequestModel, CreateUserResponseModel, CultureReponseModel, CultureResource, DataTypeItemResponseModel, DataTypeModelBaseModel, DataTypePropertyPresentationModel, DataTypePropertyReferenceModel, DataTypeReferenceResponseModel, DataTypeResource, DataTypeResponseModel, DatabaseInstallResponseModel, DatabaseSettingsPresentationModel, DictionaryItemItemResponseModel, DictionaryItemModelBaseModel, DictionaryItemResponseModel, DictionaryItemTranslationModel, DictionaryOverviewResponseModel, DictionaryResource, DirectionModel, DisableUserRequestModel, DocumentBlueprintResource, DocumentBlueprintResponseModel, DocumentBlueprintTreeItemResponseModel, DocumentItemResponseModel, DocumentNotificationResponseModel, DocumentResource, DocumentResponseModel, DocumentTreeItemResponseModel, DocumentTypeItemResponseModel, DocumentTypePropertyTypeContainerResponseModel, DocumentTypePropertyTypeResponseModel, DocumentTypeResource, DocumentTypeResponseModel, DocumentTypeTreeItemResponseModel, DocumentValueModel, DocumentVariantRequestModel, DocumentVariantResponseModel, DomainPresentationModel, DomainsPresentationModelBaseModel, DomainsResponseModel, EnableUserRequestModel, EntityTreeItemResponseModel, FieldPresentationModel, FileItemResponseModelBaseModel, FileSystemTreeItemPresentationModel, FolderModelBaseModel, FolderReponseModel, FolderTreeItemResponseModel, HealthCheckActionRequestModel, HealthCheckGroupPresentationBaseModel, HealthCheckGroupPresentationModel, HealthCheckGroupResponseModel, HealthCheckGroupWithResultResponseModel, HealthCheckModel, HealthCheckModelBaseModel, HealthCheckResource, HealthCheckResultResponseModel, HealthCheckWithResultPresentationModel, HealthStatusModel, HelpPageResponseModel, HelpResource, ImportDictionaryRequestModel, IndexResponseModel, IndexerResource, InstallResource, InstallSettingsResponseModel, InstallVResponseModel, InviteUserRequestModel, ItemResponseModelBaseModel, LanguageItemResponseModel, LanguageModelBaseModel, LanguageResource, LanguageResponseModel, LogLevelCountsReponseModel, LogLevelModel, LogMessagePropertyPresentationModel, LogMessageResponseModel, LogTemplateResponseModel, LogViewerResource, LoggerResponseModel, MediaItemResponseModel, MediaResource, MediaTypeItemResponseModel, MediaTypePropertyTypeContainerResponseModel, MediaTypePropertyTypeResponseModel, MediaTypeResource, MediaTypeResponseModel, MediaValueModel, MediaVariantRequestModel, MediaVariantResponseModel, MemberGroupItemReponseModel, MemberGroupResource, MemberTypeItemResponseModel, MemberTypeResource, ModelsBuilderResource, ModelsBuilderResponseModel, ModelsModeModel, MoveDataTypeRequestModel, MoveDictionaryRequestModel, ObjectTypeResponseModel, ObjectTypesResource, OkResultModel, OpenAPI, OpenAPIConfig, OperatorModel, OutOfDateStatusResponseModel, OutOfDateTypeModel, PackageDefinitionResponseModel, PackageManifestResponseModel, PackageMigrationStatusResponseModel, PackageModelBaseModel, PackageResource, PagedAuditLogResponseModel, PagedAuditLogWithUsernameResponseModel, PagedContentTreeItemResponseModel, PagedCultureReponseModel, PagedDictionaryOverviewResponseModel, PagedDocumentBlueprintTreeItemResponseModel, PagedDocumentTreeItemResponseModel, PagedDocumentTypeTreeItemResponseModel, PagedEntityTreeItemResponseModel, PagedFileSystemTreeItemPresentationModel, PagedFolderTreeItemResponseModel, PagedHealthCheckGroupResponseModel, PagedHelpPageResponseModel, PagedIndexResponseModel, PagedLanguageResponseModel, PagedLogMessageResponseModel, PagedLogTemplateResponseModel, PagedLoggerResponseModel, PagedObjectTypeResponseModel, PagedPackageDefinitionResponseModel, PagedPackageMigrationStatusResponseModel, PagedRecycleBinItemResponseModel, PagedRedirectUrlResponseModel, PagedRelationItemResponseModel, PagedRelationResponseModel, PagedSavedLogSearchResponseModel, PagedSearchResultResponseModel, PagedSearcherResponseModel, PagedTelemetryResponseModel, PagedUserGroupPresentationModel, PagedUserResponseModel, PartialViewItemResponseModel, PartialViewResource, ProblemDetailsModel, ProfilingResource, ProfilingStatusRequestModel, ProfilingStatusResponseModel, PropertyTypeAppearanceModel, PropertyTypeContainerResponseModelBaseModel, PropertyTypeResponseModelBaseModel, PropertyTypeValidationModel, PublishedCacheResource, RecycleBinItemResponseModel, RedirectManagementResource, RedirectStatusModel, RedirectUrlResponseModel, RedirectUrlStatusResponseModel, RelationItemResponseModel, RelationResource, RelationResponseModel, RelationTypeBaseModel, RelationTypeItemResponseModel, RelationTypeResource, RelationTypeResponseModel, RuntimeLevelModel, SaveUserGroupRequestModel, SavedLogSearchPresenationBaseModel, SavedLogSearchRequestModel, SavedLogSearchResponseModel, ScriptItemResponseModel, ScriptResource, SearchResultResponseModel, SearcherResource, SearcherResponseModel, SecurityResource, ServerResource, ServerStatusResponseModel, SetAvatarRequestModel, StaticFileItemResponseModel, StaticFileResource, StatusResultTypeModel, StylesheetItemResponseModel, StylesheetResource, TelemetryLevelModel, TelemetryRepresentationBaseModel, TelemetryRequestModel, TelemetryResource, TelemetryResponseModel, TemplateItemResponseModel, TemplateModelBaseModel, TemplateQueryExecuteFilterPresentationModel, TemplateQueryExecuteModel, TemplateQueryExecuteSortModel, TemplateQueryOperatorModel, TemplateQueryPropertyPresentationModel, TemplateQueryPropertyTypeModel, TemplateQueryResultItemPresentationModel, TemplateQueryResultResponseModel, TemplateQuerySettingsResponseModel, TemplateResource, TemplateResponseModel, TemplateScaffoldResponseModel, TemporaryFileResource, TemporaryFileResponseModel, TrackedReferenceResource, TreeItemPresentationModel, UnlockUsersRequestModel, UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel, UpdateContentRequestModelBaseMediaValueModelMediaVariantRequestModel, UpdateDataTypeRequestModel, UpdateDictionaryItemRequestModel, UpdateDocumentNotificationsRequestModel, UpdateDocumentRequestModel, UpdateDomainsRequestModel, UpdateFolderReponseModel, UpdateLanguageRequestModel, UpdateMediaRequestModel, UpdatePackageRequestModel, UpdateRelationTypeRequestModel, UpdateTemplateRequestModel, UpdateUserGroupRequestModel, UpdateUserGroupsOnUserRequestModel, UpdateUserRequestModel, UpgradeResource, UpgradeSettingsResponseModel, UserGroupBaseModel, UserGroupPresentationModel, UserGroupsResource, UserInstallResponseModel, UserOrderModel, UserPresentationBaseModel, UserResponseModel, UserSettingsModel, UserStateModel, UsersResource, V1Resource, ValueModelBaseModel, VariantModelBaseModel, VariantResponseModelBaseModel, VersionResponseModel };
|