@umbraco-cms/backoffice 1.0.0-next.bf0e5e95 → 1.0.0-next.c727665d

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;
@@ -453,26 +474,26 @@ type DataTypePropertyReferenceModel = {
453
474
  };
454
475
 
455
476
  type DataTypeReferenceResponseModel = {
456
- key?: string;
477
+ id?: string;
457
478
  type?: string;
458
479
  properties?: Array<DataTypePropertyReferenceModel>;
459
480
  };
460
481
 
461
482
  type DataTypeResponseModel = (DataTypeModelBaseModel & {
462
483
  $type: string;
463
- key?: string;
464
- parentKey?: string | null;
484
+ id?: string;
485
+ parentId?: string | null;
465
486
  });
466
487
 
467
488
  type DictionaryItemResponseModel = (DictionaryItemModelBaseModel & {
468
489
  $type: string;
469
- key?: string;
490
+ id?: string;
470
491
  });
471
492
 
472
493
  type DictionaryOverviewResponseModel = {
473
494
  name?: string | null;
474
- key?: string;
475
- parentKey?: string | null;
495
+ id?: string;
496
+ parentId?: string | null;
476
497
  translatedIsoCodes?: Array<string>;
477
498
  };
478
499
 
@@ -481,16 +502,25 @@ declare enum DirectionModel {
481
502
  DESCENDING = "Descending"
482
503
  }
483
504
 
505
+ type DisableUserRequestModel = {
506
+ userIds?: Array<string>;
507
+ };
508
+
484
509
  type DocumentBlueprintTreeItemResponseModel = (EntityTreeItemResponseModel & {
485
510
  $type: string;
486
- documentTypeKey?: string;
511
+ documentTypeId?: string;
487
512
  documentTypeAlias?: string;
488
513
  documentTypeName?: string | null;
489
514
  });
490
515
 
516
+ type DocumentNotificationResponseModel = {
517
+ actionId?: string;
518
+ subscribed?: boolean;
519
+ };
520
+
491
521
  type DocumentResponseModel = (ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel & {
492
522
  urls?: Array<ContentUrlInfoModel>;
493
- templateKey?: string | null;
523
+ templateId?: string | null;
494
524
  });
495
525
 
496
526
  type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
@@ -501,8 +531,8 @@ type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
501
531
  });
502
532
 
503
533
  type DocumentTypeResponseModel = (ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel & {
504
- allowedTemplateKeys?: Array<string>;
505
- defaultTemplateKey?: string | null;
534
+ allowedTemplateIds?: Array<string>;
535
+ defaultTemplateId?: string | null;
506
536
  cleanup?: ContentTypeCleanupModel;
507
537
  });
508
538
 
@@ -528,6 +558,10 @@ type DomainsPresentationModelBaseModel = {
528
558
 
529
559
  type DomainsResponseModel = DomainsPresentationModelBaseModel;
530
560
 
561
+ type EnableUserRequestModel = {
562
+ userIds?: Array<string>;
563
+ };
564
+
531
565
  type FieldPresentationModel = {
532
566
  name?: string;
533
567
  values?: Array<string>;
@@ -540,12 +574,12 @@ type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
540
574
 
541
575
  type FolderReponseModel = (FolderModelBaseModel & {
542
576
  $type: string;
543
- key?: string;
544
- parentKey?: string | null;
577
+ id?: string;
578
+ parentId?: string | null;
545
579
  });
546
580
 
547
581
  type HealthCheckActionRequestModel = {
548
- healthCheckKey?: string;
582
+ healthCheckId?: string;
549
583
  alias?: string | null;
550
584
  name?: string | null;
551
585
  description?: string | null;
@@ -560,7 +594,7 @@ type HealthCheckGroupPresentationBaseModel = {
560
594
  };
561
595
 
562
596
  type HealthCheckModelBaseModel = {
563
- key?: string;
597
+ id?: string;
564
598
  };
565
599
 
566
600
  type HealthCheckModel = (HealthCheckModelBaseModel & {
@@ -609,15 +643,9 @@ type HelpPageResponseModel = {
609
643
  type?: string | null;
610
644
  };
611
645
 
612
- type ImportDictionaryItemsPresentationModel = {
613
- key?: string;
614
- name?: string | null;
615
- parentKey?: string | null;
616
- };
617
-
618
646
  type ImportDictionaryRequestModel = {
619
- fileName?: string;
620
- parentKey?: string | null;
647
+ temporaryFileId?: string;
648
+ parentId?: string | null;
621
649
  };
622
650
 
623
651
  type IndexResponseModel = {
@@ -654,6 +682,10 @@ type InstallVResponseModel = {
654
682
  telemetryLevel?: TelemetryLevelModel;
655
683
  };
656
684
 
685
+ type InviteUserRequestModel = (CreateUserRequestModel & {
686
+ message?: string | null;
687
+ });
688
+
657
689
  type LanguageResponseModel = (LanguageModelBaseModel & {
658
690
  isoCode?: string;
659
691
  });
@@ -723,11 +755,11 @@ type ModelsBuilderResponseModel = {
723
755
  };
724
756
 
725
757
  type MoveDataTypeRequestModel = {
726
- targetKey?: string | null;
758
+ targetId?: string | null;
727
759
  };
728
760
 
729
761
  type MoveDictionaryRequestModel = {
730
- targetKey?: string | null;
762
+ targetId?: string | null;
731
763
  };
732
764
 
733
765
  type ObjectTypeResponseModel = {
@@ -761,7 +793,7 @@ type OutOfDateStatusResponseModel = {
761
793
  };
762
794
 
763
795
  type PackageDefinitionResponseModel = (PackageModelBaseModel & {
764
- key?: string;
796
+ id?: string;
765
797
  packagePath?: string;
766
798
  });
767
799
 
@@ -883,13 +915,13 @@ type PagedPackageMigrationStatusResponseModel = {
883
915
 
884
916
  type RecycleBinItemResponseModel = {
885
917
  $type: string;
886
- key?: string;
918
+ id?: string;
887
919
  name?: string;
888
920
  type?: string;
889
921
  icon?: string;
890
922
  hasChildren?: boolean;
891
923
  isContainer?: boolean;
892
- parentKey?: string | null;
924
+ parentId?: string | null;
893
925
  };
894
926
 
895
927
  type PagedRecycleBinItemResponseModel = {
@@ -898,11 +930,11 @@ type PagedRecycleBinItemResponseModel = {
898
930
  };
899
931
 
900
932
  type RedirectUrlResponseModel = {
901
- key?: string;
933
+ id?: string;
902
934
  originalUrl?: string;
903
935
  destinationUrl?: string;
904
936
  created?: string;
905
- contentKey?: string;
937
+ contentId?: string;
906
938
  culture?: string | null;
907
939
  };
908
940
 
@@ -912,7 +944,7 @@ type PagedRedirectUrlResponseModel = {
912
944
  };
913
945
 
914
946
  type RelationItemResponseModel = {
915
- nodeKey?: string;
947
+ nodeId?: string;
916
948
  nodeName?: string | null;
917
949
  nodeType?: string | null;
918
950
  nodePublished?: boolean | null;
@@ -993,14 +1025,14 @@ type UserGroupBaseModel = {
993
1025
  sections?: Array<string>;
994
1026
  languages?: Array<string>;
995
1027
  hasAccessToAllLanguages?: boolean;
996
- documentStartNodeKey?: string | null;
997
- mediaStartNodeKey?: string | null;
1028
+ documentStartNodeId?: string | null;
1029
+ mediaStartNodeId?: string | null;
998
1030
  permissions?: Array<string>;
999
1031
  };
1000
1032
 
1001
1033
  type UserGroupPresentationModel = (UserGroupBaseModel & {
1002
1034
  $type: string;
1003
- key?: string;
1035
+ id?: string;
1004
1036
  });
1005
1037
 
1006
1038
  type PagedUserGroupPresentationModel = {
@@ -1008,6 +1040,36 @@ type PagedUserGroupPresentationModel = {
1008
1040
  items: Array<UserGroupPresentationModel>;
1009
1041
  };
1010
1042
 
1043
+ declare enum UserStateModel {
1044
+ ACTIVE = "Active",
1045
+ DISABLED = "Disabled",
1046
+ LOCKED_OUT = "LockedOut",
1047
+ INVITED = "Invited",
1048
+ INACTIVE = "Inactive",
1049
+ ALL = "All"
1050
+ }
1051
+
1052
+ type UserResponseModel = (UserPresentationBaseModel & {
1053
+ $type: string;
1054
+ id?: string;
1055
+ languageIsoCode?: string | null;
1056
+ contentStartNodeIds?: Array<string>;
1057
+ mediaStartNodeIds?: Array<string>;
1058
+ avatarUrls?: Array<string>;
1059
+ state?: UserStateModel;
1060
+ failedLoginAttempts?: number;
1061
+ createDate?: string;
1062
+ updateDate?: string;
1063
+ lastLoginDate?: string | null;
1064
+ lastlockoutDate?: string | null;
1065
+ lastPasswordChangeDate?: string | null;
1066
+ });
1067
+
1068
+ type PagedUserResponseModel = {
1069
+ total: number;
1070
+ items: Array<UserResponseModel>;
1071
+ };
1072
+
1011
1073
  type ProblemDetailsModel = Record<string, any>;
1012
1074
 
1013
1075
  type ProfilingStatusRequestModel = {
@@ -1029,7 +1091,7 @@ type RedirectUrlStatusResponseModel = {
1029
1091
  };
1030
1092
 
1031
1093
  type RelationTypeResponseModel = (RelationTypeBaseModel & {
1032
- key?: string;
1094
+ id?: string;
1033
1095
  alias?: string | null;
1034
1096
  path?: string;
1035
1097
  isSystemRelationType?: boolean;
@@ -1054,6 +1116,10 @@ type ServerStatusResponseModel = {
1054
1116
  serverStatus?: RuntimeLevelModel;
1055
1117
  };
1056
1118
 
1119
+ type SetAvatarRequestModel = {
1120
+ fileId?: string;
1121
+ };
1122
+
1057
1123
  type TelemetryRequestModel = TelemetryRepresentationBaseModel;
1058
1124
 
1059
1125
  type TemplateQueryExecuteFilterPresentationModel = {
@@ -1068,7 +1134,7 @@ type TemplateQueryExecuteSortModel = {
1068
1134
  };
1069
1135
 
1070
1136
  type TemplateQueryExecuteModel = {
1071
- rootContentKey?: string | null;
1137
+ rootContentId?: string | null;
1072
1138
  contentTypeAlias?: string | null;
1073
1139
  filters?: Array<TemplateQueryExecuteFilterPresentationModel> | null;
1074
1140
  sort?: TemplateQueryExecuteSortModel | null;
@@ -1111,13 +1177,23 @@ type TemplateQuerySettingsResponseModel = {
1111
1177
 
1112
1178
  type TemplateResponseModel = (TemplateModelBaseModel & {
1113
1179
  $type: string;
1114
- key?: string;
1180
+ id?: string;
1115
1181
  });
1116
1182
 
1117
1183
  type TemplateScaffoldResponseModel = {
1118
1184
  content?: string;
1119
1185
  };
1120
1186
 
1187
+ type TemporaryFileResponseModel = {
1188
+ id?: string;
1189
+ availableUntil?: string | null;
1190
+ fileName?: string;
1191
+ };
1192
+
1193
+ type UnlockUsersRequestModel = {
1194
+ userIds?: Array<string>;
1195
+ };
1196
+
1121
1197
  type UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel = {
1122
1198
  values?: Array<DocumentValueModel>;
1123
1199
  variants?: Array<DocumentVariantRequestModel>;
@@ -1132,8 +1208,12 @@ type UpdateDataTypeRequestModel = DataTypeModelBaseModel;
1132
1208
 
1133
1209
  type UpdateDictionaryItemRequestModel = DictionaryItemModelBaseModel;
1134
1210
 
1211
+ type UpdateDocumentNotificationsRequestModel = {
1212
+ subscribedActionIds?: Array<string>;
1213
+ };
1214
+
1135
1215
  type UpdateDocumentRequestModel = (UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
1136
- templateKey?: string | null;
1216
+ templateId?: string | null;
1137
1217
  });
1138
1218
 
1139
1219
  type UpdateDomainsRequestModel = DomainsPresentationModelBaseModel;
@@ -1154,6 +1234,17 @@ type UpdateTemplateRequestModel = TemplateModelBaseModel;
1154
1234
 
1155
1235
  type UpdateUserGroupRequestModel = UserGroupBaseModel;
1156
1236
 
1237
+ type UpdateUserGroupsOnUserRequestModel = {
1238
+ userIds?: Array<string>;
1239
+ userGroupIds?: Array<string>;
1240
+ };
1241
+
1242
+ type UpdateUserRequestModel = (UserPresentationBaseModel & {
1243
+ languageIsoCode?: string;
1244
+ contentStartNodeIds?: Array<string>;
1245
+ mediaStartNodeIds?: Array<string>;
1246
+ });
1247
+
1157
1248
  type UpgradeSettingsResponseModel = {
1158
1249
  currentState?: string;
1159
1250
  newState?: string;
@@ -1162,10 +1253,18 @@ type UpgradeSettingsResponseModel = {
1162
1253
  readonly reportUrl?: string;
1163
1254
  };
1164
1255
 
1165
- type UploadDictionaryResponseModel = {
1166
- dictionaryItems?: Array<ImportDictionaryItemsPresentationModel>;
1167
- fileName?: string | null;
1168
- };
1256
+ declare enum UserOrderModel {
1257
+ USER_NAME = "UserName",
1258
+ LANGUAGE = "Language",
1259
+ NAME = "Name",
1260
+ EMAIL = "Email",
1261
+ ID = "Id",
1262
+ CREATE_DATE = "CreateDate",
1263
+ UPDATE_DATE = "UpdateDate",
1264
+ IS_APPROVED = "IsApproved",
1265
+ IS_LOCKED_OUT = "IsLockedOut",
1266
+ LAST_LOGIN_DATE = "LastLoginDate"
1267
+ }
1169
1268
 
1170
1269
  type VersionResponseModel = {
1171
1270
  version?: string;
@@ -1186,8 +1285,8 @@ declare class AuditLogResource {
1186
1285
  * @returns PagedAuditLogResponseModel Success
1187
1286
  * @throws ApiError
1188
1287
  */
1189
- static getAuditLogByKey({ key, orderDirection, sinceDate, skip, take, }: {
1190
- key: string;
1288
+ static getAuditLogById({ id, orderDirection, sinceDate, skip, take, }: {
1289
+ id: string;
1191
1290
  orderDirection?: DirectionModel;
1192
1291
  sinceDate?: string;
1193
1292
  skip?: number;
@@ -1228,46 +1327,46 @@ declare class DataTypeResource {
1228
1327
  * @returns any Success
1229
1328
  * @throws ApiError
1230
1329
  */
1231
- static getDataTypeByKey({ key, }: {
1232
- key: string;
1330
+ static getDataTypeById({ id, }: {
1331
+ id: string;
1233
1332
  }): CancelablePromise<DataTypeResponseModel>;
1234
1333
  /**
1235
1334
  * @returns any Success
1236
1335
  * @throws ApiError
1237
1336
  */
1238
- static deleteDataTypeByKey({ key, }: {
1239
- key: string;
1337
+ static deleteDataTypeById({ id, }: {
1338
+ id: string;
1240
1339
  }): CancelablePromise<any>;
1241
1340
  /**
1242
1341
  * @returns any Success
1243
1342
  * @throws ApiError
1244
1343
  */
1245
- static putDataTypeByKey({ key, requestBody, }: {
1246
- key: string;
1344
+ static putDataTypeById({ id, requestBody, }: {
1345
+ id: string;
1247
1346
  requestBody?: UpdateDataTypeRequestModel;
1248
1347
  }): CancelablePromise<any>;
1249
1348
  /**
1250
1349
  * @returns string Created
1251
1350
  * @throws ApiError
1252
1351
  */
1253
- static postDataTypeByKeyCopy({ key, requestBody, }: {
1254
- key: string;
1352
+ static postDataTypeByIdCopy({ id, requestBody, }: {
1353
+ id: string;
1255
1354
  requestBody?: CopyDataTypeRequestModel;
1256
1355
  }): CancelablePromise<string>;
1257
1356
  /**
1258
1357
  * @returns any Success
1259
1358
  * @throws ApiError
1260
1359
  */
1261
- static postDataTypeByKeyMove({ key, requestBody, }: {
1262
- key: string;
1360
+ static postDataTypeByIdMove({ id, requestBody, }: {
1361
+ id: string;
1263
1362
  requestBody?: MoveDataTypeRequestModel;
1264
1363
  }): CancelablePromise<any>;
1265
1364
  /**
1266
1365
  * @returns any Success
1267
1366
  * @throws ApiError
1268
1367
  */
1269
- static getDataTypeByKeyReferences({ key, }: {
1270
- key: string;
1368
+ static getDataTypeByIdReferences({ id, }: {
1369
+ id: string;
1271
1370
  }): CancelablePromise<Array<DataTypeReferenceResponseModel>>;
1272
1371
  /**
1273
1372
  * @returns string Created
@@ -1280,30 +1379,30 @@ declare class DataTypeResource {
1280
1379
  * @returns any Success
1281
1380
  * @throws ApiError
1282
1381
  */
1283
- static getDataTypeFolderByKey({ key, }: {
1284
- key: string;
1382
+ static getDataTypeFolderById({ id, }: {
1383
+ id: string;
1285
1384
  }): CancelablePromise<FolderReponseModel>;
1286
1385
  /**
1287
1386
  * @returns any Success
1288
1387
  * @throws ApiError
1289
1388
  */
1290
- static deleteDataTypeFolderByKey({ key, }: {
1291
- key: string;
1389
+ static deleteDataTypeFolderById({ id, }: {
1390
+ id: string;
1292
1391
  }): CancelablePromise<any>;
1293
1392
  /**
1294
1393
  * @returns any Success
1295
1394
  * @throws ApiError
1296
1395
  */
1297
- static putDataTypeFolderByKey({ key, requestBody, }: {
1298
- key: string;
1396
+ static putDataTypeFolderById({ id, requestBody, }: {
1397
+ id: string;
1299
1398
  requestBody?: UpdateFolderReponseModel;
1300
1399
  }): CancelablePromise<any>;
1301
1400
  /**
1302
1401
  * @returns PagedFolderTreeItemResponseModel Success
1303
1402
  * @throws ApiError
1304
1403
  */
1305
- static getTreeDataTypeChildren({ parentKey, skip, take, foldersOnly, }: {
1306
- parentKey?: string;
1404
+ static getTreeDataTypeChildren({ parentId, skip, take, foldersOnly, }: {
1405
+ parentId?: string;
1307
1406
  skip?: number;
1308
1407
  take?: number;
1309
1408
  foldersOnly?: boolean;
@@ -1312,8 +1411,8 @@ declare class DataTypeResource {
1312
1411
  * @returns any Success
1313
1412
  * @throws ApiError
1314
1413
  */
1315
- static getTreeDataTypeItem({ key, }: {
1316
- key?: Array<string>;
1414
+ static getTreeDataTypeItem({ id, }: {
1415
+ id?: Array<string>;
1317
1416
  }): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
1318
1417
  /**
1319
1418
  * @returns PagedFolderTreeItemResponseModel Success
@@ -1346,38 +1445,38 @@ declare class DictionaryResource {
1346
1445
  * @returns any Success
1347
1446
  * @throws ApiError
1348
1447
  */
1349
- static getDictionaryByKey({ key, }: {
1350
- key: string;
1448
+ static getDictionaryById({ id, }: {
1449
+ id: string;
1351
1450
  }): CancelablePromise<DictionaryItemResponseModel>;
1352
1451
  /**
1353
1452
  * @returns any Success
1354
1453
  * @throws ApiError
1355
1454
  */
1356
- static deleteDictionaryByKey({ key, }: {
1357
- key: string;
1455
+ static deleteDictionaryById({ id, }: {
1456
+ id: string;
1358
1457
  }): CancelablePromise<any>;
1359
1458
  /**
1360
1459
  * @returns any Success
1361
1460
  * @throws ApiError
1362
1461
  */
1363
- static putDictionaryByKey({ key, requestBody, }: {
1364
- key: string;
1462
+ static putDictionaryById({ id, requestBody, }: {
1463
+ id: string;
1365
1464
  requestBody?: UpdateDictionaryItemRequestModel;
1366
1465
  }): CancelablePromise<any>;
1367
1466
  /**
1368
1467
  * @returns binary Success
1369
1468
  * @throws ApiError
1370
1469
  */
1371
- static getDictionaryByKeyExport({ key, includeChildren, }: {
1372
- key: string;
1470
+ static getDictionaryByIdExport({ id, includeChildren, }: {
1471
+ id: string;
1373
1472
  includeChildren?: boolean;
1374
1473
  }): CancelablePromise<Blob>;
1375
1474
  /**
1376
1475
  * @returns any Success
1377
1476
  * @throws ApiError
1378
1477
  */
1379
- static postDictionaryByKeyMove({ key, requestBody, }: {
1380
- key: string;
1478
+ static postDictionaryByIdMove({ id, requestBody, }: {
1479
+ id: string;
1381
1480
  requestBody?: MoveDictionaryRequestModel;
1382
1481
  }): CancelablePromise<any>;
1383
1482
  /**
@@ -1387,19 +1486,12 @@ declare class DictionaryResource {
1387
1486
  static postDictionaryImport({ requestBody, }: {
1388
1487
  requestBody?: ImportDictionaryRequestModel;
1389
1488
  }): CancelablePromise<string>;
1390
- /**
1391
- * @returns any Success
1392
- * @throws ApiError
1393
- */
1394
- static postDictionaryUpload({ requestBody, }: {
1395
- requestBody?: any;
1396
- }): CancelablePromise<UploadDictionaryResponseModel>;
1397
1489
  /**
1398
1490
  * @returns PagedEntityTreeItemResponseModel Success
1399
1491
  * @throws ApiError
1400
1492
  */
1401
- static getTreeDictionaryChildren({ parentKey, skip, take, }: {
1402
- parentKey?: string;
1493
+ static getTreeDictionaryChildren({ parentId, skip, take, }: {
1494
+ parentId?: string;
1403
1495
  skip?: number;
1404
1496
  take?: number;
1405
1497
  }): CancelablePromise<PagedEntityTreeItemResponseModel>;
@@ -1407,8 +1499,8 @@ declare class DictionaryResource {
1407
1499
  * @returns any Success
1408
1500
  * @throws ApiError
1409
1501
  */
1410
- static getTreeDictionaryItem({ key, }: {
1411
- key?: Array<string>;
1502
+ static getTreeDictionaryItem({ id, }: {
1503
+ id?: Array<string>;
1412
1504
  }): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
1413
1505
  /**
1414
1506
  * @returns PagedEntityTreeItemResponseModel Success
@@ -1432,45 +1524,60 @@ declare class DocumentResource {
1432
1524
  * @returns any Success
1433
1525
  * @throws ApiError
1434
1526
  */
1435
- static getDocumentByKey({ key, }: {
1436
- key: string;
1527
+ static getDocumentById({ id, }: {
1528
+ id: string;
1437
1529
  }): CancelablePromise<DocumentResponseModel>;
1438
1530
  /**
1439
1531
  * @returns any Success
1440
1532
  * @throws ApiError
1441
1533
  */
1442
- static deleteDocumentByKey({ key, }: {
1443
- key: string;
1534
+ static deleteDocumentById({ id, }: {
1535
+ id: string;
1444
1536
  }): CancelablePromise<any>;
1445
1537
  /**
1446
1538
  * @returns any Success
1447
1539
  * @throws ApiError
1448
1540
  */
1449
- static putDocumentByKey({ key, requestBody, }: {
1450
- key: string;
1541
+ static putDocumentById({ id, requestBody, }: {
1542
+ id: string;
1451
1543
  requestBody?: UpdateDocumentRequestModel;
1452
1544
  }): CancelablePromise<any>;
1453
1545
  /**
1454
1546
  * @returns any Success
1455
1547
  * @throws ApiError
1456
1548
  */
1457
- static getDocumentByKeyDomains({ key, }: {
1458
- key: string;
1549
+ static getDocumentByIdDomains({ id, }: {
1550
+ id: string;
1459
1551
  }): CancelablePromise<any>;
1460
1552
  /**
1461
1553
  * @returns any Success
1462
1554
  * @throws ApiError
1463
1555
  */
1464
- static putDocumentByKeyDomains({ key, requestBody, }: {
1465
- key: string;
1556
+ static putDocumentByIdDomains({ id, requestBody, }: {
1557
+ id: string;
1466
1558
  requestBody?: UpdateDomainsRequestModel;
1467
1559
  }): CancelablePromise<any>;
1560
+ /**
1561
+ * @returns any Success
1562
+ * @throws ApiError
1563
+ */
1564
+ static getDocumentByIdNotifications({ id, }: {
1565
+ id: string;
1566
+ }): CancelablePromise<Array<DocumentNotificationResponseModel>>;
1567
+ /**
1568
+ * @returns any Success
1569
+ * @throws ApiError
1570
+ */
1571
+ static putDocumentByIdNotifications({ id, requestBody, }: {
1572
+ id: string;
1573
+ requestBody?: UpdateDocumentNotificationsRequestModel;
1574
+ }): CancelablePromise<any>;
1468
1575
  /**
1469
1576
  * @returns PagedRecycleBinItemResponseModel Success
1470
1577
  * @throws ApiError
1471
1578
  */
1472
- static getRecycleBinDocumentChildren({ parentKey, skip, take, }: {
1473
- parentKey?: string;
1579
+ static getRecycleBinDocumentChildren({ parentId, skip, take, }: {
1580
+ parentId?: string;
1474
1581
  skip?: number;
1475
1582
  take?: number;
1476
1583
  }): CancelablePromise<PagedRecycleBinItemResponseModel>;
@@ -1486,30 +1593,30 @@ declare class DocumentResource {
1486
1593
  * @returns PagedDocumentTreeItemResponseModel Success
1487
1594
  * @throws ApiError
1488
1595
  */
1489
- static getTreeDocumentChildren({ parentKey, skip, take, dataTypeKey, culture, }: {
1490
- parentKey?: string;
1596
+ static getTreeDocumentChildren({ parentId, skip, take, dataTypeId, culture, }: {
1597
+ parentId?: string;
1491
1598
  skip?: number;
1492
1599
  take?: number;
1493
- dataTypeKey?: string;
1600
+ dataTypeId?: string;
1494
1601
  culture?: string;
1495
1602
  }): CancelablePromise<PagedDocumentTreeItemResponseModel>;
1496
1603
  /**
1497
1604
  * @returns any Success
1498
1605
  * @throws ApiError
1499
1606
  */
1500
- static getTreeDocumentItem({ key, dataTypeKey, culture, }: {
1501
- key?: Array<string>;
1502
- dataTypeKey?: string;
1607
+ static getTreeDocumentItem({ id, dataTypeId, culture, }: {
1608
+ id?: Array<string>;
1609
+ dataTypeId?: string;
1503
1610
  culture?: string;
1504
1611
  }): CancelablePromise<Array<DocumentTreeItemResponseModel>>;
1505
1612
  /**
1506
1613
  * @returns PagedDocumentTreeItemResponseModel Success
1507
1614
  * @throws ApiError
1508
1615
  */
1509
- static getTreeDocumentRoot({ skip, take, dataTypeKey, culture, }: {
1616
+ static getTreeDocumentRoot({ skip, take, dataTypeId, culture, }: {
1510
1617
  skip?: number;
1511
1618
  take?: number;
1512
- dataTypeKey?: string;
1619
+ dataTypeId?: string;
1513
1620
  culture?: string;
1514
1621
  }): CancelablePromise<PagedDocumentTreeItemResponseModel>;
1515
1622
  }
@@ -1519,8 +1626,8 @@ declare class DocumentBlueprintResource {
1519
1626
  * @returns any Success
1520
1627
  * @throws ApiError
1521
1628
  */
1522
- static getTreeDocumentBlueprintItem({ key, }: {
1523
- key?: Array<string>;
1629
+ static getTreeDocumentBlueprintItem({ id, }: {
1630
+ id?: Array<string>;
1524
1631
  }): CancelablePromise<Array<DocumentBlueprintTreeItemResponseModel>>;
1525
1632
  /**
1526
1633
  * @returns PagedDocumentBlueprintTreeItemResponseModel Success
@@ -1537,15 +1644,15 @@ declare class DocumentTypeResource {
1537
1644
  * @returns any Success
1538
1645
  * @throws ApiError
1539
1646
  */
1540
- static getDocumentTypeByKey({ key, }: {
1541
- key: string;
1647
+ static getDocumentTypeById({ id, }: {
1648
+ id: string;
1542
1649
  }): CancelablePromise<DocumentTypeResponseModel>;
1543
1650
  /**
1544
1651
  * @returns PagedDocumentTypeTreeItemResponseModel Success
1545
1652
  * @throws ApiError
1546
1653
  */
1547
- static getTreeDocumentTypeChildren({ parentKey, skip, take, foldersOnly, }: {
1548
- parentKey?: string;
1654
+ static getTreeDocumentTypeChildren({ parentId, skip, take, foldersOnly, }: {
1655
+ parentId?: string;
1549
1656
  skip?: number;
1550
1657
  take?: number;
1551
1658
  foldersOnly?: boolean;
@@ -1554,8 +1661,8 @@ declare class DocumentTypeResource {
1554
1661
  * @returns any Success
1555
1662
  * @throws ApiError
1556
1663
  */
1557
- static getTreeDocumentTypeItem({ key, }: {
1558
- key?: Array<string>;
1664
+ static getTreeDocumentTypeItem({ id, }: {
1665
+ id?: Array<string>;
1559
1666
  }): CancelablePromise<Array<DocumentTypeTreeItemResponseModel>>;
1560
1667
  /**
1561
1668
  * @returns PagedDocumentTypeTreeItemResponseModel Success
@@ -1767,7 +1874,7 @@ declare class LogViewerResource {
1767
1874
  * @returns any Success
1768
1875
  * @throws ApiError
1769
1876
  */
1770
- static deleteLogViewerSavedSearchByName({ name, }: {
1877
+ static deleteLogViewerSavedSearchByName({ name }: {
1771
1878
  name: string;
1772
1879
  }): CancelablePromise<any>;
1773
1880
  /**
@@ -1792,30 +1899,30 @@ declare class MediaResource {
1792
1899
  * @returns any Success
1793
1900
  * @throws ApiError
1794
1901
  */
1795
- static getMediaByKey({ key, }: {
1796
- key: string;
1902
+ static getMediaById({ id, }: {
1903
+ id: string;
1797
1904
  }): CancelablePromise<DocumentResponseModel>;
1798
1905
  /**
1799
1906
  * @returns any Success
1800
1907
  * @throws ApiError
1801
1908
  */
1802
- static deleteMediaByKey({ key, }: {
1803
- key: string;
1909
+ static deleteMediaById({ id, }: {
1910
+ id: string;
1804
1911
  }): CancelablePromise<any>;
1805
1912
  /**
1806
1913
  * @returns any Success
1807
1914
  * @throws ApiError
1808
1915
  */
1809
- static putMediaByKey({ key, requestBody, }: {
1810
- key: string;
1916
+ static putMediaById({ id, requestBody, }: {
1917
+ id: string;
1811
1918
  requestBody?: UpdateMediaRequestModel;
1812
1919
  }): CancelablePromise<any>;
1813
1920
  /**
1814
1921
  * @returns PagedRecycleBinItemResponseModel Success
1815
1922
  * @throws ApiError
1816
1923
  */
1817
- static getRecycleBinMediaChildren({ parentKey, skip, take, }: {
1818
- parentKey?: string;
1924
+ static getRecycleBinMediaChildren({ parentId, skip, take, }: {
1925
+ parentId?: string;
1819
1926
  skip?: number;
1820
1927
  take?: number;
1821
1928
  }): CancelablePromise<PagedRecycleBinItemResponseModel>;
@@ -1831,28 +1938,28 @@ declare class MediaResource {
1831
1938
  * @returns PagedContentTreeItemResponseModel Success
1832
1939
  * @throws ApiError
1833
1940
  */
1834
- static getTreeMediaChildren({ parentKey, skip, take, dataTypeKey, }: {
1835
- parentKey?: string;
1941
+ static getTreeMediaChildren({ parentId, skip, take, dataTypeId, }: {
1942
+ parentId?: string;
1836
1943
  skip?: number;
1837
1944
  take?: number;
1838
- dataTypeKey?: string;
1945
+ dataTypeId?: string;
1839
1946
  }): CancelablePromise<PagedContentTreeItemResponseModel>;
1840
1947
  /**
1841
1948
  * @returns any Success
1842
1949
  * @throws ApiError
1843
1950
  */
1844
- static getTreeMediaItem({ key, dataTypeKey, }: {
1845
- key?: Array<string>;
1846
- dataTypeKey?: string;
1951
+ static getTreeMediaItem({ id, dataTypeId, }: {
1952
+ id?: Array<string>;
1953
+ dataTypeId?: string;
1847
1954
  }): CancelablePromise<Array<(ContentTreeItemResponseModel | DocumentTreeItemResponseModel)>>;
1848
1955
  /**
1849
1956
  * @returns PagedContentTreeItemResponseModel Success
1850
1957
  * @throws ApiError
1851
1958
  */
1852
- static getTreeMediaRoot({ skip, take, dataTypeKey, }: {
1959
+ static getTreeMediaRoot({ skip, take, dataTypeId, }: {
1853
1960
  skip?: number;
1854
1961
  take?: number;
1855
- dataTypeKey?: string;
1962
+ dataTypeId?: string;
1856
1963
  }): CancelablePromise<PagedContentTreeItemResponseModel>;
1857
1964
  }
1858
1965
 
@@ -1861,15 +1968,15 @@ declare class MediaTypeResource {
1861
1968
  * @returns any Success
1862
1969
  * @throws ApiError
1863
1970
  */
1864
- static getMediaTypeByKey({ key, }: {
1865
- key: string;
1971
+ static getMediaTypeById({ id, }: {
1972
+ id: string;
1866
1973
  }): CancelablePromise<MediaTypeResponseModel>;
1867
1974
  /**
1868
1975
  * @returns PagedFolderTreeItemResponseModel Success
1869
1976
  * @throws ApiError
1870
1977
  */
1871
- static getTreeMediaTypeChildren({ parentKey, skip, take, foldersOnly, }: {
1872
- parentKey?: string;
1978
+ static getTreeMediaTypeChildren({ parentId, skip, take, foldersOnly, }: {
1979
+ parentId?: string;
1873
1980
  skip?: number;
1874
1981
  take?: number;
1875
1982
  foldersOnly?: boolean;
@@ -1878,8 +1985,8 @@ declare class MediaTypeResource {
1878
1985
  * @returns any Success
1879
1986
  * @throws ApiError
1880
1987
  */
1881
- static getTreeMediaTypeItem({ key, }: {
1882
- key?: Array<string>;
1988
+ static getTreeMediaTypeItem({ id, }: {
1989
+ id?: Array<string>;
1883
1990
  }): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
1884
1991
  /**
1885
1992
  * @returns PagedFolderTreeItemResponseModel Success
@@ -1897,8 +2004,8 @@ declare class MemberGroupResource {
1897
2004
  * @returns any Success
1898
2005
  * @throws ApiError
1899
2006
  */
1900
- static getTreeMemberGroupItem({ key, }: {
1901
- key?: Array<string>;
2007
+ static getTreeMemberGroupItem({ id, }: {
2008
+ id?: Array<string>;
1902
2009
  }): CancelablePromise<Array<(EntityTreeItemResponseModel | ContentTreeItemResponseModel | DocumentBlueprintTreeItemResponseModel | DocumentTreeItemResponseModel | DocumentTypeTreeItemResponseModel | FolderTreeItemResponseModel)>>;
1903
2010
  /**
1904
2011
  * @returns PagedEntityTreeItemResponseModel Success
@@ -1915,8 +2022,8 @@ declare class MemberTypeResource {
1915
2022
  * @returns any Success
1916
2023
  * @throws ApiError
1917
2024
  */
1918
- static getTreeMemberTypeItem({ key, }: {
1919
- key?: Array<string>;
2025
+ static getTreeMemberTypeItem({ id, }: {
2026
+ id?: Array<string>;
1920
2027
  }): CancelablePromise<Array<(EntityTreeItemResponseModel | ContentTreeItemResponseModel | DocumentBlueprintTreeItemResponseModel | DocumentTreeItemResponseModel | DocumentTypeTreeItemResponseModel | FolderTreeItemResponseModel)>>;
1921
2028
  /**
1922
2029
  * @returns PagedEntityTreeItemResponseModel Success
@@ -1984,30 +2091,30 @@ declare class PackageResource {
1984
2091
  * @returns any Success
1985
2092
  * @throws ApiError
1986
2093
  */
1987
- static getPackageCreatedByKey({ key, }: {
1988
- key: string;
2094
+ static getPackageCreatedById({ id, }: {
2095
+ id: string;
1989
2096
  }): CancelablePromise<PackageDefinitionResponseModel>;
1990
2097
  /**
1991
2098
  * @returns any Success
1992
2099
  * @throws ApiError
1993
2100
  */
1994
- static deletePackageCreatedByKey({ key, }: {
1995
- key: string;
2101
+ static deletePackageCreatedById({ id, }: {
2102
+ id: string;
1996
2103
  }): CancelablePromise<any>;
1997
2104
  /**
1998
2105
  * @returns any Success
1999
2106
  * @throws ApiError
2000
2107
  */
2001
- static putPackageCreatedByKey({ key, requestBody, }: {
2002
- key: string;
2108
+ static putPackageCreatedById({ id, requestBody, }: {
2109
+ id: string;
2003
2110
  requestBody?: UpdatePackageRequestModel;
2004
2111
  }): CancelablePromise<any>;
2005
2112
  /**
2006
2113
  * @returns binary Success
2007
2114
  * @throws ApiError
2008
2115
  */
2009
- static getPackageCreatedByKeyDownload({ key, }: {
2010
- key: string;
2116
+ static getPackageCreatedByIdDownload({ id, }: {
2117
+ id: string;
2011
2118
  }): CancelablePromise<Blob>;
2012
2119
  /**
2013
2120
  * @returns any Success
@@ -2103,8 +2210,8 @@ declare class RedirectManagementResource {
2103
2210
  * @returns PagedRedirectUrlResponseModel Success
2104
2211
  * @throws ApiError
2105
2212
  */
2106
- static getRedirectManagementByKey({ key, skip, take, }: {
2107
- key: string;
2213
+ static getRedirectManagementById({ id, skip, take, }: {
2214
+ id: string;
2108
2215
  skip?: number;
2109
2216
  take?: number;
2110
2217
  }): CancelablePromise<PagedRedirectUrlResponseModel>;
@@ -2112,8 +2219,8 @@ declare class RedirectManagementResource {
2112
2219
  * @returns any Success
2113
2220
  * @throws ApiError
2114
2221
  */
2115
- static deleteRedirectManagementByKey({ key, }: {
2116
- key: string;
2222
+ static deleteRedirectManagementById({ id, }: {
2223
+ id: string;
2117
2224
  }): CancelablePromise<any>;
2118
2225
  /**
2119
2226
  * @returns any Success
@@ -2151,8 +2258,8 @@ declare class RelationResource {
2151
2258
  * @returns PagedRelationResponseModel Success
2152
2259
  * @throws ApiError
2153
2260
  */
2154
- static getRelationTypeByKey({ key, skip, take, }: {
2155
- key: string;
2261
+ static getRelationTypeById({ id, skip, take, }: {
2262
+ id: string;
2156
2263
  skip?: number;
2157
2264
  take?: number;
2158
2265
  }): CancelablePromise<PagedRelationResponseModel>;
@@ -2170,30 +2277,30 @@ declare class RelationTypeResource {
2170
2277
  * @returns any Success
2171
2278
  * @throws ApiError
2172
2279
  */
2173
- static getRelationTypeByKey({ key, }: {
2174
- key: string;
2280
+ static getRelationTypeById({ id, }: {
2281
+ id: string;
2175
2282
  }): CancelablePromise<RelationTypeResponseModel>;
2176
2283
  /**
2177
2284
  * @returns any Success
2178
2285
  * @throws ApiError
2179
2286
  */
2180
- static deleteRelationTypeByKey({ key, }: {
2181
- key: string;
2287
+ static deleteRelationTypeById({ id, }: {
2288
+ id: string;
2182
2289
  }): CancelablePromise<any>;
2183
2290
  /**
2184
2291
  * @returns any Success
2185
2292
  * @throws ApiError
2186
2293
  */
2187
- static putRelationTypeByKey({ key, requestBody, }: {
2188
- key: string;
2294
+ static putRelationTypeById({ id, requestBody, }: {
2295
+ id: string;
2189
2296
  requestBody?: UpdateRelationTypeRequestModel;
2190
2297
  }): CancelablePromise<RelationTypeResponseModel>;
2191
2298
  /**
2192
2299
  * @returns any Success
2193
2300
  * @throws ApiError
2194
2301
  */
2195
- static getTreeRelationTypeItem({ key, }: {
2196
- key?: Array<string>;
2302
+ static getTreeRelationTypeItem({ id, }: {
2303
+ id?: Array<string>;
2197
2304
  }): CancelablePromise<Array<(FolderTreeItemResponseModel | DocumentTypeTreeItemResponseModel)>>;
2198
2305
  /**
2199
2306
  * @returns PagedEntityTreeItemResponseModel Success
@@ -2368,22 +2475,22 @@ declare class TemplateResource {
2368
2475
  * @returns any Success
2369
2476
  * @throws ApiError
2370
2477
  */
2371
- static getTemplateByKey({ key, }: {
2372
- key: string;
2478
+ static getTemplateById({ id, }: {
2479
+ id: string;
2373
2480
  }): CancelablePromise<TemplateResponseModel>;
2374
2481
  /**
2375
2482
  * @returns any Success
2376
2483
  * @throws ApiError
2377
2484
  */
2378
- static deleteTemplateByKey({ key, }: {
2379
- key: string;
2485
+ static deleteTemplateById({ id, }: {
2486
+ id: string;
2380
2487
  }): CancelablePromise<any>;
2381
2488
  /**
2382
2489
  * @returns any Success
2383
2490
  * @throws ApiError
2384
2491
  */
2385
- static putTemplateByKey({ key, requestBody, }: {
2386
- key: string;
2492
+ static putTemplateById({ id, requestBody, }: {
2493
+ id: string;
2387
2494
  requestBody?: UpdateTemplateRequestModel;
2388
2495
  }): CancelablePromise<any>;
2389
2496
  /**
@@ -2407,8 +2514,8 @@ declare class TemplateResource {
2407
2514
  * @returns PagedEntityTreeItemResponseModel Success
2408
2515
  * @throws ApiError
2409
2516
  */
2410
- static getTreeTemplateChildren({ parentKey, skip, take, }: {
2411
- parentKey?: string;
2517
+ static getTreeTemplateChildren({ parentId, skip, take, }: {
2518
+ parentId?: string;
2412
2519
  skip?: number;
2413
2520
  take?: number;
2414
2521
  }): CancelablePromise<PagedEntityTreeItemResponseModel>;
@@ -2416,8 +2523,8 @@ declare class TemplateResource {
2416
2523
  * @returns any Success
2417
2524
  * @throws ApiError
2418
2525
  */
2419
- static getTreeTemplateItem({ key, }: {
2420
- key?: Array<string>;
2526
+ static getTreeTemplateItem({ id, }: {
2527
+ id?: Array<string>;
2421
2528
  }): CancelablePromise<Array<(EntityTreeItemResponseModel | ContentTreeItemResponseModel | DocumentBlueprintTreeItemResponseModel | DocumentTreeItemResponseModel | DocumentTypeTreeItemResponseModel | FolderTreeItemResponseModel)>>;
2422
2529
  /**
2423
2530
  * @returns PagedEntityTreeItemResponseModel Success
@@ -2429,13 +2536,40 @@ declare class TemplateResource {
2429
2536
  }): CancelablePromise<PagedEntityTreeItemResponseModel>;
2430
2537
  }
2431
2538
 
2539
+ declare class TemporaryFileResource {
2540
+ /**
2541
+ * @returns string Created
2542
+ * @throws ApiError
2543
+ */
2544
+ static postTemporaryfile({ formData, }: {
2545
+ formData?: {
2546
+ Id?: string;
2547
+ File?: Blob;
2548
+ };
2549
+ }): CancelablePromise<string>;
2550
+ /**
2551
+ * @returns any Success
2552
+ * @throws ApiError
2553
+ */
2554
+ static getTemporaryfileById({ id, }: {
2555
+ id: string;
2556
+ }): CancelablePromise<TemporaryFileResponseModel>;
2557
+ /**
2558
+ * @returns any Success
2559
+ * @throws ApiError
2560
+ */
2561
+ static deleteTemporaryfileById({ id, }: {
2562
+ id: string;
2563
+ }): CancelablePromise<any>;
2564
+ }
2565
+
2432
2566
  declare class TrackedReferenceResource {
2433
2567
  /**
2434
2568
  * @returns PagedRelationItemResponseModel Success
2435
2569
  * @throws ApiError
2436
2570
  */
2437
- static getTrackedReferenceByKey({ key, skip, take, filterMustBeIsDependency, }: {
2438
- key: string;
2571
+ static getTrackedReferenceById({ id, skip, take, filterMustBeIsDependency, }: {
2572
+ id: string;
2439
2573
  skip?: number;
2440
2574
  take?: number;
2441
2575
  filterMustBeIsDependency?: boolean;
@@ -2444,8 +2578,8 @@ declare class TrackedReferenceResource {
2444
2578
  * @returns PagedRelationItemResponseModel Success
2445
2579
  * @throws ApiError
2446
2580
  */
2447
- static getTrackedReferenceDescendantsByParentKey({ parentKey, skip, take, filterMustBeIsDependency, }: {
2448
- parentKey: string;
2581
+ static getTrackedReferenceDescendantsByParentId({ parentId, skip, take, filterMustBeIsDependency, }: {
2582
+ parentId: string;
2449
2583
  skip?: number;
2450
2584
  take?: number;
2451
2585
  filterMustBeIsDependency?: boolean;
@@ -2454,8 +2588,8 @@ declare class TrackedReferenceResource {
2454
2588
  * @returns PagedRelationItemResponseModel Success
2455
2589
  * @throws ApiError
2456
2590
  */
2457
- static getTrackedReferenceItem({ key, skip, take, filterMustBeIsDependency, }: {
2458
- key?: Array<string>;
2591
+ static getTrackedReferenceItem({ id, skip, take, filterMustBeIsDependency, }: {
2592
+ id?: Array<string>;
2459
2593
  skip?: number;
2460
2594
  take?: number;
2461
2595
  filterMustBeIsDependency?: boolean;
@@ -2495,24 +2629,135 @@ declare class UserGroupsResource {
2495
2629
  * @returns any Success
2496
2630
  * @throws ApiError
2497
2631
  */
2498
- static getUserGroupsByKey({ key, }: {
2499
- key: string;
2632
+ static getUserGroupsById({ id, }: {
2633
+ id: string;
2500
2634
  }): CancelablePromise<UserGroupPresentationModel>;
2501
2635
  /**
2502
2636
  * @returns any Success
2503
2637
  * @throws ApiError
2504
2638
  */
2505
- static deleteUserGroupsByKey({ key, }: {
2506
- key: string;
2639
+ static deleteUserGroupsById({ id, }: {
2640
+ id: string;
2507
2641
  }): CancelablePromise<any>;
2508
2642
  /**
2509
2643
  * @returns any Success
2510
2644
  * @throws ApiError
2511
2645
  */
2512
- static putUserGroupsByKey({ key, requestBody, }: {
2513
- key: string;
2646
+ static putUserGroupsById({ id, requestBody, }: {
2647
+ id: string;
2514
2648
  requestBody?: UpdateUserGroupRequestModel;
2515
2649
  }): CancelablePromise<any>;
2516
2650
  }
2517
2651
 
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 };
2652
+ declare class UsersResource {
2653
+ /**
2654
+ * @returns any Success
2655
+ * @throws ApiError
2656
+ */
2657
+ static postUsers({ requestBody, }: {
2658
+ requestBody?: (CreateUserRequestModel | InviteUserRequestModel);
2659
+ }): CancelablePromise<CreateUserResponseModel>;
2660
+ /**
2661
+ * @returns PagedUserResponseModel Success
2662
+ * @throws ApiError
2663
+ */
2664
+ static getUsers({ skip, take, }: {
2665
+ skip?: number;
2666
+ take?: number;
2667
+ }): CancelablePromise<PagedUserResponseModel>;
2668
+ /**
2669
+ * @returns any Success
2670
+ * @throws ApiError
2671
+ */
2672
+ static getUsersById({ id, }: {
2673
+ id: string;
2674
+ }): CancelablePromise<UserResponseModel>;
2675
+ /**
2676
+ * @returns any Success
2677
+ * @throws ApiError
2678
+ */
2679
+ static deleteUsersById({ id, }: {
2680
+ id: string;
2681
+ }): CancelablePromise<any>;
2682
+ /**
2683
+ * @returns any Success
2684
+ * @throws ApiError
2685
+ */
2686
+ static putUsersById({ id, requestBody, }: {
2687
+ id: string;
2688
+ requestBody?: UpdateUserRequestModel;
2689
+ }): CancelablePromise<any>;
2690
+ /**
2691
+ * @returns any Success
2692
+ * @throws ApiError
2693
+ */
2694
+ static deleteUsersAvatarById({ id, }: {
2695
+ id: string;
2696
+ }): CancelablePromise<any>;
2697
+ /**
2698
+ * @returns any Success
2699
+ * @throws ApiError
2700
+ */
2701
+ static postUsersAvatarById({ id, requestBody, }: {
2702
+ id: string;
2703
+ requestBody?: SetAvatarRequestModel;
2704
+ }): CancelablePromise<any>;
2705
+ /**
2706
+ * @returns any Success
2707
+ * @throws ApiError
2708
+ */
2709
+ static postUsersChangePasswordById({ id, requestBody, }: {
2710
+ id: string;
2711
+ requestBody?: ChangePasswordUserRequestModel;
2712
+ }): CancelablePromise<any>;
2713
+ /**
2714
+ * @returns any Success
2715
+ * @throws ApiError
2716
+ */
2717
+ static postUsersDisable({ requestBody, }: {
2718
+ requestBody?: DisableUserRequestModel;
2719
+ }): CancelablePromise<any>;
2720
+ /**
2721
+ * @returns any Success
2722
+ * @throws ApiError
2723
+ */
2724
+ static postUsersEnable({ requestBody, }: {
2725
+ requestBody?: EnableUserRequestModel;
2726
+ }): CancelablePromise<any>;
2727
+ /**
2728
+ * @returns any Success
2729
+ * @throws ApiError
2730
+ */
2731
+ static getUsersFilter({ skip, take, orderBy, orderDirection, userGroupIds, userStates, filter, }: {
2732
+ skip?: number;
2733
+ take?: number;
2734
+ orderBy?: UserOrderModel;
2735
+ orderDirection?: DirectionModel;
2736
+ userGroupIds?: Array<string>;
2737
+ userStates?: Array<UserStateModel>;
2738
+ filter?: string;
2739
+ }): CancelablePromise<any>;
2740
+ /**
2741
+ * @returns any Success
2742
+ * @throws ApiError
2743
+ */
2744
+ static postUsersInvite({ requestBody, }: {
2745
+ requestBody?: InviteUserRequestModel;
2746
+ }): CancelablePromise<any>;
2747
+ /**
2748
+ * @returns any Success
2749
+ * @throws ApiError
2750
+ */
2751
+ static postUsersSetUserGroups({ requestBody, }: {
2752
+ requestBody?: UpdateUserGroupsOnUserRequestModel;
2753
+ }): CancelablePromise<any>;
2754
+ /**
2755
+ * @returns any Success
2756
+ * @throws ApiError
2757
+ */
2758
+ static postUsersUnlock({ requestBody, }: {
2759
+ requestBody?: UnlockUsersRequestModel;
2760
+ }): CancelablePromise<any>;
2761
+ }
2762
+
2763
+ 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, DataTypeModelBaseModel, DataTypePropertyPresentationModel, DataTypePropertyReferenceModel, DataTypeReferenceResponseModel, DataTypeResource, DataTypeResponseModel, DatabaseInstallResponseModel, DatabaseSettingsPresentationModel, DictionaryItemModelBaseModel, DictionaryItemResponseModel, DictionaryItemTranslationModel, DictionaryOverviewResponseModel, DictionaryResource, DirectionModel, DisableUserRequestModel, DocumentBlueprintResource, DocumentBlueprintTreeItemResponseModel, DocumentNotificationResponseModel, DocumentResource, DocumentResponseModel, DocumentTreeItemResponseModel, DocumentTypePropertyTypeContainerResponseModel, DocumentTypePropertyTypeResponseModel, DocumentTypeResource, DocumentTypeResponseModel, DocumentTypeTreeItemResponseModel, DocumentValueModel, DocumentVariantRequestModel, DocumentVariantResponseModel, DomainPresentationModel, DomainsPresentationModelBaseModel, DomainsResponseModel, EnableUserRequestModel, EntityTreeItemResponseModel, FieldPresentationModel, FileSystemTreeItemPresentationModel, FolderModelBaseModel, FolderReponseModel, FolderTreeItemResponseModel, HealthCheckActionRequestModel, HealthCheckGroupPresentationBaseModel, HealthCheckGroupPresentationModel, HealthCheckGroupResponseModel, HealthCheckGroupWithResultResponseModel, HealthCheckModel, HealthCheckModelBaseModel, HealthCheckResource, HealthCheckResultResponseModel, HealthCheckWithResultPresentationModel, HealthStatusModel, HelpPageResponseModel, HelpResource, ImportDictionaryRequestModel, IndexResponseModel, IndexerResource, InstallResource, InstallSettingsResponseModel, InstallVResponseModel, InviteUserRequestModel, 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, PagedUserResponseModel, 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, SetAvatarRequestModel, StaticFileResource, StatusResultTypeModel, StylesheetResource, TelemetryLevelModel, TelemetryRepresentationBaseModel, TelemetryRequestModel, TelemetryResource, TelemetryResponseModel, 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, ValueModelBaseModel, VariantModelBaseModel, VariantResponseModelBaseModel, VersionResponseModel };