@umbraco-cms/backoffice 1.0.0-next.c727665d → 1.0.0-next.cb6349ee
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/backend-api.d.ts +660 -164
- package/collection.d.ts +38 -0
- package/content-type.d.ts +127 -0
- package/context-api.d.ts +4 -4
- package/controller.d.ts +2 -1
- package/custom-elements.json +4800 -4587
- package/element.d.ts +4 -4
- package/entity-action.d.ts +6 -13
- package/extensions-api.d.ts +13 -12
- package/extensions-registry.d.ts +290 -88
- package/id.d.ts +6 -0
- package/modal.d.ts +42 -336
- package/models.d.ts +3 -70
- package/notification.d.ts +1 -1
- package/observable-api.d.ts +53 -41
- package/package.json +1 -1
- package/picker-input.d.ts +24 -0
- package/repository.d.ts +86 -46
- package/resources.d.ts +24 -15
- package/router.d.ts +263 -25
- package/section.d.ts +29 -0
- package/sorter.d.ts +103 -0
- package/store.d.ts +44 -49
- package/tree.d.ts +135 -0
- package/umbraco-package-schema.json +37755 -0
- package/utils.d.ts +27 -9
- package/variant.d.ts +21 -0
- package/vscode-html-custom-data.json +2049 -2033
- package/workspace.d.ts +66 -21
- package/property-editor.d.ts +0 -8
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>;
|
|
@@ -294,6 +288,12 @@ type CopyDataTypeRequestModel = {
|
|
|
294
288
|
targetId?: string | null;
|
|
295
289
|
};
|
|
296
290
|
|
|
291
|
+
type CopyDocumentRequestModel = {
|
|
292
|
+
targetId?: string | null;
|
|
293
|
+
relateToOriginal?: boolean;
|
|
294
|
+
includeDescendants?: boolean;
|
|
295
|
+
};
|
|
296
|
+
|
|
297
297
|
type VariantModelBaseModel = {
|
|
298
298
|
$type: string;
|
|
299
299
|
culture?: string | null;
|
|
@@ -404,6 +404,23 @@ type PackageModelBaseModel = {
|
|
|
404
404
|
|
|
405
405
|
type CreatePackageRequestModel = PackageModelBaseModel;
|
|
406
406
|
|
|
407
|
+
type TextFileViewModelBaseModel = {
|
|
408
|
+
name?: string;
|
|
409
|
+
content?: string;
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
type CreateTextFileViewModelBaseModel = (TextFileViewModelBaseModel & {
|
|
413
|
+
parentPath?: string | null;
|
|
414
|
+
});
|
|
415
|
+
|
|
416
|
+
type CreatePartialViewRequestModel = CreateTextFileViewModelBaseModel;
|
|
417
|
+
|
|
418
|
+
type PathFolderModelBaseModel = FolderModelBaseModel;
|
|
419
|
+
|
|
420
|
+
type CreatePathFolderRequestModel = (PathFolderModelBaseModel & {
|
|
421
|
+
parentPath?: string | null;
|
|
422
|
+
});
|
|
423
|
+
|
|
407
424
|
type RelationTypeBaseModel = {
|
|
408
425
|
name?: string;
|
|
409
426
|
isBidirectional?: boolean;
|
|
@@ -416,6 +433,10 @@ type CreateRelationTypeRequestModel = (RelationTypeBaseModel & {
|
|
|
416
433
|
id?: string | null;
|
|
417
434
|
});
|
|
418
435
|
|
|
436
|
+
type CreateScriptRequestModel = CreateTextFileViewModelBaseModel;
|
|
437
|
+
|
|
438
|
+
type CreateStylesheetRequestModel = CreateTextFileViewModelBaseModel;
|
|
439
|
+
|
|
419
440
|
type TemplateModelBaseModel = {
|
|
420
441
|
name?: string;
|
|
421
442
|
alias?: string;
|
|
@@ -424,6 +445,19 @@ type TemplateModelBaseModel = {
|
|
|
424
445
|
|
|
425
446
|
type CreateTemplateRequestModel = TemplateModelBaseModel;
|
|
426
447
|
|
|
448
|
+
type UserGroupBaseModel = {
|
|
449
|
+
name?: string;
|
|
450
|
+
icon?: string | null;
|
|
451
|
+
sections?: Array<string>;
|
|
452
|
+
languages?: Array<string>;
|
|
453
|
+
hasAccessToAllLanguages?: boolean;
|
|
454
|
+
documentStartNodeId?: string | null;
|
|
455
|
+
mediaStartNodeId?: string | null;
|
|
456
|
+
permissions?: Array<string>;
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
type CreateUserGroupRequestModel = UserGroupBaseModel;
|
|
460
|
+
|
|
427
461
|
type UserPresentationBaseModel = {
|
|
428
462
|
email?: string;
|
|
429
463
|
userName?: string;
|
|
@@ -468,6 +502,15 @@ type DatabaseSettingsPresentationModel = {
|
|
|
468
502
|
requiresConnectionTest?: boolean;
|
|
469
503
|
};
|
|
470
504
|
|
|
505
|
+
type ItemResponseModelBaseModel = {
|
|
506
|
+
name?: string;
|
|
507
|
+
id?: string;
|
|
508
|
+
};
|
|
509
|
+
|
|
510
|
+
type DataTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
511
|
+
icon?: string | null;
|
|
512
|
+
});
|
|
513
|
+
|
|
471
514
|
type DataTypePropertyReferenceModel = {
|
|
472
515
|
name?: string;
|
|
473
516
|
alias?: string;
|
|
@@ -485,6 +528,8 @@ type DataTypeResponseModel = (DataTypeModelBaseModel & {
|
|
|
485
528
|
parentId?: string | null;
|
|
486
529
|
});
|
|
487
530
|
|
|
531
|
+
type DictionaryItemItemResponseModel = ItemResponseModelBaseModel;
|
|
532
|
+
|
|
488
533
|
type DictionaryItemResponseModel = (DictionaryItemModelBaseModel & {
|
|
489
534
|
$type: string;
|
|
490
535
|
id?: string;
|
|
@@ -506,6 +551,8 @@ type DisableUserRequestModel = {
|
|
|
506
551
|
userIds?: Array<string>;
|
|
507
552
|
};
|
|
508
553
|
|
|
554
|
+
type DocumentBlueprintResponseModel = ItemResponseModelBaseModel;
|
|
555
|
+
|
|
509
556
|
type DocumentBlueprintTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
|
510
557
|
$type: string;
|
|
511
558
|
documentTypeId?: string;
|
|
@@ -513,6 +560,10 @@ type DocumentBlueprintTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
|
|
513
560
|
documentTypeName?: string | null;
|
|
514
561
|
});
|
|
515
562
|
|
|
563
|
+
type DocumentItemResponseModel = (ItemResponseModelBaseModel & {
|
|
564
|
+
icon?: string | null;
|
|
565
|
+
});
|
|
566
|
+
|
|
516
567
|
type DocumentNotificationResponseModel = {
|
|
517
568
|
actionId?: string;
|
|
518
569
|
subscribed?: boolean;
|
|
@@ -530,6 +581,11 @@ type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
|
|
|
530
581
|
isEdited?: boolean;
|
|
531
582
|
});
|
|
532
583
|
|
|
584
|
+
type DocumentTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
585
|
+
isElement?: boolean;
|
|
586
|
+
icon?: string | null;
|
|
587
|
+
});
|
|
588
|
+
|
|
533
589
|
type DocumentTypeResponseModel = (ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel & {
|
|
534
590
|
allowedTemplateIds?: Array<string>;
|
|
535
591
|
defaultTemplateId?: string | null;
|
|
@@ -562,11 +618,33 @@ type EnableUserRequestModel = {
|
|
|
562
618
|
userIds?: Array<string>;
|
|
563
619
|
};
|
|
564
620
|
|
|
621
|
+
type ExtractRichTextStylesheetRulesRequestModel = {
|
|
622
|
+
content?: string;
|
|
623
|
+
};
|
|
624
|
+
|
|
625
|
+
type RichTextRuleModel = {
|
|
626
|
+
name?: string;
|
|
627
|
+
selector?: string;
|
|
628
|
+
styles?: string;
|
|
629
|
+
};
|
|
630
|
+
|
|
631
|
+
type RichTextStylesheetRulesResponseModel = {
|
|
632
|
+
rules?: Array<RichTextRuleModel>;
|
|
633
|
+
};
|
|
634
|
+
|
|
635
|
+
type ExtractRichTextStylesheetRulesResponseModel = RichTextStylesheetRulesResponseModel;
|
|
636
|
+
|
|
565
637
|
type FieldPresentationModel = {
|
|
566
638
|
name?: string;
|
|
567
639
|
values?: Array<string>;
|
|
568
640
|
};
|
|
569
641
|
|
|
642
|
+
type FileItemResponseModelBaseModel = {
|
|
643
|
+
name?: string;
|
|
644
|
+
path?: string;
|
|
645
|
+
icon?: string;
|
|
646
|
+
};
|
|
647
|
+
|
|
570
648
|
type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
|
|
571
649
|
path?: string;
|
|
572
650
|
isFolder?: boolean;
|
|
@@ -682,10 +760,24 @@ type InstallVResponseModel = {
|
|
|
682
760
|
telemetryLevel?: TelemetryLevelModel;
|
|
683
761
|
};
|
|
684
762
|
|
|
763
|
+
type InterpolateRichTextStylesheetRequestModel = {
|
|
764
|
+
content?: string | null;
|
|
765
|
+
rules?: Array<RichTextRuleModel> | null;
|
|
766
|
+
};
|
|
767
|
+
|
|
768
|
+
type InterpolateRichTextStylesheetResponseModel = {
|
|
769
|
+
content?: string;
|
|
770
|
+
};
|
|
771
|
+
|
|
685
772
|
type InviteUserRequestModel = (CreateUserRequestModel & {
|
|
686
773
|
message?: string | null;
|
|
687
774
|
});
|
|
688
775
|
|
|
776
|
+
type LanguageItemResponseModel = {
|
|
777
|
+
name?: string;
|
|
778
|
+
isoCode?: string;
|
|
779
|
+
};
|
|
780
|
+
|
|
689
781
|
type LanguageResponseModel = (LanguageModelBaseModel & {
|
|
690
782
|
isoCode?: string;
|
|
691
783
|
});
|
|
@@ -704,6 +796,11 @@ type LoggerResponseModel = {
|
|
|
704
796
|
level?: LogLevelModel;
|
|
705
797
|
};
|
|
706
798
|
|
|
799
|
+
type LoginRequestModel = {
|
|
800
|
+
username?: string;
|
|
801
|
+
password?: string;
|
|
802
|
+
};
|
|
803
|
+
|
|
707
804
|
type LogLevelCountsReponseModel = {
|
|
708
805
|
information?: number;
|
|
709
806
|
debug?: number;
|
|
@@ -731,12 +828,30 @@ type LogTemplateResponseModel = {
|
|
|
731
828
|
count?: number;
|
|
732
829
|
};
|
|
733
830
|
|
|
831
|
+
type MediaItemResponseModel = (ItemResponseModelBaseModel & {
|
|
832
|
+
icon?: string | null;
|
|
833
|
+
});
|
|
834
|
+
|
|
835
|
+
type MediaTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
836
|
+
icon?: string | null;
|
|
837
|
+
});
|
|
838
|
+
|
|
734
839
|
type MediaTypeResponseModel = ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel;
|
|
735
840
|
|
|
736
841
|
type MediaVariantResponseModel = (VariantResponseModelBaseModel & {
|
|
737
842
|
$type: string;
|
|
738
843
|
});
|
|
739
844
|
|
|
845
|
+
type MemberGroupItemReponseModel = ItemResponseModelBaseModel;
|
|
846
|
+
|
|
847
|
+
type MemberItemResponseModel = (ItemResponseModelBaseModel & {
|
|
848
|
+
icon?: string | null;
|
|
849
|
+
});
|
|
850
|
+
|
|
851
|
+
type MemberTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
852
|
+
icon?: string | null;
|
|
853
|
+
});
|
|
854
|
+
|
|
740
855
|
declare enum ModelsModeModel {
|
|
741
856
|
NOTHING = "Nothing",
|
|
742
857
|
IN_MEMORY_AUTO = "InMemoryAuto",
|
|
@@ -762,6 +877,14 @@ type MoveDictionaryRequestModel = {
|
|
|
762
877
|
targetId?: string | null;
|
|
763
878
|
};
|
|
764
879
|
|
|
880
|
+
type MoveDocumentRequestModel = {
|
|
881
|
+
targetId?: string | null;
|
|
882
|
+
};
|
|
883
|
+
|
|
884
|
+
type MoveMediaRequestModel = {
|
|
885
|
+
targetId?: string | null;
|
|
886
|
+
};
|
|
887
|
+
|
|
765
888
|
type ObjectTypeResponseModel = {
|
|
766
889
|
name?: string | null;
|
|
767
890
|
id?: string;
|
|
@@ -818,6 +941,11 @@ type PagedAuditLogWithUsernameResponseModel = {
|
|
|
818
941
|
items: Array<AuditLogWithUsernameResponseModel>;
|
|
819
942
|
};
|
|
820
943
|
|
|
944
|
+
type PagedBooleanModel = {
|
|
945
|
+
total: number;
|
|
946
|
+
items: Array<boolean>;
|
|
947
|
+
};
|
|
948
|
+
|
|
821
949
|
type PagedContentTreeItemResponseModel = {
|
|
822
950
|
total: number;
|
|
823
951
|
items: Array<(ContentTreeItemResponseModel | DocumentTreeItemResponseModel)>;
|
|
@@ -1008,6 +1136,37 @@ type PagedSearchResultResponseModel = {
|
|
|
1008
1136
|
items: Array<SearchResultResponseModel>;
|
|
1009
1137
|
};
|
|
1010
1138
|
|
|
1139
|
+
type SnippetItemResponseModel = {
|
|
1140
|
+
name?: string;
|
|
1141
|
+
};
|
|
1142
|
+
|
|
1143
|
+
type PagedSnippetItemResponseModel = {
|
|
1144
|
+
total: number;
|
|
1145
|
+
items: Array<SnippetItemResponseModel>;
|
|
1146
|
+
};
|
|
1147
|
+
|
|
1148
|
+
type StylesheetOverviewResponseModel = {
|
|
1149
|
+
name?: string;
|
|
1150
|
+
path?: string;
|
|
1151
|
+
};
|
|
1152
|
+
|
|
1153
|
+
type PagedStylesheetOverviewResponseModel = {
|
|
1154
|
+
total: number;
|
|
1155
|
+
items: Array<StylesheetOverviewResponseModel>;
|
|
1156
|
+
};
|
|
1157
|
+
|
|
1158
|
+
type TagResponseModel = {
|
|
1159
|
+
id?: string;
|
|
1160
|
+
text?: string | null;
|
|
1161
|
+
group?: string | null;
|
|
1162
|
+
nodeCount?: number;
|
|
1163
|
+
};
|
|
1164
|
+
|
|
1165
|
+
type PagedTagResponseModel = {
|
|
1166
|
+
total: number;
|
|
1167
|
+
items: Array<TagResponseModel>;
|
|
1168
|
+
};
|
|
1169
|
+
|
|
1011
1170
|
type TelemetryRepresentationBaseModel = {
|
|
1012
1171
|
telemetryLevel?: TelemetryLevelModel;
|
|
1013
1172
|
};
|
|
@@ -1019,25 +1178,14 @@ type PagedTelemetryResponseModel = {
|
|
|
1019
1178
|
items: Array<TelemetryResponseModel>;
|
|
1020
1179
|
};
|
|
1021
1180
|
|
|
1022
|
-
type
|
|
1023
|
-
name?: string;
|
|
1024
|
-
icon?: string | null;
|
|
1025
|
-
sections?: Array<string>;
|
|
1026
|
-
languages?: Array<string>;
|
|
1027
|
-
hasAccessToAllLanguages?: boolean;
|
|
1028
|
-
documentStartNodeId?: string | null;
|
|
1029
|
-
mediaStartNodeId?: string | null;
|
|
1030
|
-
permissions?: Array<string>;
|
|
1031
|
-
};
|
|
1032
|
-
|
|
1033
|
-
type UserGroupPresentationModel = (UserGroupBaseModel & {
|
|
1181
|
+
type UserGroupResponseModel = (UserGroupBaseModel & {
|
|
1034
1182
|
$type: string;
|
|
1035
1183
|
id?: string;
|
|
1036
1184
|
});
|
|
1037
1185
|
|
|
1038
|
-
type
|
|
1186
|
+
type PagedUserGroupResponseModel = {
|
|
1039
1187
|
total: number;
|
|
1040
|
-
items: Array<
|
|
1188
|
+
items: Array<UserGroupResponseModel>;
|
|
1041
1189
|
};
|
|
1042
1190
|
|
|
1043
1191
|
declare enum UserStateModel {
|
|
@@ -1061,7 +1209,7 @@ type UserResponseModel = (UserPresentationBaseModel & {
|
|
|
1061
1209
|
createDate?: string;
|
|
1062
1210
|
updateDate?: string;
|
|
1063
1211
|
lastLoginDate?: string | null;
|
|
1064
|
-
|
|
1212
|
+
lastLockoutDate?: string | null;
|
|
1065
1213
|
lastPasswordChangeDate?: string | null;
|
|
1066
1214
|
});
|
|
1067
1215
|
|
|
@@ -1070,6 +1218,32 @@ type PagedUserResponseModel = {
|
|
|
1070
1218
|
items: Array<UserResponseModel>;
|
|
1071
1219
|
};
|
|
1072
1220
|
|
|
1221
|
+
type PartialViewItemResponseModel = FileItemResponseModelBaseModel;
|
|
1222
|
+
|
|
1223
|
+
type TextFileResponseModelBaseModel = (TextFileViewModelBaseModel & {
|
|
1224
|
+
path?: string;
|
|
1225
|
+
});
|
|
1226
|
+
|
|
1227
|
+
type PartialViewResponseModel = TextFileResponseModelBaseModel;
|
|
1228
|
+
|
|
1229
|
+
type PartialViewSnippetResponseModel = {
|
|
1230
|
+
name?: string;
|
|
1231
|
+
content?: string;
|
|
1232
|
+
};
|
|
1233
|
+
|
|
1234
|
+
type TextFileUpdateModel = {
|
|
1235
|
+
name?: string;
|
|
1236
|
+
content?: string;
|
|
1237
|
+
existingPath?: string;
|
|
1238
|
+
};
|
|
1239
|
+
|
|
1240
|
+
type PartialViewUpdateModel = TextFileUpdateModel;
|
|
1241
|
+
|
|
1242
|
+
type PathFolderResponseModel = (FolderModelBaseModel & {
|
|
1243
|
+
parentPath?: string | null;
|
|
1244
|
+
readonly path?: string;
|
|
1245
|
+
});
|
|
1246
|
+
|
|
1073
1247
|
type ProblemDetailsModel = Record<string, any>;
|
|
1074
1248
|
|
|
1075
1249
|
type ProfilingStatusRequestModel = {
|
|
@@ -1090,6 +1264,8 @@ type RedirectUrlStatusResponseModel = {
|
|
|
1090
1264
|
userIsAdmin?: boolean;
|
|
1091
1265
|
};
|
|
1092
1266
|
|
|
1267
|
+
type RelationTypeItemResponseModel = ItemResponseModelBaseModel;
|
|
1268
|
+
|
|
1093
1269
|
type RelationTypeResponseModel = (RelationTypeBaseModel & {
|
|
1094
1270
|
id?: string;
|
|
1095
1271
|
alias?: string | null;
|
|
@@ -1110,7 +1286,13 @@ declare enum RuntimeLevelModel {
|
|
|
1110
1286
|
|
|
1111
1287
|
type SavedLogSearchRequestModel = SavedLogSearchPresenationBaseModel;
|
|
1112
1288
|
|
|
1113
|
-
type
|
|
1289
|
+
type ScriptItemResponseModel = FileItemResponseModelBaseModel;
|
|
1290
|
+
|
|
1291
|
+
type ScriptResponseModel = TextFileResponseModelBaseModel;
|
|
1292
|
+
|
|
1293
|
+
type ScriptUpdateModel = TextFileUpdateModel;
|
|
1294
|
+
|
|
1295
|
+
type ScriptViewModelBaseModel = TextFileViewModelBaseModel;
|
|
1114
1296
|
|
|
1115
1297
|
type ServerStatusResponseModel = {
|
|
1116
1298
|
serverStatus?: RuntimeLevelModel;
|
|
@@ -1120,8 +1302,18 @@ type SetAvatarRequestModel = {
|
|
|
1120
1302
|
fileId?: string;
|
|
1121
1303
|
};
|
|
1122
1304
|
|
|
1305
|
+
type StaticFileItemResponseModel = FileItemResponseModelBaseModel;
|
|
1306
|
+
|
|
1307
|
+
type StylesheetItemResponseModel = FileItemResponseModelBaseModel;
|
|
1308
|
+
|
|
1309
|
+
type StylesheetResponseModel = TextFileResponseModelBaseModel;
|
|
1310
|
+
|
|
1311
|
+
type StylesheetUpdateModel = TextFileUpdateModel;
|
|
1312
|
+
|
|
1123
1313
|
type TelemetryRequestModel = TelemetryRepresentationBaseModel;
|
|
1124
1314
|
|
|
1315
|
+
type TemplateItemResponseModel = ItemResponseModelBaseModel;
|
|
1316
|
+
|
|
1125
1317
|
type TemplateQueryExecuteFilterPresentationModel = {
|
|
1126
1318
|
propertyAlias?: string;
|
|
1127
1319
|
constraintValue?: string;
|
|
@@ -1228,8 +1420,18 @@ type UpdatePackageRequestModel = (PackageModelBaseModel & {
|
|
|
1228
1420
|
packagePath?: string;
|
|
1229
1421
|
});
|
|
1230
1422
|
|
|
1423
|
+
type UpdatePartialViewRequestModel = TextFileUpdateModel;
|
|
1424
|
+
|
|
1231
1425
|
type UpdateRelationTypeRequestModel = RelationTypeBaseModel;
|
|
1232
1426
|
|
|
1427
|
+
type UpdateTextFileViewModelBaseModel = (TextFileViewModelBaseModel & {
|
|
1428
|
+
existingPath?: string;
|
|
1429
|
+
});
|
|
1430
|
+
|
|
1431
|
+
type UpdateScriptRequestModel = UpdateTextFileViewModelBaseModel;
|
|
1432
|
+
|
|
1433
|
+
type UpdateStylesheetRequestModel = UpdateTextFileViewModelBaseModel;
|
|
1434
|
+
|
|
1233
1435
|
type UpdateTemplateRequestModel = TemplateModelBaseModel;
|
|
1234
1436
|
|
|
1235
1437
|
type UpdateUserGroupRequestModel = UserGroupBaseModel;
|
|
@@ -1253,6 +1455,12 @@ type UpgradeSettingsResponseModel = {
|
|
|
1253
1455
|
readonly reportUrl?: string;
|
|
1254
1456
|
};
|
|
1255
1457
|
|
|
1458
|
+
type UserGroupItemResponseModel = (ItemResponseModelBaseModel & {
|
|
1459
|
+
icon?: string | null;
|
|
1460
|
+
});
|
|
1461
|
+
|
|
1462
|
+
type UserItemResponseModel = ItemResponseModelBaseModel;
|
|
1463
|
+
|
|
1256
1464
|
declare enum UserOrderModel {
|
|
1257
1465
|
USER_NAME = "UserName",
|
|
1258
1466
|
LANGUAGE = "Language",
|
|
@@ -1353,6 +1561,13 @@ declare class DataTypeResource {
|
|
|
1353
1561
|
id: string;
|
|
1354
1562
|
requestBody?: CopyDataTypeRequestModel;
|
|
1355
1563
|
}): CancelablePromise<string>;
|
|
1564
|
+
/**
|
|
1565
|
+
* @returns boolean Success
|
|
1566
|
+
* @throws ApiError
|
|
1567
|
+
*/
|
|
1568
|
+
static getDataTypeByIdIsUsed({ id, }: {
|
|
1569
|
+
id: string;
|
|
1570
|
+
}): CancelablePromise<boolean>;
|
|
1356
1571
|
/**
|
|
1357
1572
|
* @returns any Success
|
|
1358
1573
|
* @throws ApiError
|
|
@@ -1397,6 +1612,13 @@ declare class DataTypeResource {
|
|
|
1397
1612
|
id: string;
|
|
1398
1613
|
requestBody?: UpdateFolderReponseModel;
|
|
1399
1614
|
}): CancelablePromise<any>;
|
|
1615
|
+
/**
|
|
1616
|
+
* @returns any Success
|
|
1617
|
+
* @throws ApiError
|
|
1618
|
+
*/
|
|
1619
|
+
static getDataTypeItem({ id, }: {
|
|
1620
|
+
id?: Array<string>;
|
|
1621
|
+
}): CancelablePromise<Array<DataTypeItemResponseModel>>;
|
|
1400
1622
|
/**
|
|
1401
1623
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1402
1624
|
* @throws ApiError
|
|
@@ -1407,13 +1629,6 @@ declare class DataTypeResource {
|
|
|
1407
1629
|
take?: number;
|
|
1408
1630
|
foldersOnly?: boolean;
|
|
1409
1631
|
}): CancelablePromise<PagedFolderTreeItemResponseModel>;
|
|
1410
|
-
/**
|
|
1411
|
-
* @returns any Success
|
|
1412
|
-
* @throws ApiError
|
|
1413
|
-
*/
|
|
1414
|
-
static getTreeDataTypeItem({ id, }: {
|
|
1415
|
-
id?: Array<string>;
|
|
1416
|
-
}): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
|
|
1417
1632
|
/**
|
|
1418
1633
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1419
1634
|
* @throws ApiError
|
|
@@ -1486,6 +1701,13 @@ declare class DictionaryResource {
|
|
|
1486
1701
|
static postDictionaryImport({ requestBody, }: {
|
|
1487
1702
|
requestBody?: ImportDictionaryRequestModel;
|
|
1488
1703
|
}): CancelablePromise<string>;
|
|
1704
|
+
/**
|
|
1705
|
+
* @returns any Success
|
|
1706
|
+
* @throws ApiError
|
|
1707
|
+
*/
|
|
1708
|
+
static getDictionaryItem({ id, }: {
|
|
1709
|
+
id?: Array<string>;
|
|
1710
|
+
}): CancelablePromise<Array<DictionaryItemItemResponseModel>>;
|
|
1489
1711
|
/**
|
|
1490
1712
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1491
1713
|
* @throws ApiError
|
|
@@ -1495,13 +1717,6 @@ declare class DictionaryResource {
|
|
|
1495
1717
|
skip?: number;
|
|
1496
1718
|
take?: number;
|
|
1497
1719
|
}): CancelablePromise<PagedEntityTreeItemResponseModel>;
|
|
1498
|
-
/**
|
|
1499
|
-
* @returns any Success
|
|
1500
|
-
* @throws ApiError
|
|
1501
|
-
*/
|
|
1502
|
-
static getTreeDictionaryItem({ id, }: {
|
|
1503
|
-
id?: Array<string>;
|
|
1504
|
-
}): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
|
|
1505
1720
|
/**
|
|
1506
1721
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1507
1722
|
* @throws ApiError
|
|
@@ -1542,6 +1757,14 @@ declare class DocumentResource {
|
|
|
1542
1757
|
id: string;
|
|
1543
1758
|
requestBody?: UpdateDocumentRequestModel;
|
|
1544
1759
|
}): CancelablePromise<any>;
|
|
1760
|
+
/**
|
|
1761
|
+
* @returns string Created
|
|
1762
|
+
* @throws ApiError
|
|
1763
|
+
*/
|
|
1764
|
+
static postDocumentByIdCopy({ id, requestBody, }: {
|
|
1765
|
+
id: string;
|
|
1766
|
+
requestBody?: CopyDocumentRequestModel;
|
|
1767
|
+
}): CancelablePromise<string>;
|
|
1545
1768
|
/**
|
|
1546
1769
|
* @returns any Success
|
|
1547
1770
|
* @throws ApiError
|
|
@@ -1557,6 +1780,14 @@ declare class DocumentResource {
|
|
|
1557
1780
|
id: string;
|
|
1558
1781
|
requestBody?: UpdateDomainsRequestModel;
|
|
1559
1782
|
}): CancelablePromise<any>;
|
|
1783
|
+
/**
|
|
1784
|
+
* @returns any Success
|
|
1785
|
+
* @throws ApiError
|
|
1786
|
+
*/
|
|
1787
|
+
static putDocumentByIdMove({ id, requestBody, }: {
|
|
1788
|
+
id: string;
|
|
1789
|
+
requestBody?: MoveDocumentRequestModel;
|
|
1790
|
+
}): CancelablePromise<any>;
|
|
1560
1791
|
/**
|
|
1561
1792
|
* @returns any Success
|
|
1562
1793
|
* @throws ApiError
|
|
@@ -1572,6 +1803,15 @@ declare class DocumentResource {
|
|
|
1572
1803
|
id: string;
|
|
1573
1804
|
requestBody?: UpdateDocumentNotificationsRequestModel;
|
|
1574
1805
|
}): CancelablePromise<any>;
|
|
1806
|
+
/**
|
|
1807
|
+
* @returns any Success
|
|
1808
|
+
* @throws ApiError
|
|
1809
|
+
*/
|
|
1810
|
+
static getDocumentItem({ id, dataTypeId, culture, }: {
|
|
1811
|
+
id?: Array<string>;
|
|
1812
|
+
dataTypeId?: string;
|
|
1813
|
+
culture?: string;
|
|
1814
|
+
}): CancelablePromise<Array<DocumentItemResponseModel>>;
|
|
1575
1815
|
/**
|
|
1576
1816
|
* @returns PagedRecycleBinItemResponseModel Success
|
|
1577
1817
|
* @throws ApiError
|
|
@@ -1600,15 +1840,6 @@ declare class DocumentResource {
|
|
|
1600
1840
|
dataTypeId?: string;
|
|
1601
1841
|
culture?: string;
|
|
1602
1842
|
}): CancelablePromise<PagedDocumentTreeItemResponseModel>;
|
|
1603
|
-
/**
|
|
1604
|
-
* @returns any Success
|
|
1605
|
-
* @throws ApiError
|
|
1606
|
-
*/
|
|
1607
|
-
static getTreeDocumentItem({ id, dataTypeId, culture, }: {
|
|
1608
|
-
id?: Array<string>;
|
|
1609
|
-
dataTypeId?: string;
|
|
1610
|
-
culture?: string;
|
|
1611
|
-
}): CancelablePromise<Array<DocumentTreeItemResponseModel>>;
|
|
1612
1843
|
/**
|
|
1613
1844
|
* @returns PagedDocumentTreeItemResponseModel Success
|
|
1614
1845
|
* @throws ApiError
|
|
@@ -1626,9 +1857,9 @@ declare class DocumentBlueprintResource {
|
|
|
1626
1857
|
* @returns any Success
|
|
1627
1858
|
* @throws ApiError
|
|
1628
1859
|
*/
|
|
1629
|
-
static
|
|
1860
|
+
static getDocumentBlueprintItem({ id, }: {
|
|
1630
1861
|
id?: Array<string>;
|
|
1631
|
-
}): CancelablePromise<Array<
|
|
1862
|
+
}): CancelablePromise<Array<DocumentBlueprintResponseModel>>;
|
|
1632
1863
|
/**
|
|
1633
1864
|
* @returns PagedDocumentBlueprintTreeItemResponseModel Success
|
|
1634
1865
|
* @throws ApiError
|
|
@@ -1647,6 +1878,13 @@ declare class DocumentTypeResource {
|
|
|
1647
1878
|
static getDocumentTypeById({ id, }: {
|
|
1648
1879
|
id: string;
|
|
1649
1880
|
}): CancelablePromise<DocumentTypeResponseModel>;
|
|
1881
|
+
/**
|
|
1882
|
+
* @returns any Success
|
|
1883
|
+
* @throws ApiError
|
|
1884
|
+
*/
|
|
1885
|
+
static getDocumentTypeItem({ id, }: {
|
|
1886
|
+
id?: Array<string>;
|
|
1887
|
+
}): CancelablePromise<Array<DocumentTypeItemResponseModel>>;
|
|
1650
1888
|
/**
|
|
1651
1889
|
* @returns PagedDocumentTypeTreeItemResponseModel Success
|
|
1652
1890
|
* @throws ApiError
|
|
@@ -1657,13 +1895,6 @@ declare class DocumentTypeResource {
|
|
|
1657
1895
|
take?: number;
|
|
1658
1896
|
foldersOnly?: boolean;
|
|
1659
1897
|
}): CancelablePromise<PagedDocumentTypeTreeItemResponseModel>;
|
|
1660
|
-
/**
|
|
1661
|
-
* @returns any Success
|
|
1662
|
-
* @throws ApiError
|
|
1663
|
-
*/
|
|
1664
|
-
static getTreeDocumentTypeItem({ id, }: {
|
|
1665
|
-
id?: Array<string>;
|
|
1666
|
-
}): CancelablePromise<Array<DocumentTypeTreeItemResponseModel>>;
|
|
1667
1898
|
/**
|
|
1668
1899
|
* @returns PagedDocumentTypeTreeItemResponseModel Success
|
|
1669
1900
|
* @throws ApiError
|
|
@@ -1806,6 +2037,13 @@ declare class LanguageResource {
|
|
|
1806
2037
|
isoCode: string;
|
|
1807
2038
|
requestBody?: UpdateLanguageRequestModel;
|
|
1808
2039
|
}): CancelablePromise<any>;
|
|
2040
|
+
/**
|
|
2041
|
+
* @returns any Success
|
|
2042
|
+
* @throws ApiError
|
|
2043
|
+
*/
|
|
2044
|
+
static getLanguageItem({ isoCode, }: {
|
|
2045
|
+
isoCode?: Array<string>;
|
|
2046
|
+
}): CancelablePromise<Array<LanguageItemResponseModel>>;
|
|
1809
2047
|
}
|
|
1810
2048
|
|
|
1811
2049
|
declare class LogViewerResource {
|
|
@@ -1874,7 +2112,7 @@ declare class LogViewerResource {
|
|
|
1874
2112
|
* @returns any Success
|
|
1875
2113
|
* @throws ApiError
|
|
1876
2114
|
*/
|
|
1877
|
-
static deleteLogViewerSavedSearchByName({ name }: {
|
|
2115
|
+
static deleteLogViewerSavedSearchByName({ name, }: {
|
|
1878
2116
|
name: string;
|
|
1879
2117
|
}): CancelablePromise<any>;
|
|
1880
2118
|
/**
|
|
@@ -1917,6 +2155,22 @@ declare class MediaResource {
|
|
|
1917
2155
|
id: string;
|
|
1918
2156
|
requestBody?: UpdateMediaRequestModel;
|
|
1919
2157
|
}): CancelablePromise<any>;
|
|
2158
|
+
/**
|
|
2159
|
+
* @returns any Success
|
|
2160
|
+
* @throws ApiError
|
|
2161
|
+
*/
|
|
2162
|
+
static putMediaByIdMove({ id, requestBody, }: {
|
|
2163
|
+
id: string;
|
|
2164
|
+
requestBody?: MoveMediaRequestModel;
|
|
2165
|
+
}): CancelablePromise<any>;
|
|
2166
|
+
/**
|
|
2167
|
+
* @returns any Success
|
|
2168
|
+
* @throws ApiError
|
|
2169
|
+
*/
|
|
2170
|
+
static getMediaItem({ id, dataTypeId, }: {
|
|
2171
|
+
id?: Array<string>;
|
|
2172
|
+
dataTypeId?: string;
|
|
2173
|
+
}): CancelablePromise<Array<MediaItemResponseModel>>;
|
|
1920
2174
|
/**
|
|
1921
2175
|
* @returns PagedRecycleBinItemResponseModel Success
|
|
1922
2176
|
* @throws ApiError
|
|
@@ -1971,6 +2225,13 @@ declare class MediaTypeResource {
|
|
|
1971
2225
|
static getMediaTypeById({ id, }: {
|
|
1972
2226
|
id: string;
|
|
1973
2227
|
}): CancelablePromise<MediaTypeResponseModel>;
|
|
2228
|
+
/**
|
|
2229
|
+
* @returns any Success
|
|
2230
|
+
* @throws ApiError
|
|
2231
|
+
*/
|
|
2232
|
+
static getMediaTypeItem({ id, }: {
|
|
2233
|
+
id?: Array<string>;
|
|
2234
|
+
}): CancelablePromise<Array<MediaTypeItemResponseModel>>;
|
|
1974
2235
|
/**
|
|
1975
2236
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1976
2237
|
* @throws ApiError
|
|
@@ -1981,13 +2242,6 @@ declare class MediaTypeResource {
|
|
|
1981
2242
|
take?: number;
|
|
1982
2243
|
foldersOnly?: boolean;
|
|
1983
2244
|
}): CancelablePromise<PagedFolderTreeItemResponseModel>;
|
|
1984
|
-
/**
|
|
1985
|
-
* @returns any Success
|
|
1986
|
-
* @throws ApiError
|
|
1987
|
-
*/
|
|
1988
|
-
static getTreeMediaTypeItem({ id, }: {
|
|
1989
|
-
id?: Array<string>;
|
|
1990
|
-
}): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
|
|
1991
2245
|
/**
|
|
1992
2246
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1993
2247
|
* @throws ApiError
|
|
@@ -1999,14 +2253,24 @@ declare class MediaTypeResource {
|
|
|
1999
2253
|
}): CancelablePromise<PagedFolderTreeItemResponseModel>;
|
|
2000
2254
|
}
|
|
2001
2255
|
|
|
2256
|
+
declare class MemberResource {
|
|
2257
|
+
/**
|
|
2258
|
+
* @returns any Success
|
|
2259
|
+
* @throws ApiError
|
|
2260
|
+
*/
|
|
2261
|
+
static getMemberItem({ id, }: {
|
|
2262
|
+
id?: Array<string>;
|
|
2263
|
+
}): CancelablePromise<Array<MemberItemResponseModel>>;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2002
2266
|
declare class MemberGroupResource {
|
|
2003
2267
|
/**
|
|
2004
2268
|
* @returns any Success
|
|
2005
2269
|
* @throws ApiError
|
|
2006
2270
|
*/
|
|
2007
|
-
static
|
|
2271
|
+
static getMemberGroupItem({ id, }: {
|
|
2008
2272
|
id?: Array<string>;
|
|
2009
|
-
}): CancelablePromise<Array<
|
|
2273
|
+
}): CancelablePromise<Array<MemberGroupItemReponseModel>>;
|
|
2010
2274
|
/**
|
|
2011
2275
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2012
2276
|
* @throws ApiError
|
|
@@ -2022,9 +2286,9 @@ declare class MemberTypeResource {
|
|
|
2022
2286
|
* @returns any Success
|
|
2023
2287
|
* @throws ApiError
|
|
2024
2288
|
*/
|
|
2025
|
-
static
|
|
2289
|
+
static getMemberTypeItem({ id, }: {
|
|
2026
2290
|
id?: Array<string>;
|
|
2027
|
-
}): CancelablePromise<Array<
|
|
2291
|
+
}): CancelablePromise<Array<MemberTypeItemResponseModel>>;
|
|
2028
2292
|
/**
|
|
2029
2293
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2030
2294
|
* @throws ApiError
|
|
@@ -2133,21 +2397,85 @@ declare class PackageResource {
|
|
|
2133
2397
|
|
|
2134
2398
|
declare class PartialViewResource {
|
|
2135
2399
|
/**
|
|
2136
|
-
* @returns
|
|
2400
|
+
* @returns any Success
|
|
2137
2401
|
* @throws ApiError
|
|
2138
2402
|
*/
|
|
2139
|
-
static
|
|
2403
|
+
static getPartialView({ path, }: {
|
|
2140
2404
|
path?: string;
|
|
2141
|
-
|
|
2142
|
-
take?: number;
|
|
2143
|
-
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2405
|
+
}): CancelablePromise<PartialViewResponseModel>;
|
|
2144
2406
|
/**
|
|
2145
|
-
* @returns
|
|
2407
|
+
* @returns string Created
|
|
2146
2408
|
* @throws ApiError
|
|
2147
2409
|
*/
|
|
2148
|
-
static
|
|
2149
|
-
|
|
2150
|
-
}): CancelablePromise<
|
|
2410
|
+
static postPartialView({ requestBody, }: {
|
|
2411
|
+
requestBody?: CreatePartialViewRequestModel;
|
|
2412
|
+
}): CancelablePromise<string>;
|
|
2413
|
+
/**
|
|
2414
|
+
* @returns any Success
|
|
2415
|
+
* @throws ApiError
|
|
2416
|
+
*/
|
|
2417
|
+
static deletePartialView({ path, }: {
|
|
2418
|
+
path?: string;
|
|
2419
|
+
}): CancelablePromise<any>;
|
|
2420
|
+
/**
|
|
2421
|
+
* @returns any Success
|
|
2422
|
+
* @throws ApiError
|
|
2423
|
+
*/
|
|
2424
|
+
static putPartialView({ requestBody, }: {
|
|
2425
|
+
requestBody?: UpdatePartialViewRequestModel;
|
|
2426
|
+
}): CancelablePromise<any>;
|
|
2427
|
+
/**
|
|
2428
|
+
* @returns any Success
|
|
2429
|
+
* @throws ApiError
|
|
2430
|
+
*/
|
|
2431
|
+
static getPartialViewFolder({ path, }: {
|
|
2432
|
+
path?: string;
|
|
2433
|
+
}): CancelablePromise<any>;
|
|
2434
|
+
/**
|
|
2435
|
+
* @returns any Success
|
|
2436
|
+
* @throws ApiError
|
|
2437
|
+
*/
|
|
2438
|
+
static postPartialViewFolder({ requestBody, }: {
|
|
2439
|
+
requestBody?: CreatePathFolderRequestModel;
|
|
2440
|
+
}): CancelablePromise<any>;
|
|
2441
|
+
/**
|
|
2442
|
+
* @returns any Success
|
|
2443
|
+
* @throws ApiError
|
|
2444
|
+
*/
|
|
2445
|
+
static deletePartialViewFolder({ path, }: {
|
|
2446
|
+
path?: string;
|
|
2447
|
+
}): CancelablePromise<any>;
|
|
2448
|
+
/**
|
|
2449
|
+
* @returns any Success
|
|
2450
|
+
* @throws ApiError
|
|
2451
|
+
*/
|
|
2452
|
+
static getPartialViewItem({ id, }: {
|
|
2453
|
+
id?: Array<string>;
|
|
2454
|
+
}): CancelablePromise<Array<PartialViewItemResponseModel>>;
|
|
2455
|
+
/**
|
|
2456
|
+
* @returns PagedSnippetItemResponseModel Success
|
|
2457
|
+
* @throws ApiError
|
|
2458
|
+
*/
|
|
2459
|
+
static getPartialViewSnippet({ skip, take, }: {
|
|
2460
|
+
skip?: number;
|
|
2461
|
+
take?: number;
|
|
2462
|
+
}): CancelablePromise<PagedSnippetItemResponseModel>;
|
|
2463
|
+
/**
|
|
2464
|
+
* @returns any Success
|
|
2465
|
+
* @throws ApiError
|
|
2466
|
+
*/
|
|
2467
|
+
static getPartialViewSnippetByName({ name, }: {
|
|
2468
|
+
name: string;
|
|
2469
|
+
}): CancelablePromise<PartialViewSnippetResponseModel>;
|
|
2470
|
+
/**
|
|
2471
|
+
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2472
|
+
* @throws ApiError
|
|
2473
|
+
*/
|
|
2474
|
+
static getTreePartialViewChildren({ path, skip, take, }: {
|
|
2475
|
+
path?: string;
|
|
2476
|
+
skip?: number;
|
|
2477
|
+
take?: number;
|
|
2478
|
+
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2151
2479
|
/**
|
|
2152
2480
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2153
2481
|
* @throws ApiError
|
|
@@ -2173,6 +2501,17 @@ declare class ProfilingResource {
|
|
|
2173
2501
|
}): CancelablePromise<any>;
|
|
2174
2502
|
}
|
|
2175
2503
|
|
|
2504
|
+
declare class PropertyTypeResource {
|
|
2505
|
+
/**
|
|
2506
|
+
* @returns PagedBooleanModel Success
|
|
2507
|
+
* @throws ApiError
|
|
2508
|
+
*/
|
|
2509
|
+
static getPropertyTypeIsUsed({ contentTypeId, propertyAlias, }: {
|
|
2510
|
+
contentTypeId?: string;
|
|
2511
|
+
propertyAlias?: string;
|
|
2512
|
+
}): CancelablePromise<PagedBooleanModel>;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2176
2515
|
declare class PublishedCacheResource {
|
|
2177
2516
|
/**
|
|
2178
2517
|
* @returns any Success
|
|
@@ -2299,9 +2638,9 @@ declare class RelationTypeResource {
|
|
|
2299
2638
|
* @returns any Success
|
|
2300
2639
|
* @throws ApiError
|
|
2301
2640
|
*/
|
|
2302
|
-
static
|
|
2641
|
+
static getRelationTypeItem({ id, }: {
|
|
2303
2642
|
id?: Array<string>;
|
|
2304
|
-
}): CancelablePromise<Array<
|
|
2643
|
+
}): CancelablePromise<Array<RelationTypeItemResponseModel>>;
|
|
2305
2644
|
/**
|
|
2306
2645
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2307
2646
|
* @throws ApiError
|
|
@@ -2314,21 +2653,70 @@ declare class RelationTypeResource {
|
|
|
2314
2653
|
|
|
2315
2654
|
declare class ScriptResource {
|
|
2316
2655
|
/**
|
|
2317
|
-
* @returns
|
|
2656
|
+
* @returns any Success
|
|
2318
2657
|
* @throws ApiError
|
|
2319
2658
|
*/
|
|
2320
|
-
static
|
|
2659
|
+
static getScript({ path, }: {
|
|
2321
2660
|
path?: string;
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2661
|
+
}): CancelablePromise<ScriptResponseModel>;
|
|
2662
|
+
/**
|
|
2663
|
+
* @returns string Created
|
|
2664
|
+
* @throws ApiError
|
|
2665
|
+
*/
|
|
2666
|
+
static postScript({ requestBody, }: {
|
|
2667
|
+
requestBody?: CreateScriptRequestModel;
|
|
2668
|
+
}): CancelablePromise<string>;
|
|
2669
|
+
/**
|
|
2670
|
+
* @returns any Success
|
|
2671
|
+
* @throws ApiError
|
|
2672
|
+
*/
|
|
2673
|
+
static deleteScript({ path, }: {
|
|
2674
|
+
path?: string;
|
|
2675
|
+
}): CancelablePromise<any>;
|
|
2676
|
+
/**
|
|
2677
|
+
* @returns any Success
|
|
2678
|
+
* @throws ApiError
|
|
2679
|
+
*/
|
|
2680
|
+
static putScript({ requestBody, }: {
|
|
2681
|
+
requestBody?: UpdateScriptRequestModel;
|
|
2682
|
+
}): CancelablePromise<any>;
|
|
2683
|
+
/**
|
|
2684
|
+
* @returns any Success
|
|
2685
|
+
* @throws ApiError
|
|
2686
|
+
*/
|
|
2687
|
+
static getScriptFolder({ path, }: {
|
|
2688
|
+
path?: string;
|
|
2689
|
+
}): CancelablePromise<any>;
|
|
2325
2690
|
/**
|
|
2326
2691
|
* @returns any Success
|
|
2327
2692
|
* @throws ApiError
|
|
2328
2693
|
*/
|
|
2329
|
-
static
|
|
2694
|
+
static postScriptFolder({ requestBody, }: {
|
|
2695
|
+
requestBody?: CreatePathFolderRequestModel;
|
|
2696
|
+
}): CancelablePromise<any>;
|
|
2697
|
+
/**
|
|
2698
|
+
* @returns any Success
|
|
2699
|
+
* @throws ApiError
|
|
2700
|
+
*/
|
|
2701
|
+
static deleteScriptFolder({ path, }: {
|
|
2702
|
+
path?: string;
|
|
2703
|
+
}): CancelablePromise<any>;
|
|
2704
|
+
/**
|
|
2705
|
+
* @returns any Success
|
|
2706
|
+
* @throws ApiError
|
|
2707
|
+
*/
|
|
2708
|
+
static getScriptItem({ path, }: {
|
|
2330
2709
|
path?: Array<string>;
|
|
2331
|
-
}): CancelablePromise<Array<
|
|
2710
|
+
}): CancelablePromise<Array<ScriptItemResponseModel>>;
|
|
2711
|
+
/**
|
|
2712
|
+
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2713
|
+
* @throws ApiError
|
|
2714
|
+
*/
|
|
2715
|
+
static getTreeScriptChildren({ path, skip, take, }: {
|
|
2716
|
+
path?: string;
|
|
2717
|
+
skip?: number;
|
|
2718
|
+
take?: number;
|
|
2719
|
+
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2332
2720
|
/**
|
|
2333
2721
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2334
2722
|
* @throws ApiError
|
|
@@ -2370,7 +2758,9 @@ declare class SecurityResource {
|
|
|
2370
2758
|
* @returns any Success
|
|
2371
2759
|
* @throws ApiError
|
|
2372
2760
|
*/
|
|
2373
|
-
static
|
|
2761
|
+
static postSecurityBackOfficeLogin({ requestBody, }: {
|
|
2762
|
+
requestBody?: LoginRequestModel;
|
|
2763
|
+
}): CancelablePromise<any>;
|
|
2374
2764
|
}
|
|
2375
2765
|
|
|
2376
2766
|
declare class ServerResource {
|
|
@@ -2387,6 +2777,13 @@ declare class ServerResource {
|
|
|
2387
2777
|
}
|
|
2388
2778
|
|
|
2389
2779
|
declare class StaticFileResource {
|
|
2780
|
+
/**
|
|
2781
|
+
* @returns any Success
|
|
2782
|
+
* @throws ApiError
|
|
2783
|
+
*/
|
|
2784
|
+
static getStaticFileItem({ path, }: {
|
|
2785
|
+
path?: Array<string>;
|
|
2786
|
+
}): CancelablePromise<Array<StaticFileItemResponseModel>>;
|
|
2390
2787
|
/**
|
|
2391
2788
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2392
2789
|
* @throws ApiError
|
|
@@ -2396,13 +2793,6 @@ declare class StaticFileResource {
|
|
|
2396
2793
|
skip?: number;
|
|
2397
2794
|
take?: number;
|
|
2398
2795
|
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2399
|
-
/**
|
|
2400
|
-
* @returns any Success
|
|
2401
|
-
* @throws ApiError
|
|
2402
|
-
*/
|
|
2403
|
-
static getTreeStaticFileItem({ path, }: {
|
|
2404
|
-
path?: Array<string>;
|
|
2405
|
-
}): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
|
|
2406
2796
|
/**
|
|
2407
2797
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2408
2798
|
* @throws ApiError
|
|
@@ -2415,21 +2805,99 @@ declare class StaticFileResource {
|
|
|
2415
2805
|
|
|
2416
2806
|
declare class StylesheetResource {
|
|
2417
2807
|
/**
|
|
2418
|
-
* @returns
|
|
2808
|
+
* @returns any Success
|
|
2419
2809
|
* @throws ApiError
|
|
2420
2810
|
*/
|
|
2421
|
-
static
|
|
2811
|
+
static getStylesheet({ path, }: {
|
|
2422
2812
|
path?: string;
|
|
2813
|
+
}): CancelablePromise<StylesheetResponseModel>;
|
|
2814
|
+
/**
|
|
2815
|
+
* @returns string Created
|
|
2816
|
+
* @throws ApiError
|
|
2817
|
+
*/
|
|
2818
|
+
static postStylesheet({ requestBody, }: {
|
|
2819
|
+
requestBody?: CreateStylesheetRequestModel;
|
|
2820
|
+
}): CancelablePromise<string>;
|
|
2821
|
+
/**
|
|
2822
|
+
* @returns any Success
|
|
2823
|
+
* @throws ApiError
|
|
2824
|
+
*/
|
|
2825
|
+
static deleteStylesheet({ path, }: {
|
|
2826
|
+
path?: string;
|
|
2827
|
+
}): CancelablePromise<any>;
|
|
2828
|
+
/**
|
|
2829
|
+
* @returns any Success
|
|
2830
|
+
* @throws ApiError
|
|
2831
|
+
*/
|
|
2832
|
+
static putStylesheet({ requestBody, }: {
|
|
2833
|
+
requestBody?: UpdateStylesheetRequestModel;
|
|
2834
|
+
}): CancelablePromise<any>;
|
|
2835
|
+
/**
|
|
2836
|
+
* @returns PagedStylesheetOverviewResponseModel Success
|
|
2837
|
+
* @throws ApiError
|
|
2838
|
+
*/
|
|
2839
|
+
static getStylesheetAll({ skip, take, }: {
|
|
2423
2840
|
skip?: number;
|
|
2424
2841
|
take?: number;
|
|
2425
|
-
}): CancelablePromise<
|
|
2842
|
+
}): CancelablePromise<PagedStylesheetOverviewResponseModel>;
|
|
2843
|
+
/**
|
|
2844
|
+
* @returns any Success
|
|
2845
|
+
* @throws ApiError
|
|
2846
|
+
*/
|
|
2847
|
+
static getStylesheetFolder({ path, }: {
|
|
2848
|
+
path?: string;
|
|
2849
|
+
}): CancelablePromise<any>;
|
|
2850
|
+
/**
|
|
2851
|
+
* @returns any Success
|
|
2852
|
+
* @throws ApiError
|
|
2853
|
+
*/
|
|
2854
|
+
static postStylesheetFolder({ requestBody, }: {
|
|
2855
|
+
requestBody?: CreatePathFolderRequestModel;
|
|
2856
|
+
}): CancelablePromise<any>;
|
|
2857
|
+
/**
|
|
2858
|
+
* @returns any Success
|
|
2859
|
+
* @throws ApiError
|
|
2860
|
+
*/
|
|
2861
|
+
static deleteStylesheetFolder({ path, }: {
|
|
2862
|
+
path?: string;
|
|
2863
|
+
}): CancelablePromise<any>;
|
|
2426
2864
|
/**
|
|
2427
2865
|
* @returns any Success
|
|
2428
2866
|
* @throws ApiError
|
|
2429
2867
|
*/
|
|
2430
|
-
static
|
|
2868
|
+
static getStylesheetItem({ path, }: {
|
|
2431
2869
|
path?: Array<string>;
|
|
2432
|
-
}): CancelablePromise<Array<
|
|
2870
|
+
}): CancelablePromise<Array<ScriptItemResponseModel>>;
|
|
2871
|
+
/**
|
|
2872
|
+
* @returns any Success
|
|
2873
|
+
* @throws ApiError
|
|
2874
|
+
*/
|
|
2875
|
+
static postStylesheetRichTextExtractRules({ requestBody, }: {
|
|
2876
|
+
requestBody?: ExtractRichTextStylesheetRulesRequestModel;
|
|
2877
|
+
}): CancelablePromise<ExtractRichTextStylesheetRulesResponseModel>;
|
|
2878
|
+
/**
|
|
2879
|
+
* @returns any Success
|
|
2880
|
+
* @throws ApiError
|
|
2881
|
+
*/
|
|
2882
|
+
static postStylesheetRichTextInterpolateRules({ requestBody, }: {
|
|
2883
|
+
requestBody?: InterpolateRichTextStylesheetRequestModel;
|
|
2884
|
+
}): CancelablePromise<InterpolateRichTextStylesheetResponseModel>;
|
|
2885
|
+
/**
|
|
2886
|
+
* @returns any Success
|
|
2887
|
+
* @throws ApiError
|
|
2888
|
+
*/
|
|
2889
|
+
static getStylesheetRichTextRules({ path, }: {
|
|
2890
|
+
path?: string;
|
|
2891
|
+
}): CancelablePromise<(RichTextStylesheetRulesResponseModel | ExtractRichTextStylesheetRulesResponseModel)>;
|
|
2892
|
+
/**
|
|
2893
|
+
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2894
|
+
* @throws ApiError
|
|
2895
|
+
*/
|
|
2896
|
+
static getTreeStylesheetChildren({ path, skip, take, }: {
|
|
2897
|
+
path?: string;
|
|
2898
|
+
skip?: number;
|
|
2899
|
+
take?: number;
|
|
2900
|
+
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2433
2901
|
/**
|
|
2434
2902
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2435
2903
|
* @throws ApiError
|
|
@@ -2440,6 +2908,20 @@ declare class StylesheetResource {
|
|
|
2440
2908
|
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2441
2909
|
}
|
|
2442
2910
|
|
|
2911
|
+
declare class TagResource {
|
|
2912
|
+
/**
|
|
2913
|
+
* @returns PagedTagResponseModel Success
|
|
2914
|
+
* @throws ApiError
|
|
2915
|
+
*/
|
|
2916
|
+
static getTag({ query, tagGroup, culture, skip, take, }: {
|
|
2917
|
+
query?: string;
|
|
2918
|
+
tagGroup?: string;
|
|
2919
|
+
culture?: string;
|
|
2920
|
+
skip?: number;
|
|
2921
|
+
take?: number;
|
|
2922
|
+
}): CancelablePromise<PagedTagResponseModel>;
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2443
2925
|
declare class TelemetryResource {
|
|
2444
2926
|
/**
|
|
2445
2927
|
* @returns PagedTelemetryResponseModel Success
|
|
@@ -2493,6 +2975,13 @@ declare class TemplateResource {
|
|
|
2493
2975
|
id: string;
|
|
2494
2976
|
requestBody?: UpdateTemplateRequestModel;
|
|
2495
2977
|
}): CancelablePromise<any>;
|
|
2978
|
+
/**
|
|
2979
|
+
* @returns any Success
|
|
2980
|
+
* @throws ApiError
|
|
2981
|
+
*/
|
|
2982
|
+
static getTemplateItem({ id, }: {
|
|
2983
|
+
id?: Array<string>;
|
|
2984
|
+
}): CancelablePromise<Array<TemplateItemResponseModel>>;
|
|
2496
2985
|
/**
|
|
2497
2986
|
* @returns any Success
|
|
2498
2987
|
* @throws ApiError
|
|
@@ -2519,13 +3008,6 @@ declare class TemplateResource {
|
|
|
2519
3008
|
skip?: number;
|
|
2520
3009
|
take?: number;
|
|
2521
3010
|
}): CancelablePromise<PagedEntityTreeItemResponseModel>;
|
|
2522
|
-
/**
|
|
2523
|
-
* @returns any Success
|
|
2524
|
-
* @throws ApiError
|
|
2525
|
-
*/
|
|
2526
|
-
static getTreeTemplateItem({ id, }: {
|
|
2527
|
-
id?: Array<string>;
|
|
2528
|
-
}): CancelablePromise<Array<(EntityTreeItemResponseModel | ContentTreeItemResponseModel | DocumentBlueprintTreeItemResponseModel | DocumentTreeItemResponseModel | DocumentTypeTreeItemResponseModel | FolderTreeItemResponseModel)>>;
|
|
2529
3011
|
/**
|
|
2530
3012
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2531
3013
|
* @throws ApiError
|
|
@@ -2609,59 +3091,19 @@ declare class UpgradeResource {
|
|
|
2609
3091
|
static getUpgradeSettings(): CancelablePromise<UpgradeSettingsResponseModel>;
|
|
2610
3092
|
}
|
|
2611
3093
|
|
|
2612
|
-
declare class
|
|
2613
|
-
/**
|
|
2614
|
-
* @returns string Created
|
|
2615
|
-
* @throws ApiError
|
|
2616
|
-
*/
|
|
2617
|
-
static postUserGroups({ requestBody, }: {
|
|
2618
|
-
requestBody?: SaveUserGroupRequestModel;
|
|
2619
|
-
}): CancelablePromise<string>;
|
|
2620
|
-
/**
|
|
2621
|
-
* @returns PagedUserGroupPresentationModel Success
|
|
2622
|
-
* @throws ApiError
|
|
2623
|
-
*/
|
|
2624
|
-
static getUserGroups({ skip, take, }: {
|
|
2625
|
-
skip?: number;
|
|
2626
|
-
take?: number;
|
|
2627
|
-
}): CancelablePromise<PagedUserGroupPresentationModel>;
|
|
2628
|
-
/**
|
|
2629
|
-
* @returns any Success
|
|
2630
|
-
* @throws ApiError
|
|
2631
|
-
*/
|
|
2632
|
-
static getUserGroupsById({ id, }: {
|
|
2633
|
-
id: string;
|
|
2634
|
-
}): CancelablePromise<UserGroupPresentationModel>;
|
|
2635
|
-
/**
|
|
2636
|
-
* @returns any Success
|
|
2637
|
-
* @throws ApiError
|
|
2638
|
-
*/
|
|
2639
|
-
static deleteUserGroupsById({ id, }: {
|
|
2640
|
-
id: string;
|
|
2641
|
-
}): CancelablePromise<any>;
|
|
2642
|
-
/**
|
|
2643
|
-
* @returns any Success
|
|
2644
|
-
* @throws ApiError
|
|
2645
|
-
*/
|
|
2646
|
-
static putUserGroupsById({ id, requestBody, }: {
|
|
2647
|
-
id: string;
|
|
2648
|
-
requestBody?: UpdateUserGroupRequestModel;
|
|
2649
|
-
}): CancelablePromise<any>;
|
|
2650
|
-
}
|
|
2651
|
-
|
|
2652
|
-
declare class UsersResource {
|
|
3094
|
+
declare class UserResource {
|
|
2653
3095
|
/**
|
|
2654
3096
|
* @returns any Success
|
|
2655
3097
|
* @throws ApiError
|
|
2656
3098
|
*/
|
|
2657
|
-
static
|
|
3099
|
+
static postUser({ requestBody, }: {
|
|
2658
3100
|
requestBody?: (CreateUserRequestModel | InviteUserRequestModel);
|
|
2659
3101
|
}): CancelablePromise<CreateUserResponseModel>;
|
|
2660
3102
|
/**
|
|
2661
3103
|
* @returns PagedUserResponseModel Success
|
|
2662
3104
|
* @throws ApiError
|
|
2663
3105
|
*/
|
|
2664
|
-
static
|
|
3106
|
+
static getUser({ skip, take, }: {
|
|
2665
3107
|
skip?: number;
|
|
2666
3108
|
take?: number;
|
|
2667
3109
|
}): CancelablePromise<PagedUserResponseModel>;
|
|
@@ -2669,21 +3111,21 @@ declare class UsersResource {
|
|
|
2669
3111
|
* @returns any Success
|
|
2670
3112
|
* @throws ApiError
|
|
2671
3113
|
*/
|
|
2672
|
-
static
|
|
3114
|
+
static getUserById({ id, }: {
|
|
2673
3115
|
id: string;
|
|
2674
3116
|
}): CancelablePromise<UserResponseModel>;
|
|
2675
3117
|
/**
|
|
2676
3118
|
* @returns any Success
|
|
2677
3119
|
* @throws ApiError
|
|
2678
3120
|
*/
|
|
2679
|
-
static
|
|
3121
|
+
static deleteUserById({ id, }: {
|
|
2680
3122
|
id: string;
|
|
2681
3123
|
}): CancelablePromise<any>;
|
|
2682
3124
|
/**
|
|
2683
3125
|
* @returns any Success
|
|
2684
3126
|
* @throws ApiError
|
|
2685
3127
|
*/
|
|
2686
|
-
static
|
|
3128
|
+
static putUserById({ id, requestBody, }: {
|
|
2687
3129
|
id: string;
|
|
2688
3130
|
requestBody?: UpdateUserRequestModel;
|
|
2689
3131
|
}): CancelablePromise<any>;
|
|
@@ -2691,14 +3133,14 @@ declare class UsersResource {
|
|
|
2691
3133
|
* @returns any Success
|
|
2692
3134
|
* @throws ApiError
|
|
2693
3135
|
*/
|
|
2694
|
-
static
|
|
3136
|
+
static deleteUserAvatarById({ id, }: {
|
|
2695
3137
|
id: string;
|
|
2696
3138
|
}): CancelablePromise<any>;
|
|
2697
3139
|
/**
|
|
2698
3140
|
* @returns any Success
|
|
2699
3141
|
* @throws ApiError
|
|
2700
3142
|
*/
|
|
2701
|
-
static
|
|
3143
|
+
static postUserAvatarById({ id, requestBody, }: {
|
|
2702
3144
|
id: string;
|
|
2703
3145
|
requestBody?: SetAvatarRequestModel;
|
|
2704
3146
|
}): CancelablePromise<any>;
|
|
@@ -2706,7 +3148,7 @@ declare class UsersResource {
|
|
|
2706
3148
|
* @returns any Success
|
|
2707
3149
|
* @throws ApiError
|
|
2708
3150
|
*/
|
|
2709
|
-
static
|
|
3151
|
+
static postUserChangePasswordById({ id, requestBody, }: {
|
|
2710
3152
|
id: string;
|
|
2711
3153
|
requestBody?: ChangePasswordUserRequestModel;
|
|
2712
3154
|
}): CancelablePromise<any>;
|
|
@@ -2714,21 +3156,21 @@ declare class UsersResource {
|
|
|
2714
3156
|
* @returns any Success
|
|
2715
3157
|
* @throws ApiError
|
|
2716
3158
|
*/
|
|
2717
|
-
static
|
|
3159
|
+
static postUserDisable({ requestBody, }: {
|
|
2718
3160
|
requestBody?: DisableUserRequestModel;
|
|
2719
3161
|
}): CancelablePromise<any>;
|
|
2720
3162
|
/**
|
|
2721
3163
|
* @returns any Success
|
|
2722
3164
|
* @throws ApiError
|
|
2723
3165
|
*/
|
|
2724
|
-
static
|
|
3166
|
+
static postUserEnable({ requestBody, }: {
|
|
2725
3167
|
requestBody?: EnableUserRequestModel;
|
|
2726
3168
|
}): CancelablePromise<any>;
|
|
2727
3169
|
/**
|
|
2728
3170
|
* @returns any Success
|
|
2729
3171
|
* @throws ApiError
|
|
2730
3172
|
*/
|
|
2731
|
-
static
|
|
3173
|
+
static getUserFilter({ skip, take, orderBy, orderDirection, userGroupIds, userStates, filter, }: {
|
|
2732
3174
|
skip?: number;
|
|
2733
3175
|
take?: number;
|
|
2734
3176
|
orderBy?: UserOrderModel;
|
|
@@ -2738,26 +3180,80 @@ declare class UsersResource {
|
|
|
2738
3180
|
filter?: string;
|
|
2739
3181
|
}): CancelablePromise<any>;
|
|
2740
3182
|
/**
|
|
2741
|
-
* @returns
|
|
3183
|
+
* @returns string Created
|
|
2742
3184
|
* @throws ApiError
|
|
2743
3185
|
*/
|
|
2744
|
-
static
|
|
3186
|
+
static postUserInvite({ requestBody, }: {
|
|
2745
3187
|
requestBody?: InviteUserRequestModel;
|
|
2746
|
-
}): CancelablePromise<
|
|
3188
|
+
}): CancelablePromise<string>;
|
|
3189
|
+
/**
|
|
3190
|
+
* @returns any Success
|
|
3191
|
+
* @throws ApiError
|
|
3192
|
+
*/
|
|
3193
|
+
static getUserItem({ id, }: {
|
|
3194
|
+
id?: Array<string>;
|
|
3195
|
+
}): CancelablePromise<Array<UserItemResponseModel>>;
|
|
2747
3196
|
/**
|
|
2748
3197
|
* @returns any Success
|
|
2749
3198
|
* @throws ApiError
|
|
2750
3199
|
*/
|
|
2751
|
-
static
|
|
3200
|
+
static postUserSetUserGroups({ requestBody, }: {
|
|
2752
3201
|
requestBody?: UpdateUserGroupsOnUserRequestModel;
|
|
2753
3202
|
}): CancelablePromise<any>;
|
|
2754
3203
|
/**
|
|
2755
3204
|
* @returns any Success
|
|
2756
3205
|
* @throws ApiError
|
|
2757
3206
|
*/
|
|
2758
|
-
static
|
|
3207
|
+
static postUserUnlock({ requestBody, }: {
|
|
2759
3208
|
requestBody?: UnlockUsersRequestModel;
|
|
2760
3209
|
}): CancelablePromise<any>;
|
|
2761
3210
|
}
|
|
2762
3211
|
|
|
2763
|
-
|
|
3212
|
+
declare class UserGroupResource {
|
|
3213
|
+
/**
|
|
3214
|
+
* @returns string Created
|
|
3215
|
+
* @throws ApiError
|
|
3216
|
+
*/
|
|
3217
|
+
static postUserGroup({ requestBody, }: {
|
|
3218
|
+
requestBody?: CreateUserGroupRequestModel;
|
|
3219
|
+
}): CancelablePromise<string>;
|
|
3220
|
+
/**
|
|
3221
|
+
* @returns PagedUserGroupResponseModel Success
|
|
3222
|
+
* @throws ApiError
|
|
3223
|
+
*/
|
|
3224
|
+
static getUserGroup({ skip, take, }: {
|
|
3225
|
+
skip?: number;
|
|
3226
|
+
take?: number;
|
|
3227
|
+
}): CancelablePromise<PagedUserGroupResponseModel>;
|
|
3228
|
+
/**
|
|
3229
|
+
* @returns any Success
|
|
3230
|
+
* @throws ApiError
|
|
3231
|
+
*/
|
|
3232
|
+
static getUserGroupById({ id, }: {
|
|
3233
|
+
id: string;
|
|
3234
|
+
}): CancelablePromise<UserGroupResponseModel>;
|
|
3235
|
+
/**
|
|
3236
|
+
* @returns any Success
|
|
3237
|
+
* @throws ApiError
|
|
3238
|
+
*/
|
|
3239
|
+
static deleteUserGroupById({ id, }: {
|
|
3240
|
+
id: string;
|
|
3241
|
+
}): CancelablePromise<any>;
|
|
3242
|
+
/**
|
|
3243
|
+
* @returns any Success
|
|
3244
|
+
* @throws ApiError
|
|
3245
|
+
*/
|
|
3246
|
+
static putUserGroupById({ id, requestBody, }: {
|
|
3247
|
+
id: string;
|
|
3248
|
+
requestBody?: UpdateUserGroupRequestModel;
|
|
3249
|
+
}): CancelablePromise<any>;
|
|
3250
|
+
/**
|
|
3251
|
+
* @returns any Success
|
|
3252
|
+
* @throws ApiError
|
|
3253
|
+
*/
|
|
3254
|
+
static getUserGroupItem({ id, }: {
|
|
3255
|
+
id?: Array<string>;
|
|
3256
|
+
}): CancelablePromise<Array<UserGroupItemResponseModel>>;
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
export { ApiError, AuditLogBaseModel, AuditLogResource, AuditLogResponseModel, AuditLogWithUsernameResponseModel, AuditTypeModel, CancelError, CancelablePromise, ChangePasswordUserRequestModel, ConsentLevelPresentationModel, ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel, ContentStateModel, ContentTreeItemResponseModel, ContentTypeCleanupModel, ContentTypeCompositionModel, ContentTypeCompositionTypeModel, ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel, ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel, ContentTypeSortModel, ContentUrlInfoModel, CopyDataTypeRequestModel, CopyDocumentRequestModel, CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel, CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel, CreateDataTypeRequestModel, CreateDictionaryItemRequestModel, CreateDocumentRequestModel, CreateFolderRequestModel, CreateLanguageRequestModel, CreateMediaRequestModel, CreatePackageRequestModel, CreatePartialViewRequestModel, CreatePathFolderRequestModel, CreateRelationTypeRequestModel, CreateScriptRequestModel, CreateStylesheetRequestModel, CreateTemplateRequestModel, CreateTextFileViewModelBaseModel, CreateUserGroupRequestModel, 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, ExtractRichTextStylesheetRulesRequestModel, ExtractRichTextStylesheetRulesResponseModel, 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, InterpolateRichTextStylesheetRequestModel, InterpolateRichTextStylesheetResponseModel, InviteUserRequestModel, ItemResponseModelBaseModel, LanguageItemResponseModel, LanguageModelBaseModel, LanguageResource, LanguageResponseModel, LogLevelCountsReponseModel, LogLevelModel, LogMessagePropertyPresentationModel, LogMessageResponseModel, LogTemplateResponseModel, LogViewerResource, LoggerResponseModel, LoginRequestModel, MediaItemResponseModel, MediaResource, MediaTypeItemResponseModel, MediaTypePropertyTypeContainerResponseModel, MediaTypePropertyTypeResponseModel, MediaTypeResource, MediaTypeResponseModel, MediaValueModel, MediaVariantRequestModel, MediaVariantResponseModel, MemberGroupItemReponseModel, MemberGroupResource, MemberItemResponseModel, MemberResource, MemberTypeItemResponseModel, MemberTypeResource, ModelsBuilderResource, ModelsBuilderResponseModel, ModelsModeModel, MoveDataTypeRequestModel, MoveDictionaryRequestModel, MoveDocumentRequestModel, MoveMediaRequestModel, ObjectTypeResponseModel, ObjectTypesResource, OkResultModel, OpenAPI, OpenAPIConfig, OperatorModel, OutOfDateStatusResponseModel, OutOfDateTypeModel, PackageDefinitionResponseModel, PackageManifestResponseModel, PackageMigrationStatusResponseModel, PackageModelBaseModel, PackageResource, PagedAuditLogResponseModel, PagedAuditLogWithUsernameResponseModel, PagedBooleanModel, 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, PagedSnippetItemResponseModel, PagedStylesheetOverviewResponseModel, PagedTagResponseModel, PagedTelemetryResponseModel, PagedUserGroupResponseModel, PagedUserResponseModel, PartialViewItemResponseModel, PartialViewResource, PartialViewResponseModel, PartialViewSnippetResponseModel, PartialViewUpdateModel, PathFolderModelBaseModel, PathFolderResponseModel, ProblemDetailsModel, ProfilingResource, ProfilingStatusRequestModel, ProfilingStatusResponseModel, PropertyTypeAppearanceModel, PropertyTypeContainerResponseModelBaseModel, PropertyTypeResource, PropertyTypeResponseModelBaseModel, PropertyTypeValidationModel, PublishedCacheResource, RecycleBinItemResponseModel, RedirectManagementResource, RedirectStatusModel, RedirectUrlResponseModel, RedirectUrlStatusResponseModel, RelationItemResponseModel, RelationResource, RelationResponseModel, RelationTypeBaseModel, RelationTypeItemResponseModel, RelationTypeResource, RelationTypeResponseModel, RichTextRuleModel, RichTextStylesheetRulesResponseModel, RuntimeLevelModel, SavedLogSearchPresenationBaseModel, SavedLogSearchRequestModel, SavedLogSearchResponseModel, ScriptItemResponseModel, ScriptResource, ScriptResponseModel, ScriptUpdateModel, ScriptViewModelBaseModel, SearchResultResponseModel, SearcherResource, SearcherResponseModel, SecurityResource, ServerResource, ServerStatusResponseModel, SetAvatarRequestModel, SnippetItemResponseModel, StaticFileItemResponseModel, StaticFileResource, StatusResultTypeModel, StylesheetItemResponseModel, StylesheetOverviewResponseModel, StylesheetResource, StylesheetResponseModel, StylesheetUpdateModel, TagResource, TagResponseModel, TelemetryLevelModel, TelemetryRepresentationBaseModel, TelemetryRequestModel, TelemetryResource, TelemetryResponseModel, TemplateItemResponseModel, TemplateModelBaseModel, TemplateQueryExecuteFilterPresentationModel, TemplateQueryExecuteModel, TemplateQueryExecuteSortModel, TemplateQueryOperatorModel, TemplateQueryPropertyPresentationModel, TemplateQueryPropertyTypeModel, TemplateQueryResultItemPresentationModel, TemplateQueryResultResponseModel, TemplateQuerySettingsResponseModel, TemplateResource, TemplateResponseModel, TemplateScaffoldResponseModel, TemporaryFileResource, TemporaryFileResponseModel, TextFileResponseModelBaseModel, TextFileUpdateModel, TextFileViewModelBaseModel, TrackedReferenceResource, TreeItemPresentationModel, UnlockUsersRequestModel, UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel, UpdateContentRequestModelBaseMediaValueModelMediaVariantRequestModel, UpdateDataTypeRequestModel, UpdateDictionaryItemRequestModel, UpdateDocumentNotificationsRequestModel, UpdateDocumentRequestModel, UpdateDomainsRequestModel, UpdateFolderReponseModel, UpdateLanguageRequestModel, UpdateMediaRequestModel, UpdatePackageRequestModel, UpdatePartialViewRequestModel, UpdateRelationTypeRequestModel, UpdateScriptRequestModel, UpdateStylesheetRequestModel, UpdateTemplateRequestModel, UpdateTextFileViewModelBaseModel, UpdateUserGroupRequestModel, UpdateUserGroupsOnUserRequestModel, UpdateUserRequestModel, UpgradeResource, UpgradeSettingsResponseModel, UserGroupBaseModel, UserGroupItemResponseModel, UserGroupResource, UserGroupResponseModel, UserInstallResponseModel, UserItemResponseModel, UserOrderModel, UserPresentationBaseModel, UserResource, UserResponseModel, UserSettingsModel, UserStateModel, ValueModelBaseModel, VariantModelBaseModel, VariantResponseModelBaseModel, VersionResponseModel };
|