@umbraco-cms/backoffice 1.0.0-next.d924405b → 1.0.0-next.f1bd6ec7

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 CHANGED
@@ -99,8 +99,8 @@ declare enum AuditTypeModel {
99
99
  }
100
100
 
101
101
  type AuditLogBaseModel = {
102
- userKey?: string;
103
- entityKey?: string | null;
102
+ userId?: string;
103
+ entityId?: string | null;
104
104
  timestamp?: string;
105
105
  logType?: AuditTypeModel;
106
106
  entityType?: string | null;
@@ -115,6 +115,11 @@ type AuditLogWithUsernameResponseModel = (AuditLogBaseModel & {
115
115
  userAvatars?: Array<string> | null;
116
116
  });
117
117
 
118
+ type ChangePasswordUserRequestModel = {
119
+ newPassword?: string;
120
+ oldPassword?: string | null;
121
+ };
122
+
118
123
  declare enum TelemetryLevelModel {
119
124
  MINIMAL = "Minimal",
120
125
  BASIC = "Basic",
@@ -163,8 +168,8 @@ type DocumentVariantResponseModel = (VariantResponseModelBaseModel & {
163
168
  type ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel = {
164
169
  values?: Array<DocumentValueModel>;
165
170
  variants?: Array<DocumentVariantResponseModel>;
166
- key?: string;
167
- contentTypeKey?: string;
171
+ id?: string;
172
+ contentTypeId?: string;
168
173
  };
169
174
 
170
175
  type TreeItemPresentationModel = {
@@ -176,9 +181,9 @@ type TreeItemPresentationModel = {
176
181
 
177
182
  type EntityTreeItemResponseModel = (TreeItemPresentationModel & {
178
183
  $type: string;
179
- key?: string;
184
+ id?: string;
180
185
  isContainer?: boolean;
181
- parentKey?: string | null;
186
+ parentId?: string | null;
182
187
  });
183
188
 
184
189
  type ContentTreeItemResponseModel = (EntityTreeItemResponseModel & {
@@ -199,18 +204,18 @@ declare enum ContentTypeCompositionTypeModel {
199
204
  }
200
205
 
201
206
  type ContentTypeCompositionModel = {
202
- key?: string;
207
+ id?: string;
203
208
  compositionType?: ContentTypeCompositionTypeModel;
204
209
  };
205
210
 
206
211
  type ContentTypeSortModel = {
207
- key?: string;
212
+ id?: string;
208
213
  sortOrder?: number;
209
214
  };
210
215
 
211
216
  type PropertyTypeContainerResponseModelBaseModel = {
212
- key?: string;
213
- parentKey?: string | null;
217
+ id?: string;
218
+ parentId?: string | null;
214
219
  name?: string | null;
215
220
  type?: string;
216
221
  sortOrder?: number;
@@ -230,12 +235,12 @@ type PropertyTypeValidationModel = {
230
235
  };
231
236
 
232
237
  type PropertyTypeResponseModelBaseModel = {
233
- key?: string;
234
- containerKey?: string | null;
238
+ id?: string;
239
+ containerId?: string | null;
235
240
  alias?: string;
236
241
  name?: string;
237
242
  description?: string | null;
238
- dataTypeKey?: string;
243
+ dataTypeId?: string;
239
244
  variesByCulture?: boolean;
240
245
  variesBySegment?: boolean;
241
246
  validation?: PropertyTypeValidationModel;
@@ -245,7 +250,7 @@ type PropertyTypeResponseModelBaseModel = {
245
250
  type DocumentTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;
246
251
 
247
252
  type ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel = {
248
- key?: string;
253
+ id?: string;
249
254
  alias?: string;
250
255
  name?: string;
251
256
  description?: string | null;
@@ -265,7 +270,7 @@ type MediaTypePropertyTypeContainerResponseModel = PropertyTypeContainerResponse
265
270
  type MediaTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;
266
271
 
267
272
  type ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel = {
268
- key?: string;
273
+ id?: string;
269
274
  alias?: string;
270
275
  name?: string;
271
276
  description?: string | null;
@@ -286,7 +291,7 @@ type ContentUrlInfoModel = {
286
291
  };
287
292
 
288
293
  type CopyDataTypeRequestModel = {
289
- targetKey?: string | null;
294
+ targetId?: string | null;
290
295
  };
291
296
 
292
297
  type VariantModelBaseModel = {
@@ -303,7 +308,7 @@ type DocumentVariantRequestModel = (VariantModelBaseModel & {
303
308
  type CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel = {
304
309
  values?: Array<DocumentValueModel>;
305
310
  variants?: Array<DocumentVariantRequestModel>;
306
- parentKey?: string | null;
311
+ parentId?: string | null;
307
312
  };
308
313
 
309
314
  type MediaValueModel = (ValueModelBaseModel & {
@@ -317,7 +322,7 @@ type MediaVariantRequestModel = (VariantModelBaseModel & {
317
322
  type CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel = {
318
323
  values?: Array<MediaValueModel>;
319
324
  variants?: Array<MediaVariantRequestModel>;
320
- parentKey?: string | null;
325
+ parentId?: string | null;
321
326
  };
322
327
 
323
328
  type DataTypePropertyPresentationModel = {
@@ -333,7 +338,8 @@ type DataTypeModelBaseModel = {
333
338
  };
334
339
 
335
340
  type CreateDataTypeRequestModel = (DataTypeModelBaseModel & {
336
- parentKey?: string | null;
341
+ id?: string | null;
342
+ parentId?: string | null;
337
343
  });
338
344
 
339
345
  type DictionaryItemTranslationModel = {
@@ -347,12 +353,12 @@ type DictionaryItemModelBaseModel = {
347
353
  };
348
354
 
349
355
  type CreateDictionaryItemRequestModel = (DictionaryItemModelBaseModel & {
350
- parentKey?: string | null;
356
+ parentId?: string | null;
351
357
  });
352
358
 
353
359
  type CreateDocumentRequestModel = (CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
354
- contentTypeKey?: string;
355
- templateKey?: string | null;
360
+ contentTypeId?: string;
361
+ templateId?: string | null;
356
362
  });
357
363
 
358
364
  type FolderModelBaseModel = {
@@ -360,7 +366,8 @@ type FolderModelBaseModel = {
360
366
  };
361
367
 
362
368
  type CreateFolderRequestModel = (FolderModelBaseModel & {
363
- parentKey?: string | null;
369
+ id?: string | null;
370
+ parentId?: string | null;
364
371
  });
365
372
 
366
373
  type LanguageModelBaseModel = {
@@ -375,14 +382,14 @@ type CreateLanguageRequestModel = (LanguageModelBaseModel & {
375
382
  });
376
383
 
377
384
  type CreateMediaRequestModel = (CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel & {
378
- contentTypeKey?: string;
385
+ contentTypeId?: string;
379
386
  });
380
387
 
381
388
  type PackageModelBaseModel = {
382
389
  name?: string;
383
390
  contentNodeId?: string | null;
384
391
  contentLoadChildNodes?: boolean;
385
- mediaKeys?: Array<string>;
392
+ mediaIds?: Array<string>;
386
393
  mediaLoadChildNodes?: boolean;
387
394
  documentTypes?: Array<string>;
388
395
  mediaTypes?: Array<string>;
@@ -406,7 +413,7 @@ type RelationTypeBaseModel = {
406
413
  };
407
414
 
408
415
  type CreateRelationTypeRequestModel = (RelationTypeBaseModel & {
409
- key?: string | null;
416
+ id?: string | null;
410
417
  });
411
418
 
412
419
  type TemplateModelBaseModel = {
@@ -417,6 +424,20 @@ type TemplateModelBaseModel = {
417
424
 
418
425
  type CreateTemplateRequestModel = TemplateModelBaseModel;
419
426
 
427
+ type UserPresentationBaseModel = {
428
+ email?: string;
429
+ userName?: string;
430
+ name?: string;
431
+ userGroupIds?: Array<string>;
432
+ };
433
+
434
+ type CreateUserRequestModel = UserPresentationBaseModel;
435
+
436
+ type CreateUserResponseModel = {
437
+ userId?: string;
438
+ initialPassword?: string | null;
439
+ };
440
+
420
441
  type CultureReponseModel = {
421
442
  name?: string;
422
443
  englishName?: string;
@@ -447,32 +468,43 @@ type DatabaseSettingsPresentationModel = {
447
468
  requiresConnectionTest?: boolean;
448
469
  };
449
470
 
471
+ type ItemResponseModelBaseModel = {
472
+ name?: string;
473
+ id?: string;
474
+ };
475
+
476
+ type DataTypeItemResponseModel = (ItemResponseModelBaseModel & {
477
+ icon?: string | null;
478
+ });
479
+
450
480
  type DataTypePropertyReferenceModel = {
451
481
  name?: string;
452
482
  alias?: string;
453
483
  };
454
484
 
455
485
  type DataTypeReferenceResponseModel = {
456
- key?: string;
486
+ id?: string;
457
487
  type?: string;
458
488
  properties?: Array<DataTypePropertyReferenceModel>;
459
489
  };
460
490
 
461
- type DataTypeResponseModel = (DataTypeModelBaseModel & {
491
+ type DataTypeResponseModel = DataTypeModelBaseModel & {
462
492
  $type: string;
463
- key?: string;
464
- parentKey?: string | null;
465
- });
493
+ id?: string;
494
+ parentId?: string | null;
495
+ };
496
+
497
+ type DictionaryItemItemResponseModel = ItemResponseModelBaseModel;
466
498
 
467
499
  type DictionaryItemResponseModel = (DictionaryItemModelBaseModel & {
468
500
  $type: string;
469
- key?: string;
501
+ id?: string;
470
502
  });
471
503
 
472
504
  type DictionaryOverviewResponseModel = {
473
505
  name?: string | null;
474
- key?: string;
475
- parentKey?: string | null;
506
+ id?: string;
507
+ parentId?: string | null;
476
508
  translatedIsoCodes?: Array<string>;
477
509
  };
478
510
 
@@ -481,16 +513,31 @@ declare enum DirectionModel {
481
513
  DESCENDING = "Descending"
482
514
  }
483
515
 
516
+ type DisableUserRequestModel = {
517
+ userIds?: Array<string>;
518
+ };
519
+
520
+ type DocumentBlueprintResponseModel = ItemResponseModelBaseModel;
521
+
484
522
  type DocumentBlueprintTreeItemResponseModel = (EntityTreeItemResponseModel & {
485
523
  $type: string;
486
- documentTypeKey?: string;
524
+ documentTypeId?: string;
487
525
  documentTypeAlias?: string;
488
526
  documentTypeName?: string | null;
489
527
  });
490
528
 
529
+ type DocumentItemResponseModel = (ItemResponseModelBaseModel & {
530
+ icon?: string | null;
531
+ });
532
+
533
+ type DocumentNotificationResponseModel = {
534
+ actionId?: string;
535
+ subscribed?: boolean;
536
+ };
537
+
491
538
  type DocumentResponseModel = (ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel & {
492
539
  urls?: Array<ContentUrlInfoModel>;
493
- templateKey?: string | null;
540
+ templateId?: string | null;
494
541
  });
495
542
 
496
543
  type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
@@ -500,9 +547,14 @@ type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
500
547
  isEdited?: boolean;
501
548
  });
502
549
 
550
+ type DocumentTypeItemResponseModel = (ItemResponseModelBaseModel & {
551
+ isElement?: boolean;
552
+ icon?: string | null;
553
+ });
554
+
503
555
  type DocumentTypeResponseModel = (ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel & {
504
- allowedTemplateKeys?: Array<string>;
505
- defaultTemplateKey?: string | null;
556
+ allowedTemplateIds?: Array<string>;
557
+ defaultTemplateId?: string | null;
506
558
  cleanup?: ContentTypeCleanupModel;
507
559
  });
508
560
 
@@ -528,11 +580,21 @@ type DomainsPresentationModelBaseModel = {
528
580
 
529
581
  type DomainsResponseModel = DomainsPresentationModelBaseModel;
530
582
 
583
+ type EnableUserRequestModel = {
584
+ userIds?: Array<string>;
585
+ };
586
+
531
587
  type FieldPresentationModel = {
532
588
  name?: string;
533
589
  values?: Array<string>;
534
590
  };
535
591
 
592
+ type FileItemResponseModelBaseModel = {
593
+ name?: string;
594
+ path?: string;
595
+ icon?: string;
596
+ };
597
+
536
598
  type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
537
599
  path?: string;
538
600
  isFolder?: boolean;
@@ -540,12 +602,12 @@ type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
540
602
 
541
603
  type FolderReponseModel = (FolderModelBaseModel & {
542
604
  $type: string;
543
- key?: string;
544
- parentKey?: string | null;
605
+ id?: string;
606
+ parentId?: string | null;
545
607
  });
546
608
 
547
609
  type HealthCheckActionRequestModel = {
548
- healthCheckKey?: string;
610
+ healthCheckId?: string;
549
611
  alias?: string | null;
550
612
  name?: string | null;
551
613
  description?: string | null;
@@ -560,7 +622,7 @@ type HealthCheckGroupPresentationBaseModel = {
560
622
  };
561
623
 
562
624
  type HealthCheckModelBaseModel = {
563
- key?: string;
625
+ id?: string;
564
626
  };
565
627
 
566
628
  type HealthCheckModel = (HealthCheckModelBaseModel & {
@@ -609,15 +671,9 @@ type HelpPageResponseModel = {
609
671
  type?: string | null;
610
672
  };
611
673
 
612
- type ImportDictionaryItemsPresentationModel = {
613
- key?: string;
614
- name?: string | null;
615
- parentKey?: string | null;
616
- };
617
-
618
674
  type ImportDictionaryRequestModel = {
619
- fileName?: string;
620
- parentKey?: string | null;
675
+ temporaryFileId?: string;
676
+ parentId?: string | null;
621
677
  };
622
678
 
623
679
  type IndexResponseModel = {
@@ -654,6 +710,15 @@ type InstallVResponseModel = {
654
710
  telemetryLevel?: TelemetryLevelModel;
655
711
  };
656
712
 
713
+ type InviteUserRequestModel = (CreateUserRequestModel & {
714
+ message?: string | null;
715
+ });
716
+
717
+ type LanguageItemResponseModel = {
718
+ name?: string;
719
+ isoCode?: string;
720
+ };
721
+
657
722
  type LanguageResponseModel = (LanguageModelBaseModel & {
658
723
  isoCode?: string;
659
724
  });
@@ -699,12 +764,26 @@ type LogTemplateResponseModel = {
699
764
  count?: number;
700
765
  };
701
766
 
767
+ type MediaItemResponseModel = (ItemResponseModelBaseModel & {
768
+ icon?: string | null;
769
+ });
770
+
771
+ type MediaTypeItemResponseModel = (ItemResponseModelBaseModel & {
772
+ icon?: string | null;
773
+ });
774
+
702
775
  type MediaTypeResponseModel = ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel;
703
776
 
704
777
  type MediaVariantResponseModel = (VariantResponseModelBaseModel & {
705
778
  $type: string;
706
779
  });
707
780
 
781
+ type MemberGroupItemReponseModel = ItemResponseModelBaseModel;
782
+
783
+ type MemberTypeItemResponseModel = (ItemResponseModelBaseModel & {
784
+ icon?: string | null;
785
+ });
786
+
708
787
  declare enum ModelsModeModel {
709
788
  NOTHING = "Nothing",
710
789
  IN_MEMORY_AUTO = "InMemoryAuto",
@@ -723,11 +802,11 @@ type ModelsBuilderResponseModel = {
723
802
  };
724
803
 
725
804
  type MoveDataTypeRequestModel = {
726
- targetKey?: string | null;
805
+ targetId?: string | null;
727
806
  };
728
807
 
729
808
  type MoveDictionaryRequestModel = {
730
- targetKey?: string | null;
809
+ targetId?: string | null;
731
810
  };
732
811
 
733
812
  type ObjectTypeResponseModel = {
@@ -761,7 +840,7 @@ type OutOfDateStatusResponseModel = {
761
840
  };
762
841
 
763
842
  type PackageDefinitionResponseModel = (PackageModelBaseModel & {
764
- key?: string;
843
+ id?: string;
765
844
  packagePath?: string;
766
845
  });
767
846
 
@@ -883,13 +962,13 @@ type PagedPackageMigrationStatusResponseModel = {
883
962
 
884
963
  type RecycleBinItemResponseModel = {
885
964
  $type: string;
886
- key?: string;
965
+ id?: string;
887
966
  name?: string;
888
967
  type?: string;
889
968
  icon?: string;
890
969
  hasChildren?: boolean;
891
970
  isContainer?: boolean;
892
- parentKey?: string | null;
971
+ parentId?: string | null;
893
972
  };
894
973
 
895
974
  type PagedRecycleBinItemResponseModel = {
@@ -898,11 +977,11 @@ type PagedRecycleBinItemResponseModel = {
898
977
  };
899
978
 
900
979
  type RedirectUrlResponseModel = {
901
- key?: string;
980
+ id?: string;
902
981
  originalUrl?: string;
903
982
  destinationUrl?: string;
904
983
  created?: string;
905
- contentKey?: string;
984
+ contentId?: string;
906
985
  culture?: string | null;
907
986
  };
908
987
 
@@ -912,7 +991,7 @@ type PagedRedirectUrlResponseModel = {
912
991
  };
913
992
 
914
993
  type RelationItemResponseModel = {
915
- nodeKey?: string;
994
+ nodeId?: string;
916
995
  nodeName?: string | null;
917
996
  nodeType?: string | null;
918
997
  nodePublished?: boolean | null;
@@ -993,14 +1072,14 @@ type UserGroupBaseModel = {
993
1072
  sections?: Array<string>;
994
1073
  languages?: Array<string>;
995
1074
  hasAccessToAllLanguages?: boolean;
996
- documentStartNodeKey?: string | null;
997
- mediaStartNodeKey?: string | null;
1075
+ documentStartNodeId?: string | null;
1076
+ mediaStartNodeId?: string | null;
998
1077
  permissions?: Array<string>;
999
1078
  };
1000
1079
 
1001
1080
  type UserGroupPresentationModel = (UserGroupBaseModel & {
1002
1081
  $type: string;
1003
- key?: string;
1082
+ id?: string;
1004
1083
  });
1005
1084
 
1006
1085
  type PagedUserGroupPresentationModel = {
@@ -1008,6 +1087,38 @@ type PagedUserGroupPresentationModel = {
1008
1087
  items: Array<UserGroupPresentationModel>;
1009
1088
  };
1010
1089
 
1090
+ declare enum UserStateModel {
1091
+ ACTIVE = "Active",
1092
+ DISABLED = "Disabled",
1093
+ LOCKED_OUT = "LockedOut",
1094
+ INVITED = "Invited",
1095
+ INACTIVE = "Inactive",
1096
+ ALL = "All"
1097
+ }
1098
+
1099
+ type UserResponseModel = (UserPresentationBaseModel & {
1100
+ $type: string;
1101
+ id?: string;
1102
+ languageIsoCode?: string | null;
1103
+ contentStartNodeIds?: Array<string>;
1104
+ mediaStartNodeIds?: Array<string>;
1105
+ avatarUrls?: Array<string>;
1106
+ state?: UserStateModel;
1107
+ failedLoginAttempts?: number;
1108
+ createDate?: string;
1109
+ updateDate?: string;
1110
+ lastLoginDate?: string | null;
1111
+ lastlockoutDate?: string | null;
1112
+ lastPasswordChangeDate?: string | null;
1113
+ });
1114
+
1115
+ type PagedUserResponseModel = {
1116
+ total: number;
1117
+ items: Array<UserResponseModel>;
1118
+ };
1119
+
1120
+ type PartialViewItemResponseModel = FileItemResponseModelBaseModel;
1121
+
1011
1122
  type ProblemDetailsModel = Record<string, any>;
1012
1123
 
1013
1124
  type ProfilingStatusRequestModel = {
@@ -1028,8 +1139,10 @@ type RedirectUrlStatusResponseModel = {
1028
1139
  userIsAdmin?: boolean;
1029
1140
  };
1030
1141
 
1142
+ type RelationTypeItemResponseModel = ItemResponseModelBaseModel;
1143
+
1031
1144
  type RelationTypeResponseModel = (RelationTypeBaseModel & {
1032
- key?: string;
1145
+ id?: string;
1033
1146
  alias?: string | null;
1034
1147
  path?: string;
1035
1148
  isSystemRelationType?: boolean;
@@ -1050,12 +1163,24 @@ type SavedLogSearchRequestModel = SavedLogSearchPresenationBaseModel;
1050
1163
 
1051
1164
  type SaveUserGroupRequestModel = UserGroupBaseModel;
1052
1165
 
1166
+ type ScriptItemResponseModel = FileItemResponseModelBaseModel;
1167
+
1053
1168
  type ServerStatusResponseModel = {
1054
1169
  serverStatus?: RuntimeLevelModel;
1055
1170
  };
1056
1171
 
1172
+ type SetAvatarRequestModel = {
1173
+ fileId?: string;
1174
+ };
1175
+
1176
+ type StaticFileItemResponseModel = FileItemResponseModelBaseModel;
1177
+
1178
+ type StylesheetItemResponseModel = FileItemResponseModelBaseModel;
1179
+
1057
1180
  type TelemetryRequestModel = TelemetryRepresentationBaseModel;
1058
1181
 
1182
+ type TemplateItemResponseModel = ItemResponseModelBaseModel;
1183
+
1059
1184
  type TemplateQueryExecuteFilterPresentationModel = {
1060
1185
  propertyAlias?: string;
1061
1186
  constraintValue?: string;
@@ -1068,7 +1193,7 @@ type TemplateQueryExecuteSortModel = {
1068
1193
  };
1069
1194
 
1070
1195
  type TemplateQueryExecuteModel = {
1071
- rootContentKey?: string | null;
1196
+ rootContentId?: string | null;
1072
1197
  contentTypeAlias?: string | null;
1073
1198
  filters?: Array<TemplateQueryExecuteFilterPresentationModel> | null;
1074
1199
  sort?: TemplateQueryExecuteSortModel | null;
@@ -1111,13 +1236,23 @@ type TemplateQuerySettingsResponseModel = {
1111
1236
 
1112
1237
  type TemplateResponseModel = (TemplateModelBaseModel & {
1113
1238
  $type: string;
1114
- key?: string;
1239
+ id?: string;
1115
1240
  });
1116
1241
 
1117
1242
  type TemplateScaffoldResponseModel = {
1118
1243
  content?: string;
1119
1244
  };
1120
1245
 
1246
+ type TemporaryFileResponseModel = {
1247
+ id?: string;
1248
+ availableUntil?: string | null;
1249
+ fileName?: string;
1250
+ };
1251
+
1252
+ type UnlockUsersRequestModel = {
1253
+ userIds?: Array<string>;
1254
+ };
1255
+
1121
1256
  type UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel = {
1122
1257
  values?: Array<DocumentValueModel>;
1123
1258
  variants?: Array<DocumentVariantRequestModel>;
@@ -1132,8 +1267,12 @@ type UpdateDataTypeRequestModel = DataTypeModelBaseModel;
1132
1267
 
1133
1268
  type UpdateDictionaryItemRequestModel = DictionaryItemModelBaseModel;
1134
1269
 
1270
+ type UpdateDocumentNotificationsRequestModel = {
1271
+ subscribedActionIds?: Array<string>;
1272
+ };
1273
+
1135
1274
  type UpdateDocumentRequestModel = (UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
1136
- templateKey?: string | null;
1275
+ templateId?: string | null;
1137
1276
  });
1138
1277
 
1139
1278
  type UpdateDomainsRequestModel = DomainsPresentationModelBaseModel;
@@ -1154,6 +1293,17 @@ type UpdateTemplateRequestModel = TemplateModelBaseModel;
1154
1293
 
1155
1294
  type UpdateUserGroupRequestModel = UserGroupBaseModel;
1156
1295
 
1296
+ type UpdateUserGroupsOnUserRequestModel = {
1297
+ userIds?: Array<string>;
1298
+ userGroupIds?: Array<string>;
1299
+ };
1300
+
1301
+ type UpdateUserRequestModel = (UserPresentationBaseModel & {
1302
+ languageIsoCode?: string;
1303
+ contentStartNodeIds?: Array<string>;
1304
+ mediaStartNodeIds?: Array<string>;
1305
+ });
1306
+
1157
1307
  type UpgradeSettingsResponseModel = {
1158
1308
  currentState?: string;
1159
1309
  newState?: string;
@@ -1162,10 +1312,18 @@ type UpgradeSettingsResponseModel = {
1162
1312
  readonly reportUrl?: string;
1163
1313
  };
1164
1314
 
1165
- type UploadDictionaryResponseModel = {
1166
- dictionaryItems?: Array<ImportDictionaryItemsPresentationModel>;
1167
- fileName?: string | null;
1168
- };
1315
+ declare enum UserOrderModel {
1316
+ USER_NAME = "UserName",
1317
+ LANGUAGE = "Language",
1318
+ NAME = "Name",
1319
+ EMAIL = "Email",
1320
+ ID = "Id",
1321
+ CREATE_DATE = "CreateDate",
1322
+ UPDATE_DATE = "UpdateDate",
1323
+ IS_APPROVED = "IsApproved",
1324
+ IS_LOCKED_OUT = "IsLockedOut",
1325
+ LAST_LOGIN_DATE = "LastLoginDate"
1326
+ }
1169
1327
 
1170
1328
  type VersionResponseModel = {
1171
1329
  version?: string;
@@ -1186,8 +1344,8 @@ declare class AuditLogResource {
1186
1344
  * @returns PagedAuditLogResponseModel Success
1187
1345
  * @throws ApiError
1188
1346
  */
1189
- static getAuditLogByKey({ key, orderDirection, sinceDate, skip, take, }: {
1190
- key: string;
1347
+ static getAuditLogById({ id, orderDirection, sinceDate, skip, take, }: {
1348
+ id: string;
1191
1349
  orderDirection?: DirectionModel;
1192
1350
  sinceDate?: string;
1193
1351
  skip?: number;
@@ -1228,46 +1386,46 @@ declare class DataTypeResource {
1228
1386
  * @returns any Success
1229
1387
  * @throws ApiError
1230
1388
  */
1231
- static getDataTypeByKey({ key, }: {
1232
- key: string;
1389
+ static getDataTypeById({ id, }: {
1390
+ id: string;
1233
1391
  }): CancelablePromise<DataTypeResponseModel>;
1234
1392
  /**
1235
1393
  * @returns any Success
1236
1394
  * @throws ApiError
1237
1395
  */
1238
- static deleteDataTypeByKey({ key, }: {
1239
- key: string;
1396
+ static deleteDataTypeById({ id, }: {
1397
+ id: string;
1240
1398
  }): CancelablePromise<any>;
1241
1399
  /**
1242
1400
  * @returns any Success
1243
1401
  * @throws ApiError
1244
1402
  */
1245
- static putDataTypeByKey({ key, requestBody, }: {
1246
- key: string;
1403
+ static putDataTypeById({ id, requestBody, }: {
1404
+ id: string;
1247
1405
  requestBody?: UpdateDataTypeRequestModel;
1248
1406
  }): CancelablePromise<any>;
1249
1407
  /**
1250
1408
  * @returns string Created
1251
1409
  * @throws ApiError
1252
1410
  */
1253
- static postDataTypeByKeyCopy({ key, requestBody, }: {
1254
- key: string;
1411
+ static postDataTypeByIdCopy({ id, requestBody, }: {
1412
+ id: string;
1255
1413
  requestBody?: CopyDataTypeRequestModel;
1256
1414
  }): CancelablePromise<string>;
1257
1415
  /**
1258
1416
  * @returns any Success
1259
1417
  * @throws ApiError
1260
1418
  */
1261
- static postDataTypeByKeyMove({ key, requestBody, }: {
1262
- key: string;
1419
+ static postDataTypeByIdMove({ id, requestBody, }: {
1420
+ id: string;
1263
1421
  requestBody?: MoveDataTypeRequestModel;
1264
1422
  }): CancelablePromise<any>;
1265
1423
  /**
1266
1424
  * @returns any Success
1267
1425
  * @throws ApiError
1268
1426
  */
1269
- static getDataTypeByKeyReferences({ key, }: {
1270
- key: string;
1427
+ static getDataTypeByIdReferences({ id, }: {
1428
+ id: string;
1271
1429
  }): CancelablePromise<Array<DataTypeReferenceResponseModel>>;
1272
1430
  /**
1273
1431
  * @returns string Created
@@ -1280,41 +1438,41 @@ declare class DataTypeResource {
1280
1438
  * @returns any Success
1281
1439
  * @throws ApiError
1282
1440
  */
1283
- static getDataTypeFolderByKey({ key, }: {
1284
- key: string;
1441
+ static getDataTypeFolderById({ id, }: {
1442
+ id: string;
1285
1443
  }): CancelablePromise<FolderReponseModel>;
1286
1444
  /**
1287
1445
  * @returns any Success
1288
1446
  * @throws ApiError
1289
1447
  */
1290
- static deleteDataTypeFolderByKey({ key, }: {
1291
- key: string;
1448
+ static deleteDataTypeFolderById({ id, }: {
1449
+ id: string;
1292
1450
  }): CancelablePromise<any>;
1293
1451
  /**
1294
1452
  * @returns any Success
1295
1453
  * @throws ApiError
1296
1454
  */
1297
- static putDataTypeFolderByKey({ key, requestBody, }: {
1298
- key: string;
1455
+ static putDataTypeFolderById({ id, requestBody, }: {
1456
+ id: string;
1299
1457
  requestBody?: UpdateFolderReponseModel;
1300
1458
  }): CancelablePromise<any>;
1459
+ /**
1460
+ * @returns any Success
1461
+ * @throws ApiError
1462
+ */
1463
+ static getDataTypeItem({ id, }: {
1464
+ id?: Array<string>;
1465
+ }): CancelablePromise<Array<DataTypeItemResponseModel>>;
1301
1466
  /**
1302
1467
  * @returns PagedFolderTreeItemResponseModel Success
1303
1468
  * @throws ApiError
1304
1469
  */
1305
- static getTreeDataTypeChildren({ parentKey, skip, take, foldersOnly, }: {
1306
- parentKey?: string;
1470
+ static getTreeDataTypeChildren({ parentId, skip, take, foldersOnly, }: {
1471
+ parentId?: string;
1307
1472
  skip?: number;
1308
1473
  take?: number;
1309
1474
  foldersOnly?: boolean;
1310
1475
  }): 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
1476
  /**
1319
1477
  * @returns PagedFolderTreeItemResponseModel Success
1320
1478
  * @throws ApiError
@@ -1346,38 +1504,38 @@ declare class DictionaryResource {
1346
1504
  * @returns any Success
1347
1505
  * @throws ApiError
1348
1506
  */
1349
- static getDictionaryByKey({ key, }: {
1350
- key: string;
1507
+ static getDictionaryById({ id, }: {
1508
+ id: string;
1351
1509
  }): CancelablePromise<DictionaryItemResponseModel>;
1352
1510
  /**
1353
1511
  * @returns any Success
1354
1512
  * @throws ApiError
1355
1513
  */
1356
- static deleteDictionaryByKey({ key, }: {
1357
- key: string;
1514
+ static deleteDictionaryById({ id, }: {
1515
+ id: string;
1358
1516
  }): CancelablePromise<any>;
1359
1517
  /**
1360
1518
  * @returns any Success
1361
1519
  * @throws ApiError
1362
1520
  */
1363
- static putDictionaryByKey({ key, requestBody, }: {
1364
- key: string;
1521
+ static putDictionaryById({ id, requestBody, }: {
1522
+ id: string;
1365
1523
  requestBody?: UpdateDictionaryItemRequestModel;
1366
1524
  }): CancelablePromise<any>;
1367
1525
  /**
1368
1526
  * @returns binary Success
1369
1527
  * @throws ApiError
1370
1528
  */
1371
- static getDictionaryByKeyExport({ key, includeChildren, }: {
1372
- key: string;
1529
+ static getDictionaryByIdExport({ id, includeChildren, }: {
1530
+ id: string;
1373
1531
  includeChildren?: boolean;
1374
1532
  }): CancelablePromise<Blob>;
1375
1533
  /**
1376
1534
  * @returns any Success
1377
1535
  * @throws ApiError
1378
1536
  */
1379
- static postDictionaryByKeyMove({ key, requestBody, }: {
1380
- key: string;
1537
+ static postDictionaryByIdMove({ id, requestBody, }: {
1538
+ id: string;
1381
1539
  requestBody?: MoveDictionaryRequestModel;
1382
1540
  }): CancelablePromise<any>;
1383
1541
  /**
@@ -1391,25 +1549,18 @@ declare class DictionaryResource {
1391
1549
  * @returns any Success
1392
1550
  * @throws ApiError
1393
1551
  */
1394
- static postDictionaryUpload({ requestBody, }: {
1395
- requestBody?: any;
1396
- }): CancelablePromise<UploadDictionaryResponseModel>;
1552
+ static getDictionaryItem({ id, }: {
1553
+ id?: Array<string>;
1554
+ }): CancelablePromise<Array<DictionaryItemItemResponseModel>>;
1397
1555
  /**
1398
1556
  * @returns PagedEntityTreeItemResponseModel Success
1399
1557
  * @throws ApiError
1400
1558
  */
1401
- static getTreeDictionaryChildren({ parentKey, skip, take, }: {
1402
- parentKey?: string;
1559
+ static getTreeDictionaryChildren({ parentId, skip, take, }: {
1560
+ parentId?: string;
1403
1561
  skip?: number;
1404
1562
  take?: number;
1405
1563
  }): 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
1564
  /**
1414
1565
  * @returns PagedEntityTreeItemResponseModel Success
1415
1566
  * @throws ApiError
@@ -1432,45 +1583,69 @@ declare class DocumentResource {
1432
1583
  * @returns any Success
1433
1584
  * @throws ApiError
1434
1585
  */
1435
- static getDocumentByKey({ key, }: {
1436
- key: string;
1586
+ static getDocumentById({ id, }: {
1587
+ id: string;
1437
1588
  }): CancelablePromise<DocumentResponseModel>;
1438
1589
  /**
1439
1590
  * @returns any Success
1440
1591
  * @throws ApiError
1441
1592
  */
1442
- static deleteDocumentByKey({ key, }: {
1443
- key: string;
1593
+ static deleteDocumentById({ id, }: {
1594
+ id: string;
1444
1595
  }): CancelablePromise<any>;
1445
1596
  /**
1446
1597
  * @returns any Success
1447
1598
  * @throws ApiError
1448
1599
  */
1449
- static putDocumentByKey({ key, requestBody, }: {
1450
- key: string;
1600
+ static putDocumentById({ id, requestBody, }: {
1601
+ id: string;
1451
1602
  requestBody?: UpdateDocumentRequestModel;
1452
1603
  }): CancelablePromise<any>;
1453
1604
  /**
1454
1605
  * @returns any Success
1455
1606
  * @throws ApiError
1456
1607
  */
1457
- static getDocumentByKeyDomains({ key, }: {
1458
- key: string;
1608
+ static getDocumentByIdDomains({ id, }: {
1609
+ id: string;
1459
1610
  }): CancelablePromise<any>;
1460
1611
  /**
1461
1612
  * @returns any Success
1462
1613
  * @throws ApiError
1463
1614
  */
1464
- static putDocumentByKeyDomains({ key, requestBody, }: {
1465
- key: string;
1615
+ static putDocumentByIdDomains({ id, requestBody, }: {
1616
+ id: string;
1466
1617
  requestBody?: UpdateDomainsRequestModel;
1467
1618
  }): CancelablePromise<any>;
1619
+ /**
1620
+ * @returns any Success
1621
+ * @throws ApiError
1622
+ */
1623
+ static getDocumentByIdNotifications({ id, }: {
1624
+ id: string;
1625
+ }): CancelablePromise<Array<DocumentNotificationResponseModel>>;
1626
+ /**
1627
+ * @returns any Success
1628
+ * @throws ApiError
1629
+ */
1630
+ static putDocumentByIdNotifications({ id, requestBody, }: {
1631
+ id: string;
1632
+ requestBody?: UpdateDocumentNotificationsRequestModel;
1633
+ }): CancelablePromise<any>;
1634
+ /**
1635
+ * @returns any Success
1636
+ * @throws ApiError
1637
+ */
1638
+ static getDocumentItem({ id, dataTypeId, culture, }: {
1639
+ id?: Array<string>;
1640
+ dataTypeId?: string;
1641
+ culture?: string;
1642
+ }): CancelablePromise<Array<DocumentItemResponseModel>>;
1468
1643
  /**
1469
1644
  * @returns PagedRecycleBinItemResponseModel Success
1470
1645
  * @throws ApiError
1471
1646
  */
1472
- static getRecycleBinDocumentChildren({ parentKey, skip, take, }: {
1473
- parentKey?: string;
1647
+ static getRecycleBinDocumentChildren({ parentId, skip, take, }: {
1648
+ parentId?: string;
1474
1649
  skip?: number;
1475
1650
  take?: number;
1476
1651
  }): CancelablePromise<PagedRecycleBinItemResponseModel>;
@@ -1486,30 +1661,21 @@ declare class DocumentResource {
1486
1661
  * @returns PagedDocumentTreeItemResponseModel Success
1487
1662
  * @throws ApiError
1488
1663
  */
1489
- static getTreeDocumentChildren({ parentKey, skip, take, dataTypeKey, culture, }: {
1490
- parentKey?: string;
1664
+ static getTreeDocumentChildren({ parentId, skip, take, dataTypeId, culture, }: {
1665
+ parentId?: string;
1491
1666
  skip?: number;
1492
1667
  take?: number;
1493
- dataTypeKey?: string;
1668
+ dataTypeId?: string;
1494
1669
  culture?: string;
1495
1670
  }): 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
1671
  /**
1506
1672
  * @returns PagedDocumentTreeItemResponseModel Success
1507
1673
  * @throws ApiError
1508
1674
  */
1509
- static getTreeDocumentRoot({ skip, take, dataTypeKey, culture, }: {
1675
+ static getTreeDocumentRoot({ skip, take, dataTypeId, culture, }: {
1510
1676
  skip?: number;
1511
1677
  take?: number;
1512
- dataTypeKey?: string;
1678
+ dataTypeId?: string;
1513
1679
  culture?: string;
1514
1680
  }): CancelablePromise<PagedDocumentTreeItemResponseModel>;
1515
1681
  }
@@ -1519,9 +1685,9 @@ declare class DocumentBlueprintResource {
1519
1685
  * @returns any Success
1520
1686
  * @throws ApiError
1521
1687
  */
1522
- static getTreeDocumentBlueprintItem({ key, }: {
1523
- key?: Array<string>;
1524
- }): CancelablePromise<Array<DocumentBlueprintTreeItemResponseModel>>;
1688
+ static getDocumentBlueprintItem({ id, }: {
1689
+ id?: Array<string>;
1690
+ }): CancelablePromise<Array<DocumentBlueprintResponseModel>>;
1525
1691
  /**
1526
1692
  * @returns PagedDocumentBlueprintTreeItemResponseModel Success
1527
1693
  * @throws ApiError
@@ -1537,26 +1703,26 @@ declare class DocumentTypeResource {
1537
1703
  * @returns any Success
1538
1704
  * @throws ApiError
1539
1705
  */
1540
- static getDocumentTypeByKey({ key, }: {
1541
- key: string;
1706
+ static getDocumentTypeById({ id, }: {
1707
+ id: string;
1542
1708
  }): CancelablePromise<DocumentTypeResponseModel>;
1709
+ /**
1710
+ * @returns any Success
1711
+ * @throws ApiError
1712
+ */
1713
+ static getDocumentTypeItem({ id, }: {
1714
+ id?: Array<string>;
1715
+ }): CancelablePromise<Array<DocumentTypeItemResponseModel>>;
1543
1716
  /**
1544
1717
  * @returns PagedDocumentTypeTreeItemResponseModel Success
1545
1718
  * @throws ApiError
1546
1719
  */
1547
- static getTreeDocumentTypeChildren({ parentKey, skip, take, foldersOnly, }: {
1548
- parentKey?: string;
1720
+ static getTreeDocumentTypeChildren({ parentId, skip, take, foldersOnly, }: {
1721
+ parentId?: string;
1549
1722
  skip?: number;
1550
1723
  take?: number;
1551
1724
  foldersOnly?: boolean;
1552
1725
  }): CancelablePromise<PagedDocumentTypeTreeItemResponseModel>;
1553
- /**
1554
- * @returns any Success
1555
- * @throws ApiError
1556
- */
1557
- static getTreeDocumentTypeItem({ key, }: {
1558
- key?: Array<string>;
1559
- }): CancelablePromise<Array<DocumentTypeTreeItemResponseModel>>;
1560
1726
  /**
1561
1727
  * @returns PagedDocumentTypeTreeItemResponseModel Success
1562
1728
  * @throws ApiError
@@ -1699,6 +1865,13 @@ declare class LanguageResource {
1699
1865
  isoCode: string;
1700
1866
  requestBody?: UpdateLanguageRequestModel;
1701
1867
  }): CancelablePromise<any>;
1868
+ /**
1869
+ * @returns any Success
1870
+ * @throws ApiError
1871
+ */
1872
+ static getLanguageItem({ isoCode, }: {
1873
+ isoCode?: Array<string>;
1874
+ }): CancelablePromise<Array<LanguageItemResponseModel>>;
1702
1875
  }
1703
1876
 
1704
1877
  declare class LogViewerResource {
@@ -1792,30 +1965,38 @@ declare class MediaResource {
1792
1965
  * @returns any Success
1793
1966
  * @throws ApiError
1794
1967
  */
1795
- static getMediaByKey({ key, }: {
1796
- key: string;
1968
+ static getMediaById({ id, }: {
1969
+ id: string;
1797
1970
  }): CancelablePromise<DocumentResponseModel>;
1798
1971
  /**
1799
1972
  * @returns any Success
1800
1973
  * @throws ApiError
1801
1974
  */
1802
- static deleteMediaByKey({ key, }: {
1803
- key: string;
1975
+ static deleteMediaById({ id, }: {
1976
+ id: string;
1804
1977
  }): CancelablePromise<any>;
1805
1978
  /**
1806
1979
  * @returns any Success
1807
1980
  * @throws ApiError
1808
1981
  */
1809
- static putMediaByKey({ key, requestBody, }: {
1810
- key: string;
1982
+ static putMediaById({ id, requestBody, }: {
1983
+ id: string;
1811
1984
  requestBody?: UpdateMediaRequestModel;
1812
1985
  }): CancelablePromise<any>;
1986
+ /**
1987
+ * @returns any Success
1988
+ * @throws ApiError
1989
+ */
1990
+ static getMediaItem({ id, dataTypeId, }: {
1991
+ id?: Array<string>;
1992
+ dataTypeId?: string;
1993
+ }): CancelablePromise<Array<MediaItemResponseModel>>;
1813
1994
  /**
1814
1995
  * @returns PagedRecycleBinItemResponseModel Success
1815
1996
  * @throws ApiError
1816
1997
  */
1817
- static getRecycleBinMediaChildren({ parentKey, skip, take, }: {
1818
- parentKey?: string;
1998
+ static getRecycleBinMediaChildren({ parentId, skip, take, }: {
1999
+ parentId?: string;
1819
2000
  skip?: number;
1820
2001
  take?: number;
1821
2002
  }): CancelablePromise<PagedRecycleBinItemResponseModel>;
@@ -1831,28 +2012,28 @@ declare class MediaResource {
1831
2012
  * @returns PagedContentTreeItemResponseModel Success
1832
2013
  * @throws ApiError
1833
2014
  */
1834
- static getTreeMediaChildren({ parentKey, skip, take, dataTypeKey, }: {
1835
- parentKey?: string;
2015
+ static getTreeMediaChildren({ parentId, skip, take, dataTypeId, }: {
2016
+ parentId?: string;
1836
2017
  skip?: number;
1837
2018
  take?: number;
1838
- dataTypeKey?: string;
2019
+ dataTypeId?: string;
1839
2020
  }): CancelablePromise<PagedContentTreeItemResponseModel>;
1840
2021
  /**
1841
2022
  * @returns any Success
1842
2023
  * @throws ApiError
1843
2024
  */
1844
- static getTreeMediaItem({ key, dataTypeKey, }: {
1845
- key?: Array<string>;
1846
- dataTypeKey?: string;
2025
+ static getTreeMediaItem({ id, dataTypeId, }: {
2026
+ id?: Array<string>;
2027
+ dataTypeId?: string;
1847
2028
  }): CancelablePromise<Array<(ContentTreeItemResponseModel | DocumentTreeItemResponseModel)>>;
1848
2029
  /**
1849
2030
  * @returns PagedContentTreeItemResponseModel Success
1850
2031
  * @throws ApiError
1851
2032
  */
1852
- static getTreeMediaRoot({ skip, take, dataTypeKey, }: {
2033
+ static getTreeMediaRoot({ skip, take, dataTypeId, }: {
1853
2034
  skip?: number;
1854
2035
  take?: number;
1855
- dataTypeKey?: string;
2036
+ dataTypeId?: string;
1856
2037
  }): CancelablePromise<PagedContentTreeItemResponseModel>;
1857
2038
  }
1858
2039
 
@@ -1861,26 +2042,26 @@ declare class MediaTypeResource {
1861
2042
  * @returns any Success
1862
2043
  * @throws ApiError
1863
2044
  */
1864
- static getMediaTypeByKey({ key, }: {
1865
- key: string;
2045
+ static getMediaTypeById({ id, }: {
2046
+ id: string;
1866
2047
  }): CancelablePromise<MediaTypeResponseModel>;
2048
+ /**
2049
+ * @returns any Success
2050
+ * @throws ApiError
2051
+ */
2052
+ static getMediaTypeItem({ id, }: {
2053
+ id?: Array<string>;
2054
+ }): CancelablePromise<Array<MediaTypeItemResponseModel>>;
1867
2055
  /**
1868
2056
  * @returns PagedFolderTreeItemResponseModel Success
1869
2057
  * @throws ApiError
1870
2058
  */
1871
- static getTreeMediaTypeChildren({ parentKey, skip, take, foldersOnly, }: {
1872
- parentKey?: string;
2059
+ static getTreeMediaTypeChildren({ parentId, skip, take, foldersOnly, }: {
2060
+ parentId?: string;
1873
2061
  skip?: number;
1874
2062
  take?: number;
1875
2063
  foldersOnly?: boolean;
1876
2064
  }): 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
2065
  /**
1885
2066
  * @returns PagedFolderTreeItemResponseModel Success
1886
2067
  * @throws ApiError
@@ -1897,9 +2078,9 @@ declare class MemberGroupResource {
1897
2078
  * @returns any Success
1898
2079
  * @throws ApiError
1899
2080
  */
1900
- static getTreeMemberGroupItem({ key, }: {
1901
- key?: Array<string>;
1902
- }): CancelablePromise<Array<(EntityTreeItemResponseModel | ContentTreeItemResponseModel | DocumentBlueprintTreeItemResponseModel | DocumentTreeItemResponseModel | DocumentTypeTreeItemResponseModel | FolderTreeItemResponseModel)>>;
2081
+ static getMemberGroupItem({ id, }: {
2082
+ id?: Array<string>;
2083
+ }): CancelablePromise<Array<MemberGroupItemReponseModel>>;
1903
2084
  /**
1904
2085
  * @returns PagedEntityTreeItemResponseModel Success
1905
2086
  * @throws ApiError
@@ -1915,9 +2096,9 @@ declare class MemberTypeResource {
1915
2096
  * @returns any Success
1916
2097
  * @throws ApiError
1917
2098
  */
1918
- static getTreeMemberTypeItem({ key, }: {
1919
- key?: Array<string>;
1920
- }): CancelablePromise<Array<(EntityTreeItemResponseModel | ContentTreeItemResponseModel | DocumentBlueprintTreeItemResponseModel | DocumentTreeItemResponseModel | DocumentTypeTreeItemResponseModel | FolderTreeItemResponseModel)>>;
2099
+ static getMemberTypeItem({ id, }: {
2100
+ id?: Array<string>;
2101
+ }): CancelablePromise<Array<MemberTypeItemResponseModel>>;
1921
2102
  /**
1922
2103
  * @returns PagedEntityTreeItemResponseModel Success
1923
2104
  * @throws ApiError
@@ -1984,30 +2165,30 @@ declare class PackageResource {
1984
2165
  * @returns any Success
1985
2166
  * @throws ApiError
1986
2167
  */
1987
- static getPackageCreatedByKey({ key, }: {
1988
- key: string;
2168
+ static getPackageCreatedById({ id, }: {
2169
+ id: string;
1989
2170
  }): CancelablePromise<PackageDefinitionResponseModel>;
1990
2171
  /**
1991
2172
  * @returns any Success
1992
2173
  * @throws ApiError
1993
2174
  */
1994
- static deletePackageCreatedByKey({ key, }: {
1995
- key: string;
2175
+ static deletePackageCreatedById({ id, }: {
2176
+ id: string;
1996
2177
  }): CancelablePromise<any>;
1997
2178
  /**
1998
2179
  * @returns any Success
1999
2180
  * @throws ApiError
2000
2181
  */
2001
- static putPackageCreatedByKey({ key, requestBody, }: {
2002
- key: string;
2182
+ static putPackageCreatedById({ id, requestBody, }: {
2183
+ id: string;
2003
2184
  requestBody?: UpdatePackageRequestModel;
2004
2185
  }): CancelablePromise<any>;
2005
2186
  /**
2006
2187
  * @returns binary Success
2007
2188
  * @throws ApiError
2008
2189
  */
2009
- static getPackageCreatedByKeyDownload({ key, }: {
2010
- key: string;
2190
+ static getPackageCreatedByIdDownload({ id, }: {
2191
+ id: string;
2011
2192
  }): CancelablePromise<Blob>;
2012
2193
  /**
2013
2194
  * @returns any Success
@@ -2025,6 +2206,13 @@ declare class PackageResource {
2025
2206
  }
2026
2207
 
2027
2208
  declare class PartialViewResource {
2209
+ /**
2210
+ * @returns any Success
2211
+ * @throws ApiError
2212
+ */
2213
+ static getPartialViewItem({ id, }: {
2214
+ id?: Array<string>;
2215
+ }): CancelablePromise<Array<PartialViewItemResponseModel>>;
2028
2216
  /**
2029
2217
  * @returns PagedFileSystemTreeItemPresentationModel Success
2030
2218
  * @throws ApiError
@@ -2034,13 +2222,6 @@ declare class PartialViewResource {
2034
2222
  skip?: number;
2035
2223
  take?: number;
2036
2224
  }): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
2037
- /**
2038
- * @returns any Success
2039
- * @throws ApiError
2040
- */
2041
- static getTreePartialViewItem({ path, }: {
2042
- path?: Array<string>;
2043
- }): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
2044
2225
  /**
2045
2226
  * @returns PagedFileSystemTreeItemPresentationModel Success
2046
2227
  * @throws ApiError
@@ -2103,8 +2284,8 @@ declare class RedirectManagementResource {
2103
2284
  * @returns PagedRedirectUrlResponseModel Success
2104
2285
  * @throws ApiError
2105
2286
  */
2106
- static getRedirectManagementByKey({ key, skip, take, }: {
2107
- key: string;
2287
+ static getRedirectManagementById({ id, skip, take, }: {
2288
+ id: string;
2108
2289
  skip?: number;
2109
2290
  take?: number;
2110
2291
  }): CancelablePromise<PagedRedirectUrlResponseModel>;
@@ -2112,8 +2293,8 @@ declare class RedirectManagementResource {
2112
2293
  * @returns any Success
2113
2294
  * @throws ApiError
2114
2295
  */
2115
- static deleteRedirectManagementByKey({ key, }: {
2116
- key: string;
2296
+ static deleteRedirectManagementById({ id, }: {
2297
+ id: string;
2117
2298
  }): CancelablePromise<any>;
2118
2299
  /**
2119
2300
  * @returns any Success
@@ -2151,8 +2332,8 @@ declare class RelationResource {
2151
2332
  * @returns PagedRelationResponseModel Success
2152
2333
  * @throws ApiError
2153
2334
  */
2154
- static getRelationTypeByKey({ key, skip, take, }: {
2155
- key: string;
2335
+ static getRelationTypeById({ id, skip, take, }: {
2336
+ id: string;
2156
2337
  skip?: number;
2157
2338
  take?: number;
2158
2339
  }): CancelablePromise<PagedRelationResponseModel>;
@@ -2170,31 +2351,31 @@ declare class RelationTypeResource {
2170
2351
  * @returns any Success
2171
2352
  * @throws ApiError
2172
2353
  */
2173
- static getRelationTypeByKey({ key, }: {
2174
- key: string;
2354
+ static getRelationTypeById({ id, }: {
2355
+ id: string;
2175
2356
  }): CancelablePromise<RelationTypeResponseModel>;
2176
2357
  /**
2177
2358
  * @returns any Success
2178
2359
  * @throws ApiError
2179
2360
  */
2180
- static deleteRelationTypeByKey({ key, }: {
2181
- key: string;
2361
+ static deleteRelationTypeById({ id, }: {
2362
+ id: string;
2182
2363
  }): CancelablePromise<any>;
2183
2364
  /**
2184
2365
  * @returns any Success
2185
2366
  * @throws ApiError
2186
2367
  */
2187
- static putRelationTypeByKey({ key, requestBody, }: {
2188
- key: string;
2368
+ static putRelationTypeById({ id, requestBody, }: {
2369
+ id: string;
2189
2370
  requestBody?: UpdateRelationTypeRequestModel;
2190
2371
  }): CancelablePromise<RelationTypeResponseModel>;
2191
2372
  /**
2192
2373
  * @returns any Success
2193
2374
  * @throws ApiError
2194
2375
  */
2195
- static getTreeRelationTypeItem({ key, }: {
2196
- key?: Array<string>;
2197
- }): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
2376
+ static getRelationTypeItem({ id, }: {
2377
+ id?: Array<string>;
2378
+ }): CancelablePromise<Array<RelationTypeItemResponseModel>>;
2198
2379
  /**
2199
2380
  * @returns PagedEntityTreeItemResponseModel Success
2200
2381
  * @throws ApiError
@@ -2206,6 +2387,13 @@ declare class RelationTypeResource {
2206
2387
  }
2207
2388
 
2208
2389
  declare class ScriptResource {
2390
+ /**
2391
+ * @returns any Success
2392
+ * @throws ApiError
2393
+ */
2394
+ static getScriptItem({ path, }: {
2395
+ path?: Array<string>;
2396
+ }): CancelablePromise<Array<ScriptItemResponseModel>>;
2209
2397
  /**
2210
2398
  * @returns PagedFileSystemTreeItemPresentationModel Success
2211
2399
  * @throws ApiError
@@ -2215,13 +2403,6 @@ declare class ScriptResource {
2215
2403
  skip?: number;
2216
2404
  take?: number;
2217
2405
  }): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
2218
- /**
2219
- * @returns any Success
2220
- * @throws ApiError
2221
- */
2222
- static getTreeScriptItem({ path, }: {
2223
- path?: Array<string>;
2224
- }): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
2225
2406
  /**
2226
2407
  * @returns PagedFileSystemTreeItemPresentationModel Success
2227
2408
  * @throws ApiError
@@ -2289,13 +2470,6 @@ declare class StaticFileResource {
2289
2470
  skip?: number;
2290
2471
  take?: number;
2291
2472
  }): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
2292
- /**
2293
- * @returns any Success
2294
- * @throws ApiError
2295
- */
2296
- static getTreeStaticFileItem({ path, }: {
2297
- path?: Array<string>;
2298
- }): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
2299
2473
  /**
2300
2474
  * @returns PagedFileSystemTreeItemPresentationModel Success
2301
2475
  * @throws ApiError
@@ -2307,6 +2481,13 @@ declare class StaticFileResource {
2307
2481
  }
2308
2482
 
2309
2483
  declare class StylesheetResource {
2484
+ /**
2485
+ * @returns any Success
2486
+ * @throws ApiError
2487
+ */
2488
+ static getStylesheetItem({ path, }: {
2489
+ path?: Array<string>;
2490
+ }): CancelablePromise<Array<ScriptItemResponseModel>>;
2310
2491
  /**
2311
2492
  * @returns PagedFileSystemTreeItemPresentationModel Success
2312
2493
  * @throws ApiError
@@ -2316,13 +2497,6 @@ declare class StylesheetResource {
2316
2497
  skip?: number;
2317
2498
  take?: number;
2318
2499
  }): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
2319
- /**
2320
- * @returns any Success
2321
- * @throws ApiError
2322
- */
2323
- static getTreeStylesheetItem({ path, }: {
2324
- path?: Array<string>;
2325
- }): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
2326
2500
  /**
2327
2501
  * @returns PagedFileSystemTreeItemPresentationModel Success
2328
2502
  * @throws ApiError
@@ -2368,24 +2542,31 @@ declare class TemplateResource {
2368
2542
  * @returns any Success
2369
2543
  * @throws ApiError
2370
2544
  */
2371
- static getTemplateByKey({ key, }: {
2372
- key: string;
2545
+ static getTemplateById({ id, }: {
2546
+ id: string;
2373
2547
  }): CancelablePromise<TemplateResponseModel>;
2374
2548
  /**
2375
2549
  * @returns any Success
2376
2550
  * @throws ApiError
2377
2551
  */
2378
- static deleteTemplateByKey({ key, }: {
2379
- key: string;
2552
+ static deleteTemplateById({ id, }: {
2553
+ id: string;
2380
2554
  }): CancelablePromise<any>;
2381
2555
  /**
2382
2556
  * @returns any Success
2383
2557
  * @throws ApiError
2384
2558
  */
2385
- static putTemplateByKey({ key, requestBody, }: {
2386
- key: string;
2559
+ static putTemplateById({ id, requestBody, }: {
2560
+ id: string;
2387
2561
  requestBody?: UpdateTemplateRequestModel;
2388
2562
  }): CancelablePromise<any>;
2563
+ /**
2564
+ * @returns any Success
2565
+ * @throws ApiError
2566
+ */
2567
+ static getTemplateItem({ id, }: {
2568
+ id?: Array<string>;
2569
+ }): CancelablePromise<Array<TemplateItemResponseModel>>;
2389
2570
  /**
2390
2571
  * @returns any Success
2391
2572
  * @throws ApiError
@@ -2407,18 +2588,11 @@ declare class TemplateResource {
2407
2588
  * @returns PagedEntityTreeItemResponseModel Success
2408
2589
  * @throws ApiError
2409
2590
  */
2410
- static getTreeTemplateChildren({ parentKey, skip, take, }: {
2411
- parentKey?: string;
2591
+ static getTreeTemplateChildren({ parentId, skip, take, }: {
2592
+ parentId?: string;
2412
2593
  skip?: number;
2413
2594
  take?: number;
2414
2595
  }): 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
2596
  /**
2423
2597
  * @returns PagedEntityTreeItemResponseModel Success
2424
2598
  * @throws ApiError
@@ -2429,13 +2603,40 @@ declare class TemplateResource {
2429
2603
  }): CancelablePromise<PagedEntityTreeItemResponseModel>;
2430
2604
  }
2431
2605
 
2606
+ declare class TemporaryFileResource {
2607
+ /**
2608
+ * @returns string Created
2609
+ * @throws ApiError
2610
+ */
2611
+ static postTemporaryfile({ formData, }: {
2612
+ formData?: {
2613
+ Id?: string;
2614
+ File?: Blob;
2615
+ };
2616
+ }): CancelablePromise<string>;
2617
+ /**
2618
+ * @returns any Success
2619
+ * @throws ApiError
2620
+ */
2621
+ static getTemporaryfileById({ id, }: {
2622
+ id: string;
2623
+ }): CancelablePromise<TemporaryFileResponseModel>;
2624
+ /**
2625
+ * @returns any Success
2626
+ * @throws ApiError
2627
+ */
2628
+ static deleteTemporaryfileById({ id, }: {
2629
+ id: string;
2630
+ }): CancelablePromise<any>;
2631
+ }
2632
+
2432
2633
  declare class TrackedReferenceResource {
2433
2634
  /**
2434
2635
  * @returns PagedRelationItemResponseModel Success
2435
2636
  * @throws ApiError
2436
2637
  */
2437
- static getTrackedReferenceByKey({ key, skip, take, filterMustBeIsDependency, }: {
2438
- key: string;
2638
+ static getTrackedReferenceById({ id, skip, take, filterMustBeIsDependency, }: {
2639
+ id: string;
2439
2640
  skip?: number;
2440
2641
  take?: number;
2441
2642
  filterMustBeIsDependency?: boolean;
@@ -2444,8 +2645,8 @@ declare class TrackedReferenceResource {
2444
2645
  * @returns PagedRelationItemResponseModel Success
2445
2646
  * @throws ApiError
2446
2647
  */
2447
- static getTrackedReferenceDescendantsByParentKey({ parentKey, skip, take, filterMustBeIsDependency, }: {
2448
- parentKey: string;
2648
+ static getTrackedReferenceDescendantsByParentId({ parentId, skip, take, filterMustBeIsDependency, }: {
2649
+ parentId: string;
2449
2650
  skip?: number;
2450
2651
  take?: number;
2451
2652
  filterMustBeIsDependency?: boolean;
@@ -2454,8 +2655,8 @@ declare class TrackedReferenceResource {
2454
2655
  * @returns PagedRelationItemResponseModel Success
2455
2656
  * @throws ApiError
2456
2657
  */
2457
- static getTrackedReferenceItem({ key, skip, take, filterMustBeIsDependency, }: {
2458
- key?: Array<string>;
2658
+ static getTrackedReferenceItem({ id, skip, take, filterMustBeIsDependency, }: {
2659
+ id?: Array<string>;
2459
2660
  skip?: number;
2460
2661
  take?: number;
2461
2662
  filterMustBeIsDependency?: boolean;
@@ -2495,24 +2696,145 @@ declare class UserGroupsResource {
2495
2696
  * @returns any Success
2496
2697
  * @throws ApiError
2497
2698
  */
2498
- static getUserGroupsByKey({ key, }: {
2499
- key: string;
2699
+ static getUserGroupsById({ id, }: {
2700
+ id: string;
2500
2701
  }): CancelablePromise<UserGroupPresentationModel>;
2501
2702
  /**
2502
2703
  * @returns any Success
2503
2704
  * @throws ApiError
2504
2705
  */
2505
- static deleteUserGroupsByKey({ key, }: {
2506
- key: string;
2706
+ static deleteUserGroupsById({ id, }: {
2707
+ id: string;
2507
2708
  }): CancelablePromise<any>;
2508
2709
  /**
2509
2710
  * @returns any Success
2510
2711
  * @throws ApiError
2511
2712
  */
2512
- static putUserGroupsByKey({ key, requestBody, }: {
2513
- key: string;
2713
+ static putUserGroupsById({ id, requestBody, }: {
2714
+ id: string;
2514
2715
  requestBody?: UpdateUserGroupRequestModel;
2515
2716
  }): CancelablePromise<any>;
2516
2717
  }
2517
2718
 
2518
- export { ApiError, AuditLogBaseModel, AuditLogResource, AuditLogResponseModel, AuditLogWithUsernameResponseModel, AuditTypeModel, CancelError, CancelablePromise, ConsentLevelPresentationModel, ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel, ContentStateModel, ContentTreeItemResponseModel, ContentTypeCleanupModel, ContentTypeCompositionModel, ContentTypeCompositionTypeModel, ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel, ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel, ContentTypeSortModel, ContentUrlInfoModel, CopyDataTypeRequestModel, CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel, CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel, CreateDataTypeRequestModel, CreateDictionaryItemRequestModel, CreateDocumentRequestModel, CreateFolderRequestModel, CreateLanguageRequestModel, CreateMediaRequestModel, CreatePackageRequestModel, CreateRelationTypeRequestModel, CreateTemplateRequestModel, CultureReponseModel, CultureResource, DataTypeModelBaseModel, DataTypePropertyPresentationModel, DataTypePropertyReferenceModel, DataTypeReferenceResponseModel, DataTypeResource, DataTypeResponseModel, DatabaseInstallResponseModel, DatabaseSettingsPresentationModel, DictionaryItemModelBaseModel, DictionaryItemResponseModel, DictionaryItemTranslationModel, DictionaryOverviewResponseModel, DictionaryResource, DirectionModel, DocumentBlueprintResource, DocumentBlueprintTreeItemResponseModel, DocumentResource, DocumentResponseModel, DocumentTreeItemResponseModel, DocumentTypePropertyTypeContainerResponseModel, DocumentTypePropertyTypeResponseModel, DocumentTypeResource, DocumentTypeResponseModel, DocumentTypeTreeItemResponseModel, DocumentValueModel, DocumentVariantRequestModel, DocumentVariantResponseModel, DomainPresentationModel, DomainsPresentationModelBaseModel, DomainsResponseModel, EntityTreeItemResponseModel, FieldPresentationModel, FileSystemTreeItemPresentationModel, FolderModelBaseModel, FolderReponseModel, FolderTreeItemResponseModel, HealthCheckActionRequestModel, HealthCheckGroupPresentationBaseModel, HealthCheckGroupPresentationModel, HealthCheckGroupResponseModel, HealthCheckGroupWithResultResponseModel, HealthCheckModel, HealthCheckModelBaseModel, HealthCheckResource, HealthCheckResultResponseModel, HealthCheckWithResultPresentationModel, HealthStatusModel, HelpPageResponseModel, HelpResource, ImportDictionaryItemsPresentationModel, ImportDictionaryRequestModel, IndexResponseModel, IndexerResource, InstallResource, InstallSettingsResponseModel, InstallVResponseModel, LanguageModelBaseModel, LanguageResource, LanguageResponseModel, LogLevelCountsReponseModel, LogLevelModel, LogMessagePropertyPresentationModel, LogMessageResponseModel, LogTemplateResponseModel, LogViewerResource, LoggerResponseModel, MediaResource, MediaTypePropertyTypeContainerResponseModel, MediaTypePropertyTypeResponseModel, MediaTypeResource, MediaTypeResponseModel, MediaValueModel, MediaVariantRequestModel, MediaVariantResponseModel, MemberGroupResource, 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, PartialViewResource, ProblemDetailsModel, ProfilingResource, ProfilingStatusRequestModel, ProfilingStatusResponseModel, PropertyTypeAppearanceModel, PropertyTypeContainerResponseModelBaseModel, PropertyTypeResponseModelBaseModel, PropertyTypeValidationModel, PublishedCacheResource, RecycleBinItemResponseModel, RedirectManagementResource, RedirectStatusModel, RedirectUrlResponseModel, RedirectUrlStatusResponseModel, RelationItemResponseModel, RelationResource, RelationResponseModel, RelationTypeBaseModel, RelationTypeResource, RelationTypeResponseModel, RuntimeLevelModel, SaveUserGroupRequestModel, SavedLogSearchPresenationBaseModel, SavedLogSearchRequestModel, SavedLogSearchResponseModel, ScriptResource, SearchResultResponseModel, SearcherResource, SearcherResponseModel, SecurityResource, ServerResource, ServerStatusResponseModel, StaticFileResource, StatusResultTypeModel, StylesheetResource, TelemetryLevelModel, TelemetryRepresentationBaseModel, TelemetryRequestModel, TelemetryResource, TelemetryResponseModel, TemplateModelBaseModel, TemplateQueryExecuteFilterPresentationModel, TemplateQueryExecuteModel, TemplateQueryExecuteSortModel, TemplateQueryOperatorModel, TemplateQueryPropertyPresentationModel, TemplateQueryPropertyTypeModel, TemplateQueryResultItemPresentationModel, TemplateQueryResultResponseModel, TemplateQuerySettingsResponseModel, TemplateResource, TemplateResponseModel, TemplateScaffoldResponseModel, TrackedReferenceResource, TreeItemPresentationModel, UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel, UpdateContentRequestModelBaseMediaValueModelMediaVariantRequestModel, UpdateDataTypeRequestModel, UpdateDictionaryItemRequestModel, UpdateDocumentRequestModel, UpdateDomainsRequestModel, UpdateFolderReponseModel, UpdateLanguageRequestModel, UpdateMediaRequestModel, UpdatePackageRequestModel, UpdateRelationTypeRequestModel, UpdateTemplateRequestModel, UpdateUserGroupRequestModel, UpgradeResource, UpgradeSettingsResponseModel, UploadDictionaryResponseModel, UserGroupBaseModel, UserGroupPresentationModel, UserGroupsResource, UserInstallResponseModel, UserSettingsModel, ValueModelBaseModel, VariantModelBaseModel, VariantResponseModelBaseModel, VersionResponseModel };
2719
+ declare class UsersResource {
2720
+ /**
2721
+ * @returns any Success
2722
+ * @throws ApiError
2723
+ */
2724
+ static postUsers({ requestBody, }: {
2725
+ requestBody?: (CreateUserRequestModel | InviteUserRequestModel);
2726
+ }): CancelablePromise<CreateUserResponseModel>;
2727
+ /**
2728
+ * @returns PagedUserResponseModel Success
2729
+ * @throws ApiError
2730
+ */
2731
+ static getUsers({ skip, take, }: {
2732
+ skip?: number;
2733
+ take?: number;
2734
+ }): CancelablePromise<PagedUserResponseModel>;
2735
+ /**
2736
+ * @returns any Success
2737
+ * @throws ApiError
2738
+ */
2739
+ static getUsersById({ id, }: {
2740
+ id: string;
2741
+ }): CancelablePromise<UserResponseModel>;
2742
+ /**
2743
+ * @returns any Success
2744
+ * @throws ApiError
2745
+ */
2746
+ static deleteUsersById({ id, }: {
2747
+ id: string;
2748
+ }): CancelablePromise<any>;
2749
+ /**
2750
+ * @returns any Success
2751
+ * @throws ApiError
2752
+ */
2753
+ static putUsersById({ id, requestBody, }: {
2754
+ id: string;
2755
+ requestBody?: UpdateUserRequestModel;
2756
+ }): CancelablePromise<any>;
2757
+ /**
2758
+ * @returns any Success
2759
+ * @throws ApiError
2760
+ */
2761
+ static deleteUsersAvatarById({ id, }: {
2762
+ id: string;
2763
+ }): CancelablePromise<any>;
2764
+ /**
2765
+ * @returns any Success
2766
+ * @throws ApiError
2767
+ */
2768
+ static postUsersAvatarById({ id, requestBody, }: {
2769
+ id: string;
2770
+ requestBody?: SetAvatarRequestModel;
2771
+ }): CancelablePromise<any>;
2772
+ /**
2773
+ * @returns any Success
2774
+ * @throws ApiError
2775
+ */
2776
+ static postUsersChangePasswordById({ id, requestBody, }: {
2777
+ id: string;
2778
+ requestBody?: ChangePasswordUserRequestModel;
2779
+ }): CancelablePromise<any>;
2780
+ /**
2781
+ * @returns any Success
2782
+ * @throws ApiError
2783
+ */
2784
+ static postUsersDisable({ requestBody, }: {
2785
+ requestBody?: DisableUserRequestModel;
2786
+ }): CancelablePromise<any>;
2787
+ /**
2788
+ * @returns any Success
2789
+ * @throws ApiError
2790
+ */
2791
+ static postUsersEnable({ requestBody, }: {
2792
+ requestBody?: EnableUserRequestModel;
2793
+ }): CancelablePromise<any>;
2794
+ /**
2795
+ * @returns any Success
2796
+ * @throws ApiError
2797
+ */
2798
+ static getUsersFilter({ skip, take, orderBy, orderDirection, userGroupIds, userStates, filter, }: {
2799
+ skip?: number;
2800
+ take?: number;
2801
+ orderBy?: UserOrderModel;
2802
+ orderDirection?: DirectionModel;
2803
+ userGroupIds?: Array<string>;
2804
+ userStates?: Array<UserStateModel>;
2805
+ filter?: string;
2806
+ }): CancelablePromise<any>;
2807
+ /**
2808
+ * @returns any Success
2809
+ * @throws ApiError
2810
+ */
2811
+ static postUsersInvite({ requestBody, }: {
2812
+ requestBody?: InviteUserRequestModel;
2813
+ }): CancelablePromise<any>;
2814
+ /**
2815
+ * @returns any Success
2816
+ * @throws ApiError
2817
+ */
2818
+ static postUsersSetUserGroups({ requestBody, }: {
2819
+ requestBody?: UpdateUserGroupsOnUserRequestModel;
2820
+ }): CancelablePromise<any>;
2821
+ /**
2822
+ * @returns any Success
2823
+ * @throws ApiError
2824
+ */
2825
+ static postUsersUnlock({ requestBody, }: {
2826
+ requestBody?: UnlockUsersRequestModel;
2827
+ }): CancelablePromise<any>;
2828
+ }
2829
+
2830
+ declare class V1Resource {
2831
+ /**
2832
+ * @returns any Success
2833
+ * @throws ApiError
2834
+ */
2835
+ static getItem({ path, }: {
2836
+ path?: Array<string>;
2837
+ }): CancelablePromise<Array<StaticFileItemResponseModel>>;
2838
+ }
2839
+
2840
+ 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 };