@umbraco-cms/backoffice 1.0.0-next.d924405b → 1.0.0-next.e3cf00d3
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 +1023 -282
- package/collection.d.ts +32 -0
- package/content-type.d.ts +127 -0
- package/context-api.d.ts +76 -6
- package/controller.d.ts +7 -6
- package/custom-elements.json +1868 -1258
- package/element.d.ts +6 -6
- package/entity-action.d.ts +29 -19
- package/extensions-api.d.ts +14 -13
- package/extensions-registry.d.ts +294 -92
- package/id.d.ts +6 -0
- package/modal.d.ts +303 -17
- package/models.d.ts +31 -9
- package/notification.d.ts +1 -1
- package/observable-api.d.ts +90 -49
- package/package.json +1 -1
- package/picker-input.d.ts +24 -0
- package/repository.d.ts +114 -44
- package/resources.d.ts +25 -16
- package/router.d.ts +368 -0
- package/section.d.ts +31 -0
- package/sorter.d.ts +103 -0
- package/store.d.ts +51 -56
- package/umbraco-package-schema.json +37755 -0
- package/utils.d.ts +1 -9
- package/vscode-html-custom-data.json +609 -431
- package/workspace.d.ts +45 -20
- package/property-editor.d.ts +0 -8
package/backend-api.d.ts
CHANGED
|
@@ -40,15 +40,9 @@ interface OnCancel {
|
|
|
40
40
|
(cancelHandler: () => void): void;
|
|
41
41
|
}
|
|
42
42
|
declare class CancelablePromise<T> implements Promise<T> {
|
|
43
|
-
|
|
44
|
-
private _isResolved;
|
|
45
|
-
private _isRejected;
|
|
46
|
-
private _isCancelled;
|
|
47
|
-
private readonly _cancelHandlers;
|
|
48
|
-
private readonly _promise;
|
|
49
|
-
private _resolve?;
|
|
50
|
-
private _reject?;
|
|
43
|
+
#private;
|
|
51
44
|
constructor(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void, onCancel: OnCancel) => void);
|
|
45
|
+
get [Symbol.toStringTag](): string;
|
|
52
46
|
then<TResult1 = T, TResult2 = never>(onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null): Promise<TResult1 | TResult2>;
|
|
53
47
|
catch<TResult = never>(onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null): Promise<T | TResult>;
|
|
54
48
|
finally(onFinally?: (() => void) | null): Promise<T>;
|
|
@@ -99,8 +93,8 @@ declare enum AuditTypeModel {
|
|
|
99
93
|
}
|
|
100
94
|
|
|
101
95
|
type AuditLogBaseModel = {
|
|
102
|
-
|
|
103
|
-
|
|
96
|
+
userId?: string;
|
|
97
|
+
entityId?: string | null;
|
|
104
98
|
timestamp?: string;
|
|
105
99
|
logType?: AuditTypeModel;
|
|
106
100
|
entityType?: string | null;
|
|
@@ -115,6 +109,11 @@ type AuditLogWithUsernameResponseModel = (AuditLogBaseModel & {
|
|
|
115
109
|
userAvatars?: Array<string> | null;
|
|
116
110
|
});
|
|
117
111
|
|
|
112
|
+
type ChangePasswordUserRequestModel = {
|
|
113
|
+
newPassword?: string;
|
|
114
|
+
oldPassword?: string | null;
|
|
115
|
+
};
|
|
116
|
+
|
|
118
117
|
declare enum TelemetryLevelModel {
|
|
119
118
|
MINIMAL = "Minimal",
|
|
120
119
|
BASIC = "Basic",
|
|
@@ -163,8 +162,8 @@ type DocumentVariantResponseModel = (VariantResponseModelBaseModel & {
|
|
|
163
162
|
type ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel = {
|
|
164
163
|
values?: Array<DocumentValueModel>;
|
|
165
164
|
variants?: Array<DocumentVariantResponseModel>;
|
|
166
|
-
|
|
167
|
-
|
|
165
|
+
id?: string;
|
|
166
|
+
contentTypeId?: string;
|
|
168
167
|
};
|
|
169
168
|
|
|
170
169
|
type TreeItemPresentationModel = {
|
|
@@ -176,9 +175,9 @@ type TreeItemPresentationModel = {
|
|
|
176
175
|
|
|
177
176
|
type EntityTreeItemResponseModel = (TreeItemPresentationModel & {
|
|
178
177
|
$type: string;
|
|
179
|
-
|
|
178
|
+
id?: string;
|
|
180
179
|
isContainer?: boolean;
|
|
181
|
-
|
|
180
|
+
parentId?: string | null;
|
|
182
181
|
});
|
|
183
182
|
|
|
184
183
|
type ContentTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
|
@@ -199,18 +198,18 @@ declare enum ContentTypeCompositionTypeModel {
|
|
|
199
198
|
}
|
|
200
199
|
|
|
201
200
|
type ContentTypeCompositionModel = {
|
|
202
|
-
|
|
201
|
+
id?: string;
|
|
203
202
|
compositionType?: ContentTypeCompositionTypeModel;
|
|
204
203
|
};
|
|
205
204
|
|
|
206
205
|
type ContentTypeSortModel = {
|
|
207
|
-
|
|
206
|
+
id?: string;
|
|
208
207
|
sortOrder?: number;
|
|
209
208
|
};
|
|
210
209
|
|
|
211
210
|
type PropertyTypeContainerResponseModelBaseModel = {
|
|
212
|
-
|
|
213
|
-
|
|
211
|
+
id?: string;
|
|
212
|
+
parentId?: string | null;
|
|
214
213
|
name?: string | null;
|
|
215
214
|
type?: string;
|
|
216
215
|
sortOrder?: number;
|
|
@@ -230,12 +229,12 @@ type PropertyTypeValidationModel = {
|
|
|
230
229
|
};
|
|
231
230
|
|
|
232
231
|
type PropertyTypeResponseModelBaseModel = {
|
|
233
|
-
|
|
234
|
-
|
|
232
|
+
id?: string;
|
|
233
|
+
containerId?: string | null;
|
|
235
234
|
alias?: string;
|
|
236
235
|
name?: string;
|
|
237
236
|
description?: string | null;
|
|
238
|
-
|
|
237
|
+
dataTypeId?: string;
|
|
239
238
|
variesByCulture?: boolean;
|
|
240
239
|
variesBySegment?: boolean;
|
|
241
240
|
validation?: PropertyTypeValidationModel;
|
|
@@ -245,7 +244,7 @@ type PropertyTypeResponseModelBaseModel = {
|
|
|
245
244
|
type DocumentTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;
|
|
246
245
|
|
|
247
246
|
type ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel = {
|
|
248
|
-
|
|
247
|
+
id?: string;
|
|
249
248
|
alias?: string;
|
|
250
249
|
name?: string;
|
|
251
250
|
description?: string | null;
|
|
@@ -265,7 +264,7 @@ type MediaTypePropertyTypeContainerResponseModel = PropertyTypeContainerResponse
|
|
|
265
264
|
type MediaTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;
|
|
266
265
|
|
|
267
266
|
type ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel = {
|
|
268
|
-
|
|
267
|
+
id?: string;
|
|
269
268
|
alias?: string;
|
|
270
269
|
name?: string;
|
|
271
270
|
description?: string | null;
|
|
@@ -286,7 +285,13 @@ type ContentUrlInfoModel = {
|
|
|
286
285
|
};
|
|
287
286
|
|
|
288
287
|
type CopyDataTypeRequestModel = {
|
|
289
|
-
|
|
288
|
+
targetId?: string | null;
|
|
289
|
+
};
|
|
290
|
+
|
|
291
|
+
type CopyDocumentRequestModel = {
|
|
292
|
+
targetId?: string | null;
|
|
293
|
+
relateToOriginal?: boolean;
|
|
294
|
+
includeDescendants?: boolean;
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
356
|
+
parentId?: string | null;
|
|
351
357
|
});
|
|
352
358
|
|
|
353
359
|
type CreateDocumentRequestModel = (CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
|
|
354
|
-
|
|
355
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
392
|
+
mediaIds?: Array<string>;
|
|
386
393
|
mediaLoadChildNodes?: boolean;
|
|
387
394
|
documentTypes?: Array<string>;
|
|
388
395
|
mediaTypes?: Array<string>;
|
|
@@ -397,6 +404,23 @@ type PackageModelBaseModel = {
|
|
|
397
404
|
|
|
398
405
|
type CreatePackageRequestModel = PackageModelBaseModel;
|
|
399
406
|
|
|
407
|
+
type TextFileViewModelBaseModel = {
|
|
408
|
+
name?: string;
|
|
409
|
+
content?: string;
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
type CreateTextFileViewModelBaseModel = (TextFileViewModelBaseModel & {
|
|
413
|
+
parentPath?: string | null;
|
|
414
|
+
});
|
|
415
|
+
|
|
416
|
+
type CreatePartialViewRequestModel = CreateTextFileViewModelBaseModel;
|
|
417
|
+
|
|
418
|
+
type PathFolderModelBaseModel = FolderModelBaseModel;
|
|
419
|
+
|
|
420
|
+
type CreatePathFolderRequestModel = (PathFolderModelBaseModel & {
|
|
421
|
+
parentPath?: string | null;
|
|
422
|
+
});
|
|
423
|
+
|
|
400
424
|
type RelationTypeBaseModel = {
|
|
401
425
|
name?: string;
|
|
402
426
|
isBidirectional?: boolean;
|
|
@@ -406,9 +430,13 @@ type RelationTypeBaseModel = {
|
|
|
406
430
|
};
|
|
407
431
|
|
|
408
432
|
type CreateRelationTypeRequestModel = (RelationTypeBaseModel & {
|
|
409
|
-
|
|
433
|
+
id?: string | null;
|
|
410
434
|
});
|
|
411
435
|
|
|
436
|
+
type CreateScriptRequestModel = CreateTextFileViewModelBaseModel;
|
|
437
|
+
|
|
438
|
+
type CreateStylesheetRequestModel = CreateTextFileViewModelBaseModel;
|
|
439
|
+
|
|
412
440
|
type TemplateModelBaseModel = {
|
|
413
441
|
name?: string;
|
|
414
442
|
alias?: string;
|
|
@@ -417,6 +445,20 @@ type TemplateModelBaseModel = {
|
|
|
417
445
|
|
|
418
446
|
type CreateTemplateRequestModel = TemplateModelBaseModel;
|
|
419
447
|
|
|
448
|
+
type UserPresentationBaseModel = {
|
|
449
|
+
email?: string;
|
|
450
|
+
userName?: string;
|
|
451
|
+
name?: string;
|
|
452
|
+
userGroupIds?: Array<string>;
|
|
453
|
+
};
|
|
454
|
+
|
|
455
|
+
type CreateUserRequestModel = UserPresentationBaseModel;
|
|
456
|
+
|
|
457
|
+
type CreateUserResponseModel = {
|
|
458
|
+
userId?: string;
|
|
459
|
+
initialPassword?: string | null;
|
|
460
|
+
};
|
|
461
|
+
|
|
420
462
|
type CultureReponseModel = {
|
|
421
463
|
name?: string;
|
|
422
464
|
englishName?: string;
|
|
@@ -447,32 +489,43 @@ type DatabaseSettingsPresentationModel = {
|
|
|
447
489
|
requiresConnectionTest?: boolean;
|
|
448
490
|
};
|
|
449
491
|
|
|
492
|
+
type ItemResponseModelBaseModel = {
|
|
493
|
+
name?: string;
|
|
494
|
+
id?: string;
|
|
495
|
+
};
|
|
496
|
+
|
|
497
|
+
type DataTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
498
|
+
icon?: string | null;
|
|
499
|
+
});
|
|
500
|
+
|
|
450
501
|
type DataTypePropertyReferenceModel = {
|
|
451
502
|
name?: string;
|
|
452
503
|
alias?: string;
|
|
453
504
|
};
|
|
454
505
|
|
|
455
506
|
type DataTypeReferenceResponseModel = {
|
|
456
|
-
|
|
507
|
+
id?: string;
|
|
457
508
|
type?: string;
|
|
458
509
|
properties?: Array<DataTypePropertyReferenceModel>;
|
|
459
510
|
};
|
|
460
511
|
|
|
461
512
|
type DataTypeResponseModel = (DataTypeModelBaseModel & {
|
|
462
513
|
$type: string;
|
|
463
|
-
|
|
464
|
-
|
|
514
|
+
id?: string;
|
|
515
|
+
parentId?: string | null;
|
|
465
516
|
});
|
|
466
517
|
|
|
518
|
+
type DictionaryItemItemResponseModel = ItemResponseModelBaseModel;
|
|
519
|
+
|
|
467
520
|
type DictionaryItemResponseModel = (DictionaryItemModelBaseModel & {
|
|
468
521
|
$type: string;
|
|
469
|
-
|
|
522
|
+
id?: string;
|
|
470
523
|
});
|
|
471
524
|
|
|
472
525
|
type DictionaryOverviewResponseModel = {
|
|
473
526
|
name?: string | null;
|
|
474
|
-
|
|
475
|
-
|
|
527
|
+
id?: string;
|
|
528
|
+
parentId?: string | null;
|
|
476
529
|
translatedIsoCodes?: Array<string>;
|
|
477
530
|
};
|
|
478
531
|
|
|
@@ -481,16 +534,31 @@ declare enum DirectionModel {
|
|
|
481
534
|
DESCENDING = "Descending"
|
|
482
535
|
}
|
|
483
536
|
|
|
537
|
+
type DisableUserRequestModel = {
|
|
538
|
+
userIds?: Array<string>;
|
|
539
|
+
};
|
|
540
|
+
|
|
541
|
+
type DocumentBlueprintResponseModel = ItemResponseModelBaseModel;
|
|
542
|
+
|
|
484
543
|
type DocumentBlueprintTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
|
485
544
|
$type: string;
|
|
486
|
-
|
|
545
|
+
documentTypeId?: string;
|
|
487
546
|
documentTypeAlias?: string;
|
|
488
547
|
documentTypeName?: string | null;
|
|
489
548
|
});
|
|
490
549
|
|
|
550
|
+
type DocumentItemResponseModel = (ItemResponseModelBaseModel & {
|
|
551
|
+
icon?: string | null;
|
|
552
|
+
});
|
|
553
|
+
|
|
554
|
+
type DocumentNotificationResponseModel = {
|
|
555
|
+
actionId?: string;
|
|
556
|
+
subscribed?: boolean;
|
|
557
|
+
};
|
|
558
|
+
|
|
491
559
|
type DocumentResponseModel = (ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel & {
|
|
492
560
|
urls?: Array<ContentUrlInfoModel>;
|
|
493
|
-
|
|
561
|
+
templateId?: string | null;
|
|
494
562
|
});
|
|
495
563
|
|
|
496
564
|
type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
|
|
@@ -500,9 +568,14 @@ type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
|
|
|
500
568
|
isEdited?: boolean;
|
|
501
569
|
});
|
|
502
570
|
|
|
571
|
+
type DocumentTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
572
|
+
isElement?: boolean;
|
|
573
|
+
icon?: string | null;
|
|
574
|
+
});
|
|
575
|
+
|
|
503
576
|
type DocumentTypeResponseModel = (ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel & {
|
|
504
|
-
|
|
505
|
-
|
|
577
|
+
allowedTemplateIds?: Array<string>;
|
|
578
|
+
defaultTemplateId?: string | null;
|
|
506
579
|
cleanup?: ContentTypeCleanupModel;
|
|
507
580
|
});
|
|
508
581
|
|
|
@@ -528,11 +601,37 @@ type DomainsPresentationModelBaseModel = {
|
|
|
528
601
|
|
|
529
602
|
type DomainsResponseModel = DomainsPresentationModelBaseModel;
|
|
530
603
|
|
|
604
|
+
type EnableUserRequestModel = {
|
|
605
|
+
userIds?: Array<string>;
|
|
606
|
+
};
|
|
607
|
+
|
|
608
|
+
type ExtractRichTextStylesheetRulesRequestModel = {
|
|
609
|
+
content?: string;
|
|
610
|
+
};
|
|
611
|
+
|
|
612
|
+
type RichTextRuleModel = {
|
|
613
|
+
name?: string;
|
|
614
|
+
selector?: string;
|
|
615
|
+
styles?: string;
|
|
616
|
+
};
|
|
617
|
+
|
|
618
|
+
type RichTextStylesheetRulesResponseModel = {
|
|
619
|
+
rules?: Array<RichTextRuleModel>;
|
|
620
|
+
};
|
|
621
|
+
|
|
622
|
+
type ExtractRichTextStylesheetRulesResponseModel = RichTextStylesheetRulesResponseModel;
|
|
623
|
+
|
|
531
624
|
type FieldPresentationModel = {
|
|
532
625
|
name?: string;
|
|
533
626
|
values?: Array<string>;
|
|
534
627
|
};
|
|
535
628
|
|
|
629
|
+
type FileItemResponseModelBaseModel = {
|
|
630
|
+
name?: string;
|
|
631
|
+
path?: string;
|
|
632
|
+
icon?: string;
|
|
633
|
+
};
|
|
634
|
+
|
|
536
635
|
type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
|
|
537
636
|
path?: string;
|
|
538
637
|
isFolder?: boolean;
|
|
@@ -540,12 +639,12 @@ type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
|
|
|
540
639
|
|
|
541
640
|
type FolderReponseModel = (FolderModelBaseModel & {
|
|
542
641
|
$type: string;
|
|
543
|
-
|
|
544
|
-
|
|
642
|
+
id?: string;
|
|
643
|
+
parentId?: string | null;
|
|
545
644
|
});
|
|
546
645
|
|
|
547
646
|
type HealthCheckActionRequestModel = {
|
|
548
|
-
|
|
647
|
+
healthCheckId?: string;
|
|
549
648
|
alias?: string | null;
|
|
550
649
|
name?: string | null;
|
|
551
650
|
description?: string | null;
|
|
@@ -560,7 +659,7 @@ type HealthCheckGroupPresentationBaseModel = {
|
|
|
560
659
|
};
|
|
561
660
|
|
|
562
661
|
type HealthCheckModelBaseModel = {
|
|
563
|
-
|
|
662
|
+
id?: string;
|
|
564
663
|
};
|
|
565
664
|
|
|
566
665
|
type HealthCheckModel = (HealthCheckModelBaseModel & {
|
|
@@ -609,15 +708,9 @@ type HelpPageResponseModel = {
|
|
|
609
708
|
type?: string | null;
|
|
610
709
|
};
|
|
611
710
|
|
|
612
|
-
type ImportDictionaryItemsPresentationModel = {
|
|
613
|
-
key?: string;
|
|
614
|
-
name?: string | null;
|
|
615
|
-
parentKey?: string | null;
|
|
616
|
-
};
|
|
617
|
-
|
|
618
711
|
type ImportDictionaryRequestModel = {
|
|
619
|
-
|
|
620
|
-
|
|
712
|
+
temporaryFileId?: string;
|
|
713
|
+
parentId?: string | null;
|
|
621
714
|
};
|
|
622
715
|
|
|
623
716
|
type IndexResponseModel = {
|
|
@@ -654,6 +747,24 @@ type InstallVResponseModel = {
|
|
|
654
747
|
telemetryLevel?: TelemetryLevelModel;
|
|
655
748
|
};
|
|
656
749
|
|
|
750
|
+
type InterpolateRichTextStylesheetRequestModel = {
|
|
751
|
+
content?: string | null;
|
|
752
|
+
rules?: Array<RichTextRuleModel> | null;
|
|
753
|
+
};
|
|
754
|
+
|
|
755
|
+
type InterpolateRichTextStylesheetResponseModel = {
|
|
756
|
+
content?: string;
|
|
757
|
+
};
|
|
758
|
+
|
|
759
|
+
type InviteUserRequestModel = (CreateUserRequestModel & {
|
|
760
|
+
message?: string | null;
|
|
761
|
+
});
|
|
762
|
+
|
|
763
|
+
type LanguageItemResponseModel = {
|
|
764
|
+
name?: string;
|
|
765
|
+
isoCode?: string;
|
|
766
|
+
};
|
|
767
|
+
|
|
657
768
|
type LanguageResponseModel = (LanguageModelBaseModel & {
|
|
658
769
|
isoCode?: string;
|
|
659
770
|
});
|
|
@@ -672,6 +783,11 @@ type LoggerResponseModel = {
|
|
|
672
783
|
level?: LogLevelModel;
|
|
673
784
|
};
|
|
674
785
|
|
|
786
|
+
type LoginRequestModel = {
|
|
787
|
+
username?: string;
|
|
788
|
+
password?: string;
|
|
789
|
+
};
|
|
790
|
+
|
|
675
791
|
type LogLevelCountsReponseModel = {
|
|
676
792
|
information?: number;
|
|
677
793
|
debug?: number;
|
|
@@ -699,12 +815,30 @@ type LogTemplateResponseModel = {
|
|
|
699
815
|
count?: number;
|
|
700
816
|
};
|
|
701
817
|
|
|
818
|
+
type MediaItemResponseModel = (ItemResponseModelBaseModel & {
|
|
819
|
+
icon?: string | null;
|
|
820
|
+
});
|
|
821
|
+
|
|
822
|
+
type MediaTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
823
|
+
icon?: string | null;
|
|
824
|
+
});
|
|
825
|
+
|
|
702
826
|
type MediaTypeResponseModel = ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel;
|
|
703
827
|
|
|
704
828
|
type MediaVariantResponseModel = (VariantResponseModelBaseModel & {
|
|
705
829
|
$type: string;
|
|
706
830
|
});
|
|
707
831
|
|
|
832
|
+
type MemberGroupItemReponseModel = ItemResponseModelBaseModel;
|
|
833
|
+
|
|
834
|
+
type MemberItemResponseModel = (ItemResponseModelBaseModel & {
|
|
835
|
+
icon?: string | null;
|
|
836
|
+
});
|
|
837
|
+
|
|
838
|
+
type MemberTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
|
839
|
+
icon?: string | null;
|
|
840
|
+
});
|
|
841
|
+
|
|
708
842
|
declare enum ModelsModeModel {
|
|
709
843
|
NOTHING = "Nothing",
|
|
710
844
|
IN_MEMORY_AUTO = "InMemoryAuto",
|
|
@@ -723,11 +857,19 @@ type ModelsBuilderResponseModel = {
|
|
|
723
857
|
};
|
|
724
858
|
|
|
725
859
|
type MoveDataTypeRequestModel = {
|
|
726
|
-
|
|
860
|
+
targetId?: string | null;
|
|
727
861
|
};
|
|
728
862
|
|
|
729
863
|
type MoveDictionaryRequestModel = {
|
|
730
|
-
|
|
864
|
+
targetId?: string | null;
|
|
865
|
+
};
|
|
866
|
+
|
|
867
|
+
type MoveDocumentRequestModel = {
|
|
868
|
+
targetId?: string | null;
|
|
869
|
+
};
|
|
870
|
+
|
|
871
|
+
type MoveMediaRequestModel = {
|
|
872
|
+
targetId?: string | null;
|
|
731
873
|
};
|
|
732
874
|
|
|
733
875
|
type ObjectTypeResponseModel = {
|
|
@@ -761,7 +903,7 @@ type OutOfDateStatusResponseModel = {
|
|
|
761
903
|
};
|
|
762
904
|
|
|
763
905
|
type PackageDefinitionResponseModel = (PackageModelBaseModel & {
|
|
764
|
-
|
|
906
|
+
id?: string;
|
|
765
907
|
packagePath?: string;
|
|
766
908
|
});
|
|
767
909
|
|
|
@@ -786,6 +928,11 @@ type PagedAuditLogWithUsernameResponseModel = {
|
|
|
786
928
|
items: Array<AuditLogWithUsernameResponseModel>;
|
|
787
929
|
};
|
|
788
930
|
|
|
931
|
+
type PagedBooleanModel = {
|
|
932
|
+
total: number;
|
|
933
|
+
items: Array<boolean>;
|
|
934
|
+
};
|
|
935
|
+
|
|
789
936
|
type PagedContentTreeItemResponseModel = {
|
|
790
937
|
total: number;
|
|
791
938
|
items: Array<(ContentTreeItemResponseModel | DocumentTreeItemResponseModel)>;
|
|
@@ -883,13 +1030,13 @@ type PagedPackageMigrationStatusResponseModel = {
|
|
|
883
1030
|
|
|
884
1031
|
type RecycleBinItemResponseModel = {
|
|
885
1032
|
$type: string;
|
|
886
|
-
|
|
1033
|
+
id?: string;
|
|
887
1034
|
name?: string;
|
|
888
1035
|
type?: string;
|
|
889
1036
|
icon?: string;
|
|
890
1037
|
hasChildren?: boolean;
|
|
891
1038
|
isContainer?: boolean;
|
|
892
|
-
|
|
1039
|
+
parentId?: string | null;
|
|
893
1040
|
};
|
|
894
1041
|
|
|
895
1042
|
type PagedRecycleBinItemResponseModel = {
|
|
@@ -898,11 +1045,11 @@ type PagedRecycleBinItemResponseModel = {
|
|
|
898
1045
|
};
|
|
899
1046
|
|
|
900
1047
|
type RedirectUrlResponseModel = {
|
|
901
|
-
|
|
1048
|
+
id?: string;
|
|
902
1049
|
originalUrl?: string;
|
|
903
1050
|
destinationUrl?: string;
|
|
904
1051
|
created?: string;
|
|
905
|
-
|
|
1052
|
+
contentId?: string;
|
|
906
1053
|
culture?: string | null;
|
|
907
1054
|
};
|
|
908
1055
|
|
|
@@ -912,7 +1059,7 @@ type PagedRedirectUrlResponseModel = {
|
|
|
912
1059
|
};
|
|
913
1060
|
|
|
914
1061
|
type RelationItemResponseModel = {
|
|
915
|
-
|
|
1062
|
+
nodeId?: string;
|
|
916
1063
|
nodeName?: string | null;
|
|
917
1064
|
nodeType?: string | null;
|
|
918
1065
|
nodePublished?: boolean | null;
|
|
@@ -976,6 +1123,37 @@ type PagedSearchResultResponseModel = {
|
|
|
976
1123
|
items: Array<SearchResultResponseModel>;
|
|
977
1124
|
};
|
|
978
1125
|
|
|
1126
|
+
type SnippetItemResponseModel = {
|
|
1127
|
+
name?: string;
|
|
1128
|
+
};
|
|
1129
|
+
|
|
1130
|
+
type PagedSnippetItemResponseModel = {
|
|
1131
|
+
total: number;
|
|
1132
|
+
items: Array<SnippetItemResponseModel>;
|
|
1133
|
+
};
|
|
1134
|
+
|
|
1135
|
+
type StylesheetOverviewResponseModel = {
|
|
1136
|
+
name?: string;
|
|
1137
|
+
path?: string;
|
|
1138
|
+
};
|
|
1139
|
+
|
|
1140
|
+
type PagedStylesheetOverviewResponseModel = {
|
|
1141
|
+
total: number;
|
|
1142
|
+
items: Array<StylesheetOverviewResponseModel>;
|
|
1143
|
+
};
|
|
1144
|
+
|
|
1145
|
+
type TagResponseModel = {
|
|
1146
|
+
id?: string;
|
|
1147
|
+
text?: string | null;
|
|
1148
|
+
group?: string | null;
|
|
1149
|
+
nodeCount?: number;
|
|
1150
|
+
};
|
|
1151
|
+
|
|
1152
|
+
type PagedTagResponseModel = {
|
|
1153
|
+
total: number;
|
|
1154
|
+
items: Array<TagResponseModel>;
|
|
1155
|
+
};
|
|
1156
|
+
|
|
979
1157
|
type TelemetryRepresentationBaseModel = {
|
|
980
1158
|
telemetryLevel?: TelemetryLevelModel;
|
|
981
1159
|
};
|
|
@@ -993,14 +1171,14 @@ type UserGroupBaseModel = {
|
|
|
993
1171
|
sections?: Array<string>;
|
|
994
1172
|
languages?: Array<string>;
|
|
995
1173
|
hasAccessToAllLanguages?: boolean;
|
|
996
|
-
|
|
997
|
-
|
|
1174
|
+
documentStartNodeId?: string | null;
|
|
1175
|
+
mediaStartNodeId?: string | null;
|
|
998
1176
|
permissions?: Array<string>;
|
|
999
1177
|
};
|
|
1000
1178
|
|
|
1001
1179
|
type UserGroupPresentationModel = (UserGroupBaseModel & {
|
|
1002
1180
|
$type: string;
|
|
1003
|
-
|
|
1181
|
+
id?: string;
|
|
1004
1182
|
});
|
|
1005
1183
|
|
|
1006
1184
|
type PagedUserGroupPresentationModel = {
|
|
@@ -1008,6 +1186,62 @@ type PagedUserGroupPresentationModel = {
|
|
|
1008
1186
|
items: Array<UserGroupPresentationModel>;
|
|
1009
1187
|
};
|
|
1010
1188
|
|
|
1189
|
+
declare enum UserStateModel {
|
|
1190
|
+
ACTIVE = "Active",
|
|
1191
|
+
DISABLED = "Disabled",
|
|
1192
|
+
LOCKED_OUT = "LockedOut",
|
|
1193
|
+
INVITED = "Invited",
|
|
1194
|
+
INACTIVE = "Inactive",
|
|
1195
|
+
ALL = "All"
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
type UserResponseModel = (UserPresentationBaseModel & {
|
|
1199
|
+
$type: string;
|
|
1200
|
+
id?: string;
|
|
1201
|
+
languageIsoCode?: string | null;
|
|
1202
|
+
contentStartNodeIds?: Array<string>;
|
|
1203
|
+
mediaStartNodeIds?: Array<string>;
|
|
1204
|
+
avatarUrls?: Array<string>;
|
|
1205
|
+
state?: UserStateModel;
|
|
1206
|
+
failedLoginAttempts?: number;
|
|
1207
|
+
createDate?: string;
|
|
1208
|
+
updateDate?: string;
|
|
1209
|
+
lastLoginDate?: string | null;
|
|
1210
|
+
lastLockoutDate?: string | null;
|
|
1211
|
+
lastPasswordChangeDate?: string | null;
|
|
1212
|
+
});
|
|
1213
|
+
|
|
1214
|
+
type PagedUserResponseModel = {
|
|
1215
|
+
total: number;
|
|
1216
|
+
items: Array<UserResponseModel>;
|
|
1217
|
+
};
|
|
1218
|
+
|
|
1219
|
+
type PartialViewItemResponseModel = FileItemResponseModelBaseModel;
|
|
1220
|
+
|
|
1221
|
+
type TextFileResponseModelBaseModel = (TextFileViewModelBaseModel & {
|
|
1222
|
+
path?: string;
|
|
1223
|
+
});
|
|
1224
|
+
|
|
1225
|
+
type PartialViewResponseModel = TextFileResponseModelBaseModel;
|
|
1226
|
+
|
|
1227
|
+
type PartialViewSnippetResponseModel = {
|
|
1228
|
+
name?: string;
|
|
1229
|
+
content?: string;
|
|
1230
|
+
};
|
|
1231
|
+
|
|
1232
|
+
type TextFileUpdateModel = {
|
|
1233
|
+
name?: string;
|
|
1234
|
+
content?: string;
|
|
1235
|
+
existingPath?: string;
|
|
1236
|
+
};
|
|
1237
|
+
|
|
1238
|
+
type PartialViewUpdateModel = TextFileUpdateModel;
|
|
1239
|
+
|
|
1240
|
+
type PathFolderResponseModel = (FolderModelBaseModel & {
|
|
1241
|
+
parentPath?: string | null;
|
|
1242
|
+
readonly path?: string;
|
|
1243
|
+
});
|
|
1244
|
+
|
|
1011
1245
|
type ProblemDetailsModel = Record<string, any>;
|
|
1012
1246
|
|
|
1013
1247
|
type ProfilingStatusRequestModel = {
|
|
@@ -1028,8 +1262,10 @@ type RedirectUrlStatusResponseModel = {
|
|
|
1028
1262
|
userIsAdmin?: boolean;
|
|
1029
1263
|
};
|
|
1030
1264
|
|
|
1265
|
+
type RelationTypeItemResponseModel = ItemResponseModelBaseModel;
|
|
1266
|
+
|
|
1031
1267
|
type RelationTypeResponseModel = (RelationTypeBaseModel & {
|
|
1032
|
-
|
|
1268
|
+
id?: string;
|
|
1033
1269
|
alias?: string | null;
|
|
1034
1270
|
path?: string;
|
|
1035
1271
|
isSystemRelationType?: boolean;
|
|
@@ -1050,12 +1286,34 @@ type SavedLogSearchRequestModel = SavedLogSearchPresenationBaseModel;
|
|
|
1050
1286
|
|
|
1051
1287
|
type SaveUserGroupRequestModel = UserGroupBaseModel;
|
|
1052
1288
|
|
|
1289
|
+
type ScriptItemResponseModel = FileItemResponseModelBaseModel;
|
|
1290
|
+
|
|
1291
|
+
type ScriptResponseModel = TextFileResponseModelBaseModel;
|
|
1292
|
+
|
|
1293
|
+
type ScriptUpdateModel = TextFileUpdateModel;
|
|
1294
|
+
|
|
1295
|
+
type ScriptViewModelBaseModel = TextFileViewModelBaseModel;
|
|
1296
|
+
|
|
1053
1297
|
type ServerStatusResponseModel = {
|
|
1054
1298
|
serverStatus?: RuntimeLevelModel;
|
|
1055
1299
|
};
|
|
1056
1300
|
|
|
1301
|
+
type SetAvatarRequestModel = {
|
|
1302
|
+
fileId?: string;
|
|
1303
|
+
};
|
|
1304
|
+
|
|
1305
|
+
type StaticFileItemResponseModel = FileItemResponseModelBaseModel;
|
|
1306
|
+
|
|
1307
|
+
type StylesheetItemResponseModel = FileItemResponseModelBaseModel;
|
|
1308
|
+
|
|
1309
|
+
type StylesheetResponseModel = TextFileResponseModelBaseModel;
|
|
1310
|
+
|
|
1311
|
+
type StylesheetUpdateModel = TextFileUpdateModel;
|
|
1312
|
+
|
|
1057
1313
|
type TelemetryRequestModel = TelemetryRepresentationBaseModel;
|
|
1058
1314
|
|
|
1315
|
+
type TemplateItemResponseModel = ItemResponseModelBaseModel;
|
|
1316
|
+
|
|
1059
1317
|
type TemplateQueryExecuteFilterPresentationModel = {
|
|
1060
1318
|
propertyAlias?: string;
|
|
1061
1319
|
constraintValue?: string;
|
|
@@ -1068,7 +1326,7 @@ type TemplateQueryExecuteSortModel = {
|
|
|
1068
1326
|
};
|
|
1069
1327
|
|
|
1070
1328
|
type TemplateQueryExecuteModel = {
|
|
1071
|
-
|
|
1329
|
+
rootContentId?: string | null;
|
|
1072
1330
|
contentTypeAlias?: string | null;
|
|
1073
1331
|
filters?: Array<TemplateQueryExecuteFilterPresentationModel> | null;
|
|
1074
1332
|
sort?: TemplateQueryExecuteSortModel | null;
|
|
@@ -1111,13 +1369,23 @@ type TemplateQuerySettingsResponseModel = {
|
|
|
1111
1369
|
|
|
1112
1370
|
type TemplateResponseModel = (TemplateModelBaseModel & {
|
|
1113
1371
|
$type: string;
|
|
1114
|
-
|
|
1372
|
+
id?: string;
|
|
1115
1373
|
});
|
|
1116
1374
|
|
|
1117
1375
|
type TemplateScaffoldResponseModel = {
|
|
1118
1376
|
content?: string;
|
|
1119
1377
|
};
|
|
1120
1378
|
|
|
1379
|
+
type TemporaryFileResponseModel = {
|
|
1380
|
+
id?: string;
|
|
1381
|
+
availableUntil?: string | null;
|
|
1382
|
+
fileName?: string;
|
|
1383
|
+
};
|
|
1384
|
+
|
|
1385
|
+
type UnlockUsersRequestModel = {
|
|
1386
|
+
userIds?: Array<string>;
|
|
1387
|
+
};
|
|
1388
|
+
|
|
1121
1389
|
type UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel = {
|
|
1122
1390
|
values?: Array<DocumentValueModel>;
|
|
1123
1391
|
variants?: Array<DocumentVariantRequestModel>;
|
|
@@ -1132,8 +1400,12 @@ type UpdateDataTypeRequestModel = DataTypeModelBaseModel;
|
|
|
1132
1400
|
|
|
1133
1401
|
type UpdateDictionaryItemRequestModel = DictionaryItemModelBaseModel;
|
|
1134
1402
|
|
|
1403
|
+
type UpdateDocumentNotificationsRequestModel = {
|
|
1404
|
+
subscribedActionIds?: Array<string>;
|
|
1405
|
+
};
|
|
1406
|
+
|
|
1135
1407
|
type UpdateDocumentRequestModel = (UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
|
|
1136
|
-
|
|
1408
|
+
templateId?: string | null;
|
|
1137
1409
|
});
|
|
1138
1410
|
|
|
1139
1411
|
type UpdateDomainsRequestModel = DomainsPresentationModelBaseModel;
|
|
@@ -1148,12 +1420,33 @@ type UpdatePackageRequestModel = (PackageModelBaseModel & {
|
|
|
1148
1420
|
packagePath?: string;
|
|
1149
1421
|
});
|
|
1150
1422
|
|
|
1423
|
+
type UpdatePartialViewRequestModel = TextFileUpdateModel;
|
|
1424
|
+
|
|
1151
1425
|
type UpdateRelationTypeRequestModel = RelationTypeBaseModel;
|
|
1152
1426
|
|
|
1427
|
+
type UpdateTextFileViewModelBaseModel = (TextFileViewModelBaseModel & {
|
|
1428
|
+
existingPath?: string;
|
|
1429
|
+
});
|
|
1430
|
+
|
|
1431
|
+
type UpdateScriptRequestModel = UpdateTextFileViewModelBaseModel;
|
|
1432
|
+
|
|
1433
|
+
type UpdateStylesheetRequestModel = UpdateTextFileViewModelBaseModel;
|
|
1434
|
+
|
|
1153
1435
|
type UpdateTemplateRequestModel = TemplateModelBaseModel;
|
|
1154
1436
|
|
|
1155
1437
|
type UpdateUserGroupRequestModel = UserGroupBaseModel;
|
|
1156
1438
|
|
|
1439
|
+
type UpdateUserGroupsOnUserRequestModel = {
|
|
1440
|
+
userIds?: Array<string>;
|
|
1441
|
+
userGroupIds?: Array<string>;
|
|
1442
|
+
};
|
|
1443
|
+
|
|
1444
|
+
type UpdateUserRequestModel = (UserPresentationBaseModel & {
|
|
1445
|
+
languageIsoCode?: string;
|
|
1446
|
+
contentStartNodeIds?: Array<string>;
|
|
1447
|
+
mediaStartNodeIds?: Array<string>;
|
|
1448
|
+
});
|
|
1449
|
+
|
|
1157
1450
|
type UpgradeSettingsResponseModel = {
|
|
1158
1451
|
currentState?: string;
|
|
1159
1452
|
newState?: string;
|
|
@@ -1162,10 +1455,24 @@ type UpgradeSettingsResponseModel = {
|
|
|
1162
1455
|
readonly reportUrl?: string;
|
|
1163
1456
|
};
|
|
1164
1457
|
|
|
1165
|
-
type
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1458
|
+
type UserGroupItemResponseModel = (ItemResponseModelBaseModel & {
|
|
1459
|
+
icon?: string | null;
|
|
1460
|
+
});
|
|
1461
|
+
|
|
1462
|
+
type UserItemResponseModel = ItemResponseModelBaseModel;
|
|
1463
|
+
|
|
1464
|
+
declare enum UserOrderModel {
|
|
1465
|
+
USER_NAME = "UserName",
|
|
1466
|
+
LANGUAGE = "Language",
|
|
1467
|
+
NAME = "Name",
|
|
1468
|
+
EMAIL = "Email",
|
|
1469
|
+
ID = "Id",
|
|
1470
|
+
CREATE_DATE = "CreateDate",
|
|
1471
|
+
UPDATE_DATE = "UpdateDate",
|
|
1472
|
+
IS_APPROVED = "IsApproved",
|
|
1473
|
+
IS_LOCKED_OUT = "IsLockedOut",
|
|
1474
|
+
LAST_LOGIN_DATE = "LastLoginDate"
|
|
1475
|
+
}
|
|
1169
1476
|
|
|
1170
1477
|
type VersionResponseModel = {
|
|
1171
1478
|
version?: string;
|
|
@@ -1186,8 +1493,8 @@ declare class AuditLogResource {
|
|
|
1186
1493
|
* @returns PagedAuditLogResponseModel Success
|
|
1187
1494
|
* @throws ApiError
|
|
1188
1495
|
*/
|
|
1189
|
-
static
|
|
1190
|
-
|
|
1496
|
+
static getAuditLogById({ id, orderDirection, sinceDate, skip, take, }: {
|
|
1497
|
+
id: string;
|
|
1191
1498
|
orderDirection?: DirectionModel;
|
|
1192
1499
|
sinceDate?: string;
|
|
1193
1500
|
skip?: number;
|
|
@@ -1228,46 +1535,53 @@ declare class DataTypeResource {
|
|
|
1228
1535
|
* @returns any Success
|
|
1229
1536
|
* @throws ApiError
|
|
1230
1537
|
*/
|
|
1231
|
-
static
|
|
1232
|
-
|
|
1538
|
+
static getDataTypeById({ id, }: {
|
|
1539
|
+
id: string;
|
|
1233
1540
|
}): CancelablePromise<DataTypeResponseModel>;
|
|
1234
1541
|
/**
|
|
1235
1542
|
* @returns any Success
|
|
1236
1543
|
* @throws ApiError
|
|
1237
1544
|
*/
|
|
1238
|
-
static
|
|
1239
|
-
|
|
1545
|
+
static deleteDataTypeById({ id, }: {
|
|
1546
|
+
id: string;
|
|
1240
1547
|
}): CancelablePromise<any>;
|
|
1241
1548
|
/**
|
|
1242
1549
|
* @returns any Success
|
|
1243
1550
|
* @throws ApiError
|
|
1244
1551
|
*/
|
|
1245
|
-
static
|
|
1246
|
-
|
|
1552
|
+
static putDataTypeById({ id, requestBody, }: {
|
|
1553
|
+
id: string;
|
|
1247
1554
|
requestBody?: UpdateDataTypeRequestModel;
|
|
1248
1555
|
}): CancelablePromise<any>;
|
|
1249
1556
|
/**
|
|
1250
1557
|
* @returns string Created
|
|
1251
1558
|
* @throws ApiError
|
|
1252
1559
|
*/
|
|
1253
|
-
static
|
|
1254
|
-
|
|
1560
|
+
static postDataTypeByIdCopy({ id, requestBody, }: {
|
|
1561
|
+
id: string;
|
|
1255
1562
|
requestBody?: CopyDataTypeRequestModel;
|
|
1256
1563
|
}): CancelablePromise<string>;
|
|
1564
|
+
/**
|
|
1565
|
+
* @returns boolean Success
|
|
1566
|
+
* @throws ApiError
|
|
1567
|
+
*/
|
|
1568
|
+
static getDataTypeByIdIsUsed({ id, }: {
|
|
1569
|
+
id: string;
|
|
1570
|
+
}): CancelablePromise<boolean>;
|
|
1257
1571
|
/**
|
|
1258
1572
|
* @returns any Success
|
|
1259
1573
|
* @throws ApiError
|
|
1260
1574
|
*/
|
|
1261
|
-
static
|
|
1262
|
-
|
|
1575
|
+
static postDataTypeByIdMove({ id, requestBody, }: {
|
|
1576
|
+
id: string;
|
|
1263
1577
|
requestBody?: MoveDataTypeRequestModel;
|
|
1264
1578
|
}): CancelablePromise<any>;
|
|
1265
1579
|
/**
|
|
1266
1580
|
* @returns any Success
|
|
1267
1581
|
* @throws ApiError
|
|
1268
1582
|
*/
|
|
1269
|
-
static
|
|
1270
|
-
|
|
1583
|
+
static getDataTypeByIdReferences({ id, }: {
|
|
1584
|
+
id: string;
|
|
1271
1585
|
}): CancelablePromise<Array<DataTypeReferenceResponseModel>>;
|
|
1272
1586
|
/**
|
|
1273
1587
|
* @returns string Created
|
|
@@ -1280,41 +1594,41 @@ declare class DataTypeResource {
|
|
|
1280
1594
|
* @returns any Success
|
|
1281
1595
|
* @throws ApiError
|
|
1282
1596
|
*/
|
|
1283
|
-
static
|
|
1284
|
-
|
|
1597
|
+
static getDataTypeFolderById({ id, }: {
|
|
1598
|
+
id: string;
|
|
1285
1599
|
}): CancelablePromise<FolderReponseModel>;
|
|
1286
1600
|
/**
|
|
1287
1601
|
* @returns any Success
|
|
1288
1602
|
* @throws ApiError
|
|
1289
1603
|
*/
|
|
1290
|
-
static
|
|
1291
|
-
|
|
1604
|
+
static deleteDataTypeFolderById({ id, }: {
|
|
1605
|
+
id: string;
|
|
1292
1606
|
}): CancelablePromise<any>;
|
|
1293
1607
|
/**
|
|
1294
1608
|
* @returns any Success
|
|
1295
1609
|
* @throws ApiError
|
|
1296
1610
|
*/
|
|
1297
|
-
static
|
|
1298
|
-
|
|
1611
|
+
static putDataTypeFolderById({ id, requestBody, }: {
|
|
1612
|
+
id: string;
|
|
1299
1613
|
requestBody?: UpdateFolderReponseModel;
|
|
1300
1614
|
}): CancelablePromise<any>;
|
|
1615
|
+
/**
|
|
1616
|
+
* @returns any Success
|
|
1617
|
+
* @throws ApiError
|
|
1618
|
+
*/
|
|
1619
|
+
static getDataTypeItem({ id, }: {
|
|
1620
|
+
id?: Array<string>;
|
|
1621
|
+
}): CancelablePromise<Array<DataTypeItemResponseModel>>;
|
|
1301
1622
|
/**
|
|
1302
1623
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1303
1624
|
* @throws ApiError
|
|
1304
1625
|
*/
|
|
1305
|
-
static getTreeDataTypeChildren({
|
|
1306
|
-
|
|
1626
|
+
static getTreeDataTypeChildren({ parentId, skip, take, foldersOnly, }: {
|
|
1627
|
+
parentId?: string;
|
|
1307
1628
|
skip?: number;
|
|
1308
1629
|
take?: number;
|
|
1309
1630
|
foldersOnly?: boolean;
|
|
1310
1631
|
}): 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
1632
|
/**
|
|
1319
1633
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1320
1634
|
* @throws ApiError
|
|
@@ -1346,38 +1660,38 @@ declare class DictionaryResource {
|
|
|
1346
1660
|
* @returns any Success
|
|
1347
1661
|
* @throws ApiError
|
|
1348
1662
|
*/
|
|
1349
|
-
static
|
|
1350
|
-
|
|
1663
|
+
static getDictionaryById({ id, }: {
|
|
1664
|
+
id: string;
|
|
1351
1665
|
}): CancelablePromise<DictionaryItemResponseModel>;
|
|
1352
1666
|
/**
|
|
1353
1667
|
* @returns any Success
|
|
1354
1668
|
* @throws ApiError
|
|
1355
1669
|
*/
|
|
1356
|
-
static
|
|
1357
|
-
|
|
1670
|
+
static deleteDictionaryById({ id, }: {
|
|
1671
|
+
id: string;
|
|
1358
1672
|
}): CancelablePromise<any>;
|
|
1359
1673
|
/**
|
|
1360
1674
|
* @returns any Success
|
|
1361
1675
|
* @throws ApiError
|
|
1362
1676
|
*/
|
|
1363
|
-
static
|
|
1364
|
-
|
|
1677
|
+
static putDictionaryById({ id, requestBody, }: {
|
|
1678
|
+
id: string;
|
|
1365
1679
|
requestBody?: UpdateDictionaryItemRequestModel;
|
|
1366
1680
|
}): CancelablePromise<any>;
|
|
1367
1681
|
/**
|
|
1368
1682
|
* @returns binary Success
|
|
1369
1683
|
* @throws ApiError
|
|
1370
1684
|
*/
|
|
1371
|
-
static
|
|
1372
|
-
|
|
1685
|
+
static getDictionaryByIdExport({ id, includeChildren, }: {
|
|
1686
|
+
id: string;
|
|
1373
1687
|
includeChildren?: boolean;
|
|
1374
1688
|
}): CancelablePromise<Blob>;
|
|
1375
1689
|
/**
|
|
1376
1690
|
* @returns any Success
|
|
1377
1691
|
* @throws ApiError
|
|
1378
1692
|
*/
|
|
1379
|
-
static
|
|
1380
|
-
|
|
1693
|
+
static postDictionaryByIdMove({ id, requestBody, }: {
|
|
1694
|
+
id: string;
|
|
1381
1695
|
requestBody?: MoveDictionaryRequestModel;
|
|
1382
1696
|
}): CancelablePromise<any>;
|
|
1383
1697
|
/**
|
|
@@ -1391,25 +1705,18 @@ declare class DictionaryResource {
|
|
|
1391
1705
|
* @returns any Success
|
|
1392
1706
|
* @throws ApiError
|
|
1393
1707
|
*/
|
|
1394
|
-
static
|
|
1395
|
-
|
|
1396
|
-
}): CancelablePromise<
|
|
1708
|
+
static getDictionaryItem({ id, }: {
|
|
1709
|
+
id?: Array<string>;
|
|
1710
|
+
}): CancelablePromise<Array<DictionaryItemItemResponseModel>>;
|
|
1397
1711
|
/**
|
|
1398
1712
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1399
1713
|
* @throws ApiError
|
|
1400
1714
|
*/
|
|
1401
|
-
static getTreeDictionaryChildren({
|
|
1402
|
-
|
|
1715
|
+
static getTreeDictionaryChildren({ parentId, skip, take, }: {
|
|
1716
|
+
parentId?: string;
|
|
1403
1717
|
skip?: number;
|
|
1404
1718
|
take?: number;
|
|
1405
1719
|
}): 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
1720
|
/**
|
|
1414
1721
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1415
1722
|
* @throws ApiError
|
|
@@ -1432,45 +1739,85 @@ declare class DocumentResource {
|
|
|
1432
1739
|
* @returns any Success
|
|
1433
1740
|
* @throws ApiError
|
|
1434
1741
|
*/
|
|
1435
|
-
static
|
|
1436
|
-
|
|
1742
|
+
static getDocumentById({ id, }: {
|
|
1743
|
+
id: string;
|
|
1437
1744
|
}): CancelablePromise<DocumentResponseModel>;
|
|
1438
1745
|
/**
|
|
1439
1746
|
* @returns any Success
|
|
1440
1747
|
* @throws ApiError
|
|
1441
1748
|
*/
|
|
1442
|
-
static
|
|
1443
|
-
|
|
1749
|
+
static deleteDocumentById({ id, }: {
|
|
1750
|
+
id: string;
|
|
1444
1751
|
}): CancelablePromise<any>;
|
|
1445
1752
|
/**
|
|
1446
1753
|
* @returns any Success
|
|
1447
1754
|
* @throws ApiError
|
|
1448
1755
|
*/
|
|
1449
|
-
static
|
|
1450
|
-
|
|
1756
|
+
static putDocumentById({ id, requestBody, }: {
|
|
1757
|
+
id: string;
|
|
1451
1758
|
requestBody?: UpdateDocumentRequestModel;
|
|
1452
1759
|
}): CancelablePromise<any>;
|
|
1760
|
+
/**
|
|
1761
|
+
* @returns string Created
|
|
1762
|
+
* @throws ApiError
|
|
1763
|
+
*/
|
|
1764
|
+
static postDocumentByIdCopy({ id, requestBody, }: {
|
|
1765
|
+
id: string;
|
|
1766
|
+
requestBody?: CopyDocumentRequestModel;
|
|
1767
|
+
}): CancelablePromise<string>;
|
|
1453
1768
|
/**
|
|
1454
1769
|
* @returns any Success
|
|
1455
1770
|
* @throws ApiError
|
|
1456
1771
|
*/
|
|
1457
|
-
static
|
|
1458
|
-
|
|
1772
|
+
static getDocumentByIdDomains({ id, }: {
|
|
1773
|
+
id: string;
|
|
1459
1774
|
}): CancelablePromise<any>;
|
|
1460
1775
|
/**
|
|
1461
1776
|
* @returns any Success
|
|
1462
1777
|
* @throws ApiError
|
|
1463
1778
|
*/
|
|
1464
|
-
static
|
|
1465
|
-
|
|
1779
|
+
static putDocumentByIdDomains({ id, requestBody, }: {
|
|
1780
|
+
id: string;
|
|
1466
1781
|
requestBody?: UpdateDomainsRequestModel;
|
|
1467
1782
|
}): CancelablePromise<any>;
|
|
1783
|
+
/**
|
|
1784
|
+
* @returns any Success
|
|
1785
|
+
* @throws ApiError
|
|
1786
|
+
*/
|
|
1787
|
+
static putDocumentByIdMove({ id, requestBody, }: {
|
|
1788
|
+
id: string;
|
|
1789
|
+
requestBody?: MoveDocumentRequestModel;
|
|
1790
|
+
}): CancelablePromise<any>;
|
|
1791
|
+
/**
|
|
1792
|
+
* @returns any Success
|
|
1793
|
+
* @throws ApiError
|
|
1794
|
+
*/
|
|
1795
|
+
static getDocumentByIdNotifications({ id, }: {
|
|
1796
|
+
id: string;
|
|
1797
|
+
}): CancelablePromise<Array<DocumentNotificationResponseModel>>;
|
|
1798
|
+
/**
|
|
1799
|
+
* @returns any Success
|
|
1800
|
+
* @throws ApiError
|
|
1801
|
+
*/
|
|
1802
|
+
static putDocumentByIdNotifications({ id, requestBody, }: {
|
|
1803
|
+
id: string;
|
|
1804
|
+
requestBody?: UpdateDocumentNotificationsRequestModel;
|
|
1805
|
+
}): CancelablePromise<any>;
|
|
1806
|
+
/**
|
|
1807
|
+
* @returns any Success
|
|
1808
|
+
* @throws ApiError
|
|
1809
|
+
*/
|
|
1810
|
+
static getDocumentItem({ id, dataTypeId, culture, }: {
|
|
1811
|
+
id?: Array<string>;
|
|
1812
|
+
dataTypeId?: string;
|
|
1813
|
+
culture?: string;
|
|
1814
|
+
}): CancelablePromise<Array<DocumentItemResponseModel>>;
|
|
1468
1815
|
/**
|
|
1469
1816
|
* @returns PagedRecycleBinItemResponseModel Success
|
|
1470
1817
|
* @throws ApiError
|
|
1471
1818
|
*/
|
|
1472
|
-
static getRecycleBinDocumentChildren({
|
|
1473
|
-
|
|
1819
|
+
static getRecycleBinDocumentChildren({ parentId, skip, take, }: {
|
|
1820
|
+
parentId?: string;
|
|
1474
1821
|
skip?: number;
|
|
1475
1822
|
take?: number;
|
|
1476
1823
|
}): CancelablePromise<PagedRecycleBinItemResponseModel>;
|
|
@@ -1486,30 +1833,21 @@ declare class DocumentResource {
|
|
|
1486
1833
|
* @returns PagedDocumentTreeItemResponseModel Success
|
|
1487
1834
|
* @throws ApiError
|
|
1488
1835
|
*/
|
|
1489
|
-
static getTreeDocumentChildren({
|
|
1490
|
-
|
|
1836
|
+
static getTreeDocumentChildren({ parentId, skip, take, dataTypeId, culture, }: {
|
|
1837
|
+
parentId?: string;
|
|
1491
1838
|
skip?: number;
|
|
1492
1839
|
take?: number;
|
|
1493
|
-
|
|
1840
|
+
dataTypeId?: string;
|
|
1494
1841
|
culture?: string;
|
|
1495
1842
|
}): 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
1843
|
/**
|
|
1506
1844
|
* @returns PagedDocumentTreeItemResponseModel Success
|
|
1507
1845
|
* @throws ApiError
|
|
1508
1846
|
*/
|
|
1509
|
-
static getTreeDocumentRoot({ skip, take,
|
|
1847
|
+
static getTreeDocumentRoot({ skip, take, dataTypeId, culture, }: {
|
|
1510
1848
|
skip?: number;
|
|
1511
1849
|
take?: number;
|
|
1512
|
-
|
|
1850
|
+
dataTypeId?: string;
|
|
1513
1851
|
culture?: string;
|
|
1514
1852
|
}): CancelablePromise<PagedDocumentTreeItemResponseModel>;
|
|
1515
1853
|
}
|
|
@@ -1519,9 +1857,9 @@ declare class DocumentBlueprintResource {
|
|
|
1519
1857
|
* @returns any Success
|
|
1520
1858
|
* @throws ApiError
|
|
1521
1859
|
*/
|
|
1522
|
-
static
|
|
1523
|
-
|
|
1524
|
-
}): CancelablePromise<Array<
|
|
1860
|
+
static getDocumentBlueprintItem({ id, }: {
|
|
1861
|
+
id?: Array<string>;
|
|
1862
|
+
}): CancelablePromise<Array<DocumentBlueprintResponseModel>>;
|
|
1525
1863
|
/**
|
|
1526
1864
|
* @returns PagedDocumentBlueprintTreeItemResponseModel Success
|
|
1527
1865
|
* @throws ApiError
|
|
@@ -1537,26 +1875,26 @@ declare class DocumentTypeResource {
|
|
|
1537
1875
|
* @returns any Success
|
|
1538
1876
|
* @throws ApiError
|
|
1539
1877
|
*/
|
|
1540
|
-
static
|
|
1541
|
-
|
|
1878
|
+
static getDocumentTypeById({ id, }: {
|
|
1879
|
+
id: string;
|
|
1542
1880
|
}): CancelablePromise<DocumentTypeResponseModel>;
|
|
1881
|
+
/**
|
|
1882
|
+
* @returns any Success
|
|
1883
|
+
* @throws ApiError
|
|
1884
|
+
*/
|
|
1885
|
+
static getDocumentTypeItem({ id, }: {
|
|
1886
|
+
id?: Array<string>;
|
|
1887
|
+
}): CancelablePromise<Array<DocumentTypeItemResponseModel>>;
|
|
1543
1888
|
/**
|
|
1544
1889
|
* @returns PagedDocumentTypeTreeItemResponseModel Success
|
|
1545
1890
|
* @throws ApiError
|
|
1546
1891
|
*/
|
|
1547
|
-
static getTreeDocumentTypeChildren({
|
|
1548
|
-
|
|
1892
|
+
static getTreeDocumentTypeChildren({ parentId, skip, take, foldersOnly, }: {
|
|
1893
|
+
parentId?: string;
|
|
1549
1894
|
skip?: number;
|
|
1550
1895
|
take?: number;
|
|
1551
1896
|
foldersOnly?: boolean;
|
|
1552
1897
|
}): CancelablePromise<PagedDocumentTypeTreeItemResponseModel>;
|
|
1553
|
-
/**
|
|
1554
|
-
* @returns any Success
|
|
1555
|
-
* @throws ApiError
|
|
1556
|
-
*/
|
|
1557
|
-
static getTreeDocumentTypeItem({ key, }: {
|
|
1558
|
-
key?: Array<string>;
|
|
1559
|
-
}): CancelablePromise<Array<DocumentTypeTreeItemResponseModel>>;
|
|
1560
1898
|
/**
|
|
1561
1899
|
* @returns PagedDocumentTypeTreeItemResponseModel Success
|
|
1562
1900
|
* @throws ApiError
|
|
@@ -1699,6 +2037,13 @@ declare class LanguageResource {
|
|
|
1699
2037
|
isoCode: string;
|
|
1700
2038
|
requestBody?: UpdateLanguageRequestModel;
|
|
1701
2039
|
}): CancelablePromise<any>;
|
|
2040
|
+
/**
|
|
2041
|
+
* @returns any Success
|
|
2042
|
+
* @throws ApiError
|
|
2043
|
+
*/
|
|
2044
|
+
static getLanguageItem({ isoCode, }: {
|
|
2045
|
+
isoCode?: Array<string>;
|
|
2046
|
+
}): CancelablePromise<Array<LanguageItemResponseModel>>;
|
|
1702
2047
|
}
|
|
1703
2048
|
|
|
1704
2049
|
declare class LogViewerResource {
|
|
@@ -1792,32 +2137,48 @@ declare class MediaResource {
|
|
|
1792
2137
|
* @returns any Success
|
|
1793
2138
|
* @throws ApiError
|
|
1794
2139
|
*/
|
|
1795
|
-
static
|
|
1796
|
-
|
|
2140
|
+
static getMediaById({ id, }: {
|
|
2141
|
+
id: string;
|
|
1797
2142
|
}): CancelablePromise<DocumentResponseModel>;
|
|
1798
2143
|
/**
|
|
1799
2144
|
* @returns any Success
|
|
1800
2145
|
* @throws ApiError
|
|
1801
2146
|
*/
|
|
1802
|
-
static
|
|
1803
|
-
|
|
2147
|
+
static deleteMediaById({ id, }: {
|
|
2148
|
+
id: string;
|
|
1804
2149
|
}): CancelablePromise<any>;
|
|
1805
2150
|
/**
|
|
1806
2151
|
* @returns any Success
|
|
1807
2152
|
* @throws ApiError
|
|
1808
2153
|
*/
|
|
1809
|
-
static
|
|
1810
|
-
|
|
2154
|
+
static putMediaById({ id, requestBody, }: {
|
|
2155
|
+
id: string;
|
|
1811
2156
|
requestBody?: UpdateMediaRequestModel;
|
|
1812
2157
|
}): CancelablePromise<any>;
|
|
1813
2158
|
/**
|
|
1814
|
-
* @returns
|
|
2159
|
+
* @returns any Success
|
|
1815
2160
|
* @throws ApiError
|
|
1816
2161
|
*/
|
|
1817
|
-
static
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
2162
|
+
static putMediaByIdMove({ id, requestBody, }: {
|
|
2163
|
+
id: string;
|
|
2164
|
+
requestBody?: MoveMediaRequestModel;
|
|
2165
|
+
}): CancelablePromise<any>;
|
|
2166
|
+
/**
|
|
2167
|
+
* @returns any Success
|
|
2168
|
+
* @throws ApiError
|
|
2169
|
+
*/
|
|
2170
|
+
static getMediaItem({ id, dataTypeId, }: {
|
|
2171
|
+
id?: Array<string>;
|
|
2172
|
+
dataTypeId?: string;
|
|
2173
|
+
}): CancelablePromise<Array<MediaItemResponseModel>>;
|
|
2174
|
+
/**
|
|
2175
|
+
* @returns PagedRecycleBinItemResponseModel Success
|
|
2176
|
+
* @throws ApiError
|
|
2177
|
+
*/
|
|
2178
|
+
static getRecycleBinMediaChildren({ parentId, skip, take, }: {
|
|
2179
|
+
parentId?: string;
|
|
2180
|
+
skip?: number;
|
|
2181
|
+
take?: number;
|
|
1821
2182
|
}): CancelablePromise<PagedRecycleBinItemResponseModel>;
|
|
1822
2183
|
/**
|
|
1823
2184
|
* @returns PagedRecycleBinItemResponseModel Success
|
|
@@ -1831,28 +2192,28 @@ declare class MediaResource {
|
|
|
1831
2192
|
* @returns PagedContentTreeItemResponseModel Success
|
|
1832
2193
|
* @throws ApiError
|
|
1833
2194
|
*/
|
|
1834
|
-
static getTreeMediaChildren({
|
|
1835
|
-
|
|
2195
|
+
static getTreeMediaChildren({ parentId, skip, take, dataTypeId, }: {
|
|
2196
|
+
parentId?: string;
|
|
1836
2197
|
skip?: number;
|
|
1837
2198
|
take?: number;
|
|
1838
|
-
|
|
2199
|
+
dataTypeId?: string;
|
|
1839
2200
|
}): CancelablePromise<PagedContentTreeItemResponseModel>;
|
|
1840
2201
|
/**
|
|
1841
2202
|
* @returns any Success
|
|
1842
2203
|
* @throws ApiError
|
|
1843
2204
|
*/
|
|
1844
|
-
static getTreeMediaItem({
|
|
1845
|
-
|
|
1846
|
-
|
|
2205
|
+
static getTreeMediaItem({ id, dataTypeId, }: {
|
|
2206
|
+
id?: Array<string>;
|
|
2207
|
+
dataTypeId?: string;
|
|
1847
2208
|
}): CancelablePromise<Array<(ContentTreeItemResponseModel | DocumentTreeItemResponseModel)>>;
|
|
1848
2209
|
/**
|
|
1849
2210
|
* @returns PagedContentTreeItemResponseModel Success
|
|
1850
2211
|
* @throws ApiError
|
|
1851
2212
|
*/
|
|
1852
|
-
static getTreeMediaRoot({ skip, take,
|
|
2213
|
+
static getTreeMediaRoot({ skip, take, dataTypeId, }: {
|
|
1853
2214
|
skip?: number;
|
|
1854
2215
|
take?: number;
|
|
1855
|
-
|
|
2216
|
+
dataTypeId?: string;
|
|
1856
2217
|
}): CancelablePromise<PagedContentTreeItemResponseModel>;
|
|
1857
2218
|
}
|
|
1858
2219
|
|
|
@@ -1861,26 +2222,26 @@ declare class MediaTypeResource {
|
|
|
1861
2222
|
* @returns any Success
|
|
1862
2223
|
* @throws ApiError
|
|
1863
2224
|
*/
|
|
1864
|
-
static
|
|
1865
|
-
|
|
2225
|
+
static getMediaTypeById({ id, }: {
|
|
2226
|
+
id: string;
|
|
1866
2227
|
}): CancelablePromise<MediaTypeResponseModel>;
|
|
2228
|
+
/**
|
|
2229
|
+
* @returns any Success
|
|
2230
|
+
* @throws ApiError
|
|
2231
|
+
*/
|
|
2232
|
+
static getMediaTypeItem({ id, }: {
|
|
2233
|
+
id?: Array<string>;
|
|
2234
|
+
}): CancelablePromise<Array<MediaTypeItemResponseModel>>;
|
|
1867
2235
|
/**
|
|
1868
2236
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1869
2237
|
* @throws ApiError
|
|
1870
2238
|
*/
|
|
1871
|
-
static getTreeMediaTypeChildren({
|
|
1872
|
-
|
|
2239
|
+
static getTreeMediaTypeChildren({ parentId, skip, take, foldersOnly, }: {
|
|
2240
|
+
parentId?: string;
|
|
1873
2241
|
skip?: number;
|
|
1874
2242
|
take?: number;
|
|
1875
2243
|
foldersOnly?: boolean;
|
|
1876
2244
|
}): 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
2245
|
/**
|
|
1885
2246
|
* @returns PagedFolderTreeItemResponseModel Success
|
|
1886
2247
|
* @throws ApiError
|
|
@@ -1892,14 +2253,24 @@ declare class MediaTypeResource {
|
|
|
1892
2253
|
}): CancelablePromise<PagedFolderTreeItemResponseModel>;
|
|
1893
2254
|
}
|
|
1894
2255
|
|
|
2256
|
+
declare class MemberResource {
|
|
2257
|
+
/**
|
|
2258
|
+
* @returns any Success
|
|
2259
|
+
* @throws ApiError
|
|
2260
|
+
*/
|
|
2261
|
+
static getMemberItem({ id, }: {
|
|
2262
|
+
id?: Array<string>;
|
|
2263
|
+
}): CancelablePromise<Array<MemberItemResponseModel>>;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
1895
2266
|
declare class MemberGroupResource {
|
|
1896
2267
|
/**
|
|
1897
2268
|
* @returns any Success
|
|
1898
2269
|
* @throws ApiError
|
|
1899
2270
|
*/
|
|
1900
|
-
static
|
|
1901
|
-
|
|
1902
|
-
}): CancelablePromise<Array<
|
|
2271
|
+
static getMemberGroupItem({ id, }: {
|
|
2272
|
+
id?: Array<string>;
|
|
2273
|
+
}): CancelablePromise<Array<MemberGroupItemReponseModel>>;
|
|
1903
2274
|
/**
|
|
1904
2275
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1905
2276
|
* @throws ApiError
|
|
@@ -1915,9 +2286,9 @@ declare class MemberTypeResource {
|
|
|
1915
2286
|
* @returns any Success
|
|
1916
2287
|
* @throws ApiError
|
|
1917
2288
|
*/
|
|
1918
|
-
static
|
|
1919
|
-
|
|
1920
|
-
}): CancelablePromise<Array<
|
|
2289
|
+
static getMemberTypeItem({ id, }: {
|
|
2290
|
+
id?: Array<string>;
|
|
2291
|
+
}): CancelablePromise<Array<MemberTypeItemResponseModel>>;
|
|
1921
2292
|
/**
|
|
1922
2293
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
1923
2294
|
* @throws ApiError
|
|
@@ -1984,30 +2355,30 @@ declare class PackageResource {
|
|
|
1984
2355
|
* @returns any Success
|
|
1985
2356
|
* @throws ApiError
|
|
1986
2357
|
*/
|
|
1987
|
-
static
|
|
1988
|
-
|
|
2358
|
+
static getPackageCreatedById({ id, }: {
|
|
2359
|
+
id: string;
|
|
1989
2360
|
}): CancelablePromise<PackageDefinitionResponseModel>;
|
|
1990
2361
|
/**
|
|
1991
2362
|
* @returns any Success
|
|
1992
2363
|
* @throws ApiError
|
|
1993
2364
|
*/
|
|
1994
|
-
static
|
|
1995
|
-
|
|
2365
|
+
static deletePackageCreatedById({ id, }: {
|
|
2366
|
+
id: string;
|
|
1996
2367
|
}): CancelablePromise<any>;
|
|
1997
2368
|
/**
|
|
1998
2369
|
* @returns any Success
|
|
1999
2370
|
* @throws ApiError
|
|
2000
2371
|
*/
|
|
2001
|
-
static
|
|
2002
|
-
|
|
2372
|
+
static putPackageCreatedById({ id, requestBody, }: {
|
|
2373
|
+
id: string;
|
|
2003
2374
|
requestBody?: UpdatePackageRequestModel;
|
|
2004
2375
|
}): CancelablePromise<any>;
|
|
2005
2376
|
/**
|
|
2006
2377
|
* @returns binary Success
|
|
2007
2378
|
* @throws ApiError
|
|
2008
2379
|
*/
|
|
2009
|
-
static
|
|
2010
|
-
|
|
2380
|
+
static getPackageCreatedByIdDownload({ id, }: {
|
|
2381
|
+
id: string;
|
|
2011
2382
|
}): CancelablePromise<Blob>;
|
|
2012
2383
|
/**
|
|
2013
2384
|
* @returns any Success
|
|
@@ -2026,21 +2397,85 @@ declare class PackageResource {
|
|
|
2026
2397
|
|
|
2027
2398
|
declare class PartialViewResource {
|
|
2028
2399
|
/**
|
|
2029
|
-
* @returns
|
|
2400
|
+
* @returns any Success
|
|
2030
2401
|
* @throws ApiError
|
|
2031
2402
|
*/
|
|
2032
|
-
static
|
|
2403
|
+
static getPartialView({ path, }: {
|
|
2404
|
+
path?: string;
|
|
2405
|
+
}): CancelablePromise<PartialViewResponseModel>;
|
|
2406
|
+
/**
|
|
2407
|
+
* @returns string Created
|
|
2408
|
+
* @throws ApiError
|
|
2409
|
+
*/
|
|
2410
|
+
static postPartialView({ requestBody, }: {
|
|
2411
|
+
requestBody?: CreatePartialViewRequestModel;
|
|
2412
|
+
}): CancelablePromise<string>;
|
|
2413
|
+
/**
|
|
2414
|
+
* @returns any Success
|
|
2415
|
+
* @throws ApiError
|
|
2416
|
+
*/
|
|
2417
|
+
static deletePartialView({ path, }: {
|
|
2418
|
+
path?: string;
|
|
2419
|
+
}): CancelablePromise<any>;
|
|
2420
|
+
/**
|
|
2421
|
+
* @returns any Success
|
|
2422
|
+
* @throws ApiError
|
|
2423
|
+
*/
|
|
2424
|
+
static putPartialView({ requestBody, }: {
|
|
2425
|
+
requestBody?: UpdatePartialViewRequestModel;
|
|
2426
|
+
}): CancelablePromise<any>;
|
|
2427
|
+
/**
|
|
2428
|
+
* @returns any Success
|
|
2429
|
+
* @throws ApiError
|
|
2430
|
+
*/
|
|
2431
|
+
static postPartialViewFolder({ requestBody, }: {
|
|
2432
|
+
requestBody?: CreatePathFolderRequestModel;
|
|
2433
|
+
}): CancelablePromise<any>;
|
|
2434
|
+
/**
|
|
2435
|
+
* @returns any Success
|
|
2436
|
+
* @throws ApiError
|
|
2437
|
+
*/
|
|
2438
|
+
static deletePartialViewFolder({ path, }: {
|
|
2439
|
+
path?: string;
|
|
2440
|
+
}): CancelablePromise<any>;
|
|
2441
|
+
/**
|
|
2442
|
+
* @returns any Success
|
|
2443
|
+
* @throws ApiError
|
|
2444
|
+
*/
|
|
2445
|
+
static getPartialViewFolder({ path, }: {
|
|
2033
2446
|
path?: string;
|
|
2447
|
+
}): CancelablePromise<any>;
|
|
2448
|
+
/**
|
|
2449
|
+
* @returns any Success
|
|
2450
|
+
* @throws ApiError
|
|
2451
|
+
*/
|
|
2452
|
+
static getPartialViewItem({ id, }: {
|
|
2453
|
+
id?: Array<string>;
|
|
2454
|
+
}): CancelablePromise<Array<PartialViewItemResponseModel>>;
|
|
2455
|
+
/**
|
|
2456
|
+
* @returns PagedSnippetItemResponseModel Success
|
|
2457
|
+
* @throws ApiError
|
|
2458
|
+
*/
|
|
2459
|
+
static getPartialViewSnippet({ skip, take, }: {
|
|
2034
2460
|
skip?: number;
|
|
2035
2461
|
take?: number;
|
|
2036
|
-
}): CancelablePromise<
|
|
2462
|
+
}): CancelablePromise<PagedSnippetItemResponseModel>;
|
|
2037
2463
|
/**
|
|
2038
2464
|
* @returns any Success
|
|
2039
2465
|
* @throws ApiError
|
|
2040
2466
|
*/
|
|
2041
|
-
static
|
|
2042
|
-
|
|
2043
|
-
}): CancelablePromise<
|
|
2467
|
+
static getPartialViewSnippetByName({ name, }: {
|
|
2468
|
+
name: string;
|
|
2469
|
+
}): CancelablePromise<PartialViewSnippetResponseModel>;
|
|
2470
|
+
/**
|
|
2471
|
+
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2472
|
+
* @throws ApiError
|
|
2473
|
+
*/
|
|
2474
|
+
static getTreePartialViewChildren({ path, skip, take, }: {
|
|
2475
|
+
path?: string;
|
|
2476
|
+
skip?: number;
|
|
2477
|
+
take?: number;
|
|
2478
|
+
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2044
2479
|
/**
|
|
2045
2480
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2046
2481
|
* @throws ApiError
|
|
@@ -2066,6 +2501,17 @@ declare class ProfilingResource {
|
|
|
2066
2501
|
}): CancelablePromise<any>;
|
|
2067
2502
|
}
|
|
2068
2503
|
|
|
2504
|
+
declare class PropertyTypeResource {
|
|
2505
|
+
/**
|
|
2506
|
+
* @returns PagedBooleanModel Success
|
|
2507
|
+
* @throws ApiError
|
|
2508
|
+
*/
|
|
2509
|
+
static getPropertyTypeIsUsed({ contentTypeId, propertyAlias, }: {
|
|
2510
|
+
contentTypeId?: string;
|
|
2511
|
+
propertyAlias?: string;
|
|
2512
|
+
}): CancelablePromise<PagedBooleanModel>;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2069
2515
|
declare class PublishedCacheResource {
|
|
2070
2516
|
/**
|
|
2071
2517
|
* @returns any Success
|
|
@@ -2103,8 +2549,8 @@ declare class RedirectManagementResource {
|
|
|
2103
2549
|
* @returns PagedRedirectUrlResponseModel Success
|
|
2104
2550
|
* @throws ApiError
|
|
2105
2551
|
*/
|
|
2106
|
-
static
|
|
2107
|
-
|
|
2552
|
+
static getRedirectManagementById({ id, skip, take, }: {
|
|
2553
|
+
id: string;
|
|
2108
2554
|
skip?: number;
|
|
2109
2555
|
take?: number;
|
|
2110
2556
|
}): CancelablePromise<PagedRedirectUrlResponseModel>;
|
|
@@ -2112,8 +2558,8 @@ declare class RedirectManagementResource {
|
|
|
2112
2558
|
* @returns any Success
|
|
2113
2559
|
* @throws ApiError
|
|
2114
2560
|
*/
|
|
2115
|
-
static
|
|
2116
|
-
|
|
2561
|
+
static deleteRedirectManagementById({ id, }: {
|
|
2562
|
+
id: string;
|
|
2117
2563
|
}): CancelablePromise<any>;
|
|
2118
2564
|
/**
|
|
2119
2565
|
* @returns any Success
|
|
@@ -2151,8 +2597,8 @@ declare class RelationResource {
|
|
|
2151
2597
|
* @returns PagedRelationResponseModel Success
|
|
2152
2598
|
* @throws ApiError
|
|
2153
2599
|
*/
|
|
2154
|
-
static
|
|
2155
|
-
|
|
2600
|
+
static getRelationTypeById({ id, skip, take, }: {
|
|
2601
|
+
id: string;
|
|
2156
2602
|
skip?: number;
|
|
2157
2603
|
take?: number;
|
|
2158
2604
|
}): CancelablePromise<PagedRelationResponseModel>;
|
|
@@ -2170,31 +2616,31 @@ declare class RelationTypeResource {
|
|
|
2170
2616
|
* @returns any Success
|
|
2171
2617
|
* @throws ApiError
|
|
2172
2618
|
*/
|
|
2173
|
-
static
|
|
2174
|
-
|
|
2619
|
+
static getRelationTypeById({ id, }: {
|
|
2620
|
+
id: string;
|
|
2175
2621
|
}): CancelablePromise<RelationTypeResponseModel>;
|
|
2176
2622
|
/**
|
|
2177
2623
|
* @returns any Success
|
|
2178
2624
|
* @throws ApiError
|
|
2179
2625
|
*/
|
|
2180
|
-
static
|
|
2181
|
-
|
|
2626
|
+
static deleteRelationTypeById({ id, }: {
|
|
2627
|
+
id: string;
|
|
2182
2628
|
}): CancelablePromise<any>;
|
|
2183
2629
|
/**
|
|
2184
2630
|
* @returns any Success
|
|
2185
2631
|
* @throws ApiError
|
|
2186
2632
|
*/
|
|
2187
|
-
static
|
|
2188
|
-
|
|
2633
|
+
static putRelationTypeById({ id, requestBody, }: {
|
|
2634
|
+
id: string;
|
|
2189
2635
|
requestBody?: UpdateRelationTypeRequestModel;
|
|
2190
2636
|
}): CancelablePromise<RelationTypeResponseModel>;
|
|
2191
2637
|
/**
|
|
2192
2638
|
* @returns any Success
|
|
2193
2639
|
* @throws ApiError
|
|
2194
2640
|
*/
|
|
2195
|
-
static
|
|
2196
|
-
|
|
2197
|
-
}): CancelablePromise<Array<
|
|
2641
|
+
static getRelationTypeItem({ id, }: {
|
|
2642
|
+
id?: Array<string>;
|
|
2643
|
+
}): CancelablePromise<Array<RelationTypeItemResponseModel>>;
|
|
2198
2644
|
/**
|
|
2199
2645
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2200
2646
|
* @throws ApiError
|
|
@@ -2207,21 +2653,70 @@ declare class RelationTypeResource {
|
|
|
2207
2653
|
|
|
2208
2654
|
declare class ScriptResource {
|
|
2209
2655
|
/**
|
|
2210
|
-
* @returns
|
|
2656
|
+
* @returns any Success
|
|
2211
2657
|
* @throws ApiError
|
|
2212
2658
|
*/
|
|
2213
|
-
static
|
|
2659
|
+
static getScript({ path, }: {
|
|
2214
2660
|
path?: string;
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2661
|
+
}): CancelablePromise<ScriptResponseModel>;
|
|
2662
|
+
/**
|
|
2663
|
+
* @returns string Created
|
|
2664
|
+
* @throws ApiError
|
|
2665
|
+
*/
|
|
2666
|
+
static postScript({ requestBody, }: {
|
|
2667
|
+
requestBody?: CreateScriptRequestModel;
|
|
2668
|
+
}): CancelablePromise<string>;
|
|
2669
|
+
/**
|
|
2670
|
+
* @returns any Success
|
|
2671
|
+
* @throws ApiError
|
|
2672
|
+
*/
|
|
2673
|
+
static deleteScript({ path, }: {
|
|
2674
|
+
path?: string;
|
|
2675
|
+
}): CancelablePromise<any>;
|
|
2676
|
+
/**
|
|
2677
|
+
* @returns any Success
|
|
2678
|
+
* @throws ApiError
|
|
2679
|
+
*/
|
|
2680
|
+
static putScript({ requestBody, }: {
|
|
2681
|
+
requestBody?: UpdateScriptRequestModel;
|
|
2682
|
+
}): CancelablePromise<any>;
|
|
2683
|
+
/**
|
|
2684
|
+
* @returns any Success
|
|
2685
|
+
* @throws ApiError
|
|
2686
|
+
*/
|
|
2687
|
+
static getScriptFolder({ path, }: {
|
|
2688
|
+
path?: string;
|
|
2689
|
+
}): CancelablePromise<any>;
|
|
2690
|
+
/**
|
|
2691
|
+
* @returns any Success
|
|
2692
|
+
* @throws ApiError
|
|
2693
|
+
*/
|
|
2694
|
+
static postScriptFolder({ requestBody, }: {
|
|
2695
|
+
requestBody?: CreatePathFolderRequestModel;
|
|
2696
|
+
}): CancelablePromise<any>;
|
|
2697
|
+
/**
|
|
2698
|
+
* @returns any Success
|
|
2699
|
+
* @throws ApiError
|
|
2700
|
+
*/
|
|
2701
|
+
static deleteScriptFolder({ path, }: {
|
|
2702
|
+
path?: string;
|
|
2703
|
+
}): CancelablePromise<any>;
|
|
2218
2704
|
/**
|
|
2219
2705
|
* @returns any Success
|
|
2220
2706
|
* @throws ApiError
|
|
2221
2707
|
*/
|
|
2222
|
-
static
|
|
2708
|
+
static getScriptItem({ path, }: {
|
|
2223
2709
|
path?: Array<string>;
|
|
2224
|
-
}): CancelablePromise<Array<
|
|
2710
|
+
}): CancelablePromise<Array<ScriptItemResponseModel>>;
|
|
2711
|
+
/**
|
|
2712
|
+
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2713
|
+
* @throws ApiError
|
|
2714
|
+
*/
|
|
2715
|
+
static getTreeScriptChildren({ path, skip, take, }: {
|
|
2716
|
+
path?: string;
|
|
2717
|
+
skip?: number;
|
|
2718
|
+
take?: number;
|
|
2719
|
+
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2225
2720
|
/**
|
|
2226
2721
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2227
2722
|
* @throws ApiError
|
|
@@ -2263,7 +2758,9 @@ declare class SecurityResource {
|
|
|
2263
2758
|
* @returns any Success
|
|
2264
2759
|
* @throws ApiError
|
|
2265
2760
|
*/
|
|
2266
|
-
static
|
|
2761
|
+
static postSecurityBackOfficeLogin({ requestBody, }: {
|
|
2762
|
+
requestBody?: LoginRequestModel;
|
|
2763
|
+
}): CancelablePromise<any>;
|
|
2267
2764
|
}
|
|
2268
2765
|
|
|
2269
2766
|
declare class ServerResource {
|
|
@@ -2280,6 +2777,13 @@ declare class ServerResource {
|
|
|
2280
2777
|
}
|
|
2281
2778
|
|
|
2282
2779
|
declare class StaticFileResource {
|
|
2780
|
+
/**
|
|
2781
|
+
* @returns any Success
|
|
2782
|
+
* @throws ApiError
|
|
2783
|
+
*/
|
|
2784
|
+
static getStaticFileItem({ path, }: {
|
|
2785
|
+
path?: Array<string>;
|
|
2786
|
+
}): CancelablePromise<Array<StaticFileItemResponseModel>>;
|
|
2283
2787
|
/**
|
|
2284
2788
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2285
2789
|
* @throws ApiError
|
|
@@ -2289,13 +2793,6 @@ declare class StaticFileResource {
|
|
|
2289
2793
|
skip?: number;
|
|
2290
2794
|
take?: number;
|
|
2291
2795
|
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2292
|
-
/**
|
|
2293
|
-
* @returns any Success
|
|
2294
|
-
* @throws ApiError
|
|
2295
|
-
*/
|
|
2296
|
-
static getTreeStaticFileItem({ path, }: {
|
|
2297
|
-
path?: Array<string>;
|
|
2298
|
-
}): CancelablePromise<Array<FileSystemTreeItemPresentationModel>>;
|
|
2299
2796
|
/**
|
|
2300
2797
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2301
2798
|
* @throws ApiError
|
|
@@ -2308,21 +2805,99 @@ declare class StaticFileResource {
|
|
|
2308
2805
|
|
|
2309
2806
|
declare class StylesheetResource {
|
|
2310
2807
|
/**
|
|
2311
|
-
* @returns
|
|
2808
|
+
* @returns any Success
|
|
2312
2809
|
* @throws ApiError
|
|
2313
2810
|
*/
|
|
2314
|
-
static
|
|
2811
|
+
static getStylesheet({ path, }: {
|
|
2812
|
+
path?: string;
|
|
2813
|
+
}): CancelablePromise<StylesheetResponseModel>;
|
|
2814
|
+
/**
|
|
2815
|
+
* @returns string Created
|
|
2816
|
+
* @throws ApiError
|
|
2817
|
+
*/
|
|
2818
|
+
static postStylesheet({ requestBody, }: {
|
|
2819
|
+
requestBody?: CreateStylesheetRequestModel;
|
|
2820
|
+
}): CancelablePromise<string>;
|
|
2821
|
+
/**
|
|
2822
|
+
* @returns any Success
|
|
2823
|
+
* @throws ApiError
|
|
2824
|
+
*/
|
|
2825
|
+
static deleteStylesheet({ path, }: {
|
|
2315
2826
|
path?: string;
|
|
2827
|
+
}): CancelablePromise<any>;
|
|
2828
|
+
/**
|
|
2829
|
+
* @returns any Success
|
|
2830
|
+
* @throws ApiError
|
|
2831
|
+
*/
|
|
2832
|
+
static putStylesheet({ requestBody, }: {
|
|
2833
|
+
requestBody?: UpdateStylesheetRequestModel;
|
|
2834
|
+
}): CancelablePromise<any>;
|
|
2835
|
+
/**
|
|
2836
|
+
* @returns PagedStylesheetOverviewResponseModel Success
|
|
2837
|
+
* @throws ApiError
|
|
2838
|
+
*/
|
|
2839
|
+
static getStylesheetAll({ skip, take, }: {
|
|
2316
2840
|
skip?: number;
|
|
2317
2841
|
take?: number;
|
|
2318
|
-
}): CancelablePromise<
|
|
2842
|
+
}): CancelablePromise<PagedStylesheetOverviewResponseModel>;
|
|
2843
|
+
/**
|
|
2844
|
+
* @returns any Success
|
|
2845
|
+
* @throws ApiError
|
|
2846
|
+
*/
|
|
2847
|
+
static getStylesheetFolder({ path, }: {
|
|
2848
|
+
path?: string;
|
|
2849
|
+
}): CancelablePromise<any>;
|
|
2850
|
+
/**
|
|
2851
|
+
* @returns any Success
|
|
2852
|
+
* @throws ApiError
|
|
2853
|
+
*/
|
|
2854
|
+
static postStylesheetFolder({ requestBody, }: {
|
|
2855
|
+
requestBody?: CreatePathFolderRequestModel;
|
|
2856
|
+
}): CancelablePromise<any>;
|
|
2857
|
+
/**
|
|
2858
|
+
* @returns any Success
|
|
2859
|
+
* @throws ApiError
|
|
2860
|
+
*/
|
|
2861
|
+
static deleteStylesheetFolder({ path, }: {
|
|
2862
|
+
path?: string;
|
|
2863
|
+
}): CancelablePromise<any>;
|
|
2319
2864
|
/**
|
|
2320
2865
|
* @returns any Success
|
|
2321
2866
|
* @throws ApiError
|
|
2322
2867
|
*/
|
|
2323
|
-
static
|
|
2868
|
+
static getStylesheetItem({ path, }: {
|
|
2324
2869
|
path?: Array<string>;
|
|
2325
|
-
}): CancelablePromise<Array<
|
|
2870
|
+
}): CancelablePromise<Array<ScriptItemResponseModel>>;
|
|
2871
|
+
/**
|
|
2872
|
+
* @returns any Success
|
|
2873
|
+
* @throws ApiError
|
|
2874
|
+
*/
|
|
2875
|
+
static postStylesheetRichTextExtractRules({ requestBody, }: {
|
|
2876
|
+
requestBody?: ExtractRichTextStylesheetRulesRequestModel;
|
|
2877
|
+
}): CancelablePromise<ExtractRichTextStylesheetRulesResponseModel>;
|
|
2878
|
+
/**
|
|
2879
|
+
* @returns any Success
|
|
2880
|
+
* @throws ApiError
|
|
2881
|
+
*/
|
|
2882
|
+
static postStylesheetRichTextInterpolateRules({ requestBody, }: {
|
|
2883
|
+
requestBody?: InterpolateRichTextStylesheetRequestModel;
|
|
2884
|
+
}): CancelablePromise<InterpolateRichTextStylesheetResponseModel>;
|
|
2885
|
+
/**
|
|
2886
|
+
* @returns any Success
|
|
2887
|
+
* @throws ApiError
|
|
2888
|
+
*/
|
|
2889
|
+
static getStylesheetRichTextRules({ path, }: {
|
|
2890
|
+
path?: string;
|
|
2891
|
+
}): CancelablePromise<(RichTextStylesheetRulesResponseModel | ExtractRichTextStylesheetRulesResponseModel)>;
|
|
2892
|
+
/**
|
|
2893
|
+
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2894
|
+
* @throws ApiError
|
|
2895
|
+
*/
|
|
2896
|
+
static getTreeStylesheetChildren({ path, skip, take, }: {
|
|
2897
|
+
path?: string;
|
|
2898
|
+
skip?: number;
|
|
2899
|
+
take?: number;
|
|
2900
|
+
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2326
2901
|
/**
|
|
2327
2902
|
* @returns PagedFileSystemTreeItemPresentationModel Success
|
|
2328
2903
|
* @throws ApiError
|
|
@@ -2333,6 +2908,20 @@ declare class StylesheetResource {
|
|
|
2333
2908
|
}): CancelablePromise<PagedFileSystemTreeItemPresentationModel>;
|
|
2334
2909
|
}
|
|
2335
2910
|
|
|
2911
|
+
declare class TagResource {
|
|
2912
|
+
/**
|
|
2913
|
+
* @returns PagedTagResponseModel Success
|
|
2914
|
+
* @throws ApiError
|
|
2915
|
+
*/
|
|
2916
|
+
static getTag({ query, tagGroup, culture, skip, take, }: {
|
|
2917
|
+
query?: string;
|
|
2918
|
+
tagGroup?: string;
|
|
2919
|
+
culture?: string;
|
|
2920
|
+
skip?: number;
|
|
2921
|
+
take?: number;
|
|
2922
|
+
}): CancelablePromise<PagedTagResponseModel>;
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2336
2925
|
declare class TelemetryResource {
|
|
2337
2926
|
/**
|
|
2338
2927
|
* @returns PagedTelemetryResponseModel Success
|
|
@@ -2368,24 +2957,31 @@ declare class TemplateResource {
|
|
|
2368
2957
|
* @returns any Success
|
|
2369
2958
|
* @throws ApiError
|
|
2370
2959
|
*/
|
|
2371
|
-
static
|
|
2372
|
-
|
|
2960
|
+
static getTemplateById({ id, }: {
|
|
2961
|
+
id: string;
|
|
2373
2962
|
}): CancelablePromise<TemplateResponseModel>;
|
|
2374
2963
|
/**
|
|
2375
2964
|
* @returns any Success
|
|
2376
2965
|
* @throws ApiError
|
|
2377
2966
|
*/
|
|
2378
|
-
static
|
|
2379
|
-
|
|
2967
|
+
static deleteTemplateById({ id, }: {
|
|
2968
|
+
id: string;
|
|
2380
2969
|
}): CancelablePromise<any>;
|
|
2381
2970
|
/**
|
|
2382
2971
|
* @returns any Success
|
|
2383
2972
|
* @throws ApiError
|
|
2384
2973
|
*/
|
|
2385
|
-
static
|
|
2386
|
-
|
|
2974
|
+
static putTemplateById({ id, requestBody, }: {
|
|
2975
|
+
id: string;
|
|
2387
2976
|
requestBody?: UpdateTemplateRequestModel;
|
|
2388
2977
|
}): CancelablePromise<any>;
|
|
2978
|
+
/**
|
|
2979
|
+
* @returns any Success
|
|
2980
|
+
* @throws ApiError
|
|
2981
|
+
*/
|
|
2982
|
+
static getTemplateItem({ id, }: {
|
|
2983
|
+
id?: Array<string>;
|
|
2984
|
+
}): CancelablePromise<Array<TemplateItemResponseModel>>;
|
|
2389
2985
|
/**
|
|
2390
2986
|
* @returns any Success
|
|
2391
2987
|
* @throws ApiError
|
|
@@ -2407,18 +3003,11 @@ declare class TemplateResource {
|
|
|
2407
3003
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2408
3004
|
* @throws ApiError
|
|
2409
3005
|
*/
|
|
2410
|
-
static getTreeTemplateChildren({
|
|
2411
|
-
|
|
3006
|
+
static getTreeTemplateChildren({ parentId, skip, take, }: {
|
|
3007
|
+
parentId?: string;
|
|
2412
3008
|
skip?: number;
|
|
2413
3009
|
take?: number;
|
|
2414
3010
|
}): 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
3011
|
/**
|
|
2423
3012
|
* @returns PagedEntityTreeItemResponseModel Success
|
|
2424
3013
|
* @throws ApiError
|
|
@@ -2429,13 +3018,40 @@ declare class TemplateResource {
|
|
|
2429
3018
|
}): CancelablePromise<PagedEntityTreeItemResponseModel>;
|
|
2430
3019
|
}
|
|
2431
3020
|
|
|
3021
|
+
declare class TemporaryFileResource {
|
|
3022
|
+
/**
|
|
3023
|
+
* @returns string Created
|
|
3024
|
+
* @throws ApiError
|
|
3025
|
+
*/
|
|
3026
|
+
static postTemporaryfile({ formData, }: {
|
|
3027
|
+
formData?: {
|
|
3028
|
+
Id?: string;
|
|
3029
|
+
File?: Blob;
|
|
3030
|
+
};
|
|
3031
|
+
}): CancelablePromise<string>;
|
|
3032
|
+
/**
|
|
3033
|
+
* @returns any Success
|
|
3034
|
+
* @throws ApiError
|
|
3035
|
+
*/
|
|
3036
|
+
static getTemporaryfileById({ id, }: {
|
|
3037
|
+
id: string;
|
|
3038
|
+
}): CancelablePromise<TemporaryFileResponseModel>;
|
|
3039
|
+
/**
|
|
3040
|
+
* @returns any Success
|
|
3041
|
+
* @throws ApiError
|
|
3042
|
+
*/
|
|
3043
|
+
static deleteTemporaryfileById({ id, }: {
|
|
3044
|
+
id: string;
|
|
3045
|
+
}): CancelablePromise<any>;
|
|
3046
|
+
}
|
|
3047
|
+
|
|
2432
3048
|
declare class TrackedReferenceResource {
|
|
2433
3049
|
/**
|
|
2434
3050
|
* @returns PagedRelationItemResponseModel Success
|
|
2435
3051
|
* @throws ApiError
|
|
2436
3052
|
*/
|
|
2437
|
-
static
|
|
2438
|
-
|
|
3053
|
+
static getTrackedReferenceById({ id, skip, take, filterMustBeIsDependency, }: {
|
|
3054
|
+
id: string;
|
|
2439
3055
|
skip?: number;
|
|
2440
3056
|
take?: number;
|
|
2441
3057
|
filterMustBeIsDependency?: boolean;
|
|
@@ -2444,8 +3060,8 @@ declare class TrackedReferenceResource {
|
|
|
2444
3060
|
* @returns PagedRelationItemResponseModel Success
|
|
2445
3061
|
* @throws ApiError
|
|
2446
3062
|
*/
|
|
2447
|
-
static
|
|
2448
|
-
|
|
3063
|
+
static getTrackedReferenceDescendantsByParentId({ parentId, skip, take, filterMustBeIsDependency, }: {
|
|
3064
|
+
parentId: string;
|
|
2449
3065
|
skip?: number;
|
|
2450
3066
|
take?: number;
|
|
2451
3067
|
filterMustBeIsDependency?: boolean;
|
|
@@ -2454,8 +3070,8 @@ declare class TrackedReferenceResource {
|
|
|
2454
3070
|
* @returns PagedRelationItemResponseModel Success
|
|
2455
3071
|
* @throws ApiError
|
|
2456
3072
|
*/
|
|
2457
|
-
static getTrackedReferenceItem({
|
|
2458
|
-
|
|
3073
|
+
static getTrackedReferenceItem({ id, skip, take, filterMustBeIsDependency, }: {
|
|
3074
|
+
id?: Array<string>;
|
|
2459
3075
|
skip?: number;
|
|
2460
3076
|
take?: number;
|
|
2461
3077
|
filterMustBeIsDependency?: boolean;
|
|
@@ -2475,19 +3091,137 @@ declare class UpgradeResource {
|
|
|
2475
3091
|
static getUpgradeSettings(): CancelablePromise<UpgradeSettingsResponseModel>;
|
|
2476
3092
|
}
|
|
2477
3093
|
|
|
2478
|
-
declare class
|
|
3094
|
+
declare class UserResource {
|
|
3095
|
+
/**
|
|
3096
|
+
* @returns any Success
|
|
3097
|
+
* @throws ApiError
|
|
3098
|
+
*/
|
|
3099
|
+
static postUser({ requestBody, }: {
|
|
3100
|
+
requestBody?: (CreateUserRequestModel | InviteUserRequestModel);
|
|
3101
|
+
}): CancelablePromise<CreateUserResponseModel>;
|
|
3102
|
+
/**
|
|
3103
|
+
* @returns PagedUserResponseModel Success
|
|
3104
|
+
* @throws ApiError
|
|
3105
|
+
*/
|
|
3106
|
+
static getUser({ skip, take, }: {
|
|
3107
|
+
skip?: number;
|
|
3108
|
+
take?: number;
|
|
3109
|
+
}): CancelablePromise<PagedUserResponseModel>;
|
|
3110
|
+
/**
|
|
3111
|
+
* @returns any Success
|
|
3112
|
+
* @throws ApiError
|
|
3113
|
+
*/
|
|
3114
|
+
static getUserById({ id, }: {
|
|
3115
|
+
id: string;
|
|
3116
|
+
}): CancelablePromise<UserResponseModel>;
|
|
3117
|
+
/**
|
|
3118
|
+
* @returns any Success
|
|
3119
|
+
* @throws ApiError
|
|
3120
|
+
*/
|
|
3121
|
+
static deleteUserById({ id, }: {
|
|
3122
|
+
id: string;
|
|
3123
|
+
}): CancelablePromise<any>;
|
|
3124
|
+
/**
|
|
3125
|
+
* @returns any Success
|
|
3126
|
+
* @throws ApiError
|
|
3127
|
+
*/
|
|
3128
|
+
static putUserById({ id, requestBody, }: {
|
|
3129
|
+
id: string;
|
|
3130
|
+
requestBody?: UpdateUserRequestModel;
|
|
3131
|
+
}): CancelablePromise<any>;
|
|
3132
|
+
/**
|
|
3133
|
+
* @returns any Success
|
|
3134
|
+
* @throws ApiError
|
|
3135
|
+
*/
|
|
3136
|
+
static deleteUserAvatarById({ id, }: {
|
|
3137
|
+
id: string;
|
|
3138
|
+
}): CancelablePromise<any>;
|
|
3139
|
+
/**
|
|
3140
|
+
* @returns any Success
|
|
3141
|
+
* @throws ApiError
|
|
3142
|
+
*/
|
|
3143
|
+
static postUserAvatarById({ id, requestBody, }: {
|
|
3144
|
+
id: string;
|
|
3145
|
+
requestBody?: SetAvatarRequestModel;
|
|
3146
|
+
}): CancelablePromise<any>;
|
|
3147
|
+
/**
|
|
3148
|
+
* @returns any Success
|
|
3149
|
+
* @throws ApiError
|
|
3150
|
+
*/
|
|
3151
|
+
static postUserChangePasswordById({ id, requestBody, }: {
|
|
3152
|
+
id: string;
|
|
3153
|
+
requestBody?: ChangePasswordUserRequestModel;
|
|
3154
|
+
}): CancelablePromise<any>;
|
|
3155
|
+
/**
|
|
3156
|
+
* @returns any Success
|
|
3157
|
+
* @throws ApiError
|
|
3158
|
+
*/
|
|
3159
|
+
static postUserDisable({ requestBody, }: {
|
|
3160
|
+
requestBody?: DisableUserRequestModel;
|
|
3161
|
+
}): CancelablePromise<any>;
|
|
3162
|
+
/**
|
|
3163
|
+
* @returns any Success
|
|
3164
|
+
* @throws ApiError
|
|
3165
|
+
*/
|
|
3166
|
+
static postUserEnable({ requestBody, }: {
|
|
3167
|
+
requestBody?: EnableUserRequestModel;
|
|
3168
|
+
}): CancelablePromise<any>;
|
|
3169
|
+
/**
|
|
3170
|
+
* @returns any Success
|
|
3171
|
+
* @throws ApiError
|
|
3172
|
+
*/
|
|
3173
|
+
static getUserFilter({ skip, take, orderBy, orderDirection, userGroupIds, userStates, filter, }: {
|
|
3174
|
+
skip?: number;
|
|
3175
|
+
take?: number;
|
|
3176
|
+
orderBy?: UserOrderModel;
|
|
3177
|
+
orderDirection?: DirectionModel;
|
|
3178
|
+
userGroupIds?: Array<string>;
|
|
3179
|
+
userStates?: Array<UserStateModel>;
|
|
3180
|
+
filter?: string;
|
|
3181
|
+
}): CancelablePromise<any>;
|
|
3182
|
+
/**
|
|
3183
|
+
* @returns string Created
|
|
3184
|
+
* @throws ApiError
|
|
3185
|
+
*/
|
|
3186
|
+
static postUserInvite({ requestBody, }: {
|
|
3187
|
+
requestBody?: InviteUserRequestModel;
|
|
3188
|
+
}): CancelablePromise<string>;
|
|
3189
|
+
/**
|
|
3190
|
+
* @returns any Success
|
|
3191
|
+
* @throws ApiError
|
|
3192
|
+
*/
|
|
3193
|
+
static getUserItem({ id, }: {
|
|
3194
|
+
id?: Array<string>;
|
|
3195
|
+
}): CancelablePromise<Array<UserItemResponseModel>>;
|
|
3196
|
+
/**
|
|
3197
|
+
* @returns any Success
|
|
3198
|
+
* @throws ApiError
|
|
3199
|
+
*/
|
|
3200
|
+
static postUserSetUserGroups({ requestBody, }: {
|
|
3201
|
+
requestBody?: UpdateUserGroupsOnUserRequestModel;
|
|
3202
|
+
}): CancelablePromise<any>;
|
|
3203
|
+
/**
|
|
3204
|
+
* @returns any Success
|
|
3205
|
+
* @throws ApiError
|
|
3206
|
+
*/
|
|
3207
|
+
static postUserUnlock({ requestBody, }: {
|
|
3208
|
+
requestBody?: UnlockUsersRequestModel;
|
|
3209
|
+
}): CancelablePromise<any>;
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
declare class UserGroupResource {
|
|
2479
3213
|
/**
|
|
2480
3214
|
* @returns string Created
|
|
2481
3215
|
* @throws ApiError
|
|
2482
3216
|
*/
|
|
2483
|
-
static
|
|
3217
|
+
static postUserGroup({ requestBody, }: {
|
|
2484
3218
|
requestBody?: SaveUserGroupRequestModel;
|
|
2485
3219
|
}): CancelablePromise<string>;
|
|
2486
3220
|
/**
|
|
2487
3221
|
* @returns PagedUserGroupPresentationModel Success
|
|
2488
3222
|
* @throws ApiError
|
|
2489
3223
|
*/
|
|
2490
|
-
static
|
|
3224
|
+
static getUserGroup({ skip, take, }: {
|
|
2491
3225
|
skip?: number;
|
|
2492
3226
|
take?: number;
|
|
2493
3227
|
}): CancelablePromise<PagedUserGroupPresentationModel>;
|
|
@@ -2495,24 +3229,31 @@ declare class UserGroupsResource {
|
|
|
2495
3229
|
* @returns any Success
|
|
2496
3230
|
* @throws ApiError
|
|
2497
3231
|
*/
|
|
2498
|
-
static
|
|
2499
|
-
|
|
3232
|
+
static getUserGroupById({ id, }: {
|
|
3233
|
+
id: string;
|
|
2500
3234
|
}): CancelablePromise<UserGroupPresentationModel>;
|
|
2501
3235
|
/**
|
|
2502
3236
|
* @returns any Success
|
|
2503
3237
|
* @throws ApiError
|
|
2504
3238
|
*/
|
|
2505
|
-
static
|
|
2506
|
-
|
|
3239
|
+
static deleteUserGroupById({ id, }: {
|
|
3240
|
+
id: string;
|
|
2507
3241
|
}): CancelablePromise<any>;
|
|
2508
3242
|
/**
|
|
2509
3243
|
* @returns any Success
|
|
2510
3244
|
* @throws ApiError
|
|
2511
3245
|
*/
|
|
2512
|
-
static
|
|
2513
|
-
|
|
3246
|
+
static putUserGroupById({ id, requestBody, }: {
|
|
3247
|
+
id: string;
|
|
2514
3248
|
requestBody?: UpdateUserGroupRequestModel;
|
|
2515
3249
|
}): CancelablePromise<any>;
|
|
3250
|
+
/**
|
|
3251
|
+
* @returns any Success
|
|
3252
|
+
* @throws ApiError
|
|
3253
|
+
*/
|
|
3254
|
+
static getUserGroupItem({ id, }: {
|
|
3255
|
+
id?: Array<string>;
|
|
3256
|
+
}): CancelablePromise<Array<UserGroupItemResponseModel>>;
|
|
2516
3257
|
}
|
|
2517
3258
|
|
|
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,
|
|
3259
|
+
export { ApiError, AuditLogBaseModel, AuditLogResource, AuditLogResponseModel, AuditLogWithUsernameResponseModel, AuditTypeModel, CancelError, CancelablePromise, ChangePasswordUserRequestModel, ConsentLevelPresentationModel, ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel, ContentStateModel, ContentTreeItemResponseModel, ContentTypeCleanupModel, ContentTypeCompositionModel, ContentTypeCompositionTypeModel, ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel, ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel, ContentTypeSortModel, ContentUrlInfoModel, CopyDataTypeRequestModel, CopyDocumentRequestModel, CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel, CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel, CreateDataTypeRequestModel, CreateDictionaryItemRequestModel, CreateDocumentRequestModel, CreateFolderRequestModel, CreateLanguageRequestModel, CreateMediaRequestModel, CreatePackageRequestModel, CreatePartialViewRequestModel, CreatePathFolderRequestModel, CreateRelationTypeRequestModel, CreateScriptRequestModel, CreateStylesheetRequestModel, CreateTemplateRequestModel, CreateTextFileViewModelBaseModel, CreateUserRequestModel, CreateUserResponseModel, CultureReponseModel, CultureResource, DataTypeItemResponseModel, DataTypeModelBaseModel, DataTypePropertyPresentationModel, DataTypePropertyReferenceModel, DataTypeReferenceResponseModel, DataTypeResource, DataTypeResponseModel, DatabaseInstallResponseModel, DatabaseSettingsPresentationModel, DictionaryItemItemResponseModel, DictionaryItemModelBaseModel, DictionaryItemResponseModel, DictionaryItemTranslationModel, DictionaryOverviewResponseModel, DictionaryResource, DirectionModel, DisableUserRequestModel, DocumentBlueprintResource, DocumentBlueprintResponseModel, DocumentBlueprintTreeItemResponseModel, DocumentItemResponseModel, DocumentNotificationResponseModel, DocumentResource, DocumentResponseModel, DocumentTreeItemResponseModel, DocumentTypeItemResponseModel, DocumentTypePropertyTypeContainerResponseModel, DocumentTypePropertyTypeResponseModel, DocumentTypeResource, DocumentTypeResponseModel, DocumentTypeTreeItemResponseModel, DocumentValueModel, DocumentVariantRequestModel, DocumentVariantResponseModel, DomainPresentationModel, DomainsPresentationModelBaseModel, DomainsResponseModel, EnableUserRequestModel, EntityTreeItemResponseModel, ExtractRichTextStylesheetRulesRequestModel, ExtractRichTextStylesheetRulesResponseModel, FieldPresentationModel, FileItemResponseModelBaseModel, FileSystemTreeItemPresentationModel, FolderModelBaseModel, FolderReponseModel, FolderTreeItemResponseModel, HealthCheckActionRequestModel, HealthCheckGroupPresentationBaseModel, HealthCheckGroupPresentationModel, HealthCheckGroupResponseModel, HealthCheckGroupWithResultResponseModel, HealthCheckModel, HealthCheckModelBaseModel, HealthCheckResource, HealthCheckResultResponseModel, HealthCheckWithResultPresentationModel, HealthStatusModel, HelpPageResponseModel, HelpResource, ImportDictionaryRequestModel, IndexResponseModel, IndexerResource, InstallResource, InstallSettingsResponseModel, InstallVResponseModel, InterpolateRichTextStylesheetRequestModel, InterpolateRichTextStylesheetResponseModel, InviteUserRequestModel, ItemResponseModelBaseModel, LanguageItemResponseModel, LanguageModelBaseModel, LanguageResource, LanguageResponseModel, LogLevelCountsReponseModel, LogLevelModel, LogMessagePropertyPresentationModel, LogMessageResponseModel, LogTemplateResponseModel, LogViewerResource, LoggerResponseModel, LoginRequestModel, MediaItemResponseModel, MediaResource, MediaTypeItemResponseModel, MediaTypePropertyTypeContainerResponseModel, MediaTypePropertyTypeResponseModel, MediaTypeResource, MediaTypeResponseModel, MediaValueModel, MediaVariantRequestModel, MediaVariantResponseModel, MemberGroupItemReponseModel, MemberGroupResource, MemberItemResponseModel, MemberResource, MemberTypeItemResponseModel, MemberTypeResource, ModelsBuilderResource, ModelsBuilderResponseModel, ModelsModeModel, MoveDataTypeRequestModel, MoveDictionaryRequestModel, MoveDocumentRequestModel, MoveMediaRequestModel, ObjectTypeResponseModel, ObjectTypesResource, OkResultModel, OpenAPI, OpenAPIConfig, OperatorModel, OutOfDateStatusResponseModel, OutOfDateTypeModel, PackageDefinitionResponseModel, PackageManifestResponseModel, PackageMigrationStatusResponseModel, PackageModelBaseModel, PackageResource, PagedAuditLogResponseModel, PagedAuditLogWithUsernameResponseModel, PagedBooleanModel, PagedContentTreeItemResponseModel, PagedCultureReponseModel, PagedDictionaryOverviewResponseModel, PagedDocumentBlueprintTreeItemResponseModel, PagedDocumentTreeItemResponseModel, PagedDocumentTypeTreeItemResponseModel, PagedEntityTreeItemResponseModel, PagedFileSystemTreeItemPresentationModel, PagedFolderTreeItemResponseModel, PagedHealthCheckGroupResponseModel, PagedHelpPageResponseModel, PagedIndexResponseModel, PagedLanguageResponseModel, PagedLogMessageResponseModel, PagedLogTemplateResponseModel, PagedLoggerResponseModel, PagedObjectTypeResponseModel, PagedPackageDefinitionResponseModel, PagedPackageMigrationStatusResponseModel, PagedRecycleBinItemResponseModel, PagedRedirectUrlResponseModel, PagedRelationItemResponseModel, PagedRelationResponseModel, PagedSavedLogSearchResponseModel, PagedSearchResultResponseModel, PagedSearcherResponseModel, PagedSnippetItemResponseModel, PagedStylesheetOverviewResponseModel, PagedTagResponseModel, PagedTelemetryResponseModel, PagedUserGroupPresentationModel, PagedUserResponseModel, PartialViewItemResponseModel, PartialViewResource, PartialViewResponseModel, PartialViewSnippetResponseModel, PartialViewUpdateModel, PathFolderModelBaseModel, PathFolderResponseModel, ProblemDetailsModel, ProfilingResource, ProfilingStatusRequestModel, ProfilingStatusResponseModel, PropertyTypeAppearanceModel, PropertyTypeContainerResponseModelBaseModel, PropertyTypeResource, PropertyTypeResponseModelBaseModel, PropertyTypeValidationModel, PublishedCacheResource, RecycleBinItemResponseModel, RedirectManagementResource, RedirectStatusModel, RedirectUrlResponseModel, RedirectUrlStatusResponseModel, RelationItemResponseModel, RelationResource, RelationResponseModel, RelationTypeBaseModel, RelationTypeItemResponseModel, RelationTypeResource, RelationTypeResponseModel, RichTextRuleModel, RichTextStylesheetRulesResponseModel, RuntimeLevelModel, SaveUserGroupRequestModel, SavedLogSearchPresenationBaseModel, SavedLogSearchRequestModel, SavedLogSearchResponseModel, ScriptItemResponseModel, ScriptResource, ScriptResponseModel, ScriptUpdateModel, ScriptViewModelBaseModel, SearchResultResponseModel, SearcherResource, SearcherResponseModel, SecurityResource, ServerResource, ServerStatusResponseModel, SetAvatarRequestModel, SnippetItemResponseModel, StaticFileItemResponseModel, StaticFileResource, StatusResultTypeModel, StylesheetItemResponseModel, StylesheetOverviewResponseModel, StylesheetResource, StylesheetResponseModel, StylesheetUpdateModel, TagResource, TagResponseModel, TelemetryLevelModel, TelemetryRepresentationBaseModel, TelemetryRequestModel, TelemetryResource, TelemetryResponseModel, TemplateItemResponseModel, TemplateModelBaseModel, TemplateQueryExecuteFilterPresentationModel, TemplateQueryExecuteModel, TemplateQueryExecuteSortModel, TemplateQueryOperatorModel, TemplateQueryPropertyPresentationModel, TemplateQueryPropertyTypeModel, TemplateQueryResultItemPresentationModel, TemplateQueryResultResponseModel, TemplateQuerySettingsResponseModel, TemplateResource, TemplateResponseModel, TemplateScaffoldResponseModel, TemporaryFileResource, TemporaryFileResponseModel, TextFileResponseModelBaseModel, TextFileUpdateModel, TextFileViewModelBaseModel, TrackedReferenceResource, TreeItemPresentationModel, UnlockUsersRequestModel, UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel, UpdateContentRequestModelBaseMediaValueModelMediaVariantRequestModel, UpdateDataTypeRequestModel, UpdateDictionaryItemRequestModel, UpdateDocumentNotificationsRequestModel, UpdateDocumentRequestModel, UpdateDomainsRequestModel, UpdateFolderReponseModel, UpdateLanguageRequestModel, UpdateMediaRequestModel, UpdatePackageRequestModel, UpdatePartialViewRequestModel, UpdateRelationTypeRequestModel, UpdateScriptRequestModel, UpdateStylesheetRequestModel, UpdateTemplateRequestModel, UpdateTextFileViewModelBaseModel, UpdateUserGroupRequestModel, UpdateUserGroupsOnUserRequestModel, UpdateUserRequestModel, UpgradeResource, UpgradeSettingsResponseModel, UserGroupBaseModel, UserGroupItemResponseModel, UserGroupPresentationModel, UserGroupResource, UserInstallResponseModel, UserItemResponseModel, UserOrderModel, UserPresentationBaseModel, UserResource, UserResponseModel, UserSettingsModel, UserStateModel, ValueModelBaseModel, VariantModelBaseModel, VariantResponseModelBaseModel, VersionResponseModel };
|