diff --git a/src/Umbraco.Cms.Api.Management/Controllers/Element/CreateAndPublishElementController.cs b/src/Umbraco.Cms.Api.Management/Controllers/Element/CreateAndPublishElementController.cs new file mode 100644 index 000000000000..55147154c912 --- /dev/null +++ b/src/Umbraco.Cms.Api.Management/Controllers/Element/CreateAndPublishElementController.cs @@ -0,0 +1,88 @@ +using Asp.Versioning; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Umbraco.Cms.Api.Management.Factories; +using Umbraco.Cms.Api.Management.ViewModels.Element; +using Umbraco.Cms.Core; +using Umbraco.Cms.Core.Actions; +using Umbraco.Cms.Core.Models.ContentEditing; +using Umbraco.Cms.Core.Security; +using Umbraco.Cms.Core.Security.Authorization; +using Umbraco.Cms.Core.Services; +using Umbraco.Cms.Core.Services.OperationStatus; +using Umbraco.Cms.Web.Common.Authorization; +using Umbraco.Extensions; + +namespace Umbraco.Cms.Api.Management.Controllers.Element; + +/// +/// API controller responsible for handling operations related to the creation and publishing of elements in the Umbraco CMS. +/// +[ApiVersion("1.0")] +public class CreateAndPublishElementController : CreateElementControllerBase +{ + private readonly IAuthorizationService _authorizationService; + private readonly IElementEditingPresentationFactory _elementEditingPresentationFactory; + private readonly IElementEditingService _elementEditingService; + private readonly IBackOfficeSecurityAccessor _backOfficeSecurityAccessor; + + /// + /// Initializes a new instance of the class. + /// + /// Service used to authorize access to element creation and publishing operations. + /// Factory for creating element editing presentation models. + /// Service responsible for element editing functionality. + /// Accessor for back office security context. + public CreateAndPublishElementController( + IAuthorizationService authorizationService, + IElementEditingPresentationFactory elementEditingPresentationFactory, + IElementEditingService elementEditingService, + IBackOfficeSecurityAccessor backOfficeSecurityAccessor) + : base(authorizationService) + { + _authorizationService = authorizationService; + _elementEditingPresentationFactory = elementEditingPresentationFactory; + _elementEditingService = elementEditingService; + _backOfficeSecurityAccessor = backOfficeSecurityAccessor; + } + + /// + /// Creates a new element using the specified request model, and subsequently publishes the element in the cultures provided. + /// + /// Token to monitor for cancellation requests. + /// The details of the element to create. + /// An representing the result of the operation. + [HttpPost("create-and-publish")] + [MapToApiVersion("1.0")] + [ProducesResponseType(StatusCodes.Status201Created)] + [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status400BadRequest)] + [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status404NotFound)] + [EndpointSummary("Creates and publishes a new element.")] + [EndpointDescription("Creates and publishes a new element with the configuration specified in the request model.")] + public async Task Create( + CancellationToken cancellationToken, + CreateAndPublishElementRequestModel requestModel) + => await HandleRequest(requestModel, async () => + { + // The base HandleRequest verifies the user can create under the parent. + // Creating-and-publishing additionally requires publish permission, so we check that here. + AuthorizationResult publishAuthorizationResult = await _authorizationService.AuthorizeResourceAsync( + User, + ElementPermissionResource.WithKeys(ActionElementPublish.ActionLetter, requestModel.Parent?.Id, requestModel.CulturesToPublish), + AuthorizationPolicies.ElementPermissionByResource); + + if (publishAuthorizationResult.Succeeded is false) + { + return Forbidden(); + } + + ElementCreateModel model = _elementEditingPresentationFactory.MapCreateModel(requestModel); + Attempt result = + await _elementEditingService.CreateAndPublishAsync(model, requestModel.CulturesToPublish, CurrentUserKey(_backOfficeSecurityAccessor)); + + return result.Success + ? CreatedAtId(controller => nameof(controller.ByKey), result.Result.Content!.Key) + : ContentEditingOperationStatusResult(result.Status); + }); +} diff --git a/src/Umbraco.Cms.Api.Management/Controllers/Element/UpdateAndPublishElementController.cs b/src/Umbraco.Cms.Api.Management/Controllers/Element/UpdateAndPublishElementController.cs new file mode 100644 index 000000000000..61d12d318c3f --- /dev/null +++ b/src/Umbraco.Cms.Api.Management/Controllers/Element/UpdateAndPublishElementController.cs @@ -0,0 +1,91 @@ +using Asp.Versioning; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Umbraco.Cms.Api.Management.Factories; +using Umbraco.Cms.Api.Management.ViewModels.Element; +using Umbraco.Cms.Core; +using Umbraco.Cms.Core.Actions; +using Umbraco.Cms.Core.Models.ContentEditing; +using Umbraco.Cms.Core.Security; +using Umbraco.Cms.Core.Security.Authorization; +using Umbraco.Cms.Core.Services; +using Umbraco.Cms.Core.Services.OperationStatus; +using Umbraco.Cms.Web.Common.Authorization; +using Umbraco.Extensions; + +namespace Umbraco.Cms.Api.Management.Controllers.Element; + +/// +/// Controller responsible for handling update-and-publish operations on elements in the management API. +/// +[ApiVersion("1.0")] +public class UpdateAndPublishElementController : UpdateElementControllerBase +{ + private readonly IAuthorizationService _authorizationService; + private readonly IElementEditingPresentationFactory _elementEditingPresentationFactory; + private readonly IElementEditingService _elementEditingService; + private readonly IBackOfficeSecurityAccessor _backOfficeSecurityAccessor; + + /// + /// Initializes a new instance of the class. + /// + /// Service for verifying user permissions to update and publish. + /// Factory for creating element editing presentation models. + /// Service for managing element updates. + /// Accessor for the back office user security context. + public UpdateAndPublishElementController( + IAuthorizationService authorizationService, + IElementEditingPresentationFactory elementEditingPresentationFactory, + IElementEditingService elementEditingService, + IBackOfficeSecurityAccessor backOfficeSecurityAccessor) + : base(authorizationService) + { + _authorizationService = authorizationService; + _elementEditingPresentationFactory = elementEditingPresentationFactory; + _elementEditingService = elementEditingService; + _backOfficeSecurityAccessor = backOfficeSecurityAccessor; + } + + /// + /// Updates the specified element with new details provided in the request model, and subsequently publishes the element in the cultures provided. + /// + /// A token to monitor for cancellation requests. + /// The unique identifier of the element to update. + /// The model containing the updated element details. + /// An representing the outcome of the update operation. + [HttpPut("{id:guid}/update-and-publish")] + [MapToApiVersion("1.0")] + [ProducesResponseType(StatusCodes.Status200OK)] + [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status400BadRequest)] + [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status404NotFound)] + [EndpointSummary("Updates and publishes an element.")] + [EndpointDescription("Updates and publishes an element identified by the provided Id with the details from the request model.")] + public async Task Update( + CancellationToken cancellationToken, + Guid id, + UpdateAndPublishElementRequestModel requestModel) + => await HandleRequest(id, requestModel, async () => + { + // The base HandleRequest verifies the user can update the element. + // Updating-and-publishing additionally requires publish permission, so we check that here. + AuthorizationResult publishAuthorizationResult = await _authorizationService.AuthorizeResourceAsync( + User, + ElementPermissionResource.WithKeys(ActionElementPublish.ActionLetter, id, requestModel.CulturesToPublish), + AuthorizationPolicies.ElementPermissionByResource); + + if (publishAuthorizationResult.Succeeded is false) + { + return Forbidden(); + } + + ElementUpdateModel model = _elementEditingPresentationFactory.MapUpdateModel(requestModel); + Guid currentUserKey = CurrentUserKey(_backOfficeSecurityAccessor); + Attempt result = + await _elementEditingService.UpdateAndPublishAsync(id, model, requestModel.CulturesToPublish, currentUserKey); + + return result.Success + ? Ok() + : ContentEditingOperationStatusResult(result.Status); + }); +} diff --git a/src/Umbraco.Cms.Api.Management/OpenApi.json b/src/Umbraco.Cms.Api.Management/OpenApi.json index 2a007815bae0..564e60ecf0f8 100644 --- a/src/Umbraco.Cms.Api.Management/OpenApi.json +++ b/src/Umbraco.Cms.Api.Management/OpenApi.json @@ -13214,6 +13214,129 @@ ] } }, + "/umbraco/management/api/v1/element/{id}/update-and-publish": { + "put": { + "tags": [ + "Element" + ], + "summary": "Updates and publishes an element.", + "description": "Updates and publishes an element identified by the provided Id with the details from the request model.", + "operationId": "PutElementByIdUpdateAndPublish", + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateAndPublishElementRequestModel" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "headers": { + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": [ + "null", + "array" + ], + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + } + } + } + } + }, + "400": { + "description": "Bad Request", + "headers": { + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": [ + "null", + "array" + ], + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + } + } + } + }, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "404": { + "description": "Not Found", + "headers": { + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": [ + "null", + "array" + ], + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + } + } + } + }, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "The resource is protected and requires an authentication token" + }, + "403": { + "description": "The authenticated user does not have access to this resource", + "headers": { + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": [ + "null", + "array" + ], + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + } + } + } + } + } + }, + "security": [ + { + "Backoffice-User": [ ] + } + ] + } + }, "/umbraco/management/api/v1/element/{id}/validate": { "put": { "tags": [ @@ -13434,6 +13557,133 @@ ] } }, + "/umbraco/management/api/v1/element/create-and-publish": { + "post": { + "tags": [ + "Element" + ], + "summary": "Creates and publishes a new element.", + "description": "Creates and publishes a new element with the configuration specified in the request model.", + "operationId": "PostElementCreateAndPublish", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateAndPublishElementRequestModel" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Created", + "headers": { + "Umb-Generated-Resource": { + "description": "Identifier of the newly created resource", + "schema": { + "type": "string", + "description": "Identifier of the newly created resource" + } + }, + "Location": { + "description": "Location of the newly created resource", + "schema": { + "type": "string", + "description": "Location of the newly created resource", + "format": "uri" + } + }, + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": [ + "null", + "array" + ], + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + } + } + } + } + }, + "400": { + "description": "Bad Request", + "headers": { + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": [ + "null", + "array" + ], + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + } + } + } + }, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "404": { + "description": "Not Found", + "headers": { + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": [ + "null", + "array" + ], + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + } + } + } + }, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "401": { + "description": "The resource is protected and requires an authentication token" + }, + "403": { + "description": "The authenticated user does not have access to this resource", + "headers": { + "Umb-Notifications": { + "description": "The list of notifications produced during the request.", + "schema": { + "type": [ + "null", + "array" + ], + "items": { + "$ref": "#/components/schemas/NotificationHeaderModel" + } + } + } + } + } + }, + "security": [ + { + "Backoffice-User": [ ] + } + ] + } + }, "/umbraco/management/api/v1/element/folder": { "post": { "tags": [ @@ -40660,6 +40910,55 @@ } } }, + "CreateAndPublishElementRequestModel": { + "required": [ + "documentType", + "culturesToPublish", + "values", + "variants" + ], + "type": "object", + "properties": { + "culturesToPublish": { + "type": "array", + "items": { + "type": "string" + } + }, + "documentType": { + "$ref": "#/components/schemas/ReferenceByIdModel" + }, + "parent": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/components/schemas/ReferenceByIdModel" + } + ] + }, + "id": { + "type": [ + "null", + "string" + ], + "format": "uuid" + }, + "values": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ElementValueModel" + } + }, + "variants": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ElementVariantRequestModel" + } + } + } + }, "CreateDataTypeRequestModel": { "required": [ "name", @@ -51808,6 +52107,34 @@ } } }, + "UpdateAndPublishElementRequestModel": { + "required": [ + "culturesToPublish", + "values", + "variants" + ], + "type": "object", + "properties": { + "culturesToPublish": { + "type": "array", + "items": { + "type": "string" + } + }, + "values": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ElementValueModel" + } + }, + "variants": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ElementVariantRequestModel" + } + } + } + }, "UpdateCurrentUserRequestModel": { "required": [ "languageIsoCode" diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Element/CreateAndPublishElementRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Element/CreateAndPublishElementRequestModel.cs new file mode 100644 index 000000000000..e98c8b0e01c0 --- /dev/null +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Element/CreateAndPublishElementRequestModel.cs @@ -0,0 +1,12 @@ +namespace Umbraco.Cms.Api.Management.ViewModels.Element; + +/// +/// Represents the API request model used for creating and publishing a new element in Umbraco. +/// +public class CreateAndPublishElementRequestModel : CreateElementRequestModel +{ + /// + /// The cultures to publish after creating the element. + /// + public string[] CulturesToPublish { get; set; } = []; +} diff --git a/src/Umbraco.Cms.Api.Management/ViewModels/Element/UpdateAndPublishElementRequestModel.cs b/src/Umbraco.Cms.Api.Management/ViewModels/Element/UpdateAndPublishElementRequestModel.cs new file mode 100644 index 000000000000..98421db025ea --- /dev/null +++ b/src/Umbraco.Cms.Api.Management/ViewModels/Element/UpdateAndPublishElementRequestModel.cs @@ -0,0 +1,12 @@ +namespace Umbraco.Cms.Api.Management.ViewModels.Element; + +/// +/// Represents a request model used for updating and publishing an element via the API. +/// +public class UpdateAndPublishElementRequestModel : UpdateElementRequestModel +{ + /// + /// The cultures to publish after updating the element. + /// + public string[] CulturesToPublish { get; set; } = []; +} diff --git a/src/Umbraco.Core/Services/ContentEditingService.cs b/src/Umbraco.Core/Services/ContentEditingService.cs index 44943ebcaab4..38f280073f8c 100644 --- a/src/Umbraco.Core/Services/ContentEditingService.cs +++ b/src/Umbraco.Core/Services/ContentEditingService.cs @@ -352,7 +352,7 @@ private async Task SaveAndPublish(IContent conten } catch (Exception ex) { - _logger.LogError(ex, "Content save operation failed"); + _logger.LogError(ex, "Content save and publish operation failed"); return ContentEditingOperationStatus.Unknown; } } diff --git a/src/Umbraco.Core/Services/ContentService.cs b/src/Umbraco.Core/Services/ContentService.cs index bd692d626838..929209a4e7b4 100644 --- a/src/Umbraco.Core/Services/ContentService.cs +++ b/src/Umbraco.Core/Services/ContentService.cs @@ -757,129 +757,6 @@ public bool IsPathPublishable(IContent content) #region Save, Publish, Unpublish - public PublishResult SaveAndPublish(IContent content, string[] culturesToPublish, int userId = Constants.Security.SuperUserId) - { - if (content == null) - { - throw new ArgumentNullException(nameof(content)); - } - - if (culturesToPublish == null) - { - throw new ArgumentNullException(nameof(culturesToPublish)); - } - - // wildcards and nulls are not accepted here; cultures must be explicit - if (culturesToPublish.Any(x => x == null || x == "*")) - { - throw new InvalidOperationException( - "Only valid cultures are allowed to be used in this method, wildcards or nulls are not allowed"); - } - - EnsureCulturesAreValid(culturesToPublish, nameof(culturesToPublish)); - - culturesToPublish = culturesToPublish.Select(x => x.EnsureCultureCode()!).ToArray(); - - EnsureNameLengthIsValid(content); - - EnsurePublishedStateAllowsPublish(content); - - var varies = content.ContentType.VariesByCulture(); - if (varies is false) - { - if (culturesToPublish.Length > 0) - { - throw new ArgumentException( - "Cultures cannot be specified when publishing invariant content types.", - nameof(culturesToPublish)); - } - - // doesn't vary; publish the invariant culture in a single scope alongside the save - return SaveAndPublish(content, userId: userId); - } - - using ICoreScope scope = ScopeProvider.CreateCoreScope(); - scope.WriteLock(Constants.Locks.ContentTree); - - var allLangs = _languageRepository.GetMany().ToList(); - - EventMessages evtMsgs = EventMessagesFactory.Get(); - - var savingNotification = new ContentSavingNotification(content, evtMsgs); - if (scope.Notifications.PublishCancelable(savingNotification)) - { - return new PublishResult(PublishResultType.FailedPublishCancelledByEvent, evtMsgs, content); - } - - IEnumerable impacts = - culturesToPublish.Select(x => _cultureImpactFactory.ImpactExplicit(x, IsDefaultCulture(allLangs, x))); - - // publish the culture(s) - // we don't care about the response here, this response will be rechecked below but we need to set the culture info values now. - foreach (CultureImpact impact in impacts) - { - content.PublishCulture(impact, DateTime.UtcNow, _propertyEditorCollection); - } - - PublishResult result = CommitContentChangesInternal(scope, content, evtMsgs, allLangs, savingNotification.State, userId); - scope.Complete(); - return result; - } - - private PublishResult SaveAndPublish(IContent content, string culture = "*", int userId = Constants.Security.SuperUserId) - { - EventMessages evtMsgs = EventMessagesFactory.Get(); - - EnsurePublishedStateAllowsPublish(content); - - // cannot accept invariant (null or empty) culture for variant content type - // cannot accept a specific culture for invariant content type (but '*' is ok) - if (content.ContentType.VariesByCulture()) - { - if (culture.IsNullOrWhiteSpace()) - { - throw new NotSupportedException("Invariant culture is not supported by variant content types."); - } - } - else - { - if (!culture.IsNullOrWhiteSpace() && culture != "*") - { - throw new NotSupportedException( - $"Culture \"{culture}\" is not supported by invariant content types."); - } - } - - EnsureNameLengthIsValid(content); - - using ICoreScope scope = ScopeProvider.CreateCoreScope(); - scope.WriteLock(Constants.Locks.ContentTree); - - var allLangs = _languageRepository.GetMany().ToList(); - - // Change state to publishing - content.PublishedState = PublishedState.Publishing; - var savingNotification = new ContentSavingNotification(content, evtMsgs); - if (scope.Notifications.PublishCancelable(savingNotification)) - { - return new PublishResult(PublishResultType.FailedPublishCancelledByEvent, evtMsgs, content); - } - - // if culture is specific, first publish the invariant values, then publish the culture itself. - // if culture is '*', then publish them all (including variants) - - // this will create the correct culture impact even if culture is * or null - var impact = _cultureImpactFactory.Create(culture, IsDefaultCulture(allLangs, culture), content); - - // publish the culture(s) - // we don't care about the response here, this response will be rechecked below but we need to set the culture info values now. - content.PublishCulture(impact, DateTime.UtcNow, _propertyEditorCollection); - - PublishResult result = CommitContentChangesInternal(scope, content, evtMsgs, allLangs, savingNotification.State, userId); - scope.Complete(); - return result; - } - /// /// /// Publishes/unpublishes any pending publishing changes made to the document. @@ -1031,34 +908,6 @@ public IEnumerable PublishBranch(IContent content, PublishBranchF return PublishBranch(content, ShouldPublish, PublishBranch_PublishCultures, userId); } - private const int MaxContentNameLength = 255; - - private static void EnsureNameLengthIsValid(IContent content) - { - if (content.Name?.Length > MaxContentNameLength) - { - throw new InvalidOperationException($"Name cannot be more than {MaxContentNameLength} characters in length."); - } - } - - private static void EnsureCulturesAreValid(string[] cultures, string paramName) - { - if (cultures.Any(c => c.IsNullOrWhiteSpace()) || cultures.Distinct().Count() != cultures.Length) - { - throw new ArgumentException("Cultures cannot be null or whitespace, and must be distinct.", paramName); - } - } - - private static void EnsurePublishedStateAllowsPublish(IContent content) - { - PublishedState publishedState = content.PublishedState; - if (publishedState != PublishedState.Published && publishedState != PublishedState.Unpublished) - { - throw new InvalidOperationException( - $"Cannot save-and-publish (un)publishing content, use the dedicated {nameof(CommitDocumentChanges)} method."); - } - } - private static string[] EnsureCultures(IContent content, string[] cultures) { // Ensure consistent indication of "all cultures" for variant content. diff --git a/src/Umbraco.Core/Services/ElementEditingService.cs b/src/Umbraco.Core/Services/ElementEditingService.cs index 55b707f7a3fc..b2eed3bb6e02 100644 --- a/src/Umbraco.Core/Services/ElementEditingService.cs +++ b/src/Umbraco.Core/Services/ElementEditingService.cs @@ -130,6 +130,13 @@ public async Task> CreateAsync(ElementCreateModel createModel, Guid userKey) + => await HandleCreateAsync(createModel, null, userKey); + + /// + public async Task> CreateAndPublishAsync(ElementCreateModel createModel, string[] culturesToPublish, Guid userKey) + => await HandleCreateAsync(createModel, culturesToPublish, userKey); + + private async Task> HandleCreateAsync(ElementCreateModel createModel, string[]? culturesToPublish, Guid userKey) { if (await ValidateCulturesAsync(createModel) is false) { @@ -149,13 +156,22 @@ public async Task> C IElement element = await EnsureOnlyAllowedFieldsAreUpdated(result.Result.Content!, userKey); - ContentEditingOperationStatus saveStatus = await SaveAsync(element, userKey); + ContentEditingOperationStatus saveStatus = culturesToPublish is null + ? await SaveAsync(element, userKey) + : await SaveAndPublish(element, culturesToPublish, userKey); return saveStatus == ContentEditingOperationStatus.Success ? Attempt.SucceedWithStatus(validationStatus, new ElementCreateResult { Content = element, ValidationResult = validationResult }) : Attempt.FailWithStatus(saveStatus, new ElementCreateResult { Content = element }); } public async Task> UpdateAsync(Guid key, ElementUpdateModel updateModel, Guid userKey) + => await HandleUpdateAsync(key, updateModel, null, userKey); + + /// + public async Task> UpdateAndPublishAsync(Guid key, ElementUpdateModel updateModel, string[] culturesToPublish, Guid userKey) + => await HandleUpdateAsync(key, updateModel, culturesToPublish, userKey); + + private async Task> HandleUpdateAsync(Guid key, ElementUpdateModel updateModel, string[]? culturesToPublish, Guid userKey) { IElement? element = ContentService.GetById(key); if (element is null) @@ -181,7 +197,9 @@ public async Task> U element = await EnsureOnlyAllowedFieldsAreUpdated(element, userKey); - ContentEditingOperationStatus saveStatus = await SaveAsync(element, userKey); + ContentEditingOperationStatus saveStatus = culturesToPublish is null + ? await SaveAsync(element, userKey) + : await SaveAndPublish(element, culturesToPublish, userKey); return saveStatus == ContentEditingOperationStatus.Success ? Attempt.SucceedWithStatus(validationStatus, new ElementUpdateResult { Content = element, ValidationResult = validationResult }) : Attempt.FailWithStatus(saveStatus, new ElementUpdateResult { Content = element }); @@ -566,6 +584,30 @@ private async Task SaveAsync(IElement content, Gu } } + private async Task SaveAndPublish(IElement content, string[] culturesToPublish, Guid userKey) + { + try + { + var currentUserId = await GetUserIdAsync(userKey); + PublishResult publishResult = ContentService.SaveAndPublish(content, culturesToPublish, userId: currentUserId); + if (publishResult.Success) + { + return ContentEditingOperationStatus.Success; + } + + return publishResult.Result switch + { + PublishResultType.FailedPublishCancelledByEvent => ContentEditingOperationStatus.CancelledByNotification, + _ => ContentEditingOperationStatus.Unknown, + }; + } + catch (Exception ex) + { + _logger.LogError(ex, "Content save and publish operation failed"); + return ContentEditingOperationStatus.Unknown; + } + } + private static bool IsAllowedLibraryElement(IContentType contentType) => contentType.IsElement && contentType.AllowedInLibrary; } diff --git a/src/Umbraco.Core/Services/IContentService.cs b/src/Umbraco.Core/Services/IContentService.cs index e5a21bff42b1..32dedc9de838 100644 --- a/src/Umbraco.Core/Services/IContentService.cs +++ b/src/Umbraco.Core/Services/IContentService.cs @@ -451,44 +451,6 @@ OperationResult SortChildren(int parentId, IReadOnlyList orderedChildIds, i /// The identifier of the user performing the action. PublishResult Publish(IContent content, string[] cultures, int userId = Constants.Security.SuperUserId); - /// - /// Saves and publishes a document in a single scope. - /// - /// - /// - /// For invariant content types, must be empty; the document is - /// saved and the invariant culture is published. - /// - /// - /// For variant content types, only the cultures listed in are - /// published. Wildcards ("*"), nulls, whitespace and duplicate entries are not accepted. Passing - /// an empty array saves the document without publishing any culture. - /// - /// When a culture is being published, it includes all varying values along with all invariant values. - /// - /// The save and publish run in the same scope. If publishing fails for a business reason (for example, - /// invalid content or an expired schedule) the save still takes effect; both are skipped only when a - /// saving notification handler cancels the operation. - /// - /// - /// The document to publish. - /// The cultures to publish, or an empty array for invariant content. - /// The identifier of the user performing the action. - // TODO (V19): Remove the default implementation when the method is no longer new. - PublishResult SaveAndPublish(IContent content, string[] culturesToPublish, int userId = Constants.Security.SuperUserId) - { - OperationResult saveResult = Save(content, userId); - if (saveResult.Success) - { - return Publish(content, culturesToPublish, userId); - } - - PublishResultType resultType = saveResult.Result == OperationResultType.FailedCancelledByEvent - ? PublishResultType.FailedPublishCancelledByEvent - : PublishResultType.FailedPublish; - return new PublishResult(resultType, saveResult.EventMessages, content); - } - /// /// Publishes a document branch. /// diff --git a/src/Umbraco.Core/Services/IElementEditingService.cs b/src/Umbraco.Core/Services/IElementEditingService.cs index 40103376f298..4df9be1f8bc6 100644 --- a/src/Umbraco.Core/Services/IElementEditingService.cs +++ b/src/Umbraco.Core/Services/IElementEditingService.cs @@ -38,6 +38,17 @@ public interface IElementEditingService /// An attempt containing the creation result or an error status. Task> CreateAsync(ElementCreateModel createModel, Guid userKey); + /// + /// Creates and publishes a new element. + /// + /// The model containing the element data. + /// The cultures to publish. + /// The unique identifier of the user performing the action. + /// An attempt containing the creation result or an error status. + // TODO (V19): Remove default implementation. + Task> CreateAndPublishAsync(ElementCreateModel createModel, string[] culturesToPublish, Guid userKey) + => throw new NotImplementedException(); + /// /// Updates an existing element. /// @@ -47,6 +58,18 @@ public interface IElementEditingService /// An attempt containing the update result or an error status. Task> UpdateAsync(Guid key, ElementUpdateModel updateModel, Guid userKey); + /// + /// Updates and publishes an existing element. + /// + /// The unique identifier of the element to update. + /// The model containing the updated element data. + /// The cultures to publish. + /// The unique identifier of the user performing the action. + /// An attempt containing the update result or an error status. + // TODO (V19): Remove default implementation. + Task> UpdateAndPublishAsync(Guid key, ElementUpdateModel updateModel, string[] culturesToPublish, Guid userKey) + => throw new NotImplementedException(); + /// /// Deletes an element whether it is in the recycle bin or not. /// diff --git a/src/Umbraco.Core/Services/IPublishableContentService.cs b/src/Umbraco.Core/Services/IPublishableContentService.cs index d804e5956d2f..b130fee13be7 100644 --- a/src/Umbraco.Core/Services/IPublishableContentService.cs +++ b/src/Umbraco.Core/Services/IPublishableContentService.cs @@ -85,6 +85,45 @@ public interface IPublishableContentService : IContentServiceBaseThe identifier of the user performing the action. PublishResult Publish(TContent content, string[] cultures, int userId = Constants.Security.SuperUserId); + /// + /// Saves and publishes content in a single scope. + /// + /// + /// + /// For invariant content types, must be empty; the content is + /// saved and the invariant culture is published. + /// + /// + /// For variant content types, only the cultures listed in are + /// published. Wildcards ("*"), nulls, whitespace and duplicate entries are not accepted. Passing + /// an empty array saves the content without publishing any culture. + /// + /// When a culture is being published, it includes all varying values along with all invariant values. + /// + /// The save and publish run in the same scope. If publishing fails for a business reason (for example, + /// invalid content or an expired schedule) the save still takes effect; both are skipped only when a + /// saving notification handler cancels the operation. + /// + /// + /// The content to publish. + /// The cultures to publish, or an empty array for invariant content. + /// The identifier of the user performing the action. + /// The result of the publish operation, or a failure result if saving failed. + // TODO (V19): Remove the default implementation when the method is no longer new. + PublishResult SaveAndPublish(TContent content, string[] culturesToPublish, int userId = Constants.Security.SuperUserId) + { + OperationResult saveResult = Save(content, userId); + if (saveResult.Success) + { + return Publish(content, culturesToPublish, userId); + } + + PublishResultType resultType = saveResult.Result == OperationResultType.FailedCancelledByEvent + ? PublishResultType.FailedPublishCancelledByEvent + : PublishResultType.FailedPublish; + return new PublishResult(resultType, saveResult.EventMessages, content); + } + /// /// Unpublishes content. /// diff --git a/src/Umbraco.Core/Services/PublishableContentServiceBase.cs b/src/Umbraco.Core/Services/PublishableContentServiceBase.cs index b33107fdeeed..b7d525226b07 100644 --- a/src/Umbraco.Core/Services/PublishableContentServiceBase.cs +++ b/src/Umbraco.Core/Services/PublishableContentServiceBase.cs @@ -784,13 +784,151 @@ public PublishResult Publish(TContent content, string[] cultures, int userId = C } /// - public PublishResult Unpublish(TContent content, string? culture = "*", int userId = Constants.Security.SuperUserId) + public PublishResult SaveAndPublish(TContent content, string[] culturesToPublish, int userId = Constants.Security.SuperUserId) { - if (content == null) + ArgumentNullException.ThrowIfNull(content); + ArgumentNullException.ThrowIfNull(culturesToPublish); + + // wildcards and nulls are not accepted here; cultures must be explicit + if (culturesToPublish.Any(x => x == null || x == "*")) { - throw new ArgumentNullException(nameof(content)); + throw new InvalidOperationException( + "Only valid cultures are allowed to be used in this method, wildcards or nulls are not allowed"); + } + + EnsureCulturesAreValid(culturesToPublish, nameof(culturesToPublish)); + + culturesToPublish = culturesToPublish.Select(x => x.EnsureCultureCode()!).ToArray(); + + EnsureNameLengthIsValid(content); + + EnsurePublishedStateAllowsPublish(content); + + var varies = content.ContentType.VariesByCulture(); + if (varies is false) + { + if (culturesToPublish.Length > 0) + { + throw new ArgumentException( + "Cultures cannot be specified when publishing invariant content types.", + nameof(culturesToPublish)); + } + + // doesn't vary; publish the invariant culture in a single scope alongside the save + return SaveAndPublish(content, userId: userId); + } + + using ICoreScope scope = ScopeProvider.CreateCoreScope(); + scope.WriteLock(WriteLockIds); + + var allLangs = _languageRepository.GetMany().ToList(); + + EventMessages evtMsgs = EventMessagesFactory.Get(); + + SavingNotification savingNotification = SavingNotification(content, evtMsgs); + if (scope.Notifications.PublishCancelable(savingNotification)) + { + return new PublishResult(PublishResultType.FailedPublishCancelledByEvent, evtMsgs, content); + } + + IEnumerable impacts = + culturesToPublish.Select(x => _cultureImpactFactory.ImpactExplicit(x, IsDefaultCulture(allLangs, x))); + + // publish the culture(s) + // we don't care about the response here, this response will be rechecked below but we need to set the culture info values now. + foreach (CultureImpact impact in impacts) + { + content.PublishCulture(impact, DateTime.UtcNow, _propertyEditorCollection); } + PublishResult result = CommitContentChangesInternal(scope, content, evtMsgs, allLangs, savingNotification.State, userId); + scope.Complete(); + return result; + } + + private PublishResult SaveAndPublish(TContent content, string culture = "*", int userId = Constants.Security.SuperUserId) + { + EventMessages evtMsgs = EventMessagesFactory.Get(); + + EnsurePublishedStateAllowsPublish(content); + + // cannot accept invariant (null or empty) culture for variant content type + // cannot accept a specific culture for invariant content type (but '*' is ok) + if (content.ContentType.VariesByCulture()) + { + if (culture.IsNullOrWhiteSpace()) + { + throw new NotSupportedException("Invariant culture is not supported by variant content types."); + } + } + else + { + if (!culture.IsNullOrWhiteSpace() && culture != "*") + { + throw new NotSupportedException( + $"Culture \"{culture}\" is not supported by invariant content types."); + } + } + + EnsureNameLengthIsValid(content); + + using ICoreScope scope = ScopeProvider.CreateCoreScope(); + scope.WriteLock(WriteLockIds); + + var allLangs = _languageRepository.GetMany().ToList(); + + // Change state to publishing + content.PublishedState = PublishedState.Publishing; + SavingNotification savingNotification = SavingNotification(content, evtMsgs); + if (scope.Notifications.PublishCancelable(savingNotification)) + { + return new PublishResult(PublishResultType.FailedPublishCancelledByEvent, evtMsgs, content); + } + + // this will create the correct culture impact even if culture is * or null + var impact = _cultureImpactFactory.Create(culture, IsDefaultCulture(allLangs, culture), content); + + // publish the culture(s) + // we don't care about the response here, this response will be rechecked below but we need to set the culture info values now. + content.PublishCulture(impact, DateTime.UtcNow, _propertyEditorCollection); + + PublishResult result = CommitContentChangesInternal(scope, content, evtMsgs, allLangs, savingNotification.State, userId); + scope.Complete(); + return result; + } + + private static void EnsureNameLengthIsValid(TContent content) + { + const int MaxContentNameLength = 255; + if (content.Name?.Length > MaxContentNameLength) + { + throw new InvalidOperationException($"Name cannot be more than {MaxContentNameLength} characters in length."); + } + } + + private static void EnsureCulturesAreValid(string[] cultures, string paramName) + { + if (cultures.Any(c => c.IsNullOrWhiteSpace()) || cultures.Distinct().Count() != cultures.Length) + { + throw new ArgumentException("Cultures cannot be null or whitespace, and must be distinct.", paramName); + } + } + + private static void EnsurePublishedStateAllowsPublish(TContent content) + { + PublishedState publishedState = content.PublishedState; + if (publishedState != PublishedState.Published && publishedState != PublishedState.Unpublished) + { + throw new InvalidOperationException( + $"Cannot save-and-publish (un)publishing content, use the dedicated {nameof(CommitContentChanges)} method."); + } + } + + /// + public PublishResult Unpublish(TContent content, string? culture = "*", int userId = Constants.Security.SuperUserId) + { + ArgumentNullException.ThrowIfNull(content); + EventMessages evtMsgs = EventMessagesFactory.Get(); culture = culture?.NullOrWhiteSpaceAsNull().EnsureCultureCode(); diff --git a/src/Umbraco.Web.UI.Client/mocks/db/element-publishing.manager.ts b/src/Umbraco.Web.UI.Client/mocks/db/element-publishing.manager.ts index cf9b052069f9..d4f732e1400c 100644 --- a/src/Umbraco.Web.UI.Client/mocks/db/element-publishing.manager.ts +++ b/src/Umbraco.Web.UI.Client/mocks/db/element-publishing.manager.ts @@ -1,8 +1,10 @@ import type { UmbMockElementModel } from '../data/mock-data-set.types.js'; import type { UmbElementMockDB } from './element.db.js'; import type { + CreateAndPublishElementRequestModel, PublishElementRequestModel, UnpublishElementRequestModel, + UpdateAndPublishElementRequestModel, } from '@umbraco-cms/backoffice/external/backend-api'; import { UmbElementVariantState } from '@umbraco-cms/backoffice/element'; @@ -13,6 +15,33 @@ export class UmbMockElementPublishingManager { this.#elementDb = elementDb; } + createAndPublish(data: CreateAndPublishElementRequestModel) { + const id = this.#elementDb.detail.create(data); + this.#publishCultures(id, data.culturesToPublish); + return id; + } + + updateAndPublish(id: string, data: UpdateAndPublishElementRequestModel) { + this.#elementDb.detail.update(id, data); + this.#publishCultures(id, data.culturesToPublish); + } + + #publishCultures(id: string, culturesToPublish: Array) { + const element: UmbMockElementModel = this.#elementDb.detail.read(id); + + // Invariant content types publish with an empty cultures array; publish the invariant variant in that case. + const cultures: Array = culturesToPublish.length > 0 ? culturesToPublish : [null]; + + cultures.forEach((culture) => { + const variant = element.variants.find((x) => x.culture === culture); + if (variant) { + variant.state = UmbElementVariantState.PUBLISHED; + } + }); + + this.#elementDb.detail.update(id, element); + } + publish(id: string, data: PublishElementRequestModel) { const element: UmbMockElementModel = this.#elementDb.detail.read(id); diff --git a/src/Umbraco.Web.UI.Client/mocks/msw-handlers/element/detail.handlers.ts b/src/Umbraco.Web.UI.Client/mocks/msw-handlers/element/detail.handlers.ts index 7dda642e0585..a4a5bbb696df 100644 --- a/src/Umbraco.Web.UI.Client/mocks/msw-handlers/element/detail.handlers.ts +++ b/src/Umbraco.Web.UI.Client/mocks/msw-handlers/element/detail.handlers.ts @@ -3,10 +3,12 @@ import { umbMockManager } from '../../mock-manager.js'; import { umbElementMockDb } from '../../db/element.db.js'; import { UMB_SLUG } from './slug.js'; import type { + CreateAndPublishElementRequestModel, CreateElementRequestModel, IReferenceResponseModel, PagedIReferenceResponseModel, PagedReferenceByIdModel, + UpdateAndPublishElementRequestModel, UpdateElementRequestModel, } from '@umbraco-cms/backoffice/external/backend-api'; import { umbracoPath } from '@umbraco-cms/backoffice/utils'; @@ -31,6 +33,21 @@ export const detailHandlers = [ }); }), + http.post(umbracoPath(`${UMB_SLUG}/create-and-publish`), async ({ request }) => { + const requestBody = (await request.json()) as CreateAndPublishElementRequestModel; + if (!requestBody) return new HttpResponse(null, { status: 400, statusText: 'no body found' }); + + const id = umbElementMockDb.publishing.createAndPublish(requestBody); + + return HttpResponse.json(null, { + status: 201, + headers: { + Location: request.url + '/' + id, + 'Umb-Generated-Resource': id, + }, + }); + }), + http.get(umbracoPath(`${UMB_SLUG}/configuration`), () => { return HttpResponse.json(umbElementMockDb.getConfiguration()); }), @@ -81,6 +98,18 @@ export const detailHandlers = [ return HttpResponse.json(response); }), + http.put(umbracoPath(`${UMB_SLUG}/:id/update-and-publish`), async ({ request, params }) => { + const id = params.id as string; + if (!id) return new HttpResponse(null, { status: 400 }); + if (id === 'forbidden') { + return new HttpResponse(null, { status: 403 }); + } + const requestBody = (await request.json()) as UpdateAndPublishElementRequestModel; + if (!requestBody) return new HttpResponse(null, { status: 400, statusText: 'no body found' }); + umbElementMockDb.publishing.updateAndPublish(id, requestBody); + return new HttpResponse(null, { status: 200 }); + }), + http.put(umbracoPath(`${UMB_SLUG}/:id`), async ({ request, params }) => { const id = params.id as string; if (!id) return new HttpResponse(null, { status: 400 }); diff --git a/src/Umbraco.Web.UI.Client/src/assets/lang/en.ts b/src/Umbraco.Web.UI.Client/src/assets/lang/en.ts index d6e2ec69d512..53042a71f7a7 100644 --- a/src/Umbraco.Web.UI.Client/src/assets/lang/en.ts +++ b/src/Umbraco.Web.UI.Client/src/assets/lang/en.ts @@ -1617,6 +1617,7 @@ export default { editContentPublishedFailedByValidation: 'Document could not be published, but we saved it for you', editContentPublishedFailedByParent: 'Document could not be published, because a parent page is not published', editContentPublishedHeader: 'Document published', + editElementPublishedFailed: 'Element could not be published or saved', editElementPublishedHeader: 'Element published', editContentPublishedReloadFailed: 'Document published, but the editor could not be refreshed', editElementPublishedReloadFailed: 'Element published, but the editor could not be refreshed', diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/index.ts b/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/index.ts index fc3390083932..bb6831ba6781 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/index.ts @@ -2,4 +2,4 @@ export { client, type CreateClientConfig } from './client.gen'; export { _1DocumentByIdValidate1, CultureService, DataTypeService, DictionaryService, DocumentBlueprintService, DocumentService, DocumentTypeService, DocumentVersionService, DynamicRootService, ElementService, ElementVersionService, HealthCheckService, HelpService, ImagingService, ImportService, IndexerService, InstallService, LanguageService, LogViewerService, ManifestService, MediaService, MediaTypeService, MemberGroupService, MemberService, MemberTypeService, ModelsBuilderService, NewsDashboardService, ObjectTypesService, OEmbedService, type Options, PackageService, PartialViewService, PreviewService, ProfilingService, PropertyTypeService, PublishedCacheService, PutUmbracoManagementApiV1, RedirectManagementService, RelationService, RelationTypeService, ScriptService, SearcherService, SecurityService, SegmentService, ServerService, StaticFileService, StylesheetService, TagService, TelemetryService, TemplateService, TemporaryFileService, UpgradeService, UserDataService, UserGroupService, UserService, WebhookService } from './sdk.gen'; -export { type AllowedDocumentTypeModel, type AllowedMediaTypeItemResponseModel, type AllowedMediaTypeModel, type AllowedMemberTypeModel, type AuditLogResponseModel, AuditTypeModel, type AvailableDocumentTypeCompositionResponseModel, type AvailableMediaTypeCompositionResponseModel, type AvailableMemberTypeCompositionResponseModel, type BatchResponseModelDataTypeResponseModel, type BatchResponseModelDocumentTypeResponseModel, type BatchResponseModelMediaTypeResponseModel, type BatchResponseModelMemberTypeResponseModel, type BatchResponseModelUserResponseModel, type CalculatedUserStartNodesResponseModel, type ChangePasswordCurrentUserRequestModel, type ChangePasswordUserRequestModel, type ClientOptions, CompositionTypeModel, type ConsentLevelPresentationModel, ContentSortFieldModel, type CopyDataTypeRequestModel, type CopyDocumentRequestModel, type CopyDocumentTypeRequestModel, type CopyElementRequestModel, type CopyMediaTypeRequestModel, type CopyMemberTypeRequestModel, type CreateAndPublishDocumentRequestModel, type CreateDataTypeRequestModel, type CreateDictionaryItemRequestModel, type CreateDocumentBlueprintFromDocumentRequestModel, type CreateDocumentBlueprintRequestModel, type CreateDocumentRequestModel, type CreateDocumentTypePropertyTypeContainerRequestModel, type CreateDocumentTypePropertyTypeRequestModel, type CreateDocumentTypeRequestModel, type CreateDocumentTypeTemplateRequestModel, type CreateElementRequestModel, type CreateFolderRequestModel, type CreateInitialPasswordUserRequestModel, type CreateLanguageRequestModel, type CreateMediaRequestModel, type CreateMediaTypePropertyTypeContainerRequestModel, type CreateMediaTypePropertyTypeRequestModel, type CreateMediaTypeRequestModel, type CreateMemberGroupRequestModel, type CreateMemberRequestModel, type CreateMemberTypePropertyTypeContainerRequestModel, type CreateMemberTypePropertyTypeRequestModel, type CreateMemberTypeRequestModel, type CreatePackageRequestModel, type CreatePartialViewFolderRequestModel, type CreatePartialViewRequestModel, type CreateScriptFolderRequestModel, type CreateScriptRequestModel, type CreateStylesheetFolderRequestModel, type CreateStylesheetRequestModel, type CreateTemplateRequestModel, type CreateUserClientCredentialsRequestModel, type CreateUserDataRequestModel, type CreateUserGroupRequestModel, type CreateUserRequestModel, type CreateWebhookRequestModel, type CultureAndScheduleRequestModel, type CultureReponseModel, type CurrentUserConfigurationResponseModel, type CurrentUserResponseModel, type DatabaseInstallRequestModel, type DatabaseSettingsPresentationModel, DataTypeChangeModeModel, type DatatypeConfigurationResponseModel, type DataTypeItemResponseModel, type DataTypePropertyPresentationModel, type DataTypeResponseModel, type DataTypeSchemaItemResponseModel, type DataTypeSchemaResponseModel, type DataTypeTreeItemResponseModel, type DeleteDataTypeByIdData, type DeleteDataTypeByIdError, type DeleteDataTypeByIdErrors, type DeleteDataTypeByIdResponses, type DeleteDataTypeFolderByIdData, type DeleteDataTypeFolderByIdError, type DeleteDataTypeFolderByIdErrors, type DeleteDataTypeFolderByIdResponses, type DeleteDictionaryByIdData, type DeleteDictionaryByIdError, type DeleteDictionaryByIdErrors, type DeleteDictionaryByIdResponses, type DeleteDocumentBlueprintByIdData, type DeleteDocumentBlueprintByIdError, type DeleteDocumentBlueprintByIdErrors, type DeleteDocumentBlueprintByIdResponses, type DeleteDocumentBlueprintFolderByIdData, type DeleteDocumentBlueprintFolderByIdError, type DeleteDocumentBlueprintFolderByIdErrors, type DeleteDocumentBlueprintFolderByIdResponses, type DeleteDocumentByIdData, type DeleteDocumentByIdError, type DeleteDocumentByIdErrors, type DeleteDocumentByIdPublicAccessData, type DeleteDocumentByIdPublicAccessError, type DeleteDocumentByIdPublicAccessErrors, type DeleteDocumentByIdPublicAccessResponses, type DeleteDocumentByIdResponses, type DeleteDocumentTypeByIdData, type DeleteDocumentTypeByIdError, type DeleteDocumentTypeByIdErrors, type DeleteDocumentTypeByIdResponses, type DeleteDocumentTypeFolderByIdData, type DeleteDocumentTypeFolderByIdError, type DeleteDocumentTypeFolderByIdErrors, type DeleteDocumentTypeFolderByIdResponses, type DeleteElementByIdData, type DeleteElementByIdError, type DeleteElementByIdErrors, type DeleteElementByIdResponses, type DeleteElementFolderByIdData, type DeleteElementFolderByIdError, type DeleteElementFolderByIdErrors, type DeleteElementFolderByIdResponses, type DeleteLanguageByIsoCodeData, type DeleteLanguageByIsoCodeError, type DeleteLanguageByIsoCodeErrors, type DeleteLanguageByIsoCodeResponses, type DeleteLogViewerSavedSearchByNameData, type DeleteLogViewerSavedSearchByNameError, type DeleteLogViewerSavedSearchByNameErrors, type DeleteLogViewerSavedSearchByNameResponses, type DeleteMediaByIdData, type DeleteMediaByIdError, type DeleteMediaByIdErrors, type DeleteMediaByIdResponses, type DeleteMediaTypeByIdData, type DeleteMediaTypeByIdError, type DeleteMediaTypeByIdErrors, type DeleteMediaTypeByIdResponses, type DeleteMediaTypeFolderByIdData, type DeleteMediaTypeFolderByIdError, type DeleteMediaTypeFolderByIdErrors, type DeleteMediaTypeFolderByIdResponses, type DeleteMemberByIdData, type DeleteMemberByIdError, type DeleteMemberByIdErrors, type DeleteMemberByIdResponses, type DeleteMemberGroupByIdData, type DeleteMemberGroupByIdError, type DeleteMemberGroupByIdErrors, type DeleteMemberGroupByIdResponses, type DeleteMemberTypeByIdData, type DeleteMemberTypeByIdError, type DeleteMemberTypeByIdErrors, type DeleteMemberTypeByIdResponses, type DeleteMemberTypeFolderByIdData, type DeleteMemberTypeFolderByIdError, type DeleteMemberTypeFolderByIdErrors, type DeleteMemberTypeFolderByIdResponses, type DeletePackageCreatedByIdData, type DeletePackageCreatedByIdError, type DeletePackageCreatedByIdErrors, type DeletePackageCreatedByIdResponses, type DeletePartialViewByPathData, type DeletePartialViewByPathError, type DeletePartialViewByPathErrors, type DeletePartialViewByPathResponses, type DeletePartialViewFolderByPathData, type DeletePartialViewFolderByPathError, type DeletePartialViewFolderByPathErrors, type DeletePartialViewFolderByPathResponses, type DeletePreviewData, type DeletePreviewResponses, type DeleteRecycleBinDocumentByIdData, type DeleteRecycleBinDocumentByIdError, type DeleteRecycleBinDocumentByIdErrors, type DeleteRecycleBinDocumentByIdResponses, type DeleteRecycleBinDocumentData, type DeleteRecycleBinDocumentError, type DeleteRecycleBinDocumentErrors, type DeleteRecycleBinDocumentResponses, type DeleteRecycleBinElementByIdData, type DeleteRecycleBinElementByIdError, type DeleteRecycleBinElementByIdErrors, type DeleteRecycleBinElementByIdResponses, type DeleteRecycleBinElementData, type DeleteRecycleBinElementError, type DeleteRecycleBinElementErrors, type DeleteRecycleBinElementFolderByIdData, type DeleteRecycleBinElementFolderByIdError, type DeleteRecycleBinElementFolderByIdErrors, type DeleteRecycleBinElementFolderByIdResponses, type DeleteRecycleBinElementResponses, type DeleteRecycleBinMediaByIdData, type DeleteRecycleBinMediaByIdError, type DeleteRecycleBinMediaByIdErrors, type DeleteRecycleBinMediaByIdResponses, type DeleteRecycleBinMediaData, type DeleteRecycleBinMediaError, type DeleteRecycleBinMediaErrors, type DeleteRecycleBinMediaResponses, type DeleteRedirectManagementByIdData, type DeleteRedirectManagementByIdError, type DeleteRedirectManagementByIdErrors, type DeleteRedirectManagementByIdResponses, type DeleteScriptByPathData, type DeleteScriptByPathError, type DeleteScriptByPathErrors, type DeleteScriptByPathResponses, type DeleteScriptFolderByPathData, type DeleteScriptFolderByPathError, type DeleteScriptFolderByPathErrors, type DeleteScriptFolderByPathResponses, type DeleteStylesheetByPathData, type DeleteStylesheetByPathError, type DeleteStylesheetByPathErrors, type DeleteStylesheetByPathResponses, type DeleteStylesheetFolderByPathData, type DeleteStylesheetFolderByPathError, type DeleteStylesheetFolderByPathErrors, type DeleteStylesheetFolderByPathResponses, type DeleteTemplateByIdData, type DeleteTemplateByIdError, type DeleteTemplateByIdErrors, type DeleteTemplateByIdResponses, type DeleteTemporaryFileByIdData, type DeleteTemporaryFileByIdError, type DeleteTemporaryFileByIdErrors, type DeleteTemporaryFileByIdResponses, type DeleteUserAvatarByIdData, type DeleteUserAvatarByIdError, type DeleteUserAvatarByIdErrors, type DeleteUserAvatarByIdResponses, type DeleteUserById2FaByProviderNameData, type DeleteUserById2FaByProviderNameError, type DeleteUserById2FaByProviderNameErrors, type DeleteUserById2FaByProviderNameResponses, type DeleteUserByIdClientCredentialsByClientIdData, type DeleteUserByIdClientCredentialsByClientIdError, type DeleteUserByIdClientCredentialsByClientIdErrors, type DeleteUserByIdClientCredentialsByClientIdResponses, type DeleteUserByIdData, type DeleteUserByIdError, type DeleteUserByIdErrors, type DeleteUserByIdResponses, type DeleteUserCurrent2FaByProviderNameData, type DeleteUserCurrent2FaByProviderNameError, type DeleteUserCurrent2FaByProviderNameErrors, type DeleteUserCurrent2FaByProviderNameResponses, type DeleteUserCurrentAvatarData, type DeleteUserCurrentAvatarError, type DeleteUserCurrentAvatarErrors, type DeleteUserCurrentAvatarResponses, type DeleteUserData, type DeleteUserDataByIdData, type DeleteUserDataByIdError, type DeleteUserDataByIdErrors, type DeleteUserDataByIdResponses, type DeleteUserError, type DeleteUserErrors, type DeleteUserGroupByIdData, type DeleteUserGroupByIdError, type DeleteUserGroupByIdErrors, type DeleteUserGroupByIdResponses, type DeleteUserGroupByIdUsersData, type DeleteUserGroupByIdUsersError, type DeleteUserGroupByIdUsersErrors, type DeleteUserGroupByIdUsersResponses, type DeleteUserGroupData, type DeleteUserGroupError, type DeleteUserGroupErrors, type DeleteUserGroupResponses, type DeleteUserGroupsRequestModel, type DeleteUserResponses, type DeleteUsersRequestModel, type DeleteWebhookByIdData, type DeleteWebhookByIdError, type DeleteWebhookByIdErrors, type DeleteWebhookByIdResponses, type DictionaryItemItemResponseModel, type DictionaryItemResponseModel, type DictionaryItemTranslationModel, type DictionaryOverviewResponseModel, DirectionModel, type DisableUserRequestModel, type DocumentBlueprintItemResponseModel, type DocumentBlueprintResponseModel, type DocumentBlueprintTreeItemResponseModel, type DocumentCollectionResponseModel, type DocumentConfigurationResponseModel, type DocumentItemResponseModel, type DocumentNotificationResponseModel, type DocumentRecycleBinItemResponseModel, type DocumentResponseModel, type DocumentTreeItemResponseModel, type DocumentTypeAllowedParentsResponseModel, type DocumentTypeBlueprintItemResponseModel, type DocumentTypeCleanupModel, type DocumentTypeCollectionReferenceResponseModel, type DocumentTypeCompositionModel, type DocumentTypeCompositionRequestModel, type DocumentTypeCompositionResponseModel, type DocumentTypeConfigurationResponseModel, type DocumentTypeItemResponseModel, type DocumentTypePropertyTypeContainerResponseModel, type DocumentTypePropertyTypeResponseModel, type DocumentTypeReferenceResponseModel, type DocumentTypeResponseModel, type DocumentTypeSortModel, type DocumentTypeTreeItemResponseModel, type DocumentUrlInfoModel, type DocumentUrlInfoResponseModel, type DocumentValueModel, type DocumentValueResponseModel, type DocumentVariantItemResponseModel, type DocumentVariantRequestModel, type DocumentVariantResponseModel, type DocumentVersionItemResponseModel, type DocumentVersionResponseModel, type DomainPresentationModel, type DomainsResponseModel, type DynamicRootContextRequestModel, type DynamicRootQueryOriginRequestModel, type DynamicRootQueryRequestModel, type DynamicRootQueryStepRequestModel, type DynamicRootRequestModel, type DynamicRootResponseModel, type ElementConfigurationResponseModel, type ElementItemResponseModel, type ElementRecycleBinItemResponseModel, type ElementResponseModel, type ElementTreeItemResponseModel, type ElementValueModel, type ElementValueResponseModel, type ElementVariantItemResponseModel, type ElementVariantRequestModel, type ElementVariantResponseModel, type ElementVersionItemResponseModel, type ElementVersionResponseModel, type EnableTwoFactorRequestModel, type EnableUserRequestModel, type EntityImportAnalysisResponseModel, EventMessageTypeModel, type FetchResponseModelDataTypeSchemaItemResponseModel, type FieldPresentationModel, type FileSystemFolderModel, type FileSystemTreeItemPresentationModel, type FlagModel, type FolderItemResponseModel, type FolderResponseModel, type GetCollectionDocumentByIdData, type GetCollectionDocumentByIdError, type GetCollectionDocumentByIdErrors, type GetCollectionDocumentByIdResponse, type GetCollectionDocumentByIdResponses, type GetCollectionMediaData, type GetCollectionMediaError, type GetCollectionMediaErrors, type GetCollectionMediaResponse, type GetCollectionMediaResponses, type GetCultureData, type GetCultureErrors, type GetCultureResponse, type GetCultureResponses, type GetDataTypeBatchData, type GetDataTypeBatchErrors, type GetDataTypeBatchResponse, type GetDataTypeBatchResponses, type GetDataTypeByIdData, type GetDataTypeByIdError, type GetDataTypeByIdErrors, type GetDataTypeByIdIsUsedData, type GetDataTypeByIdIsUsedError, type GetDataTypeByIdIsUsedErrors, type GetDataTypeByIdIsUsedResponse, type GetDataTypeByIdIsUsedResponses, type GetDataTypeByIdReferencedByData, type GetDataTypeByIdReferencedByErrors, type GetDataTypeByIdReferencedByResponse, type GetDataTypeByIdReferencedByResponses, type GetDataTypeByIdResponse, type GetDataTypeByIdResponses, type GetDataTypeByIdSchemaData, type GetDataTypeByIdSchemaError, type GetDataTypeByIdSchemaErrors, type GetDataTypeByIdSchemaResponse, type GetDataTypeByIdSchemaResponses, type GetDataTypeConfigurationData, type GetDataTypeConfigurationErrors, type GetDataTypeConfigurationResponse, type GetDataTypeConfigurationResponses, type GetDataTypeFolderByIdData, type GetDataTypeFolderByIdError, type GetDataTypeFolderByIdErrors, type GetDataTypeFolderByIdResponse, type GetDataTypeFolderByIdResponses, type GetDataTypeSchemasBatchData, type GetDataTypeSchemasBatchErrors, type GetDataTypeSchemasBatchResponse, type GetDataTypeSchemasBatchResponses, type GetDictionaryByIdData, type GetDictionaryByIdError, type GetDictionaryByIdErrors, type GetDictionaryByIdExportData, type GetDictionaryByIdExportError, type GetDictionaryByIdExportErrors, type GetDictionaryByIdExportResponse, type GetDictionaryByIdExportResponses, type GetDictionaryByIdResponse, type GetDictionaryByIdResponses, type GetDictionaryData, type GetDictionaryErrors, type GetDictionaryResponse, type GetDictionaryResponses, type GetDocumentAreReferencedData, type GetDocumentAreReferencedErrors, type GetDocumentAreReferencedResponse, type GetDocumentAreReferencedResponses, type GetDocumentBlueprintByIdAuditLogData, type GetDocumentBlueprintByIdAuditLogErrors, type GetDocumentBlueprintByIdAuditLogResponse, type GetDocumentBlueprintByIdAuditLogResponses, type GetDocumentBlueprintByIdData, type GetDocumentBlueprintByIdError, type GetDocumentBlueprintByIdErrors, type GetDocumentBlueprintByIdResponse, type GetDocumentBlueprintByIdResponses, type GetDocumentBlueprintByIdScaffoldData, type GetDocumentBlueprintByIdScaffoldError, type GetDocumentBlueprintByIdScaffoldErrors, type GetDocumentBlueprintByIdScaffoldResponse, type GetDocumentBlueprintByIdScaffoldResponses, type GetDocumentBlueprintFolderByIdData, type GetDocumentBlueprintFolderByIdError, type GetDocumentBlueprintFolderByIdErrors, type GetDocumentBlueprintFolderByIdResponse, type GetDocumentBlueprintFolderByIdResponses, type GetDocumentByIdAuditLogData, type GetDocumentByIdAuditLogErrors, type GetDocumentByIdAuditLogResponse, type GetDocumentByIdAuditLogResponses, type GetDocumentByIdAvailableSegmentOptionsData, type GetDocumentByIdAvailableSegmentOptionsError, type GetDocumentByIdAvailableSegmentOptionsErrors, type GetDocumentByIdAvailableSegmentOptionsResponse, type GetDocumentByIdAvailableSegmentOptionsResponses, type GetDocumentByIdData, type GetDocumentByIdDomainsData, type GetDocumentByIdDomainsError, type GetDocumentByIdDomainsErrors, type GetDocumentByIdDomainsResponse, type GetDocumentByIdDomainsResponses, type GetDocumentByIdError, type GetDocumentByIdErrors, type GetDocumentByIdNotificationsData, type GetDocumentByIdNotificationsError, type GetDocumentByIdNotificationsErrors, type GetDocumentByIdNotificationsResponse, type GetDocumentByIdNotificationsResponses, type GetDocumentByIdPreviewUrlData, type GetDocumentByIdPreviewUrlError, type GetDocumentByIdPreviewUrlErrors, type GetDocumentByIdPreviewUrlResponse, type GetDocumentByIdPreviewUrlResponses, type GetDocumentByIdPublicAccessData, type GetDocumentByIdPublicAccessError, type GetDocumentByIdPublicAccessErrors, type GetDocumentByIdPublicAccessResponse, type GetDocumentByIdPublicAccessResponses, type GetDocumentByIdPublishedData, type GetDocumentByIdPublishedError, type GetDocumentByIdPublishedErrors, type GetDocumentByIdPublishedResponse, type GetDocumentByIdPublishedResponses, type GetDocumentByIdPublishWithDescendantsResultByTaskIdData, type GetDocumentByIdPublishWithDescendantsResultByTaskIdError, type GetDocumentByIdPublishWithDescendantsResultByTaskIdErrors, type GetDocumentByIdPublishWithDescendantsResultByTaskIdResponse, type GetDocumentByIdPublishWithDescendantsResultByTaskIdResponses, type GetDocumentByIdReferencedByData, type GetDocumentByIdReferencedByError, type GetDocumentByIdReferencedByErrors, type GetDocumentByIdReferencedByResponse, type GetDocumentByIdReferencedByResponses, type GetDocumentByIdReferencedDescendantsData, type GetDocumentByIdReferencedDescendantsError, type GetDocumentByIdReferencedDescendantsErrors, type GetDocumentByIdReferencedDescendantsResponse, type GetDocumentByIdReferencedDescendantsResponses, type GetDocumentByIdResponse, type GetDocumentByIdResponses, type GetDocumentConfigurationData, type GetDocumentConfigurationErrors, type GetDocumentConfigurationResponse, type GetDocumentConfigurationResponses, type GetDocumentTypeAllowedAtRootData, type GetDocumentTypeAllowedAtRootErrors, type GetDocumentTypeAllowedAtRootResponse, type GetDocumentTypeAllowedAtRootResponses, type GetDocumentTypeAllowedInLibraryData, type GetDocumentTypeAllowedInLibraryErrors, type GetDocumentTypeAllowedInLibraryResponse, type GetDocumentTypeAllowedInLibraryResponses, type GetDocumentTypeBatchData, type GetDocumentTypeBatchErrors, type GetDocumentTypeBatchResponse, type GetDocumentTypeBatchResponses, type GetDocumentTypeByIdAllowedChildrenData, type GetDocumentTypeByIdAllowedChildrenError, type GetDocumentTypeByIdAllowedChildrenErrors, type GetDocumentTypeByIdAllowedChildrenResponse, type GetDocumentTypeByIdAllowedChildrenResponses, type GetDocumentTypeByIdAllowedParentsData, type GetDocumentTypeByIdAllowedParentsError, type GetDocumentTypeByIdAllowedParentsErrors, type GetDocumentTypeByIdAllowedParentsResponse, type GetDocumentTypeByIdAllowedParentsResponses, type GetDocumentTypeByIdBlueprintData, type GetDocumentTypeByIdBlueprintError, type GetDocumentTypeByIdBlueprintErrors, type GetDocumentTypeByIdBlueprintResponse, type GetDocumentTypeByIdBlueprintResponses, type GetDocumentTypeByIdCompositionReferencesData, type GetDocumentTypeByIdCompositionReferencesError, type GetDocumentTypeByIdCompositionReferencesErrors, type GetDocumentTypeByIdCompositionReferencesResponse, type GetDocumentTypeByIdCompositionReferencesResponses, type GetDocumentTypeByIdData, type GetDocumentTypeByIdError, type GetDocumentTypeByIdErrors, type GetDocumentTypeByIdExportData, type GetDocumentTypeByIdExportError, type GetDocumentTypeByIdExportErrors, type GetDocumentTypeByIdExportResponse, type GetDocumentTypeByIdExportResponses, type GetDocumentTypeByIdResponse, type GetDocumentTypeByIdResponses, type GetDocumentTypeByIdSchemaData, type GetDocumentTypeByIdSchemaError, type GetDocumentTypeByIdSchemaErrors, type GetDocumentTypeByIdSchemaResponse, type GetDocumentTypeByIdSchemaResponses, type GetDocumentTypeConfigurationData, type GetDocumentTypeConfigurationErrors, type GetDocumentTypeConfigurationResponse, type GetDocumentTypeConfigurationResponses, type GetDocumentTypeFolderByIdData, type GetDocumentTypeFolderByIdError, type GetDocumentTypeFolderByIdErrors, type GetDocumentTypeFolderByIdResponse, type GetDocumentTypeFolderByIdResponses, type GetDocumentUrlsData, type GetDocumentUrlsErrors, type GetDocumentUrlsResponse, type GetDocumentUrlsResponses, type GetDocumentVersionByIdData, type GetDocumentVersionByIdError, type GetDocumentVersionByIdErrors, type GetDocumentVersionByIdResponse, type GetDocumentVersionByIdResponses, type GetDocumentVersionData, type GetDocumentVersionError, type GetDocumentVersionErrors, type GetDocumentVersionResponse, type GetDocumentVersionResponses, type GetDynamicRootStepsData, type GetDynamicRootStepsErrors, type GetDynamicRootStepsResponse, type GetDynamicRootStepsResponses, type GetElementAreReferencedData, type GetElementAreReferencedErrors, type GetElementAreReferencedResponse, type GetElementAreReferencedResponses, type GetElementByIdAuditLogData, type GetElementByIdAuditLogErrors, type GetElementByIdAuditLogResponse, type GetElementByIdAuditLogResponses, type GetElementByIdData, type GetElementByIdError, type GetElementByIdErrors, type GetElementByIdPublishedData, type GetElementByIdPublishedError, type GetElementByIdPublishedErrors, type GetElementByIdPublishedResponse, type GetElementByIdPublishedResponses, type GetElementByIdReferencedByData, type GetElementByIdReferencedByError, type GetElementByIdReferencedByErrors, type GetElementByIdReferencedByResponse, type GetElementByIdReferencedByResponses, type GetElementByIdResponse, type GetElementByIdResponses, type GetElementConfigurationData, type GetElementConfigurationErrors, type GetElementConfigurationResponse, type GetElementConfigurationResponses, type GetElementFolderByIdData, type GetElementFolderByIdError, type GetElementFolderByIdErrors, type GetElementFolderByIdReferencedDescendantsData, type GetElementFolderByIdReferencedDescendantsError, type GetElementFolderByIdReferencedDescendantsErrors, type GetElementFolderByIdReferencedDescendantsResponse, type GetElementFolderByIdReferencedDescendantsResponses, type GetElementFolderByIdResponse, type GetElementFolderByIdResponses, type GetElementVersionByIdData, type GetElementVersionByIdError, type GetElementVersionByIdErrors, type GetElementVersionByIdResponse, type GetElementVersionByIdResponses, type GetElementVersionData, type GetElementVersionError, type GetElementVersionErrors, type GetElementVersionResponse, type GetElementVersionResponses, type GetFilterDataTypeData, type GetFilterDataTypeErrors, type GetFilterDataTypeResponse, type GetFilterDataTypeResponses, type GetFilterMemberData, type GetFilterMemberError, type GetFilterMemberErrors, type GetFilterMemberResponse, type GetFilterMemberResponses, type GetFilterUserData, type GetFilterUserError, type GetFilterUserErrors, type GetFilterUserGroupData, type GetFilterUserGroupError, type GetFilterUserGroupErrors, type GetFilterUserGroupResponse, type GetFilterUserGroupResponses, type GetFilterUserResponse, type GetFilterUserResponses, type GetHealthCheckGroupByNameData, type GetHealthCheckGroupByNameError, type GetHealthCheckGroupByNameErrors, type GetHealthCheckGroupByNameResponse, type GetHealthCheckGroupByNameResponses, type GetHealthCheckGroupData, type GetHealthCheckGroupErrors, type GetHealthCheckGroupResponse, type GetHealthCheckGroupResponses, type GetHelpData, type GetHelpError, type GetHelpErrors, type GetHelpResponse, type GetHelpResponses, type GetImagingResizeUrlsData, type GetImagingResizeUrlsErrors, type GetImagingResizeUrlsResponse, type GetImagingResizeUrlsResponses, type GetImportAnalyzeData, type GetImportAnalyzeError, type GetImportAnalyzeErrors, type GetImportAnalyzeResponse, type GetImportAnalyzeResponses, type GetIndexerByIndexNameData, type GetIndexerByIndexNameError, type GetIndexerByIndexNameErrors, type GetIndexerByIndexNameResponse, type GetIndexerByIndexNameResponses, type GetIndexerData, type GetIndexerErrors, type GetIndexerResponse, type GetIndexerResponses, type GetInstallSettingsData, type GetInstallSettingsError, type GetInstallSettingsErrors, type GetInstallSettingsResponse, type GetInstallSettingsResponses, type GetItemDataTypeAncestorsData, type GetItemDataTypeAncestorsErrors, type GetItemDataTypeAncestorsResponse, type GetItemDataTypeAncestorsResponses, type GetItemDataTypeData, type GetItemDataTypeErrors, type GetItemDataTypeResponse, type GetItemDataTypeResponses, type GetItemDataTypeSearchData, type GetItemDataTypeSearchErrors, type GetItemDataTypeSearchResponse, type GetItemDataTypeSearchResponses, type GetItemDictionaryData, type GetItemDictionaryErrors, type GetItemDictionaryResponse, type GetItemDictionaryResponses, type GetItemDocumentAncestorsData, type GetItemDocumentAncestorsErrors, type GetItemDocumentAncestorsResponse, type GetItemDocumentAncestorsResponses, type GetItemDocumentBlueprintData, type GetItemDocumentBlueprintErrors, type GetItemDocumentBlueprintResponse, type GetItemDocumentBlueprintResponses, type GetItemDocumentData, type GetItemDocumentErrors, type GetItemDocumentResponse, type GetItemDocumentResponses, type GetItemDocumentSearchData, type GetItemDocumentSearchErrors, type GetItemDocumentSearchResponse, type GetItemDocumentSearchResponses, type GetItemDocumentTypeAncestorsData, type GetItemDocumentTypeAncestorsErrors, type GetItemDocumentTypeAncestorsResponse, type GetItemDocumentTypeAncestorsResponses, type GetItemDocumentTypeData, type GetItemDocumentTypeErrors, type GetItemDocumentTypeResponse, type GetItemDocumentTypeResponses, type GetItemDocumentTypeSearchData, type GetItemDocumentTypeSearchErrors, type GetItemDocumentTypeSearchResponse, type GetItemDocumentTypeSearchResponses, type GetItemElementAncestorsData, type GetItemElementAncestorsErrors, type GetItemElementAncestorsResponse, type GetItemElementAncestorsResponses, type GetItemElementData, type GetItemElementErrors, type GetItemElementFolderData, type GetItemElementFolderErrors, type GetItemElementFolderResponse, type GetItemElementFolderResponses, type GetItemElementResponse, type GetItemElementResponses, type GetItemElementSearchData, type GetItemElementSearchErrors, type GetItemElementSearchResponse, type GetItemElementSearchResponses, type GetItemLanguageData, type GetItemLanguageDefaultData, type GetItemLanguageDefaultErrors, type GetItemLanguageDefaultResponse, type GetItemLanguageDefaultResponses, type GetItemLanguageErrors, type GetItemLanguageResponse, type GetItemLanguageResponses, type GetItemMediaAncestorsData, type GetItemMediaAncestorsErrors, type GetItemMediaAncestorsResponse, type GetItemMediaAncestorsResponses, type GetItemMediaData, type GetItemMediaErrors, type GetItemMediaResponse, type GetItemMediaResponses, type GetItemMediaSearchData, type GetItemMediaSearchErrors, type GetItemMediaSearchResponse, type GetItemMediaSearchResponses, type GetItemMediaTypeAllowedData, type GetItemMediaTypeAllowedErrors, type GetItemMediaTypeAllowedResponse, type GetItemMediaTypeAllowedResponses, type GetItemMediaTypeAncestorsData, type GetItemMediaTypeAncestorsErrors, type GetItemMediaTypeAncestorsResponse, type GetItemMediaTypeAncestorsResponses, type GetItemMediaTypeData, type GetItemMediaTypeErrors, type GetItemMediaTypeFoldersData, type GetItemMediaTypeFoldersErrors, type GetItemMediaTypeFoldersResponse, type GetItemMediaTypeFoldersResponses, type GetItemMediaTypeResponse, type GetItemMediaTypeResponses, type GetItemMediaTypeSearchData, type GetItemMediaTypeSearchErrors, type GetItemMediaTypeSearchResponse, type GetItemMediaTypeSearchResponses, type GetItemMemberAncestorsData, type GetItemMemberAncestorsErrors, type GetItemMemberAncestorsResponse, type GetItemMemberAncestorsResponses, type GetItemMemberData, type GetItemMemberErrors, type GetItemMemberGroupData, type GetItemMemberGroupErrors, type GetItemMemberGroupResponse, type GetItemMemberGroupResponses, type GetItemMemberResponse, type GetItemMemberResponses, type GetItemMemberSearchData, type GetItemMemberSearchErrors, type GetItemMemberSearchResponse, type GetItemMemberSearchResponses, type GetItemMemberTypeAncestorsData, type GetItemMemberTypeAncestorsErrors, type GetItemMemberTypeAncestorsResponse, type GetItemMemberTypeAncestorsResponses, type GetItemMemberTypeData, type GetItemMemberTypeErrors, type GetItemMemberTypeResponse, type GetItemMemberTypeResponses, type GetItemMemberTypeSearchData, type GetItemMemberTypeSearchErrors, type GetItemMemberTypeSearchResponse, type GetItemMemberTypeSearchResponses, type GetItemPartialViewData, type GetItemPartialViewErrors, type GetItemPartialViewResponse, type GetItemPartialViewResponses, type GetItemRelationTypeData, type GetItemRelationTypeErrors, type GetItemRelationTypeResponse, type GetItemRelationTypeResponses, type GetItemScriptData, type GetItemScriptErrors, type GetItemScriptResponse, type GetItemScriptResponses, type GetItemStaticFileData, type GetItemStaticFileErrors, type GetItemStaticFileResponse, type GetItemStaticFileResponses, type GetItemStylesheetData, type GetItemStylesheetErrors, type GetItemStylesheetResponse, type GetItemStylesheetResponses, type GetItemTemplateAncestorsData, type GetItemTemplateAncestorsErrors, type GetItemTemplateAncestorsResponse, type GetItemTemplateAncestorsResponses, type GetItemTemplateData, type GetItemTemplateErrors, type GetItemTemplateResponse, type GetItemTemplateResponses, type GetItemTemplateSearchData, type GetItemTemplateSearchErrors, type GetItemTemplateSearchResponse, type GetItemTemplateSearchResponses, type GetItemUserData, type GetItemUserErrors, type GetItemUserGroupData, type GetItemUserGroupErrors, type GetItemUserGroupResponse, type GetItemUserGroupResponses, type GetItemUserResponse, type GetItemUserResponses, type GetItemWebhookData, type GetItemWebhookErrors, type GetItemWebhookResponse, type GetItemWebhookResponses, type GetLanguageByIsoCodeData, type GetLanguageByIsoCodeError, type GetLanguageByIsoCodeErrors, type GetLanguageByIsoCodeResponse, type GetLanguageByIsoCodeResponses, type GetLanguageData, type GetLanguageErrors, type GetLanguageResponse, type GetLanguageResponses, type GetLogViewerLevelCountData, type GetLogViewerLevelCountError, type GetLogViewerLevelCountErrors, type GetLogViewerLevelCountResponse, type GetLogViewerLevelCountResponses, type GetLogViewerLevelData, type GetLogViewerLevelErrors, type GetLogViewerLevelResponse, type GetLogViewerLevelResponses, type GetLogViewerLogData, type GetLogViewerLogErrors, type GetLogViewerLogResponse, type GetLogViewerLogResponses, type GetLogViewerMessageTemplateData, type GetLogViewerMessageTemplateError, type GetLogViewerMessageTemplateErrors, type GetLogViewerMessageTemplateResponse, type GetLogViewerMessageTemplateResponses, type GetLogViewerSavedSearchByNameData, type GetLogViewerSavedSearchByNameError, type GetLogViewerSavedSearchByNameErrors, type GetLogViewerSavedSearchByNameResponse, type GetLogViewerSavedSearchByNameResponses, type GetLogViewerSavedSearchData, type GetLogViewerSavedSearchErrors, type GetLogViewerSavedSearchResponse, type GetLogViewerSavedSearchResponses, type GetLogViewerValidateLogsSizeData, type GetLogViewerValidateLogsSizeError, type GetLogViewerValidateLogsSizeErrors, type GetLogViewerValidateLogsSizeResponses, type GetManifestManifestData, type GetManifestManifestErrors, type GetManifestManifestPrivateData, type GetManifestManifestPrivateErrors, type GetManifestManifestPrivateResponse, type GetManifestManifestPrivateResponses, type GetManifestManifestPublicData, type GetManifestManifestPublicResponse, type GetManifestManifestPublicResponses, type GetManifestManifestResponse, type GetManifestManifestResponses, type GetMediaAreReferencedData, type GetMediaAreReferencedErrors, type GetMediaAreReferencedResponse, type GetMediaAreReferencedResponses, type GetMediaByIdAuditLogData, type GetMediaByIdAuditLogErrors, type GetMediaByIdAuditLogResponse, type GetMediaByIdAuditLogResponses, type GetMediaByIdData, type GetMediaByIdError, type GetMediaByIdErrors, type GetMediaByIdReferencedByData, type GetMediaByIdReferencedByError, type GetMediaByIdReferencedByErrors, type GetMediaByIdReferencedByResponse, type GetMediaByIdReferencedByResponses, type GetMediaByIdReferencedDescendantsData, type GetMediaByIdReferencedDescendantsError, type GetMediaByIdReferencedDescendantsErrors, type GetMediaByIdReferencedDescendantsResponse, type GetMediaByIdReferencedDescendantsResponses, type GetMediaByIdResponse, type GetMediaByIdResponses, type GetMediaConfigurationData, type GetMediaConfigurationErrors, type GetMediaConfigurationResponse, type GetMediaConfigurationResponses, type GetMediaTypeAllowedAtRootData, type GetMediaTypeAllowedAtRootErrors, type GetMediaTypeAllowedAtRootResponse, type GetMediaTypeAllowedAtRootResponses, type GetMediaTypeBatchData, type GetMediaTypeBatchErrors, type GetMediaTypeBatchResponse, type GetMediaTypeBatchResponses, type GetMediaTypeByIdAllowedChildrenData, type GetMediaTypeByIdAllowedChildrenError, type GetMediaTypeByIdAllowedChildrenErrors, type GetMediaTypeByIdAllowedChildrenResponse, type GetMediaTypeByIdAllowedChildrenResponses, type GetMediaTypeByIdAllowedParentsData, type GetMediaTypeByIdAllowedParentsError, type GetMediaTypeByIdAllowedParentsErrors, type GetMediaTypeByIdAllowedParentsResponse, type GetMediaTypeByIdAllowedParentsResponses, type GetMediaTypeByIdCompositionReferencesData, type GetMediaTypeByIdCompositionReferencesError, type GetMediaTypeByIdCompositionReferencesErrors, type GetMediaTypeByIdCompositionReferencesResponse, type GetMediaTypeByIdCompositionReferencesResponses, type GetMediaTypeByIdData, type GetMediaTypeByIdError, type GetMediaTypeByIdErrors, type GetMediaTypeByIdExportData, type GetMediaTypeByIdExportError, type GetMediaTypeByIdExportErrors, type GetMediaTypeByIdExportResponse, type GetMediaTypeByIdExportResponses, type GetMediaTypeByIdResponse, type GetMediaTypeByIdResponses, type GetMediaTypeByIdSchemaData, type GetMediaTypeByIdSchemaError, type GetMediaTypeByIdSchemaErrors, type GetMediaTypeByIdSchemaResponse, type GetMediaTypeByIdSchemaResponses, type GetMediaTypeConfigurationData, type GetMediaTypeConfigurationErrors, type GetMediaTypeConfigurationResponse, type GetMediaTypeConfigurationResponses, type GetMediaTypeFolderByIdData, type GetMediaTypeFolderByIdError, type GetMediaTypeFolderByIdErrors, type GetMediaTypeFolderByIdResponse, type GetMediaTypeFolderByIdResponses, type GetMediaUrlsData, type GetMediaUrlsErrors, type GetMediaUrlsResponse, type GetMediaUrlsResponses, type GetMemberAreReferencedData, type GetMemberAreReferencedErrors, type GetMemberAreReferencedResponse, type GetMemberAreReferencedResponses, type GetMemberByIdData, type GetMemberByIdError, type GetMemberByIdErrors, type GetMemberByIdReferencedByData, type GetMemberByIdReferencedByError, type GetMemberByIdReferencedByErrors, type GetMemberByIdReferencedByResponse, type GetMemberByIdReferencedByResponses, type GetMemberByIdReferencedDescendantsData, type GetMemberByIdReferencedDescendantsError, type GetMemberByIdReferencedDescendantsErrors, type GetMemberByIdReferencedDescendantsResponse, type GetMemberByIdReferencedDescendantsResponses, type GetMemberByIdResponse, type GetMemberByIdResponses, type GetMemberGroupByIdData, type GetMemberGroupByIdErrors, type GetMemberGroupByIdResponse, type GetMemberGroupByIdResponses, type GetMemberGroupData, type GetMemberGroupErrors, type GetMemberGroupResponse, type GetMemberGroupResponses, type GetMemberTypeAllowedAtRootData, type GetMemberTypeAllowedAtRootErrors, type GetMemberTypeAllowedAtRootResponse, type GetMemberTypeAllowedAtRootResponses, type GetMemberTypeBatchData, type GetMemberTypeBatchErrors, type GetMemberTypeBatchResponse, type GetMemberTypeBatchResponses, type GetMemberTypeByIdCompositionReferencesData, type GetMemberTypeByIdCompositionReferencesError, type GetMemberTypeByIdCompositionReferencesErrors, type GetMemberTypeByIdCompositionReferencesResponse, type GetMemberTypeByIdCompositionReferencesResponses, type GetMemberTypeByIdData, type GetMemberTypeByIdError, type GetMemberTypeByIdErrors, type GetMemberTypeByIdExportData, type GetMemberTypeByIdExportError, type GetMemberTypeByIdExportErrors, type GetMemberTypeByIdExportResponse, type GetMemberTypeByIdExportResponses, type GetMemberTypeByIdResponse, type GetMemberTypeByIdResponses, type GetMemberTypeByIdSchemaData, type GetMemberTypeByIdSchemaError, type GetMemberTypeByIdSchemaErrors, type GetMemberTypeByIdSchemaResponse, type GetMemberTypeByIdSchemaResponses, type GetMemberTypeConfigurationData, type GetMemberTypeConfigurationErrors, type GetMemberTypeConfigurationResponse, type GetMemberTypeConfigurationResponses, type GetMemberTypeFolderByIdData, type GetMemberTypeFolderByIdError, type GetMemberTypeFolderByIdErrors, type GetMemberTypeFolderByIdResponse, type GetMemberTypeFolderByIdResponses, type GetModelsBuilderDashboardData, type GetModelsBuilderDashboardErrors, type GetModelsBuilderDashboardResponse, type GetModelsBuilderDashboardResponses, type GetModelsBuilderStatusData, type GetModelsBuilderStatusErrors, type GetModelsBuilderStatusResponse, type GetModelsBuilderStatusResponses, type GetNewsDashboardData, type GetNewsDashboardErrors, type GetNewsDashboardResponse, type GetNewsDashboardResponses, type GetObjectTypesData, type GetObjectTypesErrors, type GetObjectTypesResponse, type GetObjectTypesResponses, type GetOembedQueryData, type GetOembedQueryErrors, type GetOembedQueryResponse, type GetOembedQueryResponses, type GetPackageConfigurationData, type GetPackageConfigurationErrors, type GetPackageConfigurationResponse, type GetPackageConfigurationResponses, type GetPackageCreatedByIdData, type GetPackageCreatedByIdDownloadData, type GetPackageCreatedByIdDownloadError, type GetPackageCreatedByIdDownloadErrors, type GetPackageCreatedByIdDownloadResponse, type GetPackageCreatedByIdDownloadResponses, type GetPackageCreatedByIdError, type GetPackageCreatedByIdErrors, type GetPackageCreatedByIdResponse, type GetPackageCreatedByIdResponses, type GetPackageCreatedData, type GetPackageCreatedErrors, type GetPackageCreatedResponse, type GetPackageCreatedResponses, type GetPackageMigrationStatusData, type GetPackageMigrationStatusErrors, type GetPackageMigrationStatusResponse, type GetPackageMigrationStatusResponses, type GetPartialViewByPathData, type GetPartialViewByPathError, type GetPartialViewByPathErrors, type GetPartialViewByPathResponse, type GetPartialViewByPathResponses, type GetPartialViewFolderByPathData, type GetPartialViewFolderByPathError, type GetPartialViewFolderByPathErrors, type GetPartialViewFolderByPathResponse, type GetPartialViewFolderByPathResponses, type GetPartialViewSnippetByIdData, type GetPartialViewSnippetByIdError, type GetPartialViewSnippetByIdErrors, type GetPartialViewSnippetByIdResponse, type GetPartialViewSnippetByIdResponses, type GetPartialViewSnippetData, type GetPartialViewSnippetErrors, type GetPartialViewSnippetResponse, type GetPartialViewSnippetResponses, type GetProfilingStatusData, type GetProfilingStatusErrors, type GetProfilingStatusResponse, type GetProfilingStatusResponses, type GetPropertyTypeIsUsedData, type GetPropertyTypeIsUsedError, type GetPropertyTypeIsUsedErrors, type GetPropertyTypeIsUsedResponse, type GetPropertyTypeIsUsedResponses, type GetPublishedCacheRebuildStatusData, type GetPublishedCacheRebuildStatusErrors, type GetPublishedCacheRebuildStatusResponse, type GetPublishedCacheRebuildStatusResponses, type GetRecycleBinDocumentByIdOriginalParentData, type GetRecycleBinDocumentByIdOriginalParentError, type GetRecycleBinDocumentByIdOriginalParentErrors, type GetRecycleBinDocumentByIdOriginalParentResponse, type GetRecycleBinDocumentByIdOriginalParentResponses, type GetRecycleBinDocumentChildrenData, type GetRecycleBinDocumentChildrenErrors, type GetRecycleBinDocumentChildrenResponse, type GetRecycleBinDocumentChildrenResponses, type GetRecycleBinDocumentReferencedByData, type GetRecycleBinDocumentReferencedByErrors, type GetRecycleBinDocumentReferencedByResponse, type GetRecycleBinDocumentReferencedByResponses, type GetRecycleBinDocumentRootData, type GetRecycleBinDocumentRootErrors, type GetRecycleBinDocumentRootResponse, type GetRecycleBinDocumentRootResponses, type GetRecycleBinDocumentSiblingsData, type GetRecycleBinDocumentSiblingsErrors, type GetRecycleBinDocumentSiblingsResponse, type GetRecycleBinDocumentSiblingsResponses, type GetRecycleBinElementByIdOriginalParentData, type GetRecycleBinElementByIdOriginalParentError, type GetRecycleBinElementByIdOriginalParentErrors, type GetRecycleBinElementByIdOriginalParentResponse, type GetRecycleBinElementByIdOriginalParentResponses, type GetRecycleBinElementChildrenData, type GetRecycleBinElementChildrenErrors, type GetRecycleBinElementChildrenResponse, type GetRecycleBinElementChildrenResponses, type GetRecycleBinElementFolderByIdOriginalParentData, type GetRecycleBinElementFolderByIdOriginalParentError, type GetRecycleBinElementFolderByIdOriginalParentErrors, type GetRecycleBinElementFolderByIdOriginalParentResponse, type GetRecycleBinElementFolderByIdOriginalParentResponses, type GetRecycleBinElementReferencedByData, type GetRecycleBinElementReferencedByErrors, type GetRecycleBinElementReferencedByResponse, type GetRecycleBinElementReferencedByResponses, type GetRecycleBinElementRootData, type GetRecycleBinElementRootErrors, type GetRecycleBinElementRootResponse, type GetRecycleBinElementRootResponses, type GetRecycleBinElementSiblingsData, type GetRecycleBinElementSiblingsErrors, type GetRecycleBinElementSiblingsResponse, type GetRecycleBinElementSiblingsResponses, type GetRecycleBinMediaByIdOriginalParentData, type GetRecycleBinMediaByIdOriginalParentError, type GetRecycleBinMediaByIdOriginalParentErrors, type GetRecycleBinMediaByIdOriginalParentResponse, type GetRecycleBinMediaByIdOriginalParentResponses, type GetRecycleBinMediaChildrenData, type GetRecycleBinMediaChildrenErrors, type GetRecycleBinMediaChildrenResponse, type GetRecycleBinMediaChildrenResponses, type GetRecycleBinMediaReferencedByData, type GetRecycleBinMediaReferencedByErrors, type GetRecycleBinMediaReferencedByResponse, type GetRecycleBinMediaReferencedByResponses, type GetRecycleBinMediaRootData, type GetRecycleBinMediaRootErrors, type GetRecycleBinMediaRootResponse, type GetRecycleBinMediaRootResponses, type GetRecycleBinMediaSiblingsData, type GetRecycleBinMediaSiblingsErrors, type GetRecycleBinMediaSiblingsResponse, type GetRecycleBinMediaSiblingsResponses, type GetRedirectManagementByIdData, type GetRedirectManagementByIdErrors, type GetRedirectManagementByIdResponse, type GetRedirectManagementByIdResponses, type GetRedirectManagementData, type GetRedirectManagementError, type GetRedirectManagementErrors, type GetRedirectManagementResponse, type GetRedirectManagementResponses, type GetRedirectManagementStatusData, type GetRedirectManagementStatusErrors, type GetRedirectManagementStatusResponse, type GetRedirectManagementStatusResponses, type GetRelationByRelationTypeIdData, type GetRelationByRelationTypeIdError, type GetRelationByRelationTypeIdErrors, type GetRelationByRelationTypeIdResponse, type GetRelationByRelationTypeIdResponses, type GetRelationTypeByIdData, type GetRelationTypeByIdError, type GetRelationTypeByIdErrors, type GetRelationTypeByIdResponse, type GetRelationTypeByIdResponses, type GetRelationTypeData, type GetRelationTypeErrors, type GetRelationTypeResponse, type GetRelationTypeResponses, type GetScriptByPathData, type GetScriptByPathError, type GetScriptByPathErrors, type GetScriptByPathResponse, type GetScriptByPathResponses, type GetScriptFolderByPathData, type GetScriptFolderByPathError, type GetScriptFolderByPathErrors, type GetScriptFolderByPathResponse, type GetScriptFolderByPathResponses, type GetSearcherBySearcherNameQueryData, type GetSearcherBySearcherNameQueryError, type GetSearcherBySearcherNameQueryErrors, type GetSearcherBySearcherNameQueryResponse, type GetSearcherBySearcherNameQueryResponses, type GetSearcherData, type GetSearcherErrors, type GetSearcherResponse, type GetSearcherResponses, type GetSecurityConfigurationData, type GetSecurityConfigurationErrors, type GetSecurityConfigurationResponse, type GetSecurityConfigurationResponses, type GetSegmentData, type GetSegmentError, type GetSegmentErrors, type GetSegmentResponse, type GetSegmentResponses, type GetServerConfigurationData, type GetServerConfigurationResponse, type GetServerConfigurationResponses, type GetServerInformationData, type GetServerInformationErrors, type GetServerInformationResponse, type GetServerInformationResponses, type GetServerStatusData, type GetServerStatusError, type GetServerStatusErrors, type GetServerStatusResponse, type GetServerStatusResponses, type GetServerTroubleshootingData, type GetServerTroubleshootingErrors, type GetServerTroubleshootingResponse, type GetServerTroubleshootingResponses, type GetServerUpgradeCheckData, type GetServerUpgradeCheckErrors, type GetServerUpgradeCheckResponse, type GetServerUpgradeCheckResponses, type GetStylesheetByPathData, type GetStylesheetByPathError, type GetStylesheetByPathErrors, type GetStylesheetByPathResponse, type GetStylesheetByPathResponses, type GetStylesheetFolderByPathData, type GetStylesheetFolderByPathError, type GetStylesheetFolderByPathErrors, type GetStylesheetFolderByPathResponse, type GetStylesheetFolderByPathResponses, type GetTagData, type GetTagErrors, type GetTagResponse, type GetTagResponses, type GetTelemetryData, type GetTelemetryErrors, type GetTelemetryLevelData, type GetTelemetryLevelErrors, type GetTelemetryLevelResponse, type GetTelemetryLevelResponses, type GetTelemetryResponse, type GetTelemetryResponses, type GetTemplateByIdData, type GetTemplateByIdError, type GetTemplateByIdErrors, type GetTemplateByIdResponse, type GetTemplateByIdResponses, type GetTemplateConfigurationData, type GetTemplateConfigurationErrors, type GetTemplateConfigurationResponse, type GetTemplateConfigurationResponses, type GetTemplateQuerySettingsData, type GetTemplateQuerySettingsErrors, type GetTemplateQuerySettingsResponse, type GetTemplateQuerySettingsResponses, type GetTemporaryFileByIdData, type GetTemporaryFileByIdError, type GetTemporaryFileByIdErrors, type GetTemporaryFileByIdResponse, type GetTemporaryFileByIdResponses, type GetTemporaryFileConfigurationData, type GetTemporaryFileConfigurationErrors, type GetTemporaryFileConfigurationResponse, type GetTemporaryFileConfigurationResponses, type GetTreeDataTypeAncestorsData, type GetTreeDataTypeAncestorsErrors, type GetTreeDataTypeAncestorsResponse, type GetTreeDataTypeAncestorsResponses, type GetTreeDataTypeChildrenData, type GetTreeDataTypeChildrenErrors, type GetTreeDataTypeChildrenResponse, type GetTreeDataTypeChildrenResponses, type GetTreeDataTypeRootData, type GetTreeDataTypeRootErrors, type GetTreeDataTypeRootResponse, type GetTreeDataTypeRootResponses, type GetTreeDataTypeSearchData, type GetTreeDataTypeSearchErrors, type GetTreeDataTypeSearchResponse, type GetTreeDataTypeSearchResponses, type GetTreeDataTypeSiblingsData, type GetTreeDataTypeSiblingsErrors, type GetTreeDataTypeSiblingsResponse, type GetTreeDataTypeSiblingsResponses, type GetTreeDictionaryAncestorsData, type GetTreeDictionaryAncestorsErrors, type GetTreeDictionaryAncestorsResponse, type GetTreeDictionaryAncestorsResponses, type GetTreeDictionaryChildrenData, type GetTreeDictionaryChildrenErrors, type GetTreeDictionaryChildrenResponse, type GetTreeDictionaryChildrenResponses, type GetTreeDictionaryRootData, type GetTreeDictionaryRootErrors, type GetTreeDictionaryRootResponse, type GetTreeDictionaryRootResponses, type GetTreeDocumentAncestorsData, type GetTreeDocumentAncestorsErrors, type GetTreeDocumentAncestorsResponse, type GetTreeDocumentAncestorsResponses, type GetTreeDocumentBlueprintAncestorsData, type GetTreeDocumentBlueprintAncestorsErrors, type GetTreeDocumentBlueprintAncestorsResponse, type GetTreeDocumentBlueprintAncestorsResponses, type GetTreeDocumentBlueprintChildrenData, type GetTreeDocumentBlueprintChildrenErrors, type GetTreeDocumentBlueprintChildrenResponse, type GetTreeDocumentBlueprintChildrenResponses, type GetTreeDocumentBlueprintRootData, type GetTreeDocumentBlueprintRootErrors, type GetTreeDocumentBlueprintRootResponse, type GetTreeDocumentBlueprintRootResponses, type GetTreeDocumentBlueprintSiblingsData, type GetTreeDocumentBlueprintSiblingsErrors, type GetTreeDocumentBlueprintSiblingsResponse, type GetTreeDocumentBlueprintSiblingsResponses, type GetTreeDocumentChildrenData, type GetTreeDocumentChildrenErrors, type GetTreeDocumentChildrenResponse, type GetTreeDocumentChildrenResponses, type GetTreeDocumentRootData, type GetTreeDocumentRootErrors, type GetTreeDocumentRootResponse, type GetTreeDocumentRootResponses, type GetTreeDocumentSiblingsData, type GetTreeDocumentSiblingsErrors, type GetTreeDocumentSiblingsResponse, type GetTreeDocumentSiblingsResponses, type GetTreeDocumentTypeAncestorsData, type GetTreeDocumentTypeAncestorsErrors, type GetTreeDocumentTypeAncestorsResponse, type GetTreeDocumentTypeAncestorsResponses, type GetTreeDocumentTypeChildrenData, type GetTreeDocumentTypeChildrenErrors, type GetTreeDocumentTypeChildrenResponse, type GetTreeDocumentTypeChildrenResponses, type GetTreeDocumentTypeRootData, type GetTreeDocumentTypeRootErrors, type GetTreeDocumentTypeRootResponse, type GetTreeDocumentTypeRootResponses, type GetTreeDocumentTypeSearchData, type GetTreeDocumentTypeSearchErrors, type GetTreeDocumentTypeSearchResponse, type GetTreeDocumentTypeSearchResponses, type GetTreeDocumentTypeSiblingsData, type GetTreeDocumentTypeSiblingsErrors, type GetTreeDocumentTypeSiblingsResponse, type GetTreeDocumentTypeSiblingsResponses, type GetTreeElementAncestorsData, type GetTreeElementAncestorsErrors, type GetTreeElementAncestorsResponse, type GetTreeElementAncestorsResponses, type GetTreeElementChildrenData, type GetTreeElementChildrenErrors, type GetTreeElementChildrenResponse, type GetTreeElementChildrenResponses, type GetTreeElementRootData, type GetTreeElementRootErrors, type GetTreeElementRootResponse, type GetTreeElementRootResponses, type GetTreeElementSiblingsData, type GetTreeElementSiblingsErrors, type GetTreeElementSiblingsResponse, type GetTreeElementSiblingsResponses, type GetTreeMediaAncestorsData, type GetTreeMediaAncestorsErrors, type GetTreeMediaAncestorsResponse, type GetTreeMediaAncestorsResponses, type GetTreeMediaChildrenData, type GetTreeMediaChildrenErrors, type GetTreeMediaChildrenResponse, type GetTreeMediaChildrenResponses, type GetTreeMediaRootData, type GetTreeMediaRootErrors, type GetTreeMediaRootResponse, type GetTreeMediaRootResponses, type GetTreeMediaSiblingsData, type GetTreeMediaSiblingsErrors, type GetTreeMediaSiblingsResponse, type GetTreeMediaSiblingsResponses, type GetTreeMediaTypeAncestorsData, type GetTreeMediaTypeAncestorsErrors, type GetTreeMediaTypeAncestorsResponse, type GetTreeMediaTypeAncestorsResponses, type GetTreeMediaTypeChildrenData, type GetTreeMediaTypeChildrenErrors, type GetTreeMediaTypeChildrenResponse, type GetTreeMediaTypeChildrenResponses, type GetTreeMediaTypeRootData, type GetTreeMediaTypeRootErrors, type GetTreeMediaTypeRootResponse, type GetTreeMediaTypeRootResponses, type GetTreeMediaTypeSiblingsData, type GetTreeMediaTypeSiblingsErrors, type GetTreeMediaTypeSiblingsResponse, type GetTreeMediaTypeSiblingsResponses, type GetTreeMemberGroupRootData, type GetTreeMemberGroupRootErrors, type GetTreeMemberGroupRootResponse, type GetTreeMemberGroupRootResponses, type GetTreeMemberTypeAncestorsData, type GetTreeMemberTypeAncestorsErrors, type GetTreeMemberTypeAncestorsResponse, type GetTreeMemberTypeAncestorsResponses, type GetTreeMemberTypeChildrenData, type GetTreeMemberTypeChildrenErrors, type GetTreeMemberTypeChildrenResponse, type GetTreeMemberTypeChildrenResponses, type GetTreeMemberTypeRootData, type GetTreeMemberTypeRootErrors, type GetTreeMemberTypeRootResponse, type GetTreeMemberTypeRootResponses, type GetTreeMemberTypeSiblingsData, type GetTreeMemberTypeSiblingsErrors, type GetTreeMemberTypeSiblingsResponse, type GetTreeMemberTypeSiblingsResponses, type GetTreePartialViewAncestorsData, type GetTreePartialViewAncestorsErrors, type GetTreePartialViewAncestorsResponse, type GetTreePartialViewAncestorsResponses, type GetTreePartialViewChildrenData, type GetTreePartialViewChildrenErrors, type GetTreePartialViewChildrenResponse, type GetTreePartialViewChildrenResponses, type GetTreePartialViewRootData, type GetTreePartialViewRootErrors, type GetTreePartialViewRootResponse, type GetTreePartialViewRootResponses, type GetTreePartialViewSiblingsData, type GetTreePartialViewSiblingsErrors, type GetTreePartialViewSiblingsResponse, type GetTreePartialViewSiblingsResponses, type GetTreeScriptAncestorsData, type GetTreeScriptAncestorsErrors, type GetTreeScriptAncestorsResponse, type GetTreeScriptAncestorsResponses, type GetTreeScriptChildrenData, type GetTreeScriptChildrenErrors, type GetTreeScriptChildrenResponse, type GetTreeScriptChildrenResponses, type GetTreeScriptRootData, type GetTreeScriptRootErrors, type GetTreeScriptRootResponse, type GetTreeScriptRootResponses, type GetTreeScriptSiblingsData, type GetTreeScriptSiblingsErrors, type GetTreeScriptSiblingsResponse, type GetTreeScriptSiblingsResponses, type GetTreeStaticFileAncestorsData, type GetTreeStaticFileAncestorsErrors, type GetTreeStaticFileAncestorsResponse, type GetTreeStaticFileAncestorsResponses, type GetTreeStaticFileChildrenData, type GetTreeStaticFileChildrenErrors, type GetTreeStaticFileChildrenResponse, type GetTreeStaticFileChildrenResponses, type GetTreeStaticFileRootData, type GetTreeStaticFileRootErrors, type GetTreeStaticFileRootResponse, type GetTreeStaticFileRootResponses, type GetTreeStylesheetAncestorsData, type GetTreeStylesheetAncestorsErrors, type GetTreeStylesheetAncestorsResponse, type GetTreeStylesheetAncestorsResponses, type GetTreeStylesheetChildrenData, type GetTreeStylesheetChildrenErrors, type GetTreeStylesheetChildrenResponse, type GetTreeStylesheetChildrenResponses, type GetTreeStylesheetRootData, type GetTreeStylesheetRootErrors, type GetTreeStylesheetRootResponse, type GetTreeStylesheetRootResponses, type GetTreeStylesheetSiblingsData, type GetTreeStylesheetSiblingsErrors, type GetTreeStylesheetSiblingsResponse, type GetTreeStylesheetSiblingsResponses, type GetTreeTemplateAncestorsData, type GetTreeTemplateAncestorsErrors, type GetTreeTemplateAncestorsResponse, type GetTreeTemplateAncestorsResponses, type GetTreeTemplateChildrenData, type GetTreeTemplateChildrenErrors, type GetTreeTemplateChildrenResponse, type GetTreeTemplateChildrenResponses, type GetTreeTemplateRootData, type GetTreeTemplateRootErrors, type GetTreeTemplateRootResponse, type GetTreeTemplateRootResponses, type GetTreeTemplateSiblingsData, type GetTreeTemplateSiblingsErrors, type GetTreeTemplateSiblingsResponse, type GetTreeTemplateSiblingsResponses, type GetUpgradeSettingsData, type GetUpgradeSettingsError, type GetUpgradeSettingsErrors, type GetUpgradeSettingsResponse, type GetUpgradeSettingsResponses, type GetUserBatchData, type GetUserBatchErrors, type GetUserBatchResponse, type GetUserBatchResponses, type GetUserById2FaData, type GetUserById2FaError, type GetUserById2FaErrors, type GetUserById2FaResponse, type GetUserById2FaResponses, type GetUserByIdCalculateStartNodesData, type GetUserByIdCalculateStartNodesError, type GetUserByIdCalculateStartNodesErrors, type GetUserByIdCalculateStartNodesResponse, type GetUserByIdCalculateStartNodesResponses, type GetUserByIdClientCredentialsData, type GetUserByIdClientCredentialsErrors, type GetUserByIdClientCredentialsResponse, type GetUserByIdClientCredentialsResponses, type GetUserByIdData, type GetUserByIdError, type GetUserByIdErrors, type GetUserByIdResponse, type GetUserByIdResponses, type GetUserConfigurationData, type GetUserConfigurationErrors, type GetUserConfigurationResponse, type GetUserConfigurationResponses, type GetUserCurrent2FaByProviderNameData, type GetUserCurrent2FaByProviderNameError, type GetUserCurrent2FaByProviderNameErrors, type GetUserCurrent2FaByProviderNameResponse, type GetUserCurrent2FaByProviderNameResponses, type GetUserCurrent2FaData, type GetUserCurrent2FaErrors, type GetUserCurrent2FaResponse, type GetUserCurrent2FaResponses, type GetUserCurrentConfigurationData, type GetUserCurrentConfigurationErrors, type GetUserCurrentConfigurationResponse, type GetUserCurrentConfigurationResponses, type GetUserCurrentData, type GetUserCurrentErrors, type GetUserCurrentLoginProvidersData, type GetUserCurrentLoginProvidersErrors, type GetUserCurrentLoginProvidersResponse, type GetUserCurrentLoginProvidersResponses, type GetUserCurrentPermissionsData, type GetUserCurrentPermissionsDocumentData, type GetUserCurrentPermissionsDocumentError, type GetUserCurrentPermissionsDocumentErrors, type GetUserCurrentPermissionsDocumentResponse, type GetUserCurrentPermissionsDocumentResponses, type GetUserCurrentPermissionsElementData, type GetUserCurrentPermissionsElementError, type GetUserCurrentPermissionsElementErrors, type GetUserCurrentPermissionsElementResponse, type GetUserCurrentPermissionsElementResponses, type GetUserCurrentPermissionsError, type GetUserCurrentPermissionsErrors, type GetUserCurrentPermissionsMediaData, type GetUserCurrentPermissionsMediaError, type GetUserCurrentPermissionsMediaErrors, type GetUserCurrentPermissionsMediaResponse, type GetUserCurrentPermissionsMediaResponses, type GetUserCurrentPermissionsResponse, type GetUserCurrentPermissionsResponses, type GetUserCurrentResponse, type GetUserCurrentResponses, type GetUserData, type GetUserDataByIdData, type GetUserDataByIdErrors, type GetUserDataByIdResponse, type GetUserDataByIdResponses, type GetUserDataData, type GetUserDataErrors, type GetUserDataResponse, type GetUserDataResponses, type GetUserError, type GetUserErrors, type GetUserGroupByIdData, type GetUserGroupByIdError, type GetUserGroupByIdErrors, type GetUserGroupByIdResponse, type GetUserGroupByIdResponses, type GetUserGroupData, type GetUserGroupErrors, type GetUserGroupResponse, type GetUserGroupResponses, type GetUserResponse, type GetUserResponses, type GetWebhookByIdData, type GetWebhookByIdError, type GetWebhookByIdErrors, type GetWebhookByIdLogsData, type GetWebhookByIdLogsErrors, type GetWebhookByIdLogsResponse, type GetWebhookByIdLogsResponses, type GetWebhookByIdResponse, type GetWebhookByIdResponses, type GetWebhookData, type GetWebhookErrors, type GetWebhookEventsData, type GetWebhookEventsErrors, type GetWebhookEventsResponse, type GetWebhookEventsResponses, type GetWebhookLogsData, type GetWebhookLogsErrors, type GetWebhookLogsResponse, type GetWebhookLogsResponses, type GetWebhookResponse, type GetWebhookResponses, type HealthCheckActionRequestModel, type HealthCheckGroupPresentationModel, type HealthCheckGroupResponseModel, type HealthCheckGroupWithResultResponseModel, type HealthCheckModel, type HealthCheckResultResponseModel, type HealthCheckWithResultPresentationModel, HealthStatusModel, type HealthStatusResponseModel, type HelpPageResponseModel, ImageCropModeModel, type ImportDictionaryRequestModel, type ImportDocumentTypeRequestModel, type ImportMediaTypeRequestModel, type ImportMemberTypeRequestModel, type IndexResponseModel, type InstallRequestModel, type InstallSettingsResponseModel, type InviteUserRequestModel, type IPermissionPresentationModel, type IPermissionPresentationModelDocumentPermissionPresentationModel, type IPermissionPresentationModelDocumentPropertyValuePermissionPresentationModel, type IPermissionPresentationModelElementPermissionPresentationModel, type IPermissionPresentationModelUnknownTypePermissionPresentationModel, type IReferenceResponseModel, type IReferenceResponseModelDefaultReferenceResponseModel, type IReferenceResponseModelDocumentReferenceResponseModel, type IReferenceResponseModelDocumentTypePropertyTypeReferenceResponseModel, type IReferenceResponseModelElementContainerReferenceResponseModel, type IReferenceResponseModelElementReferenceResponseModel, type IReferenceResponseModelMediaReferenceResponseModel, type IReferenceResponseModelMediaTypePropertyTypeReferenceResponseModel, type IReferenceResponseModelMemberReferenceResponseModel, type IReferenceResponseModelMemberTypePropertyTypeReferenceResponseModel, type ISetupTwoFactorModel, type ISetupTwoFactorModelNoopSetupTwoFactorModel, type ItemAncestorsResponseModelDocumentItemResponseModel, type ItemAncestorsResponseModelMediaItemResponseModel, type ItemAncestorsResponseModelMemberItemResponseModel, type ItemAncestorsResponseModelNamedItemResponseModel, type ItemAncestorsResponseModelTemplateItemResponseModel, type ItemReferenceByIdResponseModel, type ItemSortingRequestModel, type JsonObject, type LanguageItemResponseModel, type LanguageResponseModel, type LoggerResponseModel, type LogLevelCountsReponseModel, LogLevelModel, type LogMessagePropertyPresentationModel, type LogMessageResponseModel, type LogTemplateResponseModel, type ManifestResponseModel, type MediaCollectionResponseModel, type MediaConfigurationResponseModel, type MediaItemResponseModel, type MediaRecycleBinItemResponseModel, type MediaResponseModel, type MediaTreeItemResponseModel, type MediaTypeAllowedParentsResponseModel, type MediaTypeCollectionReferenceResponseModel, type MediaTypeCompositionModel, type MediaTypeCompositionRequestModel, type MediaTypeCompositionResponseModel, type MediaTypeConfigurationResponseModel, type MediaTypeItemResponseModel, type MediaTypePropertyTypeContainerResponseModel, type MediaTypePropertyTypeResponseModel, type MediaTypeReferenceResponseModel, type MediaTypeResponseModel, type MediaTypeSortModel, type MediaTypeTreeItemResponseModel, type MediaUrlInfoModel, type MediaUrlInfoResponseModel, type MediaValueModel, type MediaValueResponseModel, type MediaVariantRequestModel, type MediaVariantResponseModel, type MemberGroupItemResponseModel, type MemberGroupResponseModel, type MemberItemResponseModel, MemberKindModel, type MemberResponseModel, type MemberTypeCompositionModel, type MemberTypeCompositionRequestModel, type MemberTypeCompositionResponseModel, type MemberTypeConfigurationResponseModel, type MemberTypeItemResponseModel, type MemberTypePropertyTypeContainerResponseModel, type MemberTypePropertyTypeResponseModel, type MemberTypePropertyTypeVisibilityModel, type MemberTypeReferenceResponseModel, type MemberTypeResponseModel, type MemberTypeTreeItemResponseModel, type MemberValueModel, type MemberValueResponseModel, type MemberVariantRequestModel, type MemberVariantResponseModel, type ModelsBuilderResponseModel, type MoveDataTypeRequestModel, type MoveDictionaryRequestModel, type MoveDocumentBlueprintRequestModel, type MoveDocumentRequestModel, type MoveDocumentTypeRequestModel, type MoveElementRequestModel, type MoveFolderRequestModel, type MoveMediaRequestModel, type MoveMediaTypeRequestModel, type MoveMemberTypeRequestModel, type NamedEntityTreeItemResponseModel, type NamedItemResponseModel, type NewsDashboardItemResponseModel, type NewsDashboardResponseModel, type NotificationHeaderModel, type ObjectTypeResponseModel, type OEmbedResponseModel, OperatorModel, type OutOfDateStatusResponseModel, OutOfDateTypeModel, type PackageConfigurationResponseModel, type PackageDefinitionResponseModel, type PackageMigrationStatusResponseModel, type PagedAllowedDocumentTypeModel, type PagedAllowedMediaTypeModel, type PagedAllowedMemberTypeModel, type PagedAuditLogResponseModel, type PagedCultureReponseModel, type PagedDataTypeItemResponseModel, type PagedDataTypeTreeItemResponseModel, type PagedDictionaryOverviewResponseModel, type PagedDocumentBlueprintTreeItemResponseModel, type PagedDocumentCollectionResponseModel, type PagedDocumentRecycleBinItemResponseModel, type PagedDocumentTreeItemResponseModel, type PagedDocumentTypeBlueprintItemResponseModel, type PagedDocumentTypeTreeItemResponseModel, type PagedDocumentVersionItemResponseModel, type PagedElementRecycleBinItemResponseModel, type PagedElementTreeItemResponseModel, type PagedElementVersionItemResponseModel, type PagedFileSystemTreeItemPresentationModel, type PagedHealthCheckGroupResponseModel, type PagedHelpPageResponseModel, type PagedIndexResponseModel, type PagedIReferenceResponseModel, type PagedLanguageResponseModel, type PagedLoggerResponseModel, type PagedLogMessageResponseModel, type PagedLogTemplateResponseModel, type PagedMediaCollectionResponseModel, type PagedMediaRecycleBinItemResponseModel, type PagedMediaTreeItemResponseModel, type PagedMediaTypeTreeItemResponseModel, type PagedMemberGroupResponseModel, type PagedMemberResponseModel, type PagedMemberTypeTreeItemResponseModel, type PagedModelAllowedMediaTypeItemResponseModel, type PagedModelDataTypeItemResponseModel, type PagedModelDocumentItemResponseModel, type PagedModelDocumentTypeItemResponseModel, type PagedModelElementItemResponseModel, type PagedModelMediaItemResponseModel, type PagedModelMediaTypeItemResponseModel, type PagedModelMemberItemResponseModel, type PagedModelMemberTypeItemResponseModel, type PagedModelTemplateItemResponseModel, type PagedNamedEntityTreeItemResponseModel, type PagedObjectTypeResponseModel, type PagedPackageDefinitionResponseModel, type PagedPackageMigrationStatusResponseModel, type PagedPartialViewSnippetItemResponseModel, type PagedProblemDetailsModel, type PagedRedirectUrlResponseModel, type PagedReferenceByIdModel, type PagedRelationResponseModel, type PagedRelationTypeResponseModel, type PagedSavedLogSearchResponseModel, type PagedSearcherResponseModel, type PagedSearchResultResponseModel, type PagedSegmentResponseModel, type PagedTagResponseModel, type PagedTelemetryResponseModel, type PagedUserDataResponseModel, type PagedUserGroupResponseModel, type PagedUserResponseModel, type PagedWebhookEventModel, type PagedWebhookLogResponseModel, type PagedWebhookResponseModel, type PartialViewFolderResponseModel, type PartialViewItemResponseModel, type PartialViewResponseModel, type PartialViewSnippetItemResponseModel, type PartialViewSnippetResponseModel, type PasswordConfigurationResponseModel, type PatchDocumentByIdPatchData, type PatchDocumentByIdPatchError, type PatchDocumentByIdPatchErrors, type PatchDocumentByIdPatchResponses, type PatchDocumentRequestModel, type PatchOperationRequestModel, type PostDataTypeByIdCopyData, type PostDataTypeByIdCopyError, type PostDataTypeByIdCopyErrors, type PostDataTypeByIdCopyResponses, type PostDataTypeData, type PostDataTypeError, type PostDataTypeErrors, type PostDataTypeFolderData, type PostDataTypeFolderError, type PostDataTypeFolderErrors, type PostDataTypeFolderResponses, type PostDataTypeResponses, type PostDictionaryData, type PostDictionaryError, type PostDictionaryErrors, type PostDictionaryImportData, type PostDictionaryImportError, type PostDictionaryImportErrors, type PostDictionaryImportResponses, type PostDictionaryResponses, type PostDocumentBlueprintData, type PostDocumentBlueprintError, type PostDocumentBlueprintErrors, type PostDocumentBlueprintFolderData, type PostDocumentBlueprintFolderError, type PostDocumentBlueprintFolderErrors, type PostDocumentBlueprintFolderResponses, type PostDocumentBlueprintFromDocumentData, type PostDocumentBlueprintFromDocumentError, type PostDocumentBlueprintFromDocumentErrors, type PostDocumentBlueprintFromDocumentResponses, type PostDocumentBlueprintResponses, type PostDocumentByIdCopyData, type PostDocumentByIdCopyError, type PostDocumentByIdCopyErrors, type PostDocumentByIdCopyResponses, type PostDocumentByIdPublicAccessData, type PostDocumentByIdPublicAccessError, type PostDocumentByIdPublicAccessErrors, type PostDocumentByIdPublicAccessResponses, type PostDocumentCreateAndPublishData, type PostDocumentCreateAndPublishError, type PostDocumentCreateAndPublishErrors, type PostDocumentCreateAndPublishResponses, type PostDocumentData, type PostDocumentError, type PostDocumentErrors, type PostDocumentResponses, type PostDocumentTypeAvailableCompositionsData, type PostDocumentTypeAvailableCompositionsErrors, type PostDocumentTypeAvailableCompositionsResponse, type PostDocumentTypeAvailableCompositionsResponses, type PostDocumentTypeByIdCopyData, type PostDocumentTypeByIdCopyError, type PostDocumentTypeByIdCopyErrors, type PostDocumentTypeByIdCopyResponses, type PostDocumentTypeByIdTemplateData, type PostDocumentTypeByIdTemplateError, type PostDocumentTypeByIdTemplateErrors, type PostDocumentTypeByIdTemplateResponses, type PostDocumentTypeData, type PostDocumentTypeError, type PostDocumentTypeErrors, type PostDocumentTypeFolderData, type PostDocumentTypeFolderError, type PostDocumentTypeFolderErrors, type PostDocumentTypeFolderResponses, type PostDocumentTypeImportData, type PostDocumentTypeImportError, type PostDocumentTypeImportErrors, type PostDocumentTypeImportResponses, type PostDocumentTypeResponses, type PostDocumentValidateData, type PostDocumentValidateError, type PostDocumentValidateErrors, type PostDocumentValidateResponses, type PostDocumentVersionByIdRollbackData, type PostDocumentVersionByIdRollbackError, type PostDocumentVersionByIdRollbackErrors, type PostDocumentVersionByIdRollbackResponses, type PostDynamicRootQueryData, type PostDynamicRootQueryErrors, type PostDynamicRootQueryResponse, type PostDynamicRootQueryResponses, type PostElementByIdCopyData, type PostElementByIdCopyError, type PostElementByIdCopyErrors, type PostElementByIdCopyResponses, type PostElementData, type PostElementError, type PostElementErrors, type PostElementFolderData, type PostElementFolderError, type PostElementFolderErrors, type PostElementFolderResponses, type PostElementResponses, type PostElementValidateData, type PostElementValidateError, type PostElementValidateErrors, type PostElementValidateResponses, type PostElementVersionByIdRollbackData, type PostElementVersionByIdRollbackError, type PostElementVersionByIdRollbackErrors, type PostElementVersionByIdRollbackResponses, type PostHealthCheckExecuteActionData, type PostHealthCheckExecuteActionError, type PostHealthCheckExecuteActionErrors, type PostHealthCheckExecuteActionResponse, type PostHealthCheckExecuteActionResponses, type PostHealthCheckGroupByNameCheckData, type PostHealthCheckGroupByNameCheckError, type PostHealthCheckGroupByNameCheckErrors, type PostHealthCheckGroupByNameCheckResponse, type PostHealthCheckGroupByNameCheckResponses, type PostIndexerByIndexNameRebuildData, type PostIndexerByIndexNameRebuildError, type PostIndexerByIndexNameRebuildErrors, type PostIndexerByIndexNameRebuildResponses, type PostInstallSetupData, type PostInstallSetupError, type PostInstallSetupErrors, type PostInstallSetupResponses, type PostInstallValidateDatabaseData, type PostInstallValidateDatabaseError, type PostInstallValidateDatabaseErrors, type PostInstallValidateDatabaseResponses, type PostLanguageData, type PostLanguageError, type PostLanguageErrors, type PostLanguageResponses, type PostLogViewerSavedSearchData, type PostLogViewerSavedSearchError, type PostLogViewerSavedSearchErrors, type PostLogViewerSavedSearchResponses, type PostMediaData, type PostMediaError, type PostMediaErrors, type PostMediaResponses, type PostMediaTypeAvailableCompositionsData, type PostMediaTypeAvailableCompositionsErrors, type PostMediaTypeAvailableCompositionsResponse, type PostMediaTypeAvailableCompositionsResponses, type PostMediaTypeByIdCopyData, type PostMediaTypeByIdCopyError, type PostMediaTypeByIdCopyErrors, type PostMediaTypeByIdCopyResponses, type PostMediaTypeData, type PostMediaTypeError, type PostMediaTypeErrors, type PostMediaTypeFolderData, type PostMediaTypeFolderError, type PostMediaTypeFolderErrors, type PostMediaTypeFolderResponses, type PostMediaTypeImportData, type PostMediaTypeImportError, type PostMediaTypeImportErrors, type PostMediaTypeImportResponses, type PostMediaTypeResponses, type PostMediaValidateData, type PostMediaValidateError, type PostMediaValidateErrors, type PostMediaValidateResponses, type PostMemberData, type PostMemberError, type PostMemberErrors, type PostMemberGroupData, type PostMemberGroupError, type PostMemberGroupErrors, type PostMemberGroupResponses, type PostMemberResponses, type PostMemberTypeAvailableCompositionsData, type PostMemberTypeAvailableCompositionsErrors, type PostMemberTypeAvailableCompositionsResponse, type PostMemberTypeAvailableCompositionsResponses, type PostMemberTypeByIdCopyData, type PostMemberTypeByIdCopyError, type PostMemberTypeByIdCopyErrors, type PostMemberTypeByIdCopyResponses, type PostMemberTypeData, type PostMemberTypeError, type PostMemberTypeErrors, type PostMemberTypeFolderData, type PostMemberTypeFolderError, type PostMemberTypeFolderErrors, type PostMemberTypeFolderResponses, type PostMemberTypeImportData, type PostMemberTypeImportError, type PostMemberTypeImportErrors, type PostMemberTypeImportResponses, type PostMemberTypeResponses, type PostMemberValidateData, type PostMemberValidateError, type PostMemberValidateErrors, type PostMemberValidateResponses, type PostModelsBuilderBuildData, type PostModelsBuilderBuildError, type PostModelsBuilderBuildErrors, type PostModelsBuilderBuildResponses, type PostPackageByNameRunMigrationData, type PostPackageByNameRunMigrationError, type PostPackageByNameRunMigrationErrors, type PostPackageByNameRunMigrationResponses, type PostPackageCreatedData, type PostPackageCreatedError, type PostPackageCreatedErrors, type PostPackageCreatedResponses, type PostPartialViewData, type PostPartialViewError, type PostPartialViewErrors, type PostPartialViewFolderData, type PostPartialViewFolderError, type PostPartialViewFolderErrors, type PostPartialViewFolderResponses, type PostPartialViewResponses, type PostPublishedCacheRebuildData, type PostPublishedCacheRebuildErrors, type PostPublishedCacheRebuildResponses, type PostPublishedCacheReloadData, type PostPublishedCacheReloadErrors, type PostPublishedCacheReloadResponses, type PostRedirectManagementStatusData, type PostRedirectManagementStatusErrors, type PostRedirectManagementStatusResponses, type PostScriptData, type PostScriptError, type PostScriptErrors, type PostScriptFolderData, type PostScriptFolderError, type PostScriptFolderErrors, type PostScriptFolderResponses, type PostScriptResponses, type PostSecurityForgotPasswordData, type PostSecurityForgotPasswordError, type PostSecurityForgotPasswordErrors, type PostSecurityForgotPasswordResetData, type PostSecurityForgotPasswordResetError, type PostSecurityForgotPasswordResetErrors, type PostSecurityForgotPasswordResetResponse, type PostSecurityForgotPasswordResetResponses, type PostSecurityForgotPasswordResponses, type PostSecurityForgotPasswordVerifyData, type PostSecurityForgotPasswordVerifyError, type PostSecurityForgotPasswordVerifyErrors, type PostSecurityForgotPasswordVerifyResponse, type PostSecurityForgotPasswordVerifyResponses, type PostStylesheetData, type PostStylesheetError, type PostStylesheetErrors, type PostStylesheetFolderData, type PostStylesheetFolderError, type PostStylesheetFolderErrors, type PostStylesheetFolderResponses, type PostStylesheetResponses, type PostTelemetryLevelData, type PostTelemetryLevelError, type PostTelemetryLevelErrors, type PostTelemetryLevelResponses, type PostTemplateData, type PostTemplateError, type PostTemplateErrors, type PostTemplateQueryExecuteData, type PostTemplateQueryExecuteErrors, type PostTemplateQueryExecuteResponse, type PostTemplateQueryExecuteResponses, type PostTemplateResponses, type PostTemporaryFileData, type PostTemporaryFileError, type PostTemporaryFileErrors, type PostTemporaryFileResponses, type PostUpgradeAuthorizeData, type PostUpgradeAuthorizeError, type PostUpgradeAuthorizeErrors, type PostUpgradeAuthorizeResponses, type PostUserAvatarByIdData, type PostUserAvatarByIdError, type PostUserAvatarByIdErrors, type PostUserAvatarByIdResponses, type PostUserByIdChangePasswordData, type PostUserByIdChangePasswordError, type PostUserByIdChangePasswordErrors, type PostUserByIdChangePasswordResponses, type PostUserByIdClientCredentialsData, type PostUserByIdClientCredentialsError, type PostUserByIdClientCredentialsErrors, type PostUserByIdClientCredentialsResponses, type PostUserByIdResetPasswordData, type PostUserByIdResetPasswordError, type PostUserByIdResetPasswordErrors, type PostUserByIdResetPasswordResponse, type PostUserByIdResetPasswordResponses, type PostUserCurrent2FaByProviderNameData, type PostUserCurrent2FaByProviderNameError, type PostUserCurrent2FaByProviderNameErrors, type PostUserCurrent2FaByProviderNameResponse, type PostUserCurrent2FaByProviderNameResponses, type PostUserCurrentAvatarData, type PostUserCurrentAvatarError, type PostUserCurrentAvatarErrors, type PostUserCurrentAvatarResponses, type PostUserCurrentChangePasswordData, type PostUserCurrentChangePasswordError, type PostUserCurrentChangePasswordErrors, type PostUserCurrentChangePasswordResponses, type PostUserData, type PostUserDataData, type PostUserDataError, type PostUserDataErrors, type PostUserDataResponses, type PostUserDisableData, type PostUserDisableError, type PostUserDisableErrors, type PostUserDisableResponses, type PostUserEnableData, type PostUserEnableError, type PostUserEnableErrors, type PostUserEnableResponses, type PostUserError, type PostUserErrors, type PostUserGroupByIdUsersData, type PostUserGroupByIdUsersError, type PostUserGroupByIdUsersErrors, type PostUserGroupByIdUsersResponses, type PostUserGroupData, type PostUserGroupError, type PostUserGroupErrors, type PostUserGroupResponses, type PostUserInviteCreatePasswordData, type PostUserInviteCreatePasswordError, type PostUserInviteCreatePasswordErrors, type PostUserInviteCreatePasswordResponses, type PostUserInviteData, type PostUserInviteError, type PostUserInviteErrors, type PostUserInviteResendData, type PostUserInviteResendError, type PostUserInviteResendErrors, type PostUserInviteResendResponses, type PostUserInviteResponses, type PostUserInviteVerifyData, type PostUserInviteVerifyError, type PostUserInviteVerifyErrors, type PostUserInviteVerifyResponse, type PostUserInviteVerifyResponses, type PostUserResponses, type PostUserSetUserGroupsData, type PostUserSetUserGroupsErrors, type PostUserSetUserGroupsResponses, type PostUserUnlockData, type PostUserUnlockError, type PostUserUnlockErrors, type PostUserUnlockResponses, type PostWebhookData, type PostWebhookError, type PostWebhookErrors, type PostWebhookResponses, type ProblemDetails, type ProblemDetailsBuilderModel, type ProfilingStatusRequestModel, type ProfilingStatusResponseModel, type PropertyTypeAppearanceModel, type PropertyTypeValidationModel, type PublicAccessRequestModel, type PublicAccessResponseModel, PublishableVariantStateModel, type PublishDocumentRequestModel, type PublishDocumentWithDescendantsRequestModel, type PublishedDocumentResponseModel, type PublishedElementResponseModel, type PublishElementRequestModel, type PublishWithDescendantsResultModel, type PutDataTypeByIdData, type PutDataTypeByIdError, type PutDataTypeByIdErrors, type PutDataTypeByIdMoveData, type PutDataTypeByIdMoveError, type PutDataTypeByIdMoveErrors, type PutDataTypeByIdMoveResponses, type PutDataTypeByIdResponses, type PutDataTypeFolderByIdData, type PutDataTypeFolderByIdError, type PutDataTypeFolderByIdErrors, type PutDataTypeFolderByIdResponses, type PutDictionaryByIdData, type PutDictionaryByIdError, type PutDictionaryByIdErrors, type PutDictionaryByIdMoveData, type PutDictionaryByIdMoveError, type PutDictionaryByIdMoveErrors, type PutDictionaryByIdMoveResponses, type PutDictionaryByIdResponses, type PutDocumentBlueprintByIdData, type PutDocumentBlueprintByIdError, type PutDocumentBlueprintByIdErrors, type PutDocumentBlueprintByIdMoveData, type PutDocumentBlueprintByIdMoveError, type PutDocumentBlueprintByIdMoveErrors, type PutDocumentBlueprintByIdMoveResponses, type PutDocumentBlueprintByIdResponses, type PutDocumentBlueprintFolderByIdData, type PutDocumentBlueprintFolderByIdError, type PutDocumentBlueprintFolderByIdErrors, type PutDocumentBlueprintFolderByIdResponses, type PutDocumentByIdData, type PutDocumentByIdDomainsData, type PutDocumentByIdDomainsError, type PutDocumentByIdDomainsErrors, type PutDocumentByIdDomainsResponses, type PutDocumentByIdError, type PutDocumentByIdErrors, type PutDocumentByIdMoveData, type PutDocumentByIdMoveError, type PutDocumentByIdMoveErrors, type PutDocumentByIdMoveResponses, type PutDocumentByIdMoveToRecycleBinData, type PutDocumentByIdMoveToRecycleBinError, type PutDocumentByIdMoveToRecycleBinErrors, type PutDocumentByIdMoveToRecycleBinResponses, type PutDocumentByIdNotificationsData, type PutDocumentByIdNotificationsError, type PutDocumentByIdNotificationsErrors, type PutDocumentByIdNotificationsResponses, type PutDocumentByIdPublicAccessData, type PutDocumentByIdPublicAccessError, type PutDocumentByIdPublicAccessErrors, type PutDocumentByIdPublicAccessResponses, type PutDocumentByIdPublishData, type PutDocumentByIdPublishError, type PutDocumentByIdPublishErrors, type PutDocumentByIdPublishResponses, type PutDocumentByIdPublishWithDescendantsData, type PutDocumentByIdPublishWithDescendantsError, type PutDocumentByIdPublishWithDescendantsErrors, type PutDocumentByIdPublishWithDescendantsResponse, type PutDocumentByIdPublishWithDescendantsResponses, type PutDocumentByIdResponses, type PutDocumentByIdSortChildrenData, type PutDocumentByIdSortChildrenError, type PutDocumentByIdSortChildrenErrors, type PutDocumentByIdSortChildrenResponses, type PutDocumentByIdUnpublishData, type PutDocumentByIdUnpublishError, type PutDocumentByIdUnpublishErrors, type PutDocumentByIdUnpublishResponses, type PutDocumentByIdUpdateAndPublishData, type PutDocumentByIdUpdateAndPublishError, type PutDocumentByIdUpdateAndPublishErrors, type PutDocumentByIdUpdateAndPublishResponses, type PutDocumentRootSortChildrenData, type PutDocumentRootSortChildrenError, type PutDocumentRootSortChildrenErrors, type PutDocumentRootSortChildrenResponses, type PutDocumentSortData, type PutDocumentSortError, type PutDocumentSortErrors, type PutDocumentSortResponses, type PutDocumentTypeByIdData, type PutDocumentTypeByIdError, type PutDocumentTypeByIdErrors, type PutDocumentTypeByIdImportData, type PutDocumentTypeByIdImportError, type PutDocumentTypeByIdImportErrors, type PutDocumentTypeByIdImportResponses, type PutDocumentTypeByIdMoveData, type PutDocumentTypeByIdMoveError, type PutDocumentTypeByIdMoveErrors, type PutDocumentTypeByIdMoveResponses, type PutDocumentTypeByIdResponses, type PutDocumentTypeFolderByIdData, type PutDocumentTypeFolderByIdError, type PutDocumentTypeFolderByIdErrors, type PutDocumentTypeFolderByIdResponses, type PutDocumentVersionByIdPreventCleanupData, type PutDocumentVersionByIdPreventCleanupError, type PutDocumentVersionByIdPreventCleanupErrors, type PutDocumentVersionByIdPreventCleanupResponses, type PutElementByIdData, type PutElementByIdError, type PutElementByIdErrors, type PutElementByIdMoveData, type PutElementByIdMoveError, type PutElementByIdMoveErrors, type PutElementByIdMoveResponses, type PutElementByIdMoveToRecycleBinData, type PutElementByIdMoveToRecycleBinError, type PutElementByIdMoveToRecycleBinErrors, type PutElementByIdMoveToRecycleBinResponses, type PutElementByIdPublishData, type PutElementByIdPublishError, type PutElementByIdPublishErrors, type PutElementByIdPublishResponses, type PutElementByIdResponses, type PutElementByIdUnpublishData, type PutElementByIdUnpublishError, type PutElementByIdUnpublishErrors, type PutElementByIdUnpublishResponses, type PutElementByIdValidateData, type PutElementByIdValidateError, type PutElementByIdValidateErrors, type PutElementByIdValidateResponses, type PutElementFolderByIdData, type PutElementFolderByIdError, type PutElementFolderByIdErrors, type PutElementFolderByIdMoveData, type PutElementFolderByIdMoveError, type PutElementFolderByIdMoveErrors, type PutElementFolderByIdMoveResponses, type PutElementFolderByIdMoveToRecycleBinData, type PutElementFolderByIdMoveToRecycleBinError, type PutElementFolderByIdMoveToRecycleBinErrors, type PutElementFolderByIdMoveToRecycleBinResponses, type PutElementFolderByIdResponses, type PutElementVersionByIdPreventCleanupData, type PutElementVersionByIdPreventCleanupError, type PutElementVersionByIdPreventCleanupErrors, type PutElementVersionByIdPreventCleanupResponses, type PutLanguageByIsoCodeData, type PutLanguageByIsoCodeError, type PutLanguageByIsoCodeErrors, type PutLanguageByIsoCodeResponses, type PutMediaByIdData, type PutMediaByIdError, type PutMediaByIdErrors, type PutMediaByIdMoveData, type PutMediaByIdMoveError, type PutMediaByIdMoveErrors, type PutMediaByIdMoveResponses, type PutMediaByIdMoveToRecycleBinData, type PutMediaByIdMoveToRecycleBinError, type PutMediaByIdMoveToRecycleBinErrors, type PutMediaByIdMoveToRecycleBinResponses, type PutMediaByIdResponses, type PutMediaByIdSortChildrenData, type PutMediaByIdSortChildrenError, type PutMediaByIdSortChildrenErrors, type PutMediaByIdSortChildrenResponses, type PutMediaByIdValidateData, type PutMediaByIdValidateError, type PutMediaByIdValidateErrors, type PutMediaByIdValidateResponses, type PutMediaRootSortChildrenData, type PutMediaRootSortChildrenError, type PutMediaRootSortChildrenErrors, type PutMediaRootSortChildrenResponses, type PutMediaSortData, type PutMediaSortError, type PutMediaSortErrors, type PutMediaSortResponses, type PutMediaTypeByIdData, type PutMediaTypeByIdError, type PutMediaTypeByIdErrors, type PutMediaTypeByIdImportData, type PutMediaTypeByIdImportError, type PutMediaTypeByIdImportErrors, type PutMediaTypeByIdImportResponses, type PutMediaTypeByIdMoveData, type PutMediaTypeByIdMoveError, type PutMediaTypeByIdMoveErrors, type PutMediaTypeByIdMoveResponses, type PutMediaTypeByIdResponses, type PutMediaTypeFolderByIdData, type PutMediaTypeFolderByIdError, type PutMediaTypeFolderByIdErrors, type PutMediaTypeFolderByIdResponses, type PutMemberByIdData, type PutMemberByIdError, type PutMemberByIdErrors, type PutMemberByIdResponses, type PutMemberByIdValidateData, type PutMemberByIdValidateError, type PutMemberByIdValidateErrors, type PutMemberByIdValidateResponses, type PutMemberGroupByIdData, type PutMemberGroupByIdError, type PutMemberGroupByIdErrors, type PutMemberGroupByIdResponses, type PutMemberTypeByIdData, type PutMemberTypeByIdError, type PutMemberTypeByIdErrors, type PutMemberTypeByIdImportData, type PutMemberTypeByIdImportError, type PutMemberTypeByIdImportErrors, type PutMemberTypeByIdImportResponses, type PutMemberTypeByIdMoveData, type PutMemberTypeByIdMoveError, type PutMemberTypeByIdMoveErrors, type PutMemberTypeByIdMoveResponses, type PutMemberTypeByIdResponses, type PutMemberTypeFolderByIdData, type PutMemberTypeFolderByIdError, type PutMemberTypeFolderByIdErrors, type PutMemberTypeFolderByIdResponses, type PutPackageCreatedByIdData, type PutPackageCreatedByIdError, type PutPackageCreatedByIdErrors, type PutPackageCreatedByIdResponses, type PutPartialViewByPathData, type PutPartialViewByPathError, type PutPartialViewByPathErrors, type PutPartialViewByPathRenameData, type PutPartialViewByPathRenameError, type PutPartialViewByPathRenameErrors, type PutPartialViewByPathRenameResponses, type PutPartialViewByPathResponses, type PutProfilingStatusData, type PutProfilingStatusErrors, type PutProfilingStatusResponses, type PutRecycleBinDocumentByIdRestoreData, type PutRecycleBinDocumentByIdRestoreError, type PutRecycleBinDocumentByIdRestoreErrors, type PutRecycleBinDocumentByIdRestoreResponses, type PutRecycleBinElementByIdRestoreData, type PutRecycleBinElementByIdRestoreError, type PutRecycleBinElementByIdRestoreErrors, type PutRecycleBinElementByIdRestoreResponses, type PutRecycleBinElementFolderByIdRestoreData, type PutRecycleBinElementFolderByIdRestoreError, type PutRecycleBinElementFolderByIdRestoreErrors, type PutRecycleBinElementFolderByIdRestoreResponses, type PutRecycleBinMediaByIdRestoreData, type PutRecycleBinMediaByIdRestoreError, type PutRecycleBinMediaByIdRestoreErrors, type PutRecycleBinMediaByIdRestoreResponses, type PutScriptByPathData, type PutScriptByPathError, type PutScriptByPathErrors, type PutScriptByPathRenameData, type PutScriptByPathRenameError, type PutScriptByPathRenameErrors, type PutScriptByPathRenameResponses, type PutScriptByPathResponses, type PutStylesheetByPathData, type PutStylesheetByPathError, type PutStylesheetByPathErrors, type PutStylesheetByPathRenameData, type PutStylesheetByPathRenameError, type PutStylesheetByPathRenameErrors, type PutStylesheetByPathRenameResponses, type PutStylesheetByPathResponses, type PutTemplateByIdData, type PutTemplateByIdError, type PutTemplateByIdErrors, type PutTemplateByIdResponses, type PutUmbracoManagementApiV11DocumentByIdValidate11Data, type PutUmbracoManagementApiV11DocumentByIdValidate11Error, type PutUmbracoManagementApiV11DocumentByIdValidate11Errors, type PutUmbracoManagementApiV11DocumentByIdValidate11Responses, type PutUserByIdData, type PutUserByIdError, type PutUserByIdErrors, type PutUserByIdResponses, type PutUserCurrentProfileData, type PutUserCurrentProfileError, type PutUserCurrentProfileErrors, type PutUserCurrentProfileResponses, type PutUserDataData, type PutUserDataError, type PutUserDataErrors, type PutUserDataResponses, type PutUserGroupByIdData, type PutUserGroupByIdError, type PutUserGroupByIdErrors, type PutUserGroupByIdResponses, type PutWebhookByIdData, type PutWebhookByIdError, type PutWebhookByIdErrors, type PutWebhookByIdResponses, type RebuildStatusModel, RedirectStatusModel, type RedirectUrlResponseModel, type RedirectUrlStatusResponseModel, type ReferenceByIdModel, type RelationReferenceModel, type RelationResponseModel, type RelationTypeItemResponseModel, type RelationTypeResponseModel, type RenamePartialViewRequestModel, type RenameScriptRequestModel, type RenameStylesheetRequestModel, type ResendInviteUserRequestModel, type ResetPasswordRequestModel, type ResetPasswordTokenRequestModel, type ResetPasswordUserResponseModel, RuntimeLevelModel, RuntimeModeModel, type SavedLogSearchRequestModel, type SavedLogSearchResponseModel, type ScheduleRequestModel, type ScriptFolderResponseModel, type ScriptItemResponseModel, type ScriptResponseModel, type SearcherResponseModel, type SearchResultResponseModel, type SecurityConfigurationResponseModel, type SegmentResponseModel, type ServerConfigurationItemResponseModel, type ServerConfigurationResponseModel, type ServerInformationResponseModel, type ServerStatusResponseModel, type ServerTroubleshootingResponseModel, type SetAvatarRequestModel, type SignalRClientSettingsResponseModel, type SortDocumentChildrenByFieldRequestModel, type SortingRequestModel, type SortMediaChildrenByFieldRequestModel, type StaticFileItemResponseModel, StatusResultTypeModel, type StylesheetFolderResponseModel, type StylesheetItemResponseModel, type StylesheetResponseModel, type SubsetDataTypeTreeItemResponseModel, type SubsetDocumentBlueprintTreeItemResponseModel, type SubsetDocumentRecycleBinItemResponseModel, type SubsetDocumentTreeItemResponseModel, type SubsetDocumentTypeTreeItemResponseModel, type SubsetElementRecycleBinItemResponseModel, type SubsetElementTreeItemResponseModel, type SubsetFileSystemTreeItemPresentationModel, type SubsetMediaRecycleBinItemResponseModel, type SubsetMediaTreeItemResponseModel, type SubsetMediaTypeTreeItemResponseModel, type SubsetMemberTypeTreeItemResponseModel, type SubsetNamedEntityTreeItemResponseModel, type TagResponseModel, TelemetryLevelModel, type TelemetryRequestModel, type TelemetryResponseModel, type TemplateConfigurationResponseModel, type TemplateItemResponseModel, type TemplateQueryExecuteFilterPresentationModel, type TemplateQueryExecuteModel, type TemplateQueryExecuteSortModel, type TemplateQueryOperatorModel, type TemplateQueryPropertyPresentationModel, TemplateQueryPropertyTypeModel, type TemplateQueryResultItemPresentationModel, type TemplateQueryResultResponseModel, type TemplateQuerySettingsResponseModel, type TemplateResponseModel, type TemporaryFileConfigurationResponseModel, type TemporaryFileResponseModel, type TrackedReferenceDocumentTypeModel, type TrackedReferenceMediaTypeModel, type TrackedReferenceMemberTypeModel, type TreeItemKindModel, type UnlockUsersRequestModel, type UnpublishDocumentRequestModel, type UnpublishElementRequestModel, type UpdateAndPublishDocumentRequestModel, type UpdateCurrentUserRequestModel, type UpdateDataTypeRequestModel, type UpdateDictionaryItemRequestModel, type UpdateDocumentBlueprintRequestModel, type UpdateDocumentNotificationsRequestModel, type UpdateDocumentRequestModel, type UpdateDocumentTypePropertyTypeContainerRequestModel, type UpdateDocumentTypePropertyTypeRequestModel, type UpdateDocumentTypeRequestModel, type UpdateDomainsRequestModel, type UpdateElementRequestModel, type UpdateFolderResponseModel, type UpdateLanguageRequestModel, type UpdateMediaRequestModel, type UpdateMediaTypePropertyTypeContainerRequestModel, type UpdateMediaTypePropertyTypeRequestModel, type UpdateMediaTypeRequestModel, type UpdateMemberGroupRequestModel, type UpdateMemberRequestModel, type UpdateMemberTypePropertyTypeContainerRequestModel, type UpdateMemberTypePropertyTypeRequestModel, type UpdateMemberTypeRequestModel, type UpdatePackageRequestModel, type UpdatePartialViewRequestModel, type UpdateScriptRequestModel, type UpdateStylesheetRequestModel, type UpdateTemplateRequestModel, type UpdateUserDataRequestModel, type UpdateUserGroupRequestModel, type UpdateUserGroupsOnUserRequestModel, type UpdateUserRequestModel, type UpdateWebhookRequestModel, type UpgradeCheckResponseModel, type UpgradeSettingsResponseModel, type UserConfigurationResponseModel, type UserDataModel, UserDataOperationStatusModel, type UserDataResponseModel, type UserExternalLoginProviderModel, type UserGroupItemResponseModel, type UserGroupResponseModel, type UserInstallRequestModel, type UserItemResponseModel, UserKindModel, UserOrderModel, type UserPermissionModel, type UserPermissionsResponseModel, type UserResponseModel, type UserSettingsPresentationModel, UserStateModel, type UserTwoFactorProviderModel, type ValidateUpdateDocumentRequestModel, type ValidateUpdateElementRequestModel, type VariantItemResponseModel, type VerifyInviteUserRequestModel, type VerifyInviteUserResponseModel, type VerifyResetPasswordResponseModel, type VerifyResetPasswordTokenRequestModel, type WebhookEventModel, type WebhookEventResponseModel, type WebhookItemResponseModel, type WebhookLogResponseModel, type WebhookResponseModel } from './types.gen'; +export { type AllowedDocumentTypeModel, type AllowedMediaTypeItemResponseModel, type AllowedMediaTypeModel, type AllowedMemberTypeModel, type AuditLogResponseModel, AuditTypeModel, type AvailableDocumentTypeCompositionResponseModel, type AvailableMediaTypeCompositionResponseModel, type AvailableMemberTypeCompositionResponseModel, type BatchResponseModelDataTypeResponseModel, type BatchResponseModelDocumentTypeResponseModel, type BatchResponseModelMediaTypeResponseModel, type BatchResponseModelMemberTypeResponseModel, type BatchResponseModelUserResponseModel, type CalculatedUserStartNodesResponseModel, type ChangePasswordCurrentUserRequestModel, type ChangePasswordUserRequestModel, type ClientOptions, CompositionTypeModel, type ConsentLevelPresentationModel, ContentSortFieldModel, type CopyDataTypeRequestModel, type CopyDocumentRequestModel, type CopyDocumentTypeRequestModel, type CopyElementRequestModel, type CopyMediaTypeRequestModel, type CopyMemberTypeRequestModel, type CreateAndPublishDocumentRequestModel, type CreateAndPublishElementRequestModel, type CreateDataTypeRequestModel, type CreateDictionaryItemRequestModel, type CreateDocumentBlueprintFromDocumentRequestModel, type CreateDocumentBlueprintRequestModel, type CreateDocumentRequestModel, type CreateDocumentTypePropertyTypeContainerRequestModel, type CreateDocumentTypePropertyTypeRequestModel, type CreateDocumentTypeRequestModel, type CreateDocumentTypeTemplateRequestModel, type CreateElementRequestModel, type CreateFolderRequestModel, type CreateInitialPasswordUserRequestModel, type CreateLanguageRequestModel, type CreateMediaRequestModel, type CreateMediaTypePropertyTypeContainerRequestModel, type CreateMediaTypePropertyTypeRequestModel, type CreateMediaTypeRequestModel, type CreateMemberGroupRequestModel, type CreateMemberRequestModel, type CreateMemberTypePropertyTypeContainerRequestModel, type CreateMemberTypePropertyTypeRequestModel, type CreateMemberTypeRequestModel, type CreatePackageRequestModel, type CreatePartialViewFolderRequestModel, type CreatePartialViewRequestModel, type CreateScriptFolderRequestModel, type CreateScriptRequestModel, type CreateStylesheetFolderRequestModel, type CreateStylesheetRequestModel, type CreateTemplateRequestModel, type CreateUserClientCredentialsRequestModel, type CreateUserDataRequestModel, type CreateUserGroupRequestModel, type CreateUserRequestModel, type CreateWebhookRequestModel, type CultureAndScheduleRequestModel, type CultureReponseModel, type CurrentUserConfigurationResponseModel, type CurrentUserResponseModel, type DatabaseInstallRequestModel, type DatabaseSettingsPresentationModel, DataTypeChangeModeModel, type DatatypeConfigurationResponseModel, type DataTypeItemResponseModel, type DataTypePropertyPresentationModel, type DataTypeResponseModel, type DataTypeSchemaItemResponseModel, type DataTypeSchemaResponseModel, type DataTypeTreeItemResponseModel, type DeleteDataTypeByIdData, type DeleteDataTypeByIdError, type DeleteDataTypeByIdErrors, type DeleteDataTypeByIdResponses, type DeleteDataTypeFolderByIdData, type DeleteDataTypeFolderByIdError, type DeleteDataTypeFolderByIdErrors, type DeleteDataTypeFolderByIdResponses, type DeleteDictionaryByIdData, type DeleteDictionaryByIdError, type DeleteDictionaryByIdErrors, type DeleteDictionaryByIdResponses, type DeleteDocumentBlueprintByIdData, type DeleteDocumentBlueprintByIdError, type DeleteDocumentBlueprintByIdErrors, type DeleteDocumentBlueprintByIdResponses, type DeleteDocumentBlueprintFolderByIdData, type DeleteDocumentBlueprintFolderByIdError, type DeleteDocumentBlueprintFolderByIdErrors, type DeleteDocumentBlueprintFolderByIdResponses, type DeleteDocumentByIdData, type DeleteDocumentByIdError, type DeleteDocumentByIdErrors, type DeleteDocumentByIdPublicAccessData, type DeleteDocumentByIdPublicAccessError, type DeleteDocumentByIdPublicAccessErrors, type DeleteDocumentByIdPublicAccessResponses, type DeleteDocumentByIdResponses, type DeleteDocumentTypeByIdData, type DeleteDocumentTypeByIdError, type DeleteDocumentTypeByIdErrors, type DeleteDocumentTypeByIdResponses, type DeleteDocumentTypeFolderByIdData, type DeleteDocumentTypeFolderByIdError, type DeleteDocumentTypeFolderByIdErrors, type DeleteDocumentTypeFolderByIdResponses, type DeleteElementByIdData, type DeleteElementByIdError, type DeleteElementByIdErrors, type DeleteElementByIdResponses, type DeleteElementFolderByIdData, type DeleteElementFolderByIdError, type DeleteElementFolderByIdErrors, type DeleteElementFolderByIdResponses, type DeleteLanguageByIsoCodeData, type DeleteLanguageByIsoCodeError, type DeleteLanguageByIsoCodeErrors, type DeleteLanguageByIsoCodeResponses, type DeleteLogViewerSavedSearchByNameData, type DeleteLogViewerSavedSearchByNameError, type DeleteLogViewerSavedSearchByNameErrors, type DeleteLogViewerSavedSearchByNameResponses, type DeleteMediaByIdData, type DeleteMediaByIdError, type DeleteMediaByIdErrors, type DeleteMediaByIdResponses, type DeleteMediaTypeByIdData, type DeleteMediaTypeByIdError, type DeleteMediaTypeByIdErrors, type DeleteMediaTypeByIdResponses, type DeleteMediaTypeFolderByIdData, type DeleteMediaTypeFolderByIdError, type DeleteMediaTypeFolderByIdErrors, type DeleteMediaTypeFolderByIdResponses, type DeleteMemberByIdData, type DeleteMemberByIdError, type DeleteMemberByIdErrors, type DeleteMemberByIdResponses, type DeleteMemberGroupByIdData, type DeleteMemberGroupByIdError, type DeleteMemberGroupByIdErrors, type DeleteMemberGroupByIdResponses, type DeleteMemberTypeByIdData, type DeleteMemberTypeByIdError, type DeleteMemberTypeByIdErrors, type DeleteMemberTypeByIdResponses, type DeleteMemberTypeFolderByIdData, type DeleteMemberTypeFolderByIdError, type DeleteMemberTypeFolderByIdErrors, type DeleteMemberTypeFolderByIdResponses, type DeletePackageCreatedByIdData, type DeletePackageCreatedByIdError, type DeletePackageCreatedByIdErrors, type DeletePackageCreatedByIdResponses, type DeletePartialViewByPathData, type DeletePartialViewByPathError, type DeletePartialViewByPathErrors, type DeletePartialViewByPathResponses, type DeletePartialViewFolderByPathData, type DeletePartialViewFolderByPathError, type DeletePartialViewFolderByPathErrors, type DeletePartialViewFolderByPathResponses, type DeletePreviewData, type DeletePreviewResponses, type DeleteRecycleBinDocumentByIdData, type DeleteRecycleBinDocumentByIdError, type DeleteRecycleBinDocumentByIdErrors, type DeleteRecycleBinDocumentByIdResponses, type DeleteRecycleBinDocumentData, type DeleteRecycleBinDocumentError, type DeleteRecycleBinDocumentErrors, type DeleteRecycleBinDocumentResponses, type DeleteRecycleBinElementByIdData, type DeleteRecycleBinElementByIdError, type DeleteRecycleBinElementByIdErrors, type DeleteRecycleBinElementByIdResponses, type DeleteRecycleBinElementData, type DeleteRecycleBinElementError, type DeleteRecycleBinElementErrors, type DeleteRecycleBinElementFolderByIdData, type DeleteRecycleBinElementFolderByIdError, type DeleteRecycleBinElementFolderByIdErrors, type DeleteRecycleBinElementFolderByIdResponses, type DeleteRecycleBinElementResponses, type DeleteRecycleBinMediaByIdData, type DeleteRecycleBinMediaByIdError, type DeleteRecycleBinMediaByIdErrors, type DeleteRecycleBinMediaByIdResponses, type DeleteRecycleBinMediaData, type DeleteRecycleBinMediaError, type DeleteRecycleBinMediaErrors, type DeleteRecycleBinMediaResponses, type DeleteRedirectManagementByIdData, type DeleteRedirectManagementByIdError, type DeleteRedirectManagementByIdErrors, type DeleteRedirectManagementByIdResponses, type DeleteScriptByPathData, type DeleteScriptByPathError, type DeleteScriptByPathErrors, type DeleteScriptByPathResponses, type DeleteScriptFolderByPathData, type DeleteScriptFolderByPathError, type DeleteScriptFolderByPathErrors, type DeleteScriptFolderByPathResponses, type DeleteStylesheetByPathData, type DeleteStylesheetByPathError, type DeleteStylesheetByPathErrors, type DeleteStylesheetByPathResponses, type DeleteStylesheetFolderByPathData, type DeleteStylesheetFolderByPathError, type DeleteStylesheetFolderByPathErrors, type DeleteStylesheetFolderByPathResponses, type DeleteTemplateByIdData, type DeleteTemplateByIdError, type DeleteTemplateByIdErrors, type DeleteTemplateByIdResponses, type DeleteTemporaryFileByIdData, type DeleteTemporaryFileByIdError, type DeleteTemporaryFileByIdErrors, type DeleteTemporaryFileByIdResponses, type DeleteUserAvatarByIdData, type DeleteUserAvatarByIdError, type DeleteUserAvatarByIdErrors, type DeleteUserAvatarByIdResponses, type DeleteUserById2FaByProviderNameData, type DeleteUserById2FaByProviderNameError, type DeleteUserById2FaByProviderNameErrors, type DeleteUserById2FaByProviderNameResponses, type DeleteUserByIdClientCredentialsByClientIdData, type DeleteUserByIdClientCredentialsByClientIdError, type DeleteUserByIdClientCredentialsByClientIdErrors, type DeleteUserByIdClientCredentialsByClientIdResponses, type DeleteUserByIdData, type DeleteUserByIdError, type DeleteUserByIdErrors, type DeleteUserByIdResponses, type DeleteUserCurrent2FaByProviderNameData, type DeleteUserCurrent2FaByProviderNameError, type DeleteUserCurrent2FaByProviderNameErrors, type DeleteUserCurrent2FaByProviderNameResponses, type DeleteUserCurrentAvatarData, type DeleteUserCurrentAvatarError, type DeleteUserCurrentAvatarErrors, type DeleteUserCurrentAvatarResponses, type DeleteUserData, type DeleteUserDataByIdData, type DeleteUserDataByIdError, type DeleteUserDataByIdErrors, type DeleteUserDataByIdResponses, type DeleteUserError, type DeleteUserErrors, type DeleteUserGroupByIdData, type DeleteUserGroupByIdError, type DeleteUserGroupByIdErrors, type DeleteUserGroupByIdResponses, type DeleteUserGroupByIdUsersData, type DeleteUserGroupByIdUsersError, type DeleteUserGroupByIdUsersErrors, type DeleteUserGroupByIdUsersResponses, type DeleteUserGroupData, type DeleteUserGroupError, type DeleteUserGroupErrors, type DeleteUserGroupResponses, type DeleteUserGroupsRequestModel, type DeleteUserResponses, type DeleteUsersRequestModel, type DeleteWebhookByIdData, type DeleteWebhookByIdError, type DeleteWebhookByIdErrors, type DeleteWebhookByIdResponses, type DictionaryItemItemResponseModel, type DictionaryItemResponseModel, type DictionaryItemTranslationModel, type DictionaryOverviewResponseModel, DirectionModel, type DisableUserRequestModel, type DocumentBlueprintItemResponseModel, type DocumentBlueprintResponseModel, type DocumentBlueprintTreeItemResponseModel, type DocumentCollectionResponseModel, type DocumentConfigurationResponseModel, type DocumentItemResponseModel, type DocumentNotificationResponseModel, type DocumentRecycleBinItemResponseModel, type DocumentResponseModel, type DocumentTreeItemResponseModel, type DocumentTypeAllowedParentsResponseModel, type DocumentTypeBlueprintItemResponseModel, type DocumentTypeCleanupModel, type DocumentTypeCollectionReferenceResponseModel, type DocumentTypeCompositionModel, type DocumentTypeCompositionRequestModel, type DocumentTypeCompositionResponseModel, type DocumentTypeConfigurationResponseModel, type DocumentTypeItemResponseModel, type DocumentTypePropertyTypeContainerResponseModel, type DocumentTypePropertyTypeResponseModel, type DocumentTypeReferenceResponseModel, type DocumentTypeResponseModel, type DocumentTypeSortModel, type DocumentTypeTreeItemResponseModel, type DocumentUrlInfoModel, type DocumentUrlInfoResponseModel, type DocumentValueModel, type DocumentValueResponseModel, type DocumentVariantItemResponseModel, type DocumentVariantRequestModel, type DocumentVariantResponseModel, type DocumentVersionItemResponseModel, type DocumentVersionResponseModel, type DomainPresentationModel, type DomainsResponseModel, type DynamicRootContextRequestModel, type DynamicRootQueryOriginRequestModel, type DynamicRootQueryRequestModel, type DynamicRootQueryStepRequestModel, type DynamicRootRequestModel, type DynamicRootResponseModel, type ElementConfigurationResponseModel, type ElementItemResponseModel, type ElementRecycleBinItemResponseModel, type ElementResponseModel, type ElementTreeItemResponseModel, type ElementValueModel, type ElementValueResponseModel, type ElementVariantItemResponseModel, type ElementVariantRequestModel, type ElementVariantResponseModel, type ElementVersionItemResponseModel, type ElementVersionResponseModel, type EnableTwoFactorRequestModel, type EnableUserRequestModel, type EntityImportAnalysisResponseModel, EventMessageTypeModel, type FetchResponseModelDataTypeSchemaItemResponseModel, type FieldPresentationModel, type FileSystemFolderModel, type FileSystemTreeItemPresentationModel, type FlagModel, type FolderItemResponseModel, type FolderResponseModel, type GetCollectionDocumentByIdData, type GetCollectionDocumentByIdError, type GetCollectionDocumentByIdErrors, type GetCollectionDocumentByIdResponse, type GetCollectionDocumentByIdResponses, type GetCollectionMediaData, type GetCollectionMediaError, type GetCollectionMediaErrors, type GetCollectionMediaResponse, type GetCollectionMediaResponses, type GetCultureData, type GetCultureErrors, type GetCultureResponse, type GetCultureResponses, type GetDataTypeBatchData, type GetDataTypeBatchErrors, type GetDataTypeBatchResponse, type GetDataTypeBatchResponses, type GetDataTypeByIdData, type GetDataTypeByIdError, type GetDataTypeByIdErrors, type GetDataTypeByIdIsUsedData, type GetDataTypeByIdIsUsedError, type GetDataTypeByIdIsUsedErrors, type GetDataTypeByIdIsUsedResponse, type GetDataTypeByIdIsUsedResponses, type GetDataTypeByIdReferencedByData, type GetDataTypeByIdReferencedByErrors, type GetDataTypeByIdReferencedByResponse, type GetDataTypeByIdReferencedByResponses, type GetDataTypeByIdResponse, type GetDataTypeByIdResponses, type GetDataTypeByIdSchemaData, type GetDataTypeByIdSchemaError, type GetDataTypeByIdSchemaErrors, type GetDataTypeByIdSchemaResponse, type GetDataTypeByIdSchemaResponses, type GetDataTypeConfigurationData, type GetDataTypeConfigurationErrors, type GetDataTypeConfigurationResponse, type GetDataTypeConfigurationResponses, type GetDataTypeFolderByIdData, type GetDataTypeFolderByIdError, type GetDataTypeFolderByIdErrors, type GetDataTypeFolderByIdResponse, type GetDataTypeFolderByIdResponses, type GetDataTypeSchemasBatchData, type GetDataTypeSchemasBatchErrors, type GetDataTypeSchemasBatchResponse, type GetDataTypeSchemasBatchResponses, type GetDictionaryByIdData, type GetDictionaryByIdError, type GetDictionaryByIdErrors, type GetDictionaryByIdExportData, type GetDictionaryByIdExportError, type GetDictionaryByIdExportErrors, type GetDictionaryByIdExportResponse, type GetDictionaryByIdExportResponses, type GetDictionaryByIdResponse, type GetDictionaryByIdResponses, type GetDictionaryData, type GetDictionaryErrors, type GetDictionaryResponse, type GetDictionaryResponses, type GetDocumentAreReferencedData, type GetDocumentAreReferencedErrors, type GetDocumentAreReferencedResponse, type GetDocumentAreReferencedResponses, type GetDocumentBlueprintByIdAuditLogData, type GetDocumentBlueprintByIdAuditLogErrors, type GetDocumentBlueprintByIdAuditLogResponse, type GetDocumentBlueprintByIdAuditLogResponses, type GetDocumentBlueprintByIdData, type GetDocumentBlueprintByIdError, type GetDocumentBlueprintByIdErrors, type GetDocumentBlueprintByIdResponse, type GetDocumentBlueprintByIdResponses, type GetDocumentBlueprintByIdScaffoldData, type GetDocumentBlueprintByIdScaffoldError, type GetDocumentBlueprintByIdScaffoldErrors, type GetDocumentBlueprintByIdScaffoldResponse, type GetDocumentBlueprintByIdScaffoldResponses, type GetDocumentBlueprintFolderByIdData, type GetDocumentBlueprintFolderByIdError, type GetDocumentBlueprintFolderByIdErrors, type GetDocumentBlueprintFolderByIdResponse, type GetDocumentBlueprintFolderByIdResponses, type GetDocumentByIdAuditLogData, type GetDocumentByIdAuditLogErrors, type GetDocumentByIdAuditLogResponse, type GetDocumentByIdAuditLogResponses, type GetDocumentByIdAvailableSegmentOptionsData, type GetDocumentByIdAvailableSegmentOptionsError, type GetDocumentByIdAvailableSegmentOptionsErrors, type GetDocumentByIdAvailableSegmentOptionsResponse, type GetDocumentByIdAvailableSegmentOptionsResponses, type GetDocumentByIdData, type GetDocumentByIdDomainsData, type GetDocumentByIdDomainsError, type GetDocumentByIdDomainsErrors, type GetDocumentByIdDomainsResponse, type GetDocumentByIdDomainsResponses, type GetDocumentByIdError, type GetDocumentByIdErrors, type GetDocumentByIdNotificationsData, type GetDocumentByIdNotificationsError, type GetDocumentByIdNotificationsErrors, type GetDocumentByIdNotificationsResponse, type GetDocumentByIdNotificationsResponses, type GetDocumentByIdPreviewUrlData, type GetDocumentByIdPreviewUrlError, type GetDocumentByIdPreviewUrlErrors, type GetDocumentByIdPreviewUrlResponse, type GetDocumentByIdPreviewUrlResponses, type GetDocumentByIdPublicAccessData, type GetDocumentByIdPublicAccessError, type GetDocumentByIdPublicAccessErrors, type GetDocumentByIdPublicAccessResponse, type GetDocumentByIdPublicAccessResponses, type GetDocumentByIdPublishedData, type GetDocumentByIdPublishedError, type GetDocumentByIdPublishedErrors, type GetDocumentByIdPublishedResponse, type GetDocumentByIdPublishedResponses, type GetDocumentByIdPublishWithDescendantsResultByTaskIdData, type GetDocumentByIdPublishWithDescendantsResultByTaskIdError, type GetDocumentByIdPublishWithDescendantsResultByTaskIdErrors, type GetDocumentByIdPublishWithDescendantsResultByTaskIdResponse, type GetDocumentByIdPublishWithDescendantsResultByTaskIdResponses, type GetDocumentByIdReferencedByData, type GetDocumentByIdReferencedByError, type GetDocumentByIdReferencedByErrors, type GetDocumentByIdReferencedByResponse, type GetDocumentByIdReferencedByResponses, type GetDocumentByIdReferencedDescendantsData, type GetDocumentByIdReferencedDescendantsError, type GetDocumentByIdReferencedDescendantsErrors, type GetDocumentByIdReferencedDescendantsResponse, type GetDocumentByIdReferencedDescendantsResponses, type GetDocumentByIdResponse, type GetDocumentByIdResponses, type GetDocumentConfigurationData, type GetDocumentConfigurationErrors, type GetDocumentConfigurationResponse, type GetDocumentConfigurationResponses, type GetDocumentTypeAllowedAtRootData, type GetDocumentTypeAllowedAtRootErrors, type GetDocumentTypeAllowedAtRootResponse, type GetDocumentTypeAllowedAtRootResponses, type GetDocumentTypeAllowedInLibraryData, type GetDocumentTypeAllowedInLibraryErrors, type GetDocumentTypeAllowedInLibraryResponse, type GetDocumentTypeAllowedInLibraryResponses, type GetDocumentTypeBatchData, type GetDocumentTypeBatchErrors, type GetDocumentTypeBatchResponse, type GetDocumentTypeBatchResponses, type GetDocumentTypeByIdAllowedChildrenData, type GetDocumentTypeByIdAllowedChildrenError, type GetDocumentTypeByIdAllowedChildrenErrors, type GetDocumentTypeByIdAllowedChildrenResponse, type GetDocumentTypeByIdAllowedChildrenResponses, type GetDocumentTypeByIdAllowedParentsData, type GetDocumentTypeByIdAllowedParentsError, type GetDocumentTypeByIdAllowedParentsErrors, type GetDocumentTypeByIdAllowedParentsResponse, type GetDocumentTypeByIdAllowedParentsResponses, type GetDocumentTypeByIdBlueprintData, type GetDocumentTypeByIdBlueprintError, type GetDocumentTypeByIdBlueprintErrors, type GetDocumentTypeByIdBlueprintResponse, type GetDocumentTypeByIdBlueprintResponses, type GetDocumentTypeByIdCompositionReferencesData, type GetDocumentTypeByIdCompositionReferencesError, type GetDocumentTypeByIdCompositionReferencesErrors, type GetDocumentTypeByIdCompositionReferencesResponse, type GetDocumentTypeByIdCompositionReferencesResponses, type GetDocumentTypeByIdData, type GetDocumentTypeByIdError, type GetDocumentTypeByIdErrors, type GetDocumentTypeByIdExportData, type GetDocumentTypeByIdExportError, type GetDocumentTypeByIdExportErrors, type GetDocumentTypeByIdExportResponse, type GetDocumentTypeByIdExportResponses, type GetDocumentTypeByIdResponse, type GetDocumentTypeByIdResponses, type GetDocumentTypeByIdSchemaData, type GetDocumentTypeByIdSchemaError, type GetDocumentTypeByIdSchemaErrors, type GetDocumentTypeByIdSchemaResponse, type GetDocumentTypeByIdSchemaResponses, type GetDocumentTypeConfigurationData, type GetDocumentTypeConfigurationErrors, type GetDocumentTypeConfigurationResponse, type GetDocumentTypeConfigurationResponses, type GetDocumentTypeFolderByIdData, type GetDocumentTypeFolderByIdError, type GetDocumentTypeFolderByIdErrors, type GetDocumentTypeFolderByIdResponse, type GetDocumentTypeFolderByIdResponses, type GetDocumentUrlsData, type GetDocumentUrlsErrors, type GetDocumentUrlsResponse, type GetDocumentUrlsResponses, type GetDocumentVersionByIdData, type GetDocumentVersionByIdError, type GetDocumentVersionByIdErrors, type GetDocumentVersionByIdResponse, type GetDocumentVersionByIdResponses, type GetDocumentVersionData, type GetDocumentVersionError, type GetDocumentVersionErrors, type GetDocumentVersionResponse, type GetDocumentVersionResponses, type GetDynamicRootStepsData, type GetDynamicRootStepsErrors, type GetDynamicRootStepsResponse, type GetDynamicRootStepsResponses, type GetElementAreReferencedData, type GetElementAreReferencedErrors, type GetElementAreReferencedResponse, type GetElementAreReferencedResponses, type GetElementByIdAuditLogData, type GetElementByIdAuditLogErrors, type GetElementByIdAuditLogResponse, type GetElementByIdAuditLogResponses, type GetElementByIdData, type GetElementByIdError, type GetElementByIdErrors, type GetElementByIdPublishedData, type GetElementByIdPublishedError, type GetElementByIdPublishedErrors, type GetElementByIdPublishedResponse, type GetElementByIdPublishedResponses, type GetElementByIdReferencedByData, type GetElementByIdReferencedByError, type GetElementByIdReferencedByErrors, type GetElementByIdReferencedByResponse, type GetElementByIdReferencedByResponses, type GetElementByIdResponse, type GetElementByIdResponses, type GetElementConfigurationData, type GetElementConfigurationErrors, type GetElementConfigurationResponse, type GetElementConfigurationResponses, type GetElementFolderByIdData, type GetElementFolderByIdError, type GetElementFolderByIdErrors, type GetElementFolderByIdReferencedDescendantsData, type GetElementFolderByIdReferencedDescendantsError, type GetElementFolderByIdReferencedDescendantsErrors, type GetElementFolderByIdReferencedDescendantsResponse, type GetElementFolderByIdReferencedDescendantsResponses, type GetElementFolderByIdResponse, type GetElementFolderByIdResponses, type GetElementVersionByIdData, type GetElementVersionByIdError, type GetElementVersionByIdErrors, type GetElementVersionByIdResponse, type GetElementVersionByIdResponses, type GetElementVersionData, type GetElementVersionError, type GetElementVersionErrors, type GetElementVersionResponse, type GetElementVersionResponses, type GetFilterDataTypeData, type GetFilterDataTypeErrors, type GetFilterDataTypeResponse, type GetFilterDataTypeResponses, type GetFilterMemberData, type GetFilterMemberError, type GetFilterMemberErrors, type GetFilterMemberResponse, type GetFilterMemberResponses, type GetFilterUserData, type GetFilterUserError, type GetFilterUserErrors, type GetFilterUserGroupData, type GetFilterUserGroupError, type GetFilterUserGroupErrors, type GetFilterUserGroupResponse, type GetFilterUserGroupResponses, type GetFilterUserResponse, type GetFilterUserResponses, type GetHealthCheckGroupByNameData, type GetHealthCheckGroupByNameError, type GetHealthCheckGroupByNameErrors, type GetHealthCheckGroupByNameResponse, type GetHealthCheckGroupByNameResponses, type GetHealthCheckGroupData, type GetHealthCheckGroupErrors, type GetHealthCheckGroupResponse, type GetHealthCheckGroupResponses, type GetHelpData, type GetHelpError, type GetHelpErrors, type GetHelpResponse, type GetHelpResponses, type GetImagingResizeUrlsData, type GetImagingResizeUrlsErrors, type GetImagingResizeUrlsResponse, type GetImagingResizeUrlsResponses, type GetImportAnalyzeData, type GetImportAnalyzeError, type GetImportAnalyzeErrors, type GetImportAnalyzeResponse, type GetImportAnalyzeResponses, type GetIndexerByIndexNameData, type GetIndexerByIndexNameError, type GetIndexerByIndexNameErrors, type GetIndexerByIndexNameResponse, type GetIndexerByIndexNameResponses, type GetIndexerData, type GetIndexerErrors, type GetIndexerResponse, type GetIndexerResponses, type GetInstallSettingsData, type GetInstallSettingsError, type GetInstallSettingsErrors, type GetInstallSettingsResponse, type GetInstallSettingsResponses, type GetItemDataTypeAncestorsData, type GetItemDataTypeAncestorsErrors, type GetItemDataTypeAncestorsResponse, type GetItemDataTypeAncestorsResponses, type GetItemDataTypeData, type GetItemDataTypeErrors, type GetItemDataTypeResponse, type GetItemDataTypeResponses, type GetItemDataTypeSearchData, type GetItemDataTypeSearchErrors, type GetItemDataTypeSearchResponse, type GetItemDataTypeSearchResponses, type GetItemDictionaryData, type GetItemDictionaryErrors, type GetItemDictionaryResponse, type GetItemDictionaryResponses, type GetItemDocumentAncestorsData, type GetItemDocumentAncestorsErrors, type GetItemDocumentAncestorsResponse, type GetItemDocumentAncestorsResponses, type GetItemDocumentBlueprintData, type GetItemDocumentBlueprintErrors, type GetItemDocumentBlueprintResponse, type GetItemDocumentBlueprintResponses, type GetItemDocumentData, type GetItemDocumentErrors, type GetItemDocumentResponse, type GetItemDocumentResponses, type GetItemDocumentSearchData, type GetItemDocumentSearchErrors, type GetItemDocumentSearchResponse, type GetItemDocumentSearchResponses, type GetItemDocumentTypeAncestorsData, type GetItemDocumentTypeAncestorsErrors, type GetItemDocumentTypeAncestorsResponse, type GetItemDocumentTypeAncestorsResponses, type GetItemDocumentTypeData, type GetItemDocumentTypeErrors, type GetItemDocumentTypeResponse, type GetItemDocumentTypeResponses, type GetItemDocumentTypeSearchData, type GetItemDocumentTypeSearchErrors, type GetItemDocumentTypeSearchResponse, type GetItemDocumentTypeSearchResponses, type GetItemElementAncestorsData, type GetItemElementAncestorsErrors, type GetItemElementAncestorsResponse, type GetItemElementAncestorsResponses, type GetItemElementData, type GetItemElementErrors, type GetItemElementFolderData, type GetItemElementFolderErrors, type GetItemElementFolderResponse, type GetItemElementFolderResponses, type GetItemElementResponse, type GetItemElementResponses, type GetItemElementSearchData, type GetItemElementSearchErrors, type GetItemElementSearchResponse, type GetItemElementSearchResponses, type GetItemLanguageData, type GetItemLanguageDefaultData, type GetItemLanguageDefaultErrors, type GetItemLanguageDefaultResponse, type GetItemLanguageDefaultResponses, type GetItemLanguageErrors, type GetItemLanguageResponse, type GetItemLanguageResponses, type GetItemMediaAncestorsData, type GetItemMediaAncestorsErrors, type GetItemMediaAncestorsResponse, type GetItemMediaAncestorsResponses, type GetItemMediaData, type GetItemMediaErrors, type GetItemMediaResponse, type GetItemMediaResponses, type GetItemMediaSearchData, type GetItemMediaSearchErrors, type GetItemMediaSearchResponse, type GetItemMediaSearchResponses, type GetItemMediaTypeAllowedData, type GetItemMediaTypeAllowedErrors, type GetItemMediaTypeAllowedResponse, type GetItemMediaTypeAllowedResponses, type GetItemMediaTypeAncestorsData, type GetItemMediaTypeAncestorsErrors, type GetItemMediaTypeAncestorsResponse, type GetItemMediaTypeAncestorsResponses, type GetItemMediaTypeData, type GetItemMediaTypeErrors, type GetItemMediaTypeFoldersData, type GetItemMediaTypeFoldersErrors, type GetItemMediaTypeFoldersResponse, type GetItemMediaTypeFoldersResponses, type GetItemMediaTypeResponse, type GetItemMediaTypeResponses, type GetItemMediaTypeSearchData, type GetItemMediaTypeSearchErrors, type GetItemMediaTypeSearchResponse, type GetItemMediaTypeSearchResponses, type GetItemMemberAncestorsData, type GetItemMemberAncestorsErrors, type GetItemMemberAncestorsResponse, type GetItemMemberAncestorsResponses, type GetItemMemberData, type GetItemMemberErrors, type GetItemMemberGroupData, type GetItemMemberGroupErrors, type GetItemMemberGroupResponse, type GetItemMemberGroupResponses, type GetItemMemberResponse, type GetItemMemberResponses, type GetItemMemberSearchData, type GetItemMemberSearchErrors, type GetItemMemberSearchResponse, type GetItemMemberSearchResponses, type GetItemMemberTypeAncestorsData, type GetItemMemberTypeAncestorsErrors, type GetItemMemberTypeAncestorsResponse, type GetItemMemberTypeAncestorsResponses, type GetItemMemberTypeData, type GetItemMemberTypeErrors, type GetItemMemberTypeResponse, type GetItemMemberTypeResponses, type GetItemMemberTypeSearchData, type GetItemMemberTypeSearchErrors, type GetItemMemberTypeSearchResponse, type GetItemMemberTypeSearchResponses, type GetItemPartialViewData, type GetItemPartialViewErrors, type GetItemPartialViewResponse, type GetItemPartialViewResponses, type GetItemRelationTypeData, type GetItemRelationTypeErrors, type GetItemRelationTypeResponse, type GetItemRelationTypeResponses, type GetItemScriptData, type GetItemScriptErrors, type GetItemScriptResponse, type GetItemScriptResponses, type GetItemStaticFileData, type GetItemStaticFileErrors, type GetItemStaticFileResponse, type GetItemStaticFileResponses, type GetItemStylesheetData, type GetItemStylesheetErrors, type GetItemStylesheetResponse, type GetItemStylesheetResponses, type GetItemTemplateAncestorsData, type GetItemTemplateAncestorsErrors, type GetItemTemplateAncestorsResponse, type GetItemTemplateAncestorsResponses, type GetItemTemplateData, type GetItemTemplateErrors, type GetItemTemplateResponse, type GetItemTemplateResponses, type GetItemTemplateSearchData, type GetItemTemplateSearchErrors, type GetItemTemplateSearchResponse, type GetItemTemplateSearchResponses, type GetItemUserData, type GetItemUserErrors, type GetItemUserGroupData, type GetItemUserGroupErrors, type GetItemUserGroupResponse, type GetItemUserGroupResponses, type GetItemUserResponse, type GetItemUserResponses, type GetItemWebhookData, type GetItemWebhookErrors, type GetItemWebhookResponse, type GetItemWebhookResponses, type GetLanguageByIsoCodeData, type GetLanguageByIsoCodeError, type GetLanguageByIsoCodeErrors, type GetLanguageByIsoCodeResponse, type GetLanguageByIsoCodeResponses, type GetLanguageData, type GetLanguageErrors, type GetLanguageResponse, type GetLanguageResponses, type GetLogViewerLevelCountData, type GetLogViewerLevelCountError, type GetLogViewerLevelCountErrors, type GetLogViewerLevelCountResponse, type GetLogViewerLevelCountResponses, type GetLogViewerLevelData, type GetLogViewerLevelErrors, type GetLogViewerLevelResponse, type GetLogViewerLevelResponses, type GetLogViewerLogData, type GetLogViewerLogErrors, type GetLogViewerLogResponse, type GetLogViewerLogResponses, type GetLogViewerMessageTemplateData, type GetLogViewerMessageTemplateError, type GetLogViewerMessageTemplateErrors, type GetLogViewerMessageTemplateResponse, type GetLogViewerMessageTemplateResponses, type GetLogViewerSavedSearchByNameData, type GetLogViewerSavedSearchByNameError, type GetLogViewerSavedSearchByNameErrors, type GetLogViewerSavedSearchByNameResponse, type GetLogViewerSavedSearchByNameResponses, type GetLogViewerSavedSearchData, type GetLogViewerSavedSearchErrors, type GetLogViewerSavedSearchResponse, type GetLogViewerSavedSearchResponses, type GetLogViewerValidateLogsSizeData, type GetLogViewerValidateLogsSizeError, type GetLogViewerValidateLogsSizeErrors, type GetLogViewerValidateLogsSizeResponses, type GetManifestManifestData, type GetManifestManifestErrors, type GetManifestManifestPrivateData, type GetManifestManifestPrivateErrors, type GetManifestManifestPrivateResponse, type GetManifestManifestPrivateResponses, type GetManifestManifestPublicData, type GetManifestManifestPublicResponse, type GetManifestManifestPublicResponses, type GetManifestManifestResponse, type GetManifestManifestResponses, type GetMediaAreReferencedData, type GetMediaAreReferencedErrors, type GetMediaAreReferencedResponse, type GetMediaAreReferencedResponses, type GetMediaByIdAuditLogData, type GetMediaByIdAuditLogErrors, type GetMediaByIdAuditLogResponse, type GetMediaByIdAuditLogResponses, type GetMediaByIdData, type GetMediaByIdError, type GetMediaByIdErrors, type GetMediaByIdReferencedByData, type GetMediaByIdReferencedByError, type GetMediaByIdReferencedByErrors, type GetMediaByIdReferencedByResponse, type GetMediaByIdReferencedByResponses, type GetMediaByIdReferencedDescendantsData, type GetMediaByIdReferencedDescendantsError, type GetMediaByIdReferencedDescendantsErrors, type GetMediaByIdReferencedDescendantsResponse, type GetMediaByIdReferencedDescendantsResponses, type GetMediaByIdResponse, type GetMediaByIdResponses, type GetMediaConfigurationData, type GetMediaConfigurationErrors, type GetMediaConfigurationResponse, type GetMediaConfigurationResponses, type GetMediaTypeAllowedAtRootData, type GetMediaTypeAllowedAtRootErrors, type GetMediaTypeAllowedAtRootResponse, type GetMediaTypeAllowedAtRootResponses, type GetMediaTypeBatchData, type GetMediaTypeBatchErrors, type GetMediaTypeBatchResponse, type GetMediaTypeBatchResponses, type GetMediaTypeByIdAllowedChildrenData, type GetMediaTypeByIdAllowedChildrenError, type GetMediaTypeByIdAllowedChildrenErrors, type GetMediaTypeByIdAllowedChildrenResponse, type GetMediaTypeByIdAllowedChildrenResponses, type GetMediaTypeByIdAllowedParentsData, type GetMediaTypeByIdAllowedParentsError, type GetMediaTypeByIdAllowedParentsErrors, type GetMediaTypeByIdAllowedParentsResponse, type GetMediaTypeByIdAllowedParentsResponses, type GetMediaTypeByIdCompositionReferencesData, type GetMediaTypeByIdCompositionReferencesError, type GetMediaTypeByIdCompositionReferencesErrors, type GetMediaTypeByIdCompositionReferencesResponse, type GetMediaTypeByIdCompositionReferencesResponses, type GetMediaTypeByIdData, type GetMediaTypeByIdError, type GetMediaTypeByIdErrors, type GetMediaTypeByIdExportData, type GetMediaTypeByIdExportError, type GetMediaTypeByIdExportErrors, type GetMediaTypeByIdExportResponse, type GetMediaTypeByIdExportResponses, type GetMediaTypeByIdResponse, type GetMediaTypeByIdResponses, type GetMediaTypeByIdSchemaData, type GetMediaTypeByIdSchemaError, type GetMediaTypeByIdSchemaErrors, type GetMediaTypeByIdSchemaResponse, type GetMediaTypeByIdSchemaResponses, type GetMediaTypeConfigurationData, type GetMediaTypeConfigurationErrors, type GetMediaTypeConfigurationResponse, type GetMediaTypeConfigurationResponses, type GetMediaTypeFolderByIdData, type GetMediaTypeFolderByIdError, type GetMediaTypeFolderByIdErrors, type GetMediaTypeFolderByIdResponse, type GetMediaTypeFolderByIdResponses, type GetMediaUrlsData, type GetMediaUrlsErrors, type GetMediaUrlsResponse, type GetMediaUrlsResponses, type GetMemberAreReferencedData, type GetMemberAreReferencedErrors, type GetMemberAreReferencedResponse, type GetMemberAreReferencedResponses, type GetMemberByIdData, type GetMemberByIdError, type GetMemberByIdErrors, type GetMemberByIdReferencedByData, type GetMemberByIdReferencedByError, type GetMemberByIdReferencedByErrors, type GetMemberByIdReferencedByResponse, type GetMemberByIdReferencedByResponses, type GetMemberByIdReferencedDescendantsData, type GetMemberByIdReferencedDescendantsError, type GetMemberByIdReferencedDescendantsErrors, type GetMemberByIdReferencedDescendantsResponse, type GetMemberByIdReferencedDescendantsResponses, type GetMemberByIdResponse, type GetMemberByIdResponses, type GetMemberGroupByIdData, type GetMemberGroupByIdErrors, type GetMemberGroupByIdResponse, type GetMemberGroupByIdResponses, type GetMemberGroupData, type GetMemberGroupErrors, type GetMemberGroupResponse, type GetMemberGroupResponses, type GetMemberTypeAllowedAtRootData, type GetMemberTypeAllowedAtRootErrors, type GetMemberTypeAllowedAtRootResponse, type GetMemberTypeAllowedAtRootResponses, type GetMemberTypeBatchData, type GetMemberTypeBatchErrors, type GetMemberTypeBatchResponse, type GetMemberTypeBatchResponses, type GetMemberTypeByIdCompositionReferencesData, type GetMemberTypeByIdCompositionReferencesError, type GetMemberTypeByIdCompositionReferencesErrors, type GetMemberTypeByIdCompositionReferencesResponse, type GetMemberTypeByIdCompositionReferencesResponses, type GetMemberTypeByIdData, type GetMemberTypeByIdError, type GetMemberTypeByIdErrors, type GetMemberTypeByIdExportData, type GetMemberTypeByIdExportError, type GetMemberTypeByIdExportErrors, type GetMemberTypeByIdExportResponse, type GetMemberTypeByIdExportResponses, type GetMemberTypeByIdResponse, type GetMemberTypeByIdResponses, type GetMemberTypeByIdSchemaData, type GetMemberTypeByIdSchemaError, type GetMemberTypeByIdSchemaErrors, type GetMemberTypeByIdSchemaResponse, type GetMemberTypeByIdSchemaResponses, type GetMemberTypeConfigurationData, type GetMemberTypeConfigurationErrors, type GetMemberTypeConfigurationResponse, type GetMemberTypeConfigurationResponses, type GetMemberTypeFolderByIdData, type GetMemberTypeFolderByIdError, type GetMemberTypeFolderByIdErrors, type GetMemberTypeFolderByIdResponse, type GetMemberTypeFolderByIdResponses, type GetModelsBuilderDashboardData, type GetModelsBuilderDashboardErrors, type GetModelsBuilderDashboardResponse, type GetModelsBuilderDashboardResponses, type GetModelsBuilderStatusData, type GetModelsBuilderStatusErrors, type GetModelsBuilderStatusResponse, type GetModelsBuilderStatusResponses, type GetNewsDashboardData, type GetNewsDashboardErrors, type GetNewsDashboardResponse, type GetNewsDashboardResponses, type GetObjectTypesData, type GetObjectTypesErrors, type GetObjectTypesResponse, type GetObjectTypesResponses, type GetOembedQueryData, type GetOembedQueryErrors, type GetOembedQueryResponse, type GetOembedQueryResponses, type GetPackageConfigurationData, type GetPackageConfigurationErrors, type GetPackageConfigurationResponse, type GetPackageConfigurationResponses, type GetPackageCreatedByIdData, type GetPackageCreatedByIdDownloadData, type GetPackageCreatedByIdDownloadError, type GetPackageCreatedByIdDownloadErrors, type GetPackageCreatedByIdDownloadResponse, type GetPackageCreatedByIdDownloadResponses, type GetPackageCreatedByIdError, type GetPackageCreatedByIdErrors, type GetPackageCreatedByIdResponse, type GetPackageCreatedByIdResponses, type GetPackageCreatedData, type GetPackageCreatedErrors, type GetPackageCreatedResponse, type GetPackageCreatedResponses, type GetPackageMigrationStatusData, type GetPackageMigrationStatusErrors, type GetPackageMigrationStatusResponse, type GetPackageMigrationStatusResponses, type GetPartialViewByPathData, type GetPartialViewByPathError, type GetPartialViewByPathErrors, type GetPartialViewByPathResponse, type GetPartialViewByPathResponses, type GetPartialViewFolderByPathData, type GetPartialViewFolderByPathError, type GetPartialViewFolderByPathErrors, type GetPartialViewFolderByPathResponse, type GetPartialViewFolderByPathResponses, type GetPartialViewSnippetByIdData, type GetPartialViewSnippetByIdError, type GetPartialViewSnippetByIdErrors, type GetPartialViewSnippetByIdResponse, type GetPartialViewSnippetByIdResponses, type GetPartialViewSnippetData, type GetPartialViewSnippetErrors, type GetPartialViewSnippetResponse, type GetPartialViewSnippetResponses, type GetProfilingStatusData, type GetProfilingStatusErrors, type GetProfilingStatusResponse, type GetProfilingStatusResponses, type GetPropertyTypeIsUsedData, type GetPropertyTypeIsUsedError, type GetPropertyTypeIsUsedErrors, type GetPropertyTypeIsUsedResponse, type GetPropertyTypeIsUsedResponses, type GetPublishedCacheRebuildStatusData, type GetPublishedCacheRebuildStatusErrors, type GetPublishedCacheRebuildStatusResponse, type GetPublishedCacheRebuildStatusResponses, type GetRecycleBinDocumentByIdOriginalParentData, type GetRecycleBinDocumentByIdOriginalParentError, type GetRecycleBinDocumentByIdOriginalParentErrors, type GetRecycleBinDocumentByIdOriginalParentResponse, type GetRecycleBinDocumentByIdOriginalParentResponses, type GetRecycleBinDocumentChildrenData, type GetRecycleBinDocumentChildrenErrors, type GetRecycleBinDocumentChildrenResponse, type GetRecycleBinDocumentChildrenResponses, type GetRecycleBinDocumentReferencedByData, type GetRecycleBinDocumentReferencedByErrors, type GetRecycleBinDocumentReferencedByResponse, type GetRecycleBinDocumentReferencedByResponses, type GetRecycleBinDocumentRootData, type GetRecycleBinDocumentRootErrors, type GetRecycleBinDocumentRootResponse, type GetRecycleBinDocumentRootResponses, type GetRecycleBinDocumentSiblingsData, type GetRecycleBinDocumentSiblingsErrors, type GetRecycleBinDocumentSiblingsResponse, type GetRecycleBinDocumentSiblingsResponses, type GetRecycleBinElementByIdOriginalParentData, type GetRecycleBinElementByIdOriginalParentError, type GetRecycleBinElementByIdOriginalParentErrors, type GetRecycleBinElementByIdOriginalParentResponse, type GetRecycleBinElementByIdOriginalParentResponses, type GetRecycleBinElementChildrenData, type GetRecycleBinElementChildrenErrors, type GetRecycleBinElementChildrenResponse, type GetRecycleBinElementChildrenResponses, type GetRecycleBinElementFolderByIdOriginalParentData, type GetRecycleBinElementFolderByIdOriginalParentError, type GetRecycleBinElementFolderByIdOriginalParentErrors, type GetRecycleBinElementFolderByIdOriginalParentResponse, type GetRecycleBinElementFolderByIdOriginalParentResponses, type GetRecycleBinElementReferencedByData, type GetRecycleBinElementReferencedByErrors, type GetRecycleBinElementReferencedByResponse, type GetRecycleBinElementReferencedByResponses, type GetRecycleBinElementRootData, type GetRecycleBinElementRootErrors, type GetRecycleBinElementRootResponse, type GetRecycleBinElementRootResponses, type GetRecycleBinElementSiblingsData, type GetRecycleBinElementSiblingsErrors, type GetRecycleBinElementSiblingsResponse, type GetRecycleBinElementSiblingsResponses, type GetRecycleBinMediaByIdOriginalParentData, type GetRecycleBinMediaByIdOriginalParentError, type GetRecycleBinMediaByIdOriginalParentErrors, type GetRecycleBinMediaByIdOriginalParentResponse, type GetRecycleBinMediaByIdOriginalParentResponses, type GetRecycleBinMediaChildrenData, type GetRecycleBinMediaChildrenErrors, type GetRecycleBinMediaChildrenResponse, type GetRecycleBinMediaChildrenResponses, type GetRecycleBinMediaReferencedByData, type GetRecycleBinMediaReferencedByErrors, type GetRecycleBinMediaReferencedByResponse, type GetRecycleBinMediaReferencedByResponses, type GetRecycleBinMediaRootData, type GetRecycleBinMediaRootErrors, type GetRecycleBinMediaRootResponse, type GetRecycleBinMediaRootResponses, type GetRecycleBinMediaSiblingsData, type GetRecycleBinMediaSiblingsErrors, type GetRecycleBinMediaSiblingsResponse, type GetRecycleBinMediaSiblingsResponses, type GetRedirectManagementByIdData, type GetRedirectManagementByIdErrors, type GetRedirectManagementByIdResponse, type GetRedirectManagementByIdResponses, type GetRedirectManagementData, type GetRedirectManagementError, type GetRedirectManagementErrors, type GetRedirectManagementResponse, type GetRedirectManagementResponses, type GetRedirectManagementStatusData, type GetRedirectManagementStatusErrors, type GetRedirectManagementStatusResponse, type GetRedirectManagementStatusResponses, type GetRelationByRelationTypeIdData, type GetRelationByRelationTypeIdError, type GetRelationByRelationTypeIdErrors, type GetRelationByRelationTypeIdResponse, type GetRelationByRelationTypeIdResponses, type GetRelationTypeByIdData, type GetRelationTypeByIdError, type GetRelationTypeByIdErrors, type GetRelationTypeByIdResponse, type GetRelationTypeByIdResponses, type GetRelationTypeData, type GetRelationTypeErrors, type GetRelationTypeResponse, type GetRelationTypeResponses, type GetScriptByPathData, type GetScriptByPathError, type GetScriptByPathErrors, type GetScriptByPathResponse, type GetScriptByPathResponses, type GetScriptFolderByPathData, type GetScriptFolderByPathError, type GetScriptFolderByPathErrors, type GetScriptFolderByPathResponse, type GetScriptFolderByPathResponses, type GetSearcherBySearcherNameQueryData, type GetSearcherBySearcherNameQueryError, type GetSearcherBySearcherNameQueryErrors, type GetSearcherBySearcherNameQueryResponse, type GetSearcherBySearcherNameQueryResponses, type GetSearcherData, type GetSearcherErrors, type GetSearcherResponse, type GetSearcherResponses, type GetSecurityConfigurationData, type GetSecurityConfigurationErrors, type GetSecurityConfigurationResponse, type GetSecurityConfigurationResponses, type GetSegmentData, type GetSegmentError, type GetSegmentErrors, type GetSegmentResponse, type GetSegmentResponses, type GetServerConfigurationData, type GetServerConfigurationResponse, type GetServerConfigurationResponses, type GetServerInformationData, type GetServerInformationErrors, type GetServerInformationResponse, type GetServerInformationResponses, type GetServerStatusData, type GetServerStatusError, type GetServerStatusErrors, type GetServerStatusResponse, type GetServerStatusResponses, type GetServerTroubleshootingData, type GetServerTroubleshootingErrors, type GetServerTroubleshootingResponse, type GetServerTroubleshootingResponses, type GetServerUpgradeCheckData, type GetServerUpgradeCheckErrors, type GetServerUpgradeCheckResponse, type GetServerUpgradeCheckResponses, type GetStylesheetByPathData, type GetStylesheetByPathError, type GetStylesheetByPathErrors, type GetStylesheetByPathResponse, type GetStylesheetByPathResponses, type GetStylesheetFolderByPathData, type GetStylesheetFolderByPathError, type GetStylesheetFolderByPathErrors, type GetStylesheetFolderByPathResponse, type GetStylesheetFolderByPathResponses, type GetTagData, type GetTagErrors, type GetTagResponse, type GetTagResponses, type GetTelemetryData, type GetTelemetryErrors, type GetTelemetryLevelData, type GetTelemetryLevelErrors, type GetTelemetryLevelResponse, type GetTelemetryLevelResponses, type GetTelemetryResponse, type GetTelemetryResponses, type GetTemplateByIdData, type GetTemplateByIdError, type GetTemplateByIdErrors, type GetTemplateByIdResponse, type GetTemplateByIdResponses, type GetTemplateConfigurationData, type GetTemplateConfigurationErrors, type GetTemplateConfigurationResponse, type GetTemplateConfigurationResponses, type GetTemplateQuerySettingsData, type GetTemplateQuerySettingsErrors, type GetTemplateQuerySettingsResponse, type GetTemplateQuerySettingsResponses, type GetTemporaryFileByIdData, type GetTemporaryFileByIdError, type GetTemporaryFileByIdErrors, type GetTemporaryFileByIdResponse, type GetTemporaryFileByIdResponses, type GetTemporaryFileConfigurationData, type GetTemporaryFileConfigurationErrors, type GetTemporaryFileConfigurationResponse, type GetTemporaryFileConfigurationResponses, type GetTreeDataTypeAncestorsData, type GetTreeDataTypeAncestorsErrors, type GetTreeDataTypeAncestorsResponse, type GetTreeDataTypeAncestorsResponses, type GetTreeDataTypeChildrenData, type GetTreeDataTypeChildrenErrors, type GetTreeDataTypeChildrenResponse, type GetTreeDataTypeChildrenResponses, type GetTreeDataTypeRootData, type GetTreeDataTypeRootErrors, type GetTreeDataTypeRootResponse, type GetTreeDataTypeRootResponses, type GetTreeDataTypeSearchData, type GetTreeDataTypeSearchErrors, type GetTreeDataTypeSearchResponse, type GetTreeDataTypeSearchResponses, type GetTreeDataTypeSiblingsData, type GetTreeDataTypeSiblingsErrors, type GetTreeDataTypeSiblingsResponse, type GetTreeDataTypeSiblingsResponses, type GetTreeDictionaryAncestorsData, type GetTreeDictionaryAncestorsErrors, type GetTreeDictionaryAncestorsResponse, type GetTreeDictionaryAncestorsResponses, type GetTreeDictionaryChildrenData, type GetTreeDictionaryChildrenErrors, type GetTreeDictionaryChildrenResponse, type GetTreeDictionaryChildrenResponses, type GetTreeDictionaryRootData, type GetTreeDictionaryRootErrors, type GetTreeDictionaryRootResponse, type GetTreeDictionaryRootResponses, type GetTreeDocumentAncestorsData, type GetTreeDocumentAncestorsErrors, type GetTreeDocumentAncestorsResponse, type GetTreeDocumentAncestorsResponses, type GetTreeDocumentBlueprintAncestorsData, type GetTreeDocumentBlueprintAncestorsErrors, type GetTreeDocumentBlueprintAncestorsResponse, type GetTreeDocumentBlueprintAncestorsResponses, type GetTreeDocumentBlueprintChildrenData, type GetTreeDocumentBlueprintChildrenErrors, type GetTreeDocumentBlueprintChildrenResponse, type GetTreeDocumentBlueprintChildrenResponses, type GetTreeDocumentBlueprintRootData, type GetTreeDocumentBlueprintRootErrors, type GetTreeDocumentBlueprintRootResponse, type GetTreeDocumentBlueprintRootResponses, type GetTreeDocumentBlueprintSiblingsData, type GetTreeDocumentBlueprintSiblingsErrors, type GetTreeDocumentBlueprintSiblingsResponse, type GetTreeDocumentBlueprintSiblingsResponses, type GetTreeDocumentChildrenData, type GetTreeDocumentChildrenErrors, type GetTreeDocumentChildrenResponse, type GetTreeDocumentChildrenResponses, type GetTreeDocumentRootData, type GetTreeDocumentRootErrors, type GetTreeDocumentRootResponse, type GetTreeDocumentRootResponses, type GetTreeDocumentSiblingsData, type GetTreeDocumentSiblingsErrors, type GetTreeDocumentSiblingsResponse, type GetTreeDocumentSiblingsResponses, type GetTreeDocumentTypeAncestorsData, type GetTreeDocumentTypeAncestorsErrors, type GetTreeDocumentTypeAncestorsResponse, type GetTreeDocumentTypeAncestorsResponses, type GetTreeDocumentTypeChildrenData, type GetTreeDocumentTypeChildrenErrors, type GetTreeDocumentTypeChildrenResponse, type GetTreeDocumentTypeChildrenResponses, type GetTreeDocumentTypeRootData, type GetTreeDocumentTypeRootErrors, type GetTreeDocumentTypeRootResponse, type GetTreeDocumentTypeRootResponses, type GetTreeDocumentTypeSearchData, type GetTreeDocumentTypeSearchErrors, type GetTreeDocumentTypeSearchResponse, type GetTreeDocumentTypeSearchResponses, type GetTreeDocumentTypeSiblingsData, type GetTreeDocumentTypeSiblingsErrors, type GetTreeDocumentTypeSiblingsResponse, type GetTreeDocumentTypeSiblingsResponses, type GetTreeElementAncestorsData, type GetTreeElementAncestorsErrors, type GetTreeElementAncestorsResponse, type GetTreeElementAncestorsResponses, type GetTreeElementChildrenData, type GetTreeElementChildrenErrors, type GetTreeElementChildrenResponse, type GetTreeElementChildrenResponses, type GetTreeElementRootData, type GetTreeElementRootErrors, type GetTreeElementRootResponse, type GetTreeElementRootResponses, type GetTreeElementSiblingsData, type GetTreeElementSiblingsErrors, type GetTreeElementSiblingsResponse, type GetTreeElementSiblingsResponses, type GetTreeMediaAncestorsData, type GetTreeMediaAncestorsErrors, type GetTreeMediaAncestorsResponse, type GetTreeMediaAncestorsResponses, type GetTreeMediaChildrenData, type GetTreeMediaChildrenErrors, type GetTreeMediaChildrenResponse, type GetTreeMediaChildrenResponses, type GetTreeMediaRootData, type GetTreeMediaRootErrors, type GetTreeMediaRootResponse, type GetTreeMediaRootResponses, type GetTreeMediaSiblingsData, type GetTreeMediaSiblingsErrors, type GetTreeMediaSiblingsResponse, type GetTreeMediaSiblingsResponses, type GetTreeMediaTypeAncestorsData, type GetTreeMediaTypeAncestorsErrors, type GetTreeMediaTypeAncestorsResponse, type GetTreeMediaTypeAncestorsResponses, type GetTreeMediaTypeChildrenData, type GetTreeMediaTypeChildrenErrors, type GetTreeMediaTypeChildrenResponse, type GetTreeMediaTypeChildrenResponses, type GetTreeMediaTypeRootData, type GetTreeMediaTypeRootErrors, type GetTreeMediaTypeRootResponse, type GetTreeMediaTypeRootResponses, type GetTreeMediaTypeSiblingsData, type GetTreeMediaTypeSiblingsErrors, type GetTreeMediaTypeSiblingsResponse, type GetTreeMediaTypeSiblingsResponses, type GetTreeMemberGroupRootData, type GetTreeMemberGroupRootErrors, type GetTreeMemberGroupRootResponse, type GetTreeMemberGroupRootResponses, type GetTreeMemberTypeAncestorsData, type GetTreeMemberTypeAncestorsErrors, type GetTreeMemberTypeAncestorsResponse, type GetTreeMemberTypeAncestorsResponses, type GetTreeMemberTypeChildrenData, type GetTreeMemberTypeChildrenErrors, type GetTreeMemberTypeChildrenResponse, type GetTreeMemberTypeChildrenResponses, type GetTreeMemberTypeRootData, type GetTreeMemberTypeRootErrors, type GetTreeMemberTypeRootResponse, type GetTreeMemberTypeRootResponses, type GetTreeMemberTypeSiblingsData, type GetTreeMemberTypeSiblingsErrors, type GetTreeMemberTypeSiblingsResponse, type GetTreeMemberTypeSiblingsResponses, type GetTreePartialViewAncestorsData, type GetTreePartialViewAncestorsErrors, type GetTreePartialViewAncestorsResponse, type GetTreePartialViewAncestorsResponses, type GetTreePartialViewChildrenData, type GetTreePartialViewChildrenErrors, type GetTreePartialViewChildrenResponse, type GetTreePartialViewChildrenResponses, type GetTreePartialViewRootData, type GetTreePartialViewRootErrors, type GetTreePartialViewRootResponse, type GetTreePartialViewRootResponses, type GetTreePartialViewSiblingsData, type GetTreePartialViewSiblingsErrors, type GetTreePartialViewSiblingsResponse, type GetTreePartialViewSiblingsResponses, type GetTreeScriptAncestorsData, type GetTreeScriptAncestorsErrors, type GetTreeScriptAncestorsResponse, type GetTreeScriptAncestorsResponses, type GetTreeScriptChildrenData, type GetTreeScriptChildrenErrors, type GetTreeScriptChildrenResponse, type GetTreeScriptChildrenResponses, type GetTreeScriptRootData, type GetTreeScriptRootErrors, type GetTreeScriptRootResponse, type GetTreeScriptRootResponses, type GetTreeScriptSiblingsData, type GetTreeScriptSiblingsErrors, type GetTreeScriptSiblingsResponse, type GetTreeScriptSiblingsResponses, type GetTreeStaticFileAncestorsData, type GetTreeStaticFileAncestorsErrors, type GetTreeStaticFileAncestorsResponse, type GetTreeStaticFileAncestorsResponses, type GetTreeStaticFileChildrenData, type GetTreeStaticFileChildrenErrors, type GetTreeStaticFileChildrenResponse, type GetTreeStaticFileChildrenResponses, type GetTreeStaticFileRootData, type GetTreeStaticFileRootErrors, type GetTreeStaticFileRootResponse, type GetTreeStaticFileRootResponses, type GetTreeStylesheetAncestorsData, type GetTreeStylesheetAncestorsErrors, type GetTreeStylesheetAncestorsResponse, type GetTreeStylesheetAncestorsResponses, type GetTreeStylesheetChildrenData, type GetTreeStylesheetChildrenErrors, type GetTreeStylesheetChildrenResponse, type GetTreeStylesheetChildrenResponses, type GetTreeStylesheetRootData, type GetTreeStylesheetRootErrors, type GetTreeStylesheetRootResponse, type GetTreeStylesheetRootResponses, type GetTreeStylesheetSiblingsData, type GetTreeStylesheetSiblingsErrors, type GetTreeStylesheetSiblingsResponse, type GetTreeStylesheetSiblingsResponses, type GetTreeTemplateAncestorsData, type GetTreeTemplateAncestorsErrors, type GetTreeTemplateAncestorsResponse, type GetTreeTemplateAncestorsResponses, type GetTreeTemplateChildrenData, type GetTreeTemplateChildrenErrors, type GetTreeTemplateChildrenResponse, type GetTreeTemplateChildrenResponses, type GetTreeTemplateRootData, type GetTreeTemplateRootErrors, type GetTreeTemplateRootResponse, type GetTreeTemplateRootResponses, type GetTreeTemplateSiblingsData, type GetTreeTemplateSiblingsErrors, type GetTreeTemplateSiblingsResponse, type GetTreeTemplateSiblingsResponses, type GetUpgradeSettingsData, type GetUpgradeSettingsError, type GetUpgradeSettingsErrors, type GetUpgradeSettingsResponse, type GetUpgradeSettingsResponses, type GetUserBatchData, type GetUserBatchErrors, type GetUserBatchResponse, type GetUserBatchResponses, type GetUserById2FaData, type GetUserById2FaError, type GetUserById2FaErrors, type GetUserById2FaResponse, type GetUserById2FaResponses, type GetUserByIdCalculateStartNodesData, type GetUserByIdCalculateStartNodesError, type GetUserByIdCalculateStartNodesErrors, type GetUserByIdCalculateStartNodesResponse, type GetUserByIdCalculateStartNodesResponses, type GetUserByIdClientCredentialsData, type GetUserByIdClientCredentialsErrors, type GetUserByIdClientCredentialsResponse, type GetUserByIdClientCredentialsResponses, type GetUserByIdData, type GetUserByIdError, type GetUserByIdErrors, type GetUserByIdResponse, type GetUserByIdResponses, type GetUserConfigurationData, type GetUserConfigurationErrors, type GetUserConfigurationResponse, type GetUserConfigurationResponses, type GetUserCurrent2FaByProviderNameData, type GetUserCurrent2FaByProviderNameError, type GetUserCurrent2FaByProviderNameErrors, type GetUserCurrent2FaByProviderNameResponse, type GetUserCurrent2FaByProviderNameResponses, type GetUserCurrent2FaData, type GetUserCurrent2FaErrors, type GetUserCurrent2FaResponse, type GetUserCurrent2FaResponses, type GetUserCurrentConfigurationData, type GetUserCurrentConfigurationErrors, type GetUserCurrentConfigurationResponse, type GetUserCurrentConfigurationResponses, type GetUserCurrentData, type GetUserCurrentErrors, type GetUserCurrentLoginProvidersData, type GetUserCurrentLoginProvidersErrors, type GetUserCurrentLoginProvidersResponse, type GetUserCurrentLoginProvidersResponses, type GetUserCurrentPermissionsData, type GetUserCurrentPermissionsDocumentData, type GetUserCurrentPermissionsDocumentError, type GetUserCurrentPermissionsDocumentErrors, type GetUserCurrentPermissionsDocumentResponse, type GetUserCurrentPermissionsDocumentResponses, type GetUserCurrentPermissionsElementData, type GetUserCurrentPermissionsElementError, type GetUserCurrentPermissionsElementErrors, type GetUserCurrentPermissionsElementResponse, type GetUserCurrentPermissionsElementResponses, type GetUserCurrentPermissionsError, type GetUserCurrentPermissionsErrors, type GetUserCurrentPermissionsMediaData, type GetUserCurrentPermissionsMediaError, type GetUserCurrentPermissionsMediaErrors, type GetUserCurrentPermissionsMediaResponse, type GetUserCurrentPermissionsMediaResponses, type GetUserCurrentPermissionsResponse, type GetUserCurrentPermissionsResponses, type GetUserCurrentResponse, type GetUserCurrentResponses, type GetUserData, type GetUserDataByIdData, type GetUserDataByIdErrors, type GetUserDataByIdResponse, type GetUserDataByIdResponses, type GetUserDataData, type GetUserDataErrors, type GetUserDataResponse, type GetUserDataResponses, type GetUserError, type GetUserErrors, type GetUserGroupByIdData, type GetUserGroupByIdError, type GetUserGroupByIdErrors, type GetUserGroupByIdResponse, type GetUserGroupByIdResponses, type GetUserGroupData, type GetUserGroupErrors, type GetUserGroupResponse, type GetUserGroupResponses, type GetUserResponse, type GetUserResponses, type GetWebhookByIdData, type GetWebhookByIdError, type GetWebhookByIdErrors, type GetWebhookByIdLogsData, type GetWebhookByIdLogsErrors, type GetWebhookByIdLogsResponse, type GetWebhookByIdLogsResponses, type GetWebhookByIdResponse, type GetWebhookByIdResponses, type GetWebhookData, type GetWebhookErrors, type GetWebhookEventsData, type GetWebhookEventsErrors, type GetWebhookEventsResponse, type GetWebhookEventsResponses, type GetWebhookLogsData, type GetWebhookLogsErrors, type GetWebhookLogsResponse, type GetWebhookLogsResponses, type GetWebhookResponse, type GetWebhookResponses, type HealthCheckActionRequestModel, type HealthCheckGroupPresentationModel, type HealthCheckGroupResponseModel, type HealthCheckGroupWithResultResponseModel, type HealthCheckModel, type HealthCheckResultResponseModel, type HealthCheckWithResultPresentationModel, HealthStatusModel, type HealthStatusResponseModel, type HelpPageResponseModel, ImageCropModeModel, type ImportDictionaryRequestModel, type ImportDocumentTypeRequestModel, type ImportMediaTypeRequestModel, type ImportMemberTypeRequestModel, type IndexResponseModel, type InstallRequestModel, type InstallSettingsResponseModel, type InviteUserRequestModel, type IPermissionPresentationModel, type IPermissionPresentationModelDocumentPermissionPresentationModel, type IPermissionPresentationModelDocumentPropertyValuePermissionPresentationModel, type IPermissionPresentationModelElementPermissionPresentationModel, type IPermissionPresentationModelUnknownTypePermissionPresentationModel, type IReferenceResponseModel, type IReferenceResponseModelDefaultReferenceResponseModel, type IReferenceResponseModelDocumentReferenceResponseModel, type IReferenceResponseModelDocumentTypePropertyTypeReferenceResponseModel, type IReferenceResponseModelElementContainerReferenceResponseModel, type IReferenceResponseModelElementReferenceResponseModel, type IReferenceResponseModelMediaReferenceResponseModel, type IReferenceResponseModelMediaTypePropertyTypeReferenceResponseModel, type IReferenceResponseModelMemberReferenceResponseModel, type IReferenceResponseModelMemberTypePropertyTypeReferenceResponseModel, type ISetupTwoFactorModel, type ISetupTwoFactorModelNoopSetupTwoFactorModel, type ItemAncestorsResponseModelDocumentItemResponseModel, type ItemAncestorsResponseModelMediaItemResponseModel, type ItemAncestorsResponseModelMemberItemResponseModel, type ItemAncestorsResponseModelNamedItemResponseModel, type ItemAncestorsResponseModelTemplateItemResponseModel, type ItemReferenceByIdResponseModel, type ItemSortingRequestModel, type JsonObject, type LanguageItemResponseModel, type LanguageResponseModel, type LoggerResponseModel, type LogLevelCountsReponseModel, LogLevelModel, type LogMessagePropertyPresentationModel, type LogMessageResponseModel, type LogTemplateResponseModel, type ManifestResponseModel, type MediaCollectionResponseModel, type MediaConfigurationResponseModel, type MediaItemResponseModel, type MediaRecycleBinItemResponseModel, type MediaResponseModel, type MediaTreeItemResponseModel, type MediaTypeAllowedParentsResponseModel, type MediaTypeCollectionReferenceResponseModel, type MediaTypeCompositionModel, type MediaTypeCompositionRequestModel, type MediaTypeCompositionResponseModel, type MediaTypeConfigurationResponseModel, type MediaTypeItemResponseModel, type MediaTypePropertyTypeContainerResponseModel, type MediaTypePropertyTypeResponseModel, type MediaTypeReferenceResponseModel, type MediaTypeResponseModel, type MediaTypeSortModel, type MediaTypeTreeItemResponseModel, type MediaUrlInfoModel, type MediaUrlInfoResponseModel, type MediaValueModel, type MediaValueResponseModel, type MediaVariantRequestModel, type MediaVariantResponseModel, type MemberGroupItemResponseModel, type MemberGroupResponseModel, type MemberItemResponseModel, MemberKindModel, type MemberResponseModel, type MemberTypeCompositionModel, type MemberTypeCompositionRequestModel, type MemberTypeCompositionResponseModel, type MemberTypeConfigurationResponseModel, type MemberTypeItemResponseModel, type MemberTypePropertyTypeContainerResponseModel, type MemberTypePropertyTypeResponseModel, type MemberTypePropertyTypeVisibilityModel, type MemberTypeReferenceResponseModel, type MemberTypeResponseModel, type MemberTypeTreeItemResponseModel, type MemberValueModel, type MemberValueResponseModel, type MemberVariantRequestModel, type MemberVariantResponseModel, type ModelsBuilderResponseModel, type MoveDataTypeRequestModel, type MoveDictionaryRequestModel, type MoveDocumentBlueprintRequestModel, type MoveDocumentRequestModel, type MoveDocumentTypeRequestModel, type MoveElementRequestModel, type MoveFolderRequestModel, type MoveMediaRequestModel, type MoveMediaTypeRequestModel, type MoveMemberTypeRequestModel, type NamedEntityTreeItemResponseModel, type NamedItemResponseModel, type NewsDashboardItemResponseModel, type NewsDashboardResponseModel, type NotificationHeaderModel, type ObjectTypeResponseModel, type OEmbedResponseModel, OperatorModel, type OutOfDateStatusResponseModel, OutOfDateTypeModel, type PackageConfigurationResponseModel, type PackageDefinitionResponseModel, type PackageMigrationStatusResponseModel, type PagedAllowedDocumentTypeModel, type PagedAllowedMediaTypeModel, type PagedAllowedMemberTypeModel, type PagedAuditLogResponseModel, type PagedCultureReponseModel, type PagedDataTypeItemResponseModel, type PagedDataTypeTreeItemResponseModel, type PagedDictionaryOverviewResponseModel, type PagedDocumentBlueprintTreeItemResponseModel, type PagedDocumentCollectionResponseModel, type PagedDocumentRecycleBinItemResponseModel, type PagedDocumentTreeItemResponseModel, type PagedDocumentTypeBlueprintItemResponseModel, type PagedDocumentTypeTreeItemResponseModel, type PagedDocumentVersionItemResponseModel, type PagedElementRecycleBinItemResponseModel, type PagedElementTreeItemResponseModel, type PagedElementVersionItemResponseModel, type PagedFileSystemTreeItemPresentationModel, type PagedHealthCheckGroupResponseModel, type PagedHelpPageResponseModel, type PagedIndexResponseModel, type PagedIReferenceResponseModel, type PagedLanguageResponseModel, type PagedLoggerResponseModel, type PagedLogMessageResponseModel, type PagedLogTemplateResponseModel, type PagedMediaCollectionResponseModel, type PagedMediaRecycleBinItemResponseModel, type PagedMediaTreeItemResponseModel, type PagedMediaTypeTreeItemResponseModel, type PagedMemberGroupResponseModel, type PagedMemberResponseModel, type PagedMemberTypeTreeItemResponseModel, type PagedModelAllowedMediaTypeItemResponseModel, type PagedModelDataTypeItemResponseModel, type PagedModelDocumentItemResponseModel, type PagedModelDocumentTypeItemResponseModel, type PagedModelElementItemResponseModel, type PagedModelMediaItemResponseModel, type PagedModelMediaTypeItemResponseModel, type PagedModelMemberItemResponseModel, type PagedModelMemberTypeItemResponseModel, type PagedModelTemplateItemResponseModel, type PagedNamedEntityTreeItemResponseModel, type PagedObjectTypeResponseModel, type PagedPackageDefinitionResponseModel, type PagedPackageMigrationStatusResponseModel, type PagedPartialViewSnippetItemResponseModel, type PagedProblemDetailsModel, type PagedRedirectUrlResponseModel, type PagedReferenceByIdModel, type PagedRelationResponseModel, type PagedRelationTypeResponseModel, type PagedSavedLogSearchResponseModel, type PagedSearcherResponseModel, type PagedSearchResultResponseModel, type PagedSegmentResponseModel, type PagedTagResponseModel, type PagedTelemetryResponseModel, type PagedUserDataResponseModel, type PagedUserGroupResponseModel, type PagedUserResponseModel, type PagedWebhookEventModel, type PagedWebhookLogResponseModel, type PagedWebhookResponseModel, type PartialViewFolderResponseModel, type PartialViewItemResponseModel, type PartialViewResponseModel, type PartialViewSnippetItemResponseModel, type PartialViewSnippetResponseModel, type PasswordConfigurationResponseModel, type PatchDocumentByIdPatchData, type PatchDocumentByIdPatchError, type PatchDocumentByIdPatchErrors, type PatchDocumentByIdPatchResponses, type PatchDocumentRequestModel, type PatchOperationRequestModel, type PostDataTypeByIdCopyData, type PostDataTypeByIdCopyError, type PostDataTypeByIdCopyErrors, type PostDataTypeByIdCopyResponses, type PostDataTypeData, type PostDataTypeError, type PostDataTypeErrors, type PostDataTypeFolderData, type PostDataTypeFolderError, type PostDataTypeFolderErrors, type PostDataTypeFolderResponses, type PostDataTypeResponses, type PostDictionaryData, type PostDictionaryError, type PostDictionaryErrors, type PostDictionaryImportData, type PostDictionaryImportError, type PostDictionaryImportErrors, type PostDictionaryImportResponses, type PostDictionaryResponses, type PostDocumentBlueprintData, type PostDocumentBlueprintError, type PostDocumentBlueprintErrors, type PostDocumentBlueprintFolderData, type PostDocumentBlueprintFolderError, type PostDocumentBlueprintFolderErrors, type PostDocumentBlueprintFolderResponses, type PostDocumentBlueprintFromDocumentData, type PostDocumentBlueprintFromDocumentError, type PostDocumentBlueprintFromDocumentErrors, type PostDocumentBlueprintFromDocumentResponses, type PostDocumentBlueprintResponses, type PostDocumentByIdCopyData, type PostDocumentByIdCopyError, type PostDocumentByIdCopyErrors, type PostDocumentByIdCopyResponses, type PostDocumentByIdPublicAccessData, type PostDocumentByIdPublicAccessError, type PostDocumentByIdPublicAccessErrors, type PostDocumentByIdPublicAccessResponses, type PostDocumentCreateAndPublishData, type PostDocumentCreateAndPublishError, type PostDocumentCreateAndPublishErrors, type PostDocumentCreateAndPublishResponses, type PostDocumentData, type PostDocumentError, type PostDocumentErrors, type PostDocumentResponses, type PostDocumentTypeAvailableCompositionsData, type PostDocumentTypeAvailableCompositionsErrors, type PostDocumentTypeAvailableCompositionsResponse, type PostDocumentTypeAvailableCompositionsResponses, type PostDocumentTypeByIdCopyData, type PostDocumentTypeByIdCopyError, type PostDocumentTypeByIdCopyErrors, type PostDocumentTypeByIdCopyResponses, type PostDocumentTypeByIdTemplateData, type PostDocumentTypeByIdTemplateError, type PostDocumentTypeByIdTemplateErrors, type PostDocumentTypeByIdTemplateResponses, type PostDocumentTypeData, type PostDocumentTypeError, type PostDocumentTypeErrors, type PostDocumentTypeFolderData, type PostDocumentTypeFolderError, type PostDocumentTypeFolderErrors, type PostDocumentTypeFolderResponses, type PostDocumentTypeImportData, type PostDocumentTypeImportError, type PostDocumentTypeImportErrors, type PostDocumentTypeImportResponses, type PostDocumentTypeResponses, type PostDocumentValidateData, type PostDocumentValidateError, type PostDocumentValidateErrors, type PostDocumentValidateResponses, type PostDocumentVersionByIdRollbackData, type PostDocumentVersionByIdRollbackError, type PostDocumentVersionByIdRollbackErrors, type PostDocumentVersionByIdRollbackResponses, type PostDynamicRootQueryData, type PostDynamicRootQueryErrors, type PostDynamicRootQueryResponse, type PostDynamicRootQueryResponses, type PostElementByIdCopyData, type PostElementByIdCopyError, type PostElementByIdCopyErrors, type PostElementByIdCopyResponses, type PostElementCreateAndPublishData, type PostElementCreateAndPublishError, type PostElementCreateAndPublishErrors, type PostElementCreateAndPublishResponses, type PostElementData, type PostElementError, type PostElementErrors, type PostElementFolderData, type PostElementFolderError, type PostElementFolderErrors, type PostElementFolderResponses, type PostElementResponses, type PostElementValidateData, type PostElementValidateError, type PostElementValidateErrors, type PostElementValidateResponses, type PostElementVersionByIdRollbackData, type PostElementVersionByIdRollbackError, type PostElementVersionByIdRollbackErrors, type PostElementVersionByIdRollbackResponses, type PostHealthCheckExecuteActionData, type PostHealthCheckExecuteActionError, type PostHealthCheckExecuteActionErrors, type PostHealthCheckExecuteActionResponse, type PostHealthCheckExecuteActionResponses, type PostHealthCheckGroupByNameCheckData, type PostHealthCheckGroupByNameCheckError, type PostHealthCheckGroupByNameCheckErrors, type PostHealthCheckGroupByNameCheckResponse, type PostHealthCheckGroupByNameCheckResponses, type PostIndexerByIndexNameRebuildData, type PostIndexerByIndexNameRebuildError, type PostIndexerByIndexNameRebuildErrors, type PostIndexerByIndexNameRebuildResponses, type PostInstallSetupData, type PostInstallSetupError, type PostInstallSetupErrors, type PostInstallSetupResponses, type PostInstallValidateDatabaseData, type PostInstallValidateDatabaseError, type PostInstallValidateDatabaseErrors, type PostInstallValidateDatabaseResponses, type PostLanguageData, type PostLanguageError, type PostLanguageErrors, type PostLanguageResponses, type PostLogViewerSavedSearchData, type PostLogViewerSavedSearchError, type PostLogViewerSavedSearchErrors, type PostLogViewerSavedSearchResponses, type PostMediaData, type PostMediaError, type PostMediaErrors, type PostMediaResponses, type PostMediaTypeAvailableCompositionsData, type PostMediaTypeAvailableCompositionsErrors, type PostMediaTypeAvailableCompositionsResponse, type PostMediaTypeAvailableCompositionsResponses, type PostMediaTypeByIdCopyData, type PostMediaTypeByIdCopyError, type PostMediaTypeByIdCopyErrors, type PostMediaTypeByIdCopyResponses, type PostMediaTypeData, type PostMediaTypeError, type PostMediaTypeErrors, type PostMediaTypeFolderData, type PostMediaTypeFolderError, type PostMediaTypeFolderErrors, type PostMediaTypeFolderResponses, type PostMediaTypeImportData, type PostMediaTypeImportError, type PostMediaTypeImportErrors, type PostMediaTypeImportResponses, type PostMediaTypeResponses, type PostMediaValidateData, type PostMediaValidateError, type PostMediaValidateErrors, type PostMediaValidateResponses, type PostMemberData, type PostMemberError, type PostMemberErrors, type PostMemberGroupData, type PostMemberGroupError, type PostMemberGroupErrors, type PostMemberGroupResponses, type PostMemberResponses, type PostMemberTypeAvailableCompositionsData, type PostMemberTypeAvailableCompositionsErrors, type PostMemberTypeAvailableCompositionsResponse, type PostMemberTypeAvailableCompositionsResponses, type PostMemberTypeByIdCopyData, type PostMemberTypeByIdCopyError, type PostMemberTypeByIdCopyErrors, type PostMemberTypeByIdCopyResponses, type PostMemberTypeData, type PostMemberTypeError, type PostMemberTypeErrors, type PostMemberTypeFolderData, type PostMemberTypeFolderError, type PostMemberTypeFolderErrors, type PostMemberTypeFolderResponses, type PostMemberTypeImportData, type PostMemberTypeImportError, type PostMemberTypeImportErrors, type PostMemberTypeImportResponses, type PostMemberTypeResponses, type PostMemberValidateData, type PostMemberValidateError, type PostMemberValidateErrors, type PostMemberValidateResponses, type PostModelsBuilderBuildData, type PostModelsBuilderBuildError, type PostModelsBuilderBuildErrors, type PostModelsBuilderBuildResponses, type PostPackageByNameRunMigrationData, type PostPackageByNameRunMigrationError, type PostPackageByNameRunMigrationErrors, type PostPackageByNameRunMigrationResponses, type PostPackageCreatedData, type PostPackageCreatedError, type PostPackageCreatedErrors, type PostPackageCreatedResponses, type PostPartialViewData, type PostPartialViewError, type PostPartialViewErrors, type PostPartialViewFolderData, type PostPartialViewFolderError, type PostPartialViewFolderErrors, type PostPartialViewFolderResponses, type PostPartialViewResponses, type PostPublishedCacheRebuildData, type PostPublishedCacheRebuildErrors, type PostPublishedCacheRebuildResponses, type PostPublishedCacheReloadData, type PostPublishedCacheReloadErrors, type PostPublishedCacheReloadResponses, type PostRedirectManagementStatusData, type PostRedirectManagementStatusErrors, type PostRedirectManagementStatusResponses, type PostScriptData, type PostScriptError, type PostScriptErrors, type PostScriptFolderData, type PostScriptFolderError, type PostScriptFolderErrors, type PostScriptFolderResponses, type PostScriptResponses, type PostSecurityForgotPasswordData, type PostSecurityForgotPasswordError, type PostSecurityForgotPasswordErrors, type PostSecurityForgotPasswordResetData, type PostSecurityForgotPasswordResetError, type PostSecurityForgotPasswordResetErrors, type PostSecurityForgotPasswordResetResponse, type PostSecurityForgotPasswordResetResponses, type PostSecurityForgotPasswordResponses, type PostSecurityForgotPasswordVerifyData, type PostSecurityForgotPasswordVerifyError, type PostSecurityForgotPasswordVerifyErrors, type PostSecurityForgotPasswordVerifyResponse, type PostSecurityForgotPasswordVerifyResponses, type PostStylesheetData, type PostStylesheetError, type PostStylesheetErrors, type PostStylesheetFolderData, type PostStylesheetFolderError, type PostStylesheetFolderErrors, type PostStylesheetFolderResponses, type PostStylesheetResponses, type PostTelemetryLevelData, type PostTelemetryLevelError, type PostTelemetryLevelErrors, type PostTelemetryLevelResponses, type PostTemplateData, type PostTemplateError, type PostTemplateErrors, type PostTemplateQueryExecuteData, type PostTemplateQueryExecuteErrors, type PostTemplateQueryExecuteResponse, type PostTemplateQueryExecuteResponses, type PostTemplateResponses, type PostTemporaryFileData, type PostTemporaryFileError, type PostTemporaryFileErrors, type PostTemporaryFileResponses, type PostUpgradeAuthorizeData, type PostUpgradeAuthorizeError, type PostUpgradeAuthorizeErrors, type PostUpgradeAuthorizeResponses, type PostUserAvatarByIdData, type PostUserAvatarByIdError, type PostUserAvatarByIdErrors, type PostUserAvatarByIdResponses, type PostUserByIdChangePasswordData, type PostUserByIdChangePasswordError, type PostUserByIdChangePasswordErrors, type PostUserByIdChangePasswordResponses, type PostUserByIdClientCredentialsData, type PostUserByIdClientCredentialsError, type PostUserByIdClientCredentialsErrors, type PostUserByIdClientCredentialsResponses, type PostUserByIdResetPasswordData, type PostUserByIdResetPasswordError, type PostUserByIdResetPasswordErrors, type PostUserByIdResetPasswordResponse, type PostUserByIdResetPasswordResponses, type PostUserCurrent2FaByProviderNameData, type PostUserCurrent2FaByProviderNameError, type PostUserCurrent2FaByProviderNameErrors, type PostUserCurrent2FaByProviderNameResponse, type PostUserCurrent2FaByProviderNameResponses, type PostUserCurrentAvatarData, type PostUserCurrentAvatarError, type PostUserCurrentAvatarErrors, type PostUserCurrentAvatarResponses, type PostUserCurrentChangePasswordData, type PostUserCurrentChangePasswordError, type PostUserCurrentChangePasswordErrors, type PostUserCurrentChangePasswordResponses, type PostUserData, type PostUserDataData, type PostUserDataError, type PostUserDataErrors, type PostUserDataResponses, type PostUserDisableData, type PostUserDisableError, type PostUserDisableErrors, type PostUserDisableResponses, type PostUserEnableData, type PostUserEnableError, type PostUserEnableErrors, type PostUserEnableResponses, type PostUserError, type PostUserErrors, type PostUserGroupByIdUsersData, type PostUserGroupByIdUsersError, type PostUserGroupByIdUsersErrors, type PostUserGroupByIdUsersResponses, type PostUserGroupData, type PostUserGroupError, type PostUserGroupErrors, type PostUserGroupResponses, type PostUserInviteCreatePasswordData, type PostUserInviteCreatePasswordError, type PostUserInviteCreatePasswordErrors, type PostUserInviteCreatePasswordResponses, type PostUserInviteData, type PostUserInviteError, type PostUserInviteErrors, type PostUserInviteResendData, type PostUserInviteResendError, type PostUserInviteResendErrors, type PostUserInviteResendResponses, type PostUserInviteResponses, type PostUserInviteVerifyData, type PostUserInviteVerifyError, type PostUserInviteVerifyErrors, type PostUserInviteVerifyResponse, type PostUserInviteVerifyResponses, type PostUserResponses, type PostUserSetUserGroupsData, type PostUserSetUserGroupsErrors, type PostUserSetUserGroupsResponses, type PostUserUnlockData, type PostUserUnlockError, type PostUserUnlockErrors, type PostUserUnlockResponses, type PostWebhookData, type PostWebhookError, type PostWebhookErrors, type PostWebhookResponses, type ProblemDetails, type ProblemDetailsBuilderModel, type ProfilingStatusRequestModel, type ProfilingStatusResponseModel, type PropertyTypeAppearanceModel, type PropertyTypeValidationModel, type PublicAccessRequestModel, type PublicAccessResponseModel, PublishableVariantStateModel, type PublishDocumentRequestModel, type PublishDocumentWithDescendantsRequestModel, type PublishedDocumentResponseModel, type PublishedElementResponseModel, type PublishElementRequestModel, type PublishWithDescendantsResultModel, type PutDataTypeByIdData, type PutDataTypeByIdError, type PutDataTypeByIdErrors, type PutDataTypeByIdMoveData, type PutDataTypeByIdMoveError, type PutDataTypeByIdMoveErrors, type PutDataTypeByIdMoveResponses, type PutDataTypeByIdResponses, type PutDataTypeFolderByIdData, type PutDataTypeFolderByIdError, type PutDataTypeFolderByIdErrors, type PutDataTypeFolderByIdResponses, type PutDictionaryByIdData, type PutDictionaryByIdError, type PutDictionaryByIdErrors, type PutDictionaryByIdMoveData, type PutDictionaryByIdMoveError, type PutDictionaryByIdMoveErrors, type PutDictionaryByIdMoveResponses, type PutDictionaryByIdResponses, type PutDocumentBlueprintByIdData, type PutDocumentBlueprintByIdError, type PutDocumentBlueprintByIdErrors, type PutDocumentBlueprintByIdMoveData, type PutDocumentBlueprintByIdMoveError, type PutDocumentBlueprintByIdMoveErrors, type PutDocumentBlueprintByIdMoveResponses, type PutDocumentBlueprintByIdResponses, type PutDocumentBlueprintFolderByIdData, type PutDocumentBlueprintFolderByIdError, type PutDocumentBlueprintFolderByIdErrors, type PutDocumentBlueprintFolderByIdResponses, type PutDocumentByIdData, type PutDocumentByIdDomainsData, type PutDocumentByIdDomainsError, type PutDocumentByIdDomainsErrors, type PutDocumentByIdDomainsResponses, type PutDocumentByIdError, type PutDocumentByIdErrors, type PutDocumentByIdMoveData, type PutDocumentByIdMoveError, type PutDocumentByIdMoveErrors, type PutDocumentByIdMoveResponses, type PutDocumentByIdMoveToRecycleBinData, type PutDocumentByIdMoveToRecycleBinError, type PutDocumentByIdMoveToRecycleBinErrors, type PutDocumentByIdMoveToRecycleBinResponses, type PutDocumentByIdNotificationsData, type PutDocumentByIdNotificationsError, type PutDocumentByIdNotificationsErrors, type PutDocumentByIdNotificationsResponses, type PutDocumentByIdPublicAccessData, type PutDocumentByIdPublicAccessError, type PutDocumentByIdPublicAccessErrors, type PutDocumentByIdPublicAccessResponses, type PutDocumentByIdPublishData, type PutDocumentByIdPublishError, type PutDocumentByIdPublishErrors, type PutDocumentByIdPublishResponses, type PutDocumentByIdPublishWithDescendantsData, type PutDocumentByIdPublishWithDescendantsError, type PutDocumentByIdPublishWithDescendantsErrors, type PutDocumentByIdPublishWithDescendantsResponse, type PutDocumentByIdPublishWithDescendantsResponses, type PutDocumentByIdResponses, type PutDocumentByIdSortChildrenData, type PutDocumentByIdSortChildrenError, type PutDocumentByIdSortChildrenErrors, type PutDocumentByIdSortChildrenResponses, type PutDocumentByIdUnpublishData, type PutDocumentByIdUnpublishError, type PutDocumentByIdUnpublishErrors, type PutDocumentByIdUnpublishResponses, type PutDocumentByIdUpdateAndPublishData, type PutDocumentByIdUpdateAndPublishError, type PutDocumentByIdUpdateAndPublishErrors, type PutDocumentByIdUpdateAndPublishResponses, type PutDocumentRootSortChildrenData, type PutDocumentRootSortChildrenError, type PutDocumentRootSortChildrenErrors, type PutDocumentRootSortChildrenResponses, type PutDocumentSortData, type PutDocumentSortError, type PutDocumentSortErrors, type PutDocumentSortResponses, type PutDocumentTypeByIdData, type PutDocumentTypeByIdError, type PutDocumentTypeByIdErrors, type PutDocumentTypeByIdImportData, type PutDocumentTypeByIdImportError, type PutDocumentTypeByIdImportErrors, type PutDocumentTypeByIdImportResponses, type PutDocumentTypeByIdMoveData, type PutDocumentTypeByIdMoveError, type PutDocumentTypeByIdMoveErrors, type PutDocumentTypeByIdMoveResponses, type PutDocumentTypeByIdResponses, type PutDocumentTypeFolderByIdData, type PutDocumentTypeFolderByIdError, type PutDocumentTypeFolderByIdErrors, type PutDocumentTypeFolderByIdResponses, type PutDocumentVersionByIdPreventCleanupData, type PutDocumentVersionByIdPreventCleanupError, type PutDocumentVersionByIdPreventCleanupErrors, type PutDocumentVersionByIdPreventCleanupResponses, type PutElementByIdData, type PutElementByIdError, type PutElementByIdErrors, type PutElementByIdMoveData, type PutElementByIdMoveError, type PutElementByIdMoveErrors, type PutElementByIdMoveResponses, type PutElementByIdMoveToRecycleBinData, type PutElementByIdMoveToRecycleBinError, type PutElementByIdMoveToRecycleBinErrors, type PutElementByIdMoveToRecycleBinResponses, type PutElementByIdPublishData, type PutElementByIdPublishError, type PutElementByIdPublishErrors, type PutElementByIdPublishResponses, type PutElementByIdResponses, type PutElementByIdUnpublishData, type PutElementByIdUnpublishError, type PutElementByIdUnpublishErrors, type PutElementByIdUnpublishResponses, type PutElementByIdUpdateAndPublishData, type PutElementByIdUpdateAndPublishError, type PutElementByIdUpdateAndPublishErrors, type PutElementByIdUpdateAndPublishResponses, type PutElementByIdValidateData, type PutElementByIdValidateError, type PutElementByIdValidateErrors, type PutElementByIdValidateResponses, type PutElementFolderByIdData, type PutElementFolderByIdError, type PutElementFolderByIdErrors, type PutElementFolderByIdMoveData, type PutElementFolderByIdMoveError, type PutElementFolderByIdMoveErrors, type PutElementFolderByIdMoveResponses, type PutElementFolderByIdMoveToRecycleBinData, type PutElementFolderByIdMoveToRecycleBinError, type PutElementFolderByIdMoveToRecycleBinErrors, type PutElementFolderByIdMoveToRecycleBinResponses, type PutElementFolderByIdResponses, type PutElementVersionByIdPreventCleanupData, type PutElementVersionByIdPreventCleanupError, type PutElementVersionByIdPreventCleanupErrors, type PutElementVersionByIdPreventCleanupResponses, type PutLanguageByIsoCodeData, type PutLanguageByIsoCodeError, type PutLanguageByIsoCodeErrors, type PutLanguageByIsoCodeResponses, type PutMediaByIdData, type PutMediaByIdError, type PutMediaByIdErrors, type PutMediaByIdMoveData, type PutMediaByIdMoveError, type PutMediaByIdMoveErrors, type PutMediaByIdMoveResponses, type PutMediaByIdMoveToRecycleBinData, type PutMediaByIdMoveToRecycleBinError, type PutMediaByIdMoveToRecycleBinErrors, type PutMediaByIdMoveToRecycleBinResponses, type PutMediaByIdResponses, type PutMediaByIdSortChildrenData, type PutMediaByIdSortChildrenError, type PutMediaByIdSortChildrenErrors, type PutMediaByIdSortChildrenResponses, type PutMediaByIdValidateData, type PutMediaByIdValidateError, type PutMediaByIdValidateErrors, type PutMediaByIdValidateResponses, type PutMediaRootSortChildrenData, type PutMediaRootSortChildrenError, type PutMediaRootSortChildrenErrors, type PutMediaRootSortChildrenResponses, type PutMediaSortData, type PutMediaSortError, type PutMediaSortErrors, type PutMediaSortResponses, type PutMediaTypeByIdData, type PutMediaTypeByIdError, type PutMediaTypeByIdErrors, type PutMediaTypeByIdImportData, type PutMediaTypeByIdImportError, type PutMediaTypeByIdImportErrors, type PutMediaTypeByIdImportResponses, type PutMediaTypeByIdMoveData, type PutMediaTypeByIdMoveError, type PutMediaTypeByIdMoveErrors, type PutMediaTypeByIdMoveResponses, type PutMediaTypeByIdResponses, type PutMediaTypeFolderByIdData, type PutMediaTypeFolderByIdError, type PutMediaTypeFolderByIdErrors, type PutMediaTypeFolderByIdResponses, type PutMemberByIdData, type PutMemberByIdError, type PutMemberByIdErrors, type PutMemberByIdResponses, type PutMemberByIdValidateData, type PutMemberByIdValidateError, type PutMemberByIdValidateErrors, type PutMemberByIdValidateResponses, type PutMemberGroupByIdData, type PutMemberGroupByIdError, type PutMemberGroupByIdErrors, type PutMemberGroupByIdResponses, type PutMemberTypeByIdData, type PutMemberTypeByIdError, type PutMemberTypeByIdErrors, type PutMemberTypeByIdImportData, type PutMemberTypeByIdImportError, type PutMemberTypeByIdImportErrors, type PutMemberTypeByIdImportResponses, type PutMemberTypeByIdMoveData, type PutMemberTypeByIdMoveError, type PutMemberTypeByIdMoveErrors, type PutMemberTypeByIdMoveResponses, type PutMemberTypeByIdResponses, type PutMemberTypeFolderByIdData, type PutMemberTypeFolderByIdError, type PutMemberTypeFolderByIdErrors, type PutMemberTypeFolderByIdResponses, type PutPackageCreatedByIdData, type PutPackageCreatedByIdError, type PutPackageCreatedByIdErrors, type PutPackageCreatedByIdResponses, type PutPartialViewByPathData, type PutPartialViewByPathError, type PutPartialViewByPathErrors, type PutPartialViewByPathRenameData, type PutPartialViewByPathRenameError, type PutPartialViewByPathRenameErrors, type PutPartialViewByPathRenameResponses, type PutPartialViewByPathResponses, type PutProfilingStatusData, type PutProfilingStatusErrors, type PutProfilingStatusResponses, type PutRecycleBinDocumentByIdRestoreData, type PutRecycleBinDocumentByIdRestoreError, type PutRecycleBinDocumentByIdRestoreErrors, type PutRecycleBinDocumentByIdRestoreResponses, type PutRecycleBinElementByIdRestoreData, type PutRecycleBinElementByIdRestoreError, type PutRecycleBinElementByIdRestoreErrors, type PutRecycleBinElementByIdRestoreResponses, type PutRecycleBinElementFolderByIdRestoreData, type PutRecycleBinElementFolderByIdRestoreError, type PutRecycleBinElementFolderByIdRestoreErrors, type PutRecycleBinElementFolderByIdRestoreResponses, type PutRecycleBinMediaByIdRestoreData, type PutRecycleBinMediaByIdRestoreError, type PutRecycleBinMediaByIdRestoreErrors, type PutRecycleBinMediaByIdRestoreResponses, type PutScriptByPathData, type PutScriptByPathError, type PutScriptByPathErrors, type PutScriptByPathRenameData, type PutScriptByPathRenameError, type PutScriptByPathRenameErrors, type PutScriptByPathRenameResponses, type PutScriptByPathResponses, type PutStylesheetByPathData, type PutStylesheetByPathError, type PutStylesheetByPathErrors, type PutStylesheetByPathRenameData, type PutStylesheetByPathRenameError, type PutStylesheetByPathRenameErrors, type PutStylesheetByPathRenameResponses, type PutStylesheetByPathResponses, type PutTemplateByIdData, type PutTemplateByIdError, type PutTemplateByIdErrors, type PutTemplateByIdResponses, type PutUmbracoManagementApiV11DocumentByIdValidate11Data, type PutUmbracoManagementApiV11DocumentByIdValidate11Error, type PutUmbracoManagementApiV11DocumentByIdValidate11Errors, type PutUmbracoManagementApiV11DocumentByIdValidate11Responses, type PutUserByIdData, type PutUserByIdError, type PutUserByIdErrors, type PutUserByIdResponses, type PutUserCurrentProfileData, type PutUserCurrentProfileError, type PutUserCurrentProfileErrors, type PutUserCurrentProfileResponses, type PutUserDataData, type PutUserDataError, type PutUserDataErrors, type PutUserDataResponses, type PutUserGroupByIdData, type PutUserGroupByIdError, type PutUserGroupByIdErrors, type PutUserGroupByIdResponses, type PutWebhookByIdData, type PutWebhookByIdError, type PutWebhookByIdErrors, type PutWebhookByIdResponses, type RebuildStatusModel, RedirectStatusModel, type RedirectUrlResponseModel, type RedirectUrlStatusResponseModel, type ReferenceByIdModel, type RelationReferenceModel, type RelationResponseModel, type RelationTypeItemResponseModel, type RelationTypeResponseModel, type RenamePartialViewRequestModel, type RenameScriptRequestModel, type RenameStylesheetRequestModel, type ResendInviteUserRequestModel, type ResetPasswordRequestModel, type ResetPasswordTokenRequestModel, type ResetPasswordUserResponseModel, RuntimeLevelModel, RuntimeModeModel, type SavedLogSearchRequestModel, type SavedLogSearchResponseModel, type ScheduleRequestModel, type ScriptFolderResponseModel, type ScriptItemResponseModel, type ScriptResponseModel, type SearcherResponseModel, type SearchResultResponseModel, type SecurityConfigurationResponseModel, type SegmentResponseModel, type ServerConfigurationItemResponseModel, type ServerConfigurationResponseModel, type ServerInformationResponseModel, type ServerStatusResponseModel, type ServerTroubleshootingResponseModel, type SetAvatarRequestModel, type SignalRClientSettingsResponseModel, type SortDocumentChildrenByFieldRequestModel, type SortingRequestModel, type SortMediaChildrenByFieldRequestModel, type StaticFileItemResponseModel, StatusResultTypeModel, type StylesheetFolderResponseModel, type StylesheetItemResponseModel, type StylesheetResponseModel, type SubsetDataTypeTreeItemResponseModel, type SubsetDocumentBlueprintTreeItemResponseModel, type SubsetDocumentRecycleBinItemResponseModel, type SubsetDocumentTreeItemResponseModel, type SubsetDocumentTypeTreeItemResponseModel, type SubsetElementRecycleBinItemResponseModel, type SubsetElementTreeItemResponseModel, type SubsetFileSystemTreeItemPresentationModel, type SubsetMediaRecycleBinItemResponseModel, type SubsetMediaTreeItemResponseModel, type SubsetMediaTypeTreeItemResponseModel, type SubsetMemberTypeTreeItemResponseModel, type SubsetNamedEntityTreeItemResponseModel, type TagResponseModel, TelemetryLevelModel, type TelemetryRequestModel, type TelemetryResponseModel, type TemplateConfigurationResponseModel, type TemplateItemResponseModel, type TemplateQueryExecuteFilterPresentationModel, type TemplateQueryExecuteModel, type TemplateQueryExecuteSortModel, type TemplateQueryOperatorModel, type TemplateQueryPropertyPresentationModel, TemplateQueryPropertyTypeModel, type TemplateQueryResultItemPresentationModel, type TemplateQueryResultResponseModel, type TemplateQuerySettingsResponseModel, type TemplateResponseModel, type TemporaryFileConfigurationResponseModel, type TemporaryFileResponseModel, type TrackedReferenceDocumentTypeModel, type TrackedReferenceMediaTypeModel, type TrackedReferenceMemberTypeModel, type TreeItemKindModel, type UnlockUsersRequestModel, type UnpublishDocumentRequestModel, type UnpublishElementRequestModel, type UpdateAndPublishDocumentRequestModel, type UpdateAndPublishElementRequestModel, type UpdateCurrentUserRequestModel, type UpdateDataTypeRequestModel, type UpdateDictionaryItemRequestModel, type UpdateDocumentBlueprintRequestModel, type UpdateDocumentNotificationsRequestModel, type UpdateDocumentRequestModel, type UpdateDocumentTypePropertyTypeContainerRequestModel, type UpdateDocumentTypePropertyTypeRequestModel, type UpdateDocumentTypeRequestModel, type UpdateDomainsRequestModel, type UpdateElementRequestModel, type UpdateFolderResponseModel, type UpdateLanguageRequestModel, type UpdateMediaRequestModel, type UpdateMediaTypePropertyTypeContainerRequestModel, type UpdateMediaTypePropertyTypeRequestModel, type UpdateMediaTypeRequestModel, type UpdateMemberGroupRequestModel, type UpdateMemberRequestModel, type UpdateMemberTypePropertyTypeContainerRequestModel, type UpdateMemberTypePropertyTypeRequestModel, type UpdateMemberTypeRequestModel, type UpdatePackageRequestModel, type UpdatePartialViewRequestModel, type UpdateScriptRequestModel, type UpdateStylesheetRequestModel, type UpdateTemplateRequestModel, type UpdateUserDataRequestModel, type UpdateUserGroupRequestModel, type UpdateUserGroupsOnUserRequestModel, type UpdateUserRequestModel, type UpdateWebhookRequestModel, type UpgradeCheckResponseModel, type UpgradeSettingsResponseModel, type UserConfigurationResponseModel, type UserDataModel, UserDataOperationStatusModel, type UserDataResponseModel, type UserExternalLoginProviderModel, type UserGroupItemResponseModel, type UserGroupResponseModel, type UserInstallRequestModel, type UserItemResponseModel, UserKindModel, UserOrderModel, type UserPermissionModel, type UserPermissionsResponseModel, type UserResponseModel, type UserSettingsPresentationModel, UserStateModel, type UserTwoFactorProviderModel, type ValidateUpdateDocumentRequestModel, type ValidateUpdateElementRequestModel, type VariantItemResponseModel, type VerifyInviteUserRequestModel, type VerifyInviteUserResponseModel, type VerifyResetPasswordResponseModel, type VerifyResetPasswordTokenRequestModel, type WebhookEventModel, type WebhookEventResponseModel, type WebhookItemResponseModel, type WebhookLogResponseModel, type WebhookResponseModel } from './types.gen'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/sdk.gen.ts b/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/sdk.gen.ts index d0c335099950..b2073d407d0e 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/sdk.gen.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/sdk.gen.ts @@ -2,7 +2,7 @@ import { type Client, formDataBodySerializer, type Options as Options2, type TDataShape } from './client'; import { client } from './client.gen'; -import type { DeleteDataTypeByIdData, DeleteDataTypeByIdErrors, DeleteDataTypeByIdResponses, DeleteDataTypeFolderByIdData, DeleteDataTypeFolderByIdErrors, DeleteDataTypeFolderByIdResponses, DeleteDictionaryByIdData, DeleteDictionaryByIdErrors, DeleteDictionaryByIdResponses, DeleteDocumentBlueprintByIdData, DeleteDocumentBlueprintByIdErrors, DeleteDocumentBlueprintByIdResponses, DeleteDocumentBlueprintFolderByIdData, DeleteDocumentBlueprintFolderByIdErrors, DeleteDocumentBlueprintFolderByIdResponses, DeleteDocumentByIdData, DeleteDocumentByIdErrors, DeleteDocumentByIdPublicAccessData, DeleteDocumentByIdPublicAccessErrors, DeleteDocumentByIdPublicAccessResponses, DeleteDocumentByIdResponses, DeleteDocumentTypeByIdData, DeleteDocumentTypeByIdErrors, DeleteDocumentTypeByIdResponses, DeleteDocumentTypeFolderByIdData, DeleteDocumentTypeFolderByIdErrors, DeleteDocumentTypeFolderByIdResponses, DeleteElementByIdData, DeleteElementByIdErrors, DeleteElementByIdResponses, DeleteElementFolderByIdData, DeleteElementFolderByIdErrors, DeleteElementFolderByIdResponses, DeleteLanguageByIsoCodeData, DeleteLanguageByIsoCodeErrors, DeleteLanguageByIsoCodeResponses, DeleteLogViewerSavedSearchByNameData, DeleteLogViewerSavedSearchByNameErrors, DeleteLogViewerSavedSearchByNameResponses, DeleteMediaByIdData, DeleteMediaByIdErrors, DeleteMediaByIdResponses, DeleteMediaTypeByIdData, DeleteMediaTypeByIdErrors, DeleteMediaTypeByIdResponses, DeleteMediaTypeFolderByIdData, DeleteMediaTypeFolderByIdErrors, DeleteMediaTypeFolderByIdResponses, DeleteMemberByIdData, DeleteMemberByIdErrors, DeleteMemberByIdResponses, DeleteMemberGroupByIdData, DeleteMemberGroupByIdErrors, DeleteMemberGroupByIdResponses, DeleteMemberTypeByIdData, DeleteMemberTypeByIdErrors, DeleteMemberTypeByIdResponses, DeleteMemberTypeFolderByIdData, DeleteMemberTypeFolderByIdErrors, DeleteMemberTypeFolderByIdResponses, DeletePackageCreatedByIdData, DeletePackageCreatedByIdErrors, DeletePackageCreatedByIdResponses, DeletePartialViewByPathData, DeletePartialViewByPathErrors, DeletePartialViewByPathResponses, DeletePartialViewFolderByPathData, DeletePartialViewFolderByPathErrors, DeletePartialViewFolderByPathResponses, DeletePreviewData, DeletePreviewResponses, DeleteRecycleBinDocumentByIdData, DeleteRecycleBinDocumentByIdErrors, DeleteRecycleBinDocumentByIdResponses, DeleteRecycleBinDocumentData, DeleteRecycleBinDocumentErrors, DeleteRecycleBinDocumentResponses, DeleteRecycleBinElementByIdData, DeleteRecycleBinElementByIdErrors, DeleteRecycleBinElementByIdResponses, DeleteRecycleBinElementData, DeleteRecycleBinElementErrors, DeleteRecycleBinElementFolderByIdData, DeleteRecycleBinElementFolderByIdErrors, DeleteRecycleBinElementFolderByIdResponses, DeleteRecycleBinElementResponses, DeleteRecycleBinMediaByIdData, DeleteRecycleBinMediaByIdErrors, DeleteRecycleBinMediaByIdResponses, DeleteRecycleBinMediaData, DeleteRecycleBinMediaErrors, DeleteRecycleBinMediaResponses, DeleteRedirectManagementByIdData, DeleteRedirectManagementByIdErrors, DeleteRedirectManagementByIdResponses, DeleteScriptByPathData, DeleteScriptByPathErrors, DeleteScriptByPathResponses, DeleteScriptFolderByPathData, DeleteScriptFolderByPathErrors, DeleteScriptFolderByPathResponses, DeleteStylesheetByPathData, DeleteStylesheetByPathErrors, DeleteStylesheetByPathResponses, DeleteStylesheetFolderByPathData, DeleteStylesheetFolderByPathErrors, DeleteStylesheetFolderByPathResponses, DeleteTemplateByIdData, DeleteTemplateByIdErrors, DeleteTemplateByIdResponses, DeleteTemporaryFileByIdData, DeleteTemporaryFileByIdErrors, DeleteTemporaryFileByIdResponses, DeleteUserAvatarByIdData, DeleteUserAvatarByIdErrors, DeleteUserAvatarByIdResponses, DeleteUserById2FaByProviderNameData, DeleteUserById2FaByProviderNameErrors, DeleteUserById2FaByProviderNameResponses, DeleteUserByIdClientCredentialsByClientIdData, DeleteUserByIdClientCredentialsByClientIdErrors, DeleteUserByIdClientCredentialsByClientIdResponses, DeleteUserByIdData, DeleteUserByIdErrors, DeleteUserByIdResponses, DeleteUserCurrent2FaByProviderNameData, DeleteUserCurrent2FaByProviderNameErrors, DeleteUserCurrent2FaByProviderNameResponses, DeleteUserCurrentAvatarData, DeleteUserCurrentAvatarErrors, DeleteUserCurrentAvatarResponses, DeleteUserData, DeleteUserDataByIdData, DeleteUserDataByIdErrors, DeleteUserDataByIdResponses, DeleteUserErrors, DeleteUserGroupByIdData, DeleteUserGroupByIdErrors, DeleteUserGroupByIdResponses, DeleteUserGroupByIdUsersData, DeleteUserGroupByIdUsersErrors, DeleteUserGroupByIdUsersResponses, DeleteUserGroupData, DeleteUserGroupErrors, DeleteUserGroupResponses, DeleteUserResponses, DeleteWebhookByIdData, DeleteWebhookByIdErrors, DeleteWebhookByIdResponses, GetCollectionDocumentByIdData, GetCollectionDocumentByIdErrors, GetCollectionDocumentByIdResponses, GetCollectionMediaData, GetCollectionMediaErrors, GetCollectionMediaResponses, GetCultureData, GetCultureErrors, GetCultureResponses, GetDataTypeBatchData, GetDataTypeBatchErrors, GetDataTypeBatchResponses, GetDataTypeByIdData, GetDataTypeByIdErrors, GetDataTypeByIdIsUsedData, GetDataTypeByIdIsUsedErrors, GetDataTypeByIdIsUsedResponses, GetDataTypeByIdReferencedByData, GetDataTypeByIdReferencedByErrors, GetDataTypeByIdReferencedByResponses, GetDataTypeByIdResponses, GetDataTypeByIdSchemaData, GetDataTypeByIdSchemaErrors, GetDataTypeByIdSchemaResponses, GetDataTypeConfigurationData, GetDataTypeConfigurationErrors, GetDataTypeConfigurationResponses, GetDataTypeFolderByIdData, GetDataTypeFolderByIdErrors, GetDataTypeFolderByIdResponses, GetDataTypeSchemasBatchData, GetDataTypeSchemasBatchErrors, GetDataTypeSchemasBatchResponses, GetDictionaryByIdData, GetDictionaryByIdErrors, GetDictionaryByIdExportData, GetDictionaryByIdExportErrors, GetDictionaryByIdExportResponses, GetDictionaryByIdResponses, GetDictionaryData, GetDictionaryErrors, GetDictionaryResponses, GetDocumentAreReferencedData, GetDocumentAreReferencedErrors, GetDocumentAreReferencedResponses, GetDocumentBlueprintByIdAuditLogData, GetDocumentBlueprintByIdAuditLogErrors, GetDocumentBlueprintByIdAuditLogResponses, GetDocumentBlueprintByIdData, GetDocumentBlueprintByIdErrors, GetDocumentBlueprintByIdResponses, GetDocumentBlueprintByIdScaffoldData, GetDocumentBlueprintByIdScaffoldErrors, GetDocumentBlueprintByIdScaffoldResponses, GetDocumentBlueprintFolderByIdData, GetDocumentBlueprintFolderByIdErrors, GetDocumentBlueprintFolderByIdResponses, GetDocumentByIdAuditLogData, GetDocumentByIdAuditLogErrors, GetDocumentByIdAuditLogResponses, GetDocumentByIdAvailableSegmentOptionsData, GetDocumentByIdAvailableSegmentOptionsErrors, GetDocumentByIdAvailableSegmentOptionsResponses, GetDocumentByIdData, GetDocumentByIdDomainsData, GetDocumentByIdDomainsErrors, GetDocumentByIdDomainsResponses, GetDocumentByIdErrors, GetDocumentByIdNotificationsData, GetDocumentByIdNotificationsErrors, GetDocumentByIdNotificationsResponses, GetDocumentByIdPreviewUrlData, GetDocumentByIdPreviewUrlErrors, GetDocumentByIdPreviewUrlResponses, GetDocumentByIdPublicAccessData, GetDocumentByIdPublicAccessErrors, GetDocumentByIdPublicAccessResponses, GetDocumentByIdPublishedData, GetDocumentByIdPublishedErrors, GetDocumentByIdPublishedResponses, GetDocumentByIdPublishWithDescendantsResultByTaskIdData, GetDocumentByIdPublishWithDescendantsResultByTaskIdErrors, GetDocumentByIdPublishWithDescendantsResultByTaskIdResponses, GetDocumentByIdReferencedByData, GetDocumentByIdReferencedByErrors, GetDocumentByIdReferencedByResponses, GetDocumentByIdReferencedDescendantsData, GetDocumentByIdReferencedDescendantsErrors, GetDocumentByIdReferencedDescendantsResponses, GetDocumentByIdResponses, GetDocumentConfigurationData, GetDocumentConfigurationErrors, GetDocumentConfigurationResponses, GetDocumentTypeAllowedAtRootData, GetDocumentTypeAllowedAtRootErrors, GetDocumentTypeAllowedAtRootResponses, GetDocumentTypeAllowedInLibraryData, GetDocumentTypeAllowedInLibraryErrors, GetDocumentTypeAllowedInLibraryResponses, GetDocumentTypeBatchData, GetDocumentTypeBatchErrors, GetDocumentTypeBatchResponses, GetDocumentTypeByIdAllowedChildrenData, GetDocumentTypeByIdAllowedChildrenErrors, GetDocumentTypeByIdAllowedChildrenResponses, GetDocumentTypeByIdAllowedParentsData, GetDocumentTypeByIdAllowedParentsErrors, GetDocumentTypeByIdAllowedParentsResponses, GetDocumentTypeByIdBlueprintData, GetDocumentTypeByIdBlueprintErrors, GetDocumentTypeByIdBlueprintResponses, GetDocumentTypeByIdCompositionReferencesData, GetDocumentTypeByIdCompositionReferencesErrors, GetDocumentTypeByIdCompositionReferencesResponses, GetDocumentTypeByIdData, GetDocumentTypeByIdErrors, GetDocumentTypeByIdExportData, GetDocumentTypeByIdExportErrors, GetDocumentTypeByIdExportResponses, GetDocumentTypeByIdResponses, GetDocumentTypeByIdSchemaData, GetDocumentTypeByIdSchemaErrors, GetDocumentTypeByIdSchemaResponses, GetDocumentTypeConfigurationData, GetDocumentTypeConfigurationErrors, GetDocumentTypeConfigurationResponses, GetDocumentTypeFolderByIdData, GetDocumentTypeFolderByIdErrors, GetDocumentTypeFolderByIdResponses, GetDocumentUrlsData, GetDocumentUrlsErrors, GetDocumentUrlsResponses, GetDocumentVersionByIdData, GetDocumentVersionByIdErrors, GetDocumentVersionByIdResponses, GetDocumentVersionData, GetDocumentVersionErrors, GetDocumentVersionResponses, GetDynamicRootStepsData, GetDynamicRootStepsErrors, GetDynamicRootStepsResponses, GetElementAreReferencedData, GetElementAreReferencedErrors, GetElementAreReferencedResponses, GetElementByIdAuditLogData, GetElementByIdAuditLogErrors, GetElementByIdAuditLogResponses, GetElementByIdData, GetElementByIdErrors, GetElementByIdPublishedData, GetElementByIdPublishedErrors, GetElementByIdPublishedResponses, GetElementByIdReferencedByData, GetElementByIdReferencedByErrors, GetElementByIdReferencedByResponses, GetElementByIdResponses, GetElementConfigurationData, GetElementConfigurationErrors, GetElementConfigurationResponses, GetElementFolderByIdData, GetElementFolderByIdErrors, GetElementFolderByIdReferencedDescendantsData, GetElementFolderByIdReferencedDescendantsErrors, GetElementFolderByIdReferencedDescendantsResponses, GetElementFolderByIdResponses, GetElementVersionByIdData, GetElementVersionByIdErrors, GetElementVersionByIdResponses, GetElementVersionData, GetElementVersionErrors, GetElementVersionResponses, GetFilterDataTypeData, GetFilterDataTypeErrors, GetFilterDataTypeResponses, GetFilterMemberData, GetFilterMemberErrors, GetFilterMemberResponses, GetFilterUserData, GetFilterUserErrors, GetFilterUserGroupData, GetFilterUserGroupErrors, GetFilterUserGroupResponses, GetFilterUserResponses, GetHealthCheckGroupByNameData, GetHealthCheckGroupByNameErrors, GetHealthCheckGroupByNameResponses, GetHealthCheckGroupData, GetHealthCheckGroupErrors, GetHealthCheckGroupResponses, GetHelpData, GetHelpErrors, GetHelpResponses, GetImagingResizeUrlsData, GetImagingResizeUrlsErrors, GetImagingResizeUrlsResponses, GetImportAnalyzeData, GetImportAnalyzeErrors, GetImportAnalyzeResponses, GetIndexerByIndexNameData, GetIndexerByIndexNameErrors, GetIndexerByIndexNameResponses, GetIndexerData, GetIndexerErrors, GetIndexerResponses, GetInstallSettingsData, GetInstallSettingsErrors, GetInstallSettingsResponses, GetItemDataTypeAncestorsData, GetItemDataTypeAncestorsErrors, GetItemDataTypeAncestorsResponses, GetItemDataTypeData, GetItemDataTypeErrors, GetItemDataTypeResponses, GetItemDataTypeSearchData, GetItemDataTypeSearchErrors, GetItemDataTypeSearchResponses, GetItemDictionaryData, GetItemDictionaryErrors, GetItemDictionaryResponses, GetItemDocumentAncestorsData, GetItemDocumentAncestorsErrors, GetItemDocumentAncestorsResponses, GetItemDocumentBlueprintData, GetItemDocumentBlueprintErrors, GetItemDocumentBlueprintResponses, GetItemDocumentData, GetItemDocumentErrors, GetItemDocumentResponses, GetItemDocumentSearchData, GetItemDocumentSearchErrors, GetItemDocumentSearchResponses, GetItemDocumentTypeAncestorsData, GetItemDocumentTypeAncestorsErrors, GetItemDocumentTypeAncestorsResponses, GetItemDocumentTypeData, GetItemDocumentTypeErrors, GetItemDocumentTypeResponses, GetItemDocumentTypeSearchData, GetItemDocumentTypeSearchErrors, GetItemDocumentTypeSearchResponses, GetItemElementAncestorsData, GetItemElementAncestorsErrors, GetItemElementAncestorsResponses, GetItemElementData, GetItemElementErrors, GetItemElementFolderData, GetItemElementFolderErrors, GetItemElementFolderResponses, GetItemElementResponses, GetItemElementSearchData, GetItemElementSearchErrors, GetItemElementSearchResponses, GetItemLanguageData, GetItemLanguageDefaultData, GetItemLanguageDefaultErrors, GetItemLanguageDefaultResponses, GetItemLanguageErrors, GetItemLanguageResponses, GetItemMediaAncestorsData, GetItemMediaAncestorsErrors, GetItemMediaAncestorsResponses, GetItemMediaData, GetItemMediaErrors, GetItemMediaResponses, GetItemMediaSearchData, GetItemMediaSearchErrors, GetItemMediaSearchResponses, GetItemMediaTypeAllowedData, GetItemMediaTypeAllowedErrors, GetItemMediaTypeAllowedResponses, GetItemMediaTypeAncestorsData, GetItemMediaTypeAncestorsErrors, GetItemMediaTypeAncestorsResponses, GetItemMediaTypeData, GetItemMediaTypeErrors, GetItemMediaTypeFoldersData, GetItemMediaTypeFoldersErrors, GetItemMediaTypeFoldersResponses, GetItemMediaTypeResponses, GetItemMediaTypeSearchData, GetItemMediaTypeSearchErrors, GetItemMediaTypeSearchResponses, GetItemMemberAncestorsData, GetItemMemberAncestorsErrors, GetItemMemberAncestorsResponses, GetItemMemberData, GetItemMemberErrors, GetItemMemberGroupData, GetItemMemberGroupErrors, GetItemMemberGroupResponses, GetItemMemberResponses, GetItemMemberSearchData, GetItemMemberSearchErrors, GetItemMemberSearchResponses, GetItemMemberTypeAncestorsData, GetItemMemberTypeAncestorsErrors, GetItemMemberTypeAncestorsResponses, GetItemMemberTypeData, GetItemMemberTypeErrors, GetItemMemberTypeResponses, GetItemMemberTypeSearchData, GetItemMemberTypeSearchErrors, GetItemMemberTypeSearchResponses, GetItemPartialViewData, GetItemPartialViewErrors, GetItemPartialViewResponses, GetItemRelationTypeData, GetItemRelationTypeErrors, GetItemRelationTypeResponses, GetItemScriptData, GetItemScriptErrors, GetItemScriptResponses, GetItemStaticFileData, GetItemStaticFileErrors, GetItemStaticFileResponses, GetItemStylesheetData, GetItemStylesheetErrors, GetItemStylesheetResponses, GetItemTemplateAncestorsData, GetItemTemplateAncestorsErrors, GetItemTemplateAncestorsResponses, GetItemTemplateData, GetItemTemplateErrors, GetItemTemplateResponses, GetItemTemplateSearchData, GetItemTemplateSearchErrors, GetItemTemplateSearchResponses, GetItemUserData, GetItemUserErrors, GetItemUserGroupData, GetItemUserGroupErrors, GetItemUserGroupResponses, GetItemUserResponses, GetItemWebhookData, GetItemWebhookErrors, GetItemWebhookResponses, GetLanguageByIsoCodeData, GetLanguageByIsoCodeErrors, GetLanguageByIsoCodeResponses, GetLanguageData, GetLanguageErrors, GetLanguageResponses, GetLogViewerLevelCountData, GetLogViewerLevelCountErrors, GetLogViewerLevelCountResponses, GetLogViewerLevelData, GetLogViewerLevelErrors, GetLogViewerLevelResponses, GetLogViewerLogData, GetLogViewerLogErrors, GetLogViewerLogResponses, GetLogViewerMessageTemplateData, GetLogViewerMessageTemplateErrors, GetLogViewerMessageTemplateResponses, GetLogViewerSavedSearchByNameData, GetLogViewerSavedSearchByNameErrors, GetLogViewerSavedSearchByNameResponses, GetLogViewerSavedSearchData, GetLogViewerSavedSearchErrors, GetLogViewerSavedSearchResponses, GetLogViewerValidateLogsSizeData, GetLogViewerValidateLogsSizeErrors, GetLogViewerValidateLogsSizeResponses, GetManifestManifestData, GetManifestManifestErrors, GetManifestManifestPrivateData, GetManifestManifestPrivateErrors, GetManifestManifestPrivateResponses, GetManifestManifestPublicData, GetManifestManifestPublicResponses, GetManifestManifestResponses, GetMediaAreReferencedData, GetMediaAreReferencedErrors, GetMediaAreReferencedResponses, GetMediaByIdAuditLogData, GetMediaByIdAuditLogErrors, GetMediaByIdAuditLogResponses, GetMediaByIdData, GetMediaByIdErrors, GetMediaByIdReferencedByData, GetMediaByIdReferencedByErrors, GetMediaByIdReferencedByResponses, GetMediaByIdReferencedDescendantsData, GetMediaByIdReferencedDescendantsErrors, GetMediaByIdReferencedDescendantsResponses, GetMediaByIdResponses, GetMediaConfigurationData, GetMediaConfigurationErrors, GetMediaConfigurationResponses, GetMediaTypeAllowedAtRootData, GetMediaTypeAllowedAtRootErrors, GetMediaTypeAllowedAtRootResponses, GetMediaTypeBatchData, GetMediaTypeBatchErrors, GetMediaTypeBatchResponses, GetMediaTypeByIdAllowedChildrenData, GetMediaTypeByIdAllowedChildrenErrors, GetMediaTypeByIdAllowedChildrenResponses, GetMediaTypeByIdAllowedParentsData, GetMediaTypeByIdAllowedParentsErrors, GetMediaTypeByIdAllowedParentsResponses, GetMediaTypeByIdCompositionReferencesData, GetMediaTypeByIdCompositionReferencesErrors, GetMediaTypeByIdCompositionReferencesResponses, GetMediaTypeByIdData, GetMediaTypeByIdErrors, GetMediaTypeByIdExportData, GetMediaTypeByIdExportErrors, GetMediaTypeByIdExportResponses, GetMediaTypeByIdResponses, GetMediaTypeByIdSchemaData, GetMediaTypeByIdSchemaErrors, GetMediaTypeByIdSchemaResponses, GetMediaTypeConfigurationData, GetMediaTypeConfigurationErrors, GetMediaTypeConfigurationResponses, GetMediaTypeFolderByIdData, GetMediaTypeFolderByIdErrors, GetMediaTypeFolderByIdResponses, GetMediaUrlsData, GetMediaUrlsErrors, GetMediaUrlsResponses, GetMemberAreReferencedData, GetMemberAreReferencedErrors, GetMemberAreReferencedResponses, GetMemberByIdData, GetMemberByIdErrors, GetMemberByIdReferencedByData, GetMemberByIdReferencedByErrors, GetMemberByIdReferencedByResponses, GetMemberByIdReferencedDescendantsData, GetMemberByIdReferencedDescendantsErrors, GetMemberByIdReferencedDescendantsResponses, GetMemberByIdResponses, GetMemberGroupByIdData, GetMemberGroupByIdErrors, GetMemberGroupByIdResponses, GetMemberGroupData, GetMemberGroupErrors, GetMemberGroupResponses, GetMemberTypeAllowedAtRootData, GetMemberTypeAllowedAtRootErrors, GetMemberTypeAllowedAtRootResponses, GetMemberTypeBatchData, GetMemberTypeBatchErrors, GetMemberTypeBatchResponses, GetMemberTypeByIdCompositionReferencesData, GetMemberTypeByIdCompositionReferencesErrors, GetMemberTypeByIdCompositionReferencesResponses, GetMemberTypeByIdData, GetMemberTypeByIdErrors, GetMemberTypeByIdExportData, GetMemberTypeByIdExportErrors, GetMemberTypeByIdExportResponses, GetMemberTypeByIdResponses, GetMemberTypeByIdSchemaData, GetMemberTypeByIdSchemaErrors, GetMemberTypeByIdSchemaResponses, GetMemberTypeConfigurationData, GetMemberTypeConfigurationErrors, GetMemberTypeConfigurationResponses, GetMemberTypeFolderByIdData, GetMemberTypeFolderByIdErrors, GetMemberTypeFolderByIdResponses, GetModelsBuilderDashboardData, GetModelsBuilderDashboardErrors, GetModelsBuilderDashboardResponses, GetModelsBuilderStatusData, GetModelsBuilderStatusErrors, GetModelsBuilderStatusResponses, GetNewsDashboardData, GetNewsDashboardErrors, GetNewsDashboardResponses, GetObjectTypesData, GetObjectTypesErrors, GetObjectTypesResponses, GetOembedQueryData, GetOembedQueryErrors, GetOembedQueryResponses, GetPackageConfigurationData, GetPackageConfigurationErrors, GetPackageConfigurationResponses, GetPackageCreatedByIdData, GetPackageCreatedByIdDownloadData, GetPackageCreatedByIdDownloadErrors, GetPackageCreatedByIdDownloadResponses, GetPackageCreatedByIdErrors, GetPackageCreatedByIdResponses, GetPackageCreatedData, GetPackageCreatedErrors, GetPackageCreatedResponses, GetPackageMigrationStatusData, GetPackageMigrationStatusErrors, GetPackageMigrationStatusResponses, GetPartialViewByPathData, GetPartialViewByPathErrors, GetPartialViewByPathResponses, GetPartialViewFolderByPathData, GetPartialViewFolderByPathErrors, GetPartialViewFolderByPathResponses, GetPartialViewSnippetByIdData, GetPartialViewSnippetByIdErrors, GetPartialViewSnippetByIdResponses, GetPartialViewSnippetData, GetPartialViewSnippetErrors, GetPartialViewSnippetResponses, GetProfilingStatusData, GetProfilingStatusErrors, GetProfilingStatusResponses, GetPropertyTypeIsUsedData, GetPropertyTypeIsUsedErrors, GetPropertyTypeIsUsedResponses, GetPublishedCacheRebuildStatusData, GetPublishedCacheRebuildStatusErrors, GetPublishedCacheRebuildStatusResponses, GetRecycleBinDocumentByIdOriginalParentData, GetRecycleBinDocumentByIdOriginalParentErrors, GetRecycleBinDocumentByIdOriginalParentResponses, GetRecycleBinDocumentChildrenData, GetRecycleBinDocumentChildrenErrors, GetRecycleBinDocumentChildrenResponses, GetRecycleBinDocumentReferencedByData, GetRecycleBinDocumentReferencedByErrors, GetRecycleBinDocumentReferencedByResponses, GetRecycleBinDocumentRootData, GetRecycleBinDocumentRootErrors, GetRecycleBinDocumentRootResponses, GetRecycleBinDocumentSiblingsData, GetRecycleBinDocumentSiblingsErrors, GetRecycleBinDocumentSiblingsResponses, GetRecycleBinElementByIdOriginalParentData, GetRecycleBinElementByIdOriginalParentErrors, GetRecycleBinElementByIdOriginalParentResponses, GetRecycleBinElementChildrenData, GetRecycleBinElementChildrenErrors, GetRecycleBinElementChildrenResponses, GetRecycleBinElementFolderByIdOriginalParentData, GetRecycleBinElementFolderByIdOriginalParentErrors, GetRecycleBinElementFolderByIdOriginalParentResponses, GetRecycleBinElementReferencedByData, GetRecycleBinElementReferencedByErrors, GetRecycleBinElementReferencedByResponses, GetRecycleBinElementRootData, GetRecycleBinElementRootErrors, GetRecycleBinElementRootResponses, GetRecycleBinElementSiblingsData, GetRecycleBinElementSiblingsErrors, GetRecycleBinElementSiblingsResponses, GetRecycleBinMediaByIdOriginalParentData, GetRecycleBinMediaByIdOriginalParentErrors, GetRecycleBinMediaByIdOriginalParentResponses, GetRecycleBinMediaChildrenData, GetRecycleBinMediaChildrenErrors, GetRecycleBinMediaChildrenResponses, GetRecycleBinMediaReferencedByData, GetRecycleBinMediaReferencedByErrors, GetRecycleBinMediaReferencedByResponses, GetRecycleBinMediaRootData, GetRecycleBinMediaRootErrors, GetRecycleBinMediaRootResponses, GetRecycleBinMediaSiblingsData, GetRecycleBinMediaSiblingsErrors, GetRecycleBinMediaSiblingsResponses, GetRedirectManagementByIdData, GetRedirectManagementByIdErrors, GetRedirectManagementByIdResponses, GetRedirectManagementData, GetRedirectManagementErrors, GetRedirectManagementResponses, GetRedirectManagementStatusData, GetRedirectManagementStatusErrors, GetRedirectManagementStatusResponses, GetRelationByRelationTypeIdData, GetRelationByRelationTypeIdErrors, GetRelationByRelationTypeIdResponses, GetRelationTypeByIdData, GetRelationTypeByIdErrors, GetRelationTypeByIdResponses, GetRelationTypeData, GetRelationTypeErrors, GetRelationTypeResponses, GetScriptByPathData, GetScriptByPathErrors, GetScriptByPathResponses, GetScriptFolderByPathData, GetScriptFolderByPathErrors, GetScriptFolderByPathResponses, GetSearcherBySearcherNameQueryData, GetSearcherBySearcherNameQueryErrors, GetSearcherBySearcherNameQueryResponses, GetSearcherData, GetSearcherErrors, GetSearcherResponses, GetSecurityConfigurationData, GetSecurityConfigurationErrors, GetSecurityConfigurationResponses, GetSegmentData, GetSegmentErrors, GetSegmentResponses, GetServerConfigurationData, GetServerConfigurationResponses, GetServerInformationData, GetServerInformationErrors, GetServerInformationResponses, GetServerStatusData, GetServerStatusErrors, GetServerStatusResponses, GetServerTroubleshootingData, GetServerTroubleshootingErrors, GetServerTroubleshootingResponses, GetServerUpgradeCheckData, GetServerUpgradeCheckErrors, GetServerUpgradeCheckResponses, GetStylesheetByPathData, GetStylesheetByPathErrors, GetStylesheetByPathResponses, GetStylesheetFolderByPathData, GetStylesheetFolderByPathErrors, GetStylesheetFolderByPathResponses, GetTagData, GetTagErrors, GetTagResponses, GetTelemetryData, GetTelemetryErrors, GetTelemetryLevelData, GetTelemetryLevelErrors, GetTelemetryLevelResponses, GetTelemetryResponses, GetTemplateByIdData, GetTemplateByIdErrors, GetTemplateByIdResponses, GetTemplateConfigurationData, GetTemplateConfigurationErrors, GetTemplateConfigurationResponses, GetTemplateQuerySettingsData, GetTemplateQuerySettingsErrors, GetTemplateQuerySettingsResponses, GetTemporaryFileByIdData, GetTemporaryFileByIdErrors, GetTemporaryFileByIdResponses, GetTemporaryFileConfigurationData, GetTemporaryFileConfigurationErrors, GetTemporaryFileConfigurationResponses, GetTreeDataTypeAncestorsData, GetTreeDataTypeAncestorsErrors, GetTreeDataTypeAncestorsResponses, GetTreeDataTypeChildrenData, GetTreeDataTypeChildrenErrors, GetTreeDataTypeChildrenResponses, GetTreeDataTypeRootData, GetTreeDataTypeRootErrors, GetTreeDataTypeRootResponses, GetTreeDataTypeSearchData, GetTreeDataTypeSearchErrors, GetTreeDataTypeSearchResponses, GetTreeDataTypeSiblingsData, GetTreeDataTypeSiblingsErrors, GetTreeDataTypeSiblingsResponses, GetTreeDictionaryAncestorsData, GetTreeDictionaryAncestorsErrors, GetTreeDictionaryAncestorsResponses, GetTreeDictionaryChildrenData, GetTreeDictionaryChildrenErrors, GetTreeDictionaryChildrenResponses, GetTreeDictionaryRootData, GetTreeDictionaryRootErrors, GetTreeDictionaryRootResponses, GetTreeDocumentAncestorsData, GetTreeDocumentAncestorsErrors, GetTreeDocumentAncestorsResponses, GetTreeDocumentBlueprintAncestorsData, GetTreeDocumentBlueprintAncestorsErrors, GetTreeDocumentBlueprintAncestorsResponses, GetTreeDocumentBlueprintChildrenData, GetTreeDocumentBlueprintChildrenErrors, GetTreeDocumentBlueprintChildrenResponses, GetTreeDocumentBlueprintRootData, GetTreeDocumentBlueprintRootErrors, GetTreeDocumentBlueprintRootResponses, GetTreeDocumentBlueprintSiblingsData, GetTreeDocumentBlueprintSiblingsErrors, GetTreeDocumentBlueprintSiblingsResponses, GetTreeDocumentChildrenData, GetTreeDocumentChildrenErrors, GetTreeDocumentChildrenResponses, GetTreeDocumentRootData, GetTreeDocumentRootErrors, GetTreeDocumentRootResponses, GetTreeDocumentSiblingsData, GetTreeDocumentSiblingsErrors, GetTreeDocumentSiblingsResponses, GetTreeDocumentTypeAncestorsData, GetTreeDocumentTypeAncestorsErrors, GetTreeDocumentTypeAncestorsResponses, GetTreeDocumentTypeChildrenData, GetTreeDocumentTypeChildrenErrors, GetTreeDocumentTypeChildrenResponses, GetTreeDocumentTypeRootData, GetTreeDocumentTypeRootErrors, GetTreeDocumentTypeRootResponses, GetTreeDocumentTypeSearchData, GetTreeDocumentTypeSearchErrors, GetTreeDocumentTypeSearchResponses, GetTreeDocumentTypeSiblingsData, GetTreeDocumentTypeSiblingsErrors, GetTreeDocumentTypeSiblingsResponses, GetTreeElementAncestorsData, GetTreeElementAncestorsErrors, GetTreeElementAncestorsResponses, GetTreeElementChildrenData, GetTreeElementChildrenErrors, GetTreeElementChildrenResponses, GetTreeElementRootData, GetTreeElementRootErrors, GetTreeElementRootResponses, GetTreeElementSiblingsData, GetTreeElementSiblingsErrors, GetTreeElementSiblingsResponses, GetTreeMediaAncestorsData, GetTreeMediaAncestorsErrors, GetTreeMediaAncestorsResponses, GetTreeMediaChildrenData, GetTreeMediaChildrenErrors, GetTreeMediaChildrenResponses, GetTreeMediaRootData, GetTreeMediaRootErrors, GetTreeMediaRootResponses, GetTreeMediaSiblingsData, GetTreeMediaSiblingsErrors, GetTreeMediaSiblingsResponses, GetTreeMediaTypeAncestorsData, GetTreeMediaTypeAncestorsErrors, GetTreeMediaTypeAncestorsResponses, GetTreeMediaTypeChildrenData, GetTreeMediaTypeChildrenErrors, GetTreeMediaTypeChildrenResponses, GetTreeMediaTypeRootData, GetTreeMediaTypeRootErrors, GetTreeMediaTypeRootResponses, GetTreeMediaTypeSiblingsData, GetTreeMediaTypeSiblingsErrors, GetTreeMediaTypeSiblingsResponses, GetTreeMemberGroupRootData, GetTreeMemberGroupRootErrors, GetTreeMemberGroupRootResponses, GetTreeMemberTypeAncestorsData, GetTreeMemberTypeAncestorsErrors, GetTreeMemberTypeAncestorsResponses, GetTreeMemberTypeChildrenData, GetTreeMemberTypeChildrenErrors, GetTreeMemberTypeChildrenResponses, GetTreeMemberTypeRootData, GetTreeMemberTypeRootErrors, GetTreeMemberTypeRootResponses, GetTreeMemberTypeSiblingsData, GetTreeMemberTypeSiblingsErrors, GetTreeMemberTypeSiblingsResponses, GetTreePartialViewAncestorsData, GetTreePartialViewAncestorsErrors, GetTreePartialViewAncestorsResponses, GetTreePartialViewChildrenData, GetTreePartialViewChildrenErrors, GetTreePartialViewChildrenResponses, GetTreePartialViewRootData, GetTreePartialViewRootErrors, GetTreePartialViewRootResponses, GetTreePartialViewSiblingsData, GetTreePartialViewSiblingsErrors, GetTreePartialViewSiblingsResponses, GetTreeScriptAncestorsData, GetTreeScriptAncestorsErrors, GetTreeScriptAncestorsResponses, GetTreeScriptChildrenData, GetTreeScriptChildrenErrors, GetTreeScriptChildrenResponses, GetTreeScriptRootData, GetTreeScriptRootErrors, GetTreeScriptRootResponses, GetTreeScriptSiblingsData, GetTreeScriptSiblingsErrors, GetTreeScriptSiblingsResponses, GetTreeStaticFileAncestorsData, GetTreeStaticFileAncestorsErrors, GetTreeStaticFileAncestorsResponses, GetTreeStaticFileChildrenData, GetTreeStaticFileChildrenErrors, GetTreeStaticFileChildrenResponses, GetTreeStaticFileRootData, GetTreeStaticFileRootErrors, GetTreeStaticFileRootResponses, GetTreeStylesheetAncestorsData, GetTreeStylesheetAncestorsErrors, GetTreeStylesheetAncestorsResponses, GetTreeStylesheetChildrenData, GetTreeStylesheetChildrenErrors, GetTreeStylesheetChildrenResponses, GetTreeStylesheetRootData, GetTreeStylesheetRootErrors, GetTreeStylesheetRootResponses, GetTreeStylesheetSiblingsData, GetTreeStylesheetSiblingsErrors, GetTreeStylesheetSiblingsResponses, GetTreeTemplateAncestorsData, GetTreeTemplateAncestorsErrors, GetTreeTemplateAncestorsResponses, GetTreeTemplateChildrenData, GetTreeTemplateChildrenErrors, GetTreeTemplateChildrenResponses, GetTreeTemplateRootData, GetTreeTemplateRootErrors, GetTreeTemplateRootResponses, GetTreeTemplateSiblingsData, GetTreeTemplateSiblingsErrors, GetTreeTemplateSiblingsResponses, GetUpgradeSettingsData, GetUpgradeSettingsErrors, GetUpgradeSettingsResponses, GetUserBatchData, GetUserBatchErrors, GetUserBatchResponses, GetUserById2FaData, GetUserById2FaErrors, GetUserById2FaResponses, GetUserByIdCalculateStartNodesData, GetUserByIdCalculateStartNodesErrors, GetUserByIdCalculateStartNodesResponses, GetUserByIdClientCredentialsData, GetUserByIdClientCredentialsErrors, GetUserByIdClientCredentialsResponses, GetUserByIdData, GetUserByIdErrors, GetUserByIdResponses, GetUserConfigurationData, GetUserConfigurationErrors, GetUserConfigurationResponses, GetUserCurrent2FaByProviderNameData, GetUserCurrent2FaByProviderNameErrors, GetUserCurrent2FaByProviderNameResponses, GetUserCurrent2FaData, GetUserCurrent2FaErrors, GetUserCurrent2FaResponses, GetUserCurrentConfigurationData, GetUserCurrentConfigurationErrors, GetUserCurrentConfigurationResponses, GetUserCurrentData, GetUserCurrentErrors, GetUserCurrentLoginProvidersData, GetUserCurrentLoginProvidersErrors, GetUserCurrentLoginProvidersResponses, GetUserCurrentPermissionsData, GetUserCurrentPermissionsDocumentData, GetUserCurrentPermissionsDocumentErrors, GetUserCurrentPermissionsDocumentResponses, GetUserCurrentPermissionsElementData, GetUserCurrentPermissionsElementErrors, GetUserCurrentPermissionsElementResponses, GetUserCurrentPermissionsErrors, GetUserCurrentPermissionsMediaData, GetUserCurrentPermissionsMediaErrors, GetUserCurrentPermissionsMediaResponses, GetUserCurrentPermissionsResponses, GetUserCurrentResponses, GetUserData, GetUserDataByIdData, GetUserDataByIdErrors, GetUserDataByIdResponses, GetUserDataData, GetUserDataErrors, GetUserDataResponses, GetUserErrors, GetUserGroupByIdData, GetUserGroupByIdErrors, GetUserGroupByIdResponses, GetUserGroupData, GetUserGroupErrors, GetUserGroupResponses, GetUserResponses, GetWebhookByIdData, GetWebhookByIdErrors, GetWebhookByIdLogsData, GetWebhookByIdLogsErrors, GetWebhookByIdLogsResponses, GetWebhookByIdResponses, GetWebhookData, GetWebhookErrors, GetWebhookEventsData, GetWebhookEventsErrors, GetWebhookEventsResponses, GetWebhookLogsData, GetWebhookLogsErrors, GetWebhookLogsResponses, GetWebhookResponses, PatchDocumentByIdPatchData, PatchDocumentByIdPatchErrors, PatchDocumentByIdPatchResponses, PostDataTypeByIdCopyData, PostDataTypeByIdCopyErrors, PostDataTypeByIdCopyResponses, PostDataTypeData, PostDataTypeErrors, PostDataTypeFolderData, PostDataTypeFolderErrors, PostDataTypeFolderResponses, PostDataTypeResponses, PostDictionaryData, PostDictionaryErrors, PostDictionaryImportData, PostDictionaryImportErrors, PostDictionaryImportResponses, PostDictionaryResponses, PostDocumentBlueprintData, PostDocumentBlueprintErrors, PostDocumentBlueprintFolderData, PostDocumentBlueprintFolderErrors, PostDocumentBlueprintFolderResponses, PostDocumentBlueprintFromDocumentData, PostDocumentBlueprintFromDocumentErrors, PostDocumentBlueprintFromDocumentResponses, PostDocumentBlueprintResponses, PostDocumentByIdCopyData, PostDocumentByIdCopyErrors, PostDocumentByIdCopyResponses, PostDocumentByIdPublicAccessData, PostDocumentByIdPublicAccessErrors, PostDocumentByIdPublicAccessResponses, PostDocumentCreateAndPublishData, PostDocumentCreateAndPublishErrors, PostDocumentCreateAndPublishResponses, PostDocumentData, PostDocumentErrors, PostDocumentResponses, PostDocumentTypeAvailableCompositionsData, PostDocumentTypeAvailableCompositionsErrors, PostDocumentTypeAvailableCompositionsResponses, PostDocumentTypeByIdCopyData, PostDocumentTypeByIdCopyErrors, PostDocumentTypeByIdCopyResponses, PostDocumentTypeByIdTemplateData, PostDocumentTypeByIdTemplateErrors, PostDocumentTypeByIdTemplateResponses, PostDocumentTypeData, PostDocumentTypeErrors, PostDocumentTypeFolderData, PostDocumentTypeFolderErrors, PostDocumentTypeFolderResponses, PostDocumentTypeImportData, PostDocumentTypeImportErrors, PostDocumentTypeImportResponses, PostDocumentTypeResponses, PostDocumentValidateData, PostDocumentValidateErrors, PostDocumentValidateResponses, PostDocumentVersionByIdRollbackData, PostDocumentVersionByIdRollbackErrors, PostDocumentVersionByIdRollbackResponses, PostDynamicRootQueryData, PostDynamicRootQueryErrors, PostDynamicRootQueryResponses, PostElementByIdCopyData, PostElementByIdCopyErrors, PostElementByIdCopyResponses, PostElementData, PostElementErrors, PostElementFolderData, PostElementFolderErrors, PostElementFolderResponses, PostElementResponses, PostElementValidateData, PostElementValidateErrors, PostElementValidateResponses, PostElementVersionByIdRollbackData, PostElementVersionByIdRollbackErrors, PostElementVersionByIdRollbackResponses, PostHealthCheckExecuteActionData, PostHealthCheckExecuteActionErrors, PostHealthCheckExecuteActionResponses, PostHealthCheckGroupByNameCheckData, PostHealthCheckGroupByNameCheckErrors, PostHealthCheckGroupByNameCheckResponses, PostIndexerByIndexNameRebuildData, PostIndexerByIndexNameRebuildErrors, PostIndexerByIndexNameRebuildResponses, PostInstallSetupData, PostInstallSetupErrors, PostInstallSetupResponses, PostInstallValidateDatabaseData, PostInstallValidateDatabaseErrors, PostInstallValidateDatabaseResponses, PostLanguageData, PostLanguageErrors, PostLanguageResponses, PostLogViewerSavedSearchData, PostLogViewerSavedSearchErrors, PostLogViewerSavedSearchResponses, PostMediaData, PostMediaErrors, PostMediaResponses, PostMediaTypeAvailableCompositionsData, PostMediaTypeAvailableCompositionsErrors, PostMediaTypeAvailableCompositionsResponses, PostMediaTypeByIdCopyData, PostMediaTypeByIdCopyErrors, PostMediaTypeByIdCopyResponses, PostMediaTypeData, PostMediaTypeErrors, PostMediaTypeFolderData, PostMediaTypeFolderErrors, PostMediaTypeFolderResponses, PostMediaTypeImportData, PostMediaTypeImportErrors, PostMediaTypeImportResponses, PostMediaTypeResponses, PostMediaValidateData, PostMediaValidateErrors, PostMediaValidateResponses, PostMemberData, PostMemberErrors, PostMemberGroupData, PostMemberGroupErrors, PostMemberGroupResponses, PostMemberResponses, PostMemberTypeAvailableCompositionsData, PostMemberTypeAvailableCompositionsErrors, PostMemberTypeAvailableCompositionsResponses, PostMemberTypeByIdCopyData, PostMemberTypeByIdCopyErrors, PostMemberTypeByIdCopyResponses, PostMemberTypeData, PostMemberTypeErrors, PostMemberTypeFolderData, PostMemberTypeFolderErrors, PostMemberTypeFolderResponses, PostMemberTypeImportData, PostMemberTypeImportErrors, PostMemberTypeImportResponses, PostMemberTypeResponses, PostMemberValidateData, PostMemberValidateErrors, PostMemberValidateResponses, PostModelsBuilderBuildData, PostModelsBuilderBuildErrors, PostModelsBuilderBuildResponses, PostPackageByNameRunMigrationData, PostPackageByNameRunMigrationErrors, PostPackageByNameRunMigrationResponses, PostPackageCreatedData, PostPackageCreatedErrors, PostPackageCreatedResponses, PostPartialViewData, PostPartialViewErrors, PostPartialViewFolderData, PostPartialViewFolderErrors, PostPartialViewFolderResponses, PostPartialViewResponses, PostPublishedCacheRebuildData, PostPublishedCacheRebuildErrors, PostPublishedCacheRebuildResponses, PostPublishedCacheReloadData, PostPublishedCacheReloadErrors, PostPublishedCacheReloadResponses, PostRedirectManagementStatusData, PostRedirectManagementStatusErrors, PostRedirectManagementStatusResponses, PostScriptData, PostScriptErrors, PostScriptFolderData, PostScriptFolderErrors, PostScriptFolderResponses, PostScriptResponses, PostSecurityForgotPasswordData, PostSecurityForgotPasswordErrors, PostSecurityForgotPasswordResetData, PostSecurityForgotPasswordResetErrors, PostSecurityForgotPasswordResetResponses, PostSecurityForgotPasswordResponses, PostSecurityForgotPasswordVerifyData, PostSecurityForgotPasswordVerifyErrors, PostSecurityForgotPasswordVerifyResponses, PostStylesheetData, PostStylesheetErrors, PostStylesheetFolderData, PostStylesheetFolderErrors, PostStylesheetFolderResponses, PostStylesheetResponses, PostTelemetryLevelData, PostTelemetryLevelErrors, PostTelemetryLevelResponses, PostTemplateData, PostTemplateErrors, PostTemplateQueryExecuteData, PostTemplateQueryExecuteErrors, PostTemplateQueryExecuteResponses, PostTemplateResponses, PostTemporaryFileData, PostTemporaryFileErrors, PostTemporaryFileResponses, PostUpgradeAuthorizeData, PostUpgradeAuthorizeErrors, PostUpgradeAuthorizeResponses, PostUserAvatarByIdData, PostUserAvatarByIdErrors, PostUserAvatarByIdResponses, PostUserByIdChangePasswordData, PostUserByIdChangePasswordErrors, PostUserByIdChangePasswordResponses, PostUserByIdClientCredentialsData, PostUserByIdClientCredentialsErrors, PostUserByIdClientCredentialsResponses, PostUserByIdResetPasswordData, PostUserByIdResetPasswordErrors, PostUserByIdResetPasswordResponses, PostUserCurrent2FaByProviderNameData, PostUserCurrent2FaByProviderNameErrors, PostUserCurrent2FaByProviderNameResponses, PostUserCurrentAvatarData, PostUserCurrentAvatarErrors, PostUserCurrentAvatarResponses, PostUserCurrentChangePasswordData, PostUserCurrentChangePasswordErrors, PostUserCurrentChangePasswordResponses, PostUserData, PostUserDataData, PostUserDataErrors, PostUserDataResponses, PostUserDisableData, PostUserDisableErrors, PostUserDisableResponses, PostUserEnableData, PostUserEnableErrors, PostUserEnableResponses, PostUserErrors, PostUserGroupByIdUsersData, PostUserGroupByIdUsersErrors, PostUserGroupByIdUsersResponses, PostUserGroupData, PostUserGroupErrors, PostUserGroupResponses, PostUserInviteCreatePasswordData, PostUserInviteCreatePasswordErrors, PostUserInviteCreatePasswordResponses, PostUserInviteData, PostUserInviteErrors, PostUserInviteResendData, PostUserInviteResendErrors, PostUserInviteResendResponses, PostUserInviteResponses, PostUserInviteVerifyData, PostUserInviteVerifyErrors, PostUserInviteVerifyResponses, PostUserResponses, PostUserSetUserGroupsData, PostUserSetUserGroupsErrors, PostUserSetUserGroupsResponses, PostUserUnlockData, PostUserUnlockErrors, PostUserUnlockResponses, PostWebhookData, PostWebhookErrors, PostWebhookResponses, PutDataTypeByIdData, PutDataTypeByIdErrors, PutDataTypeByIdMoveData, PutDataTypeByIdMoveErrors, PutDataTypeByIdMoveResponses, PutDataTypeByIdResponses, PutDataTypeFolderByIdData, PutDataTypeFolderByIdErrors, PutDataTypeFolderByIdResponses, PutDictionaryByIdData, PutDictionaryByIdErrors, PutDictionaryByIdMoveData, PutDictionaryByIdMoveErrors, PutDictionaryByIdMoveResponses, PutDictionaryByIdResponses, PutDocumentBlueprintByIdData, PutDocumentBlueprintByIdErrors, PutDocumentBlueprintByIdMoveData, PutDocumentBlueprintByIdMoveErrors, PutDocumentBlueprintByIdMoveResponses, PutDocumentBlueprintByIdResponses, PutDocumentBlueprintFolderByIdData, PutDocumentBlueprintFolderByIdErrors, PutDocumentBlueprintFolderByIdResponses, PutDocumentByIdData, PutDocumentByIdDomainsData, PutDocumentByIdDomainsErrors, PutDocumentByIdDomainsResponses, PutDocumentByIdErrors, PutDocumentByIdMoveData, PutDocumentByIdMoveErrors, PutDocumentByIdMoveResponses, PutDocumentByIdMoveToRecycleBinData, PutDocumentByIdMoveToRecycleBinErrors, PutDocumentByIdMoveToRecycleBinResponses, PutDocumentByIdNotificationsData, PutDocumentByIdNotificationsErrors, PutDocumentByIdNotificationsResponses, PutDocumentByIdPublicAccessData, PutDocumentByIdPublicAccessErrors, PutDocumentByIdPublicAccessResponses, PutDocumentByIdPublishData, PutDocumentByIdPublishErrors, PutDocumentByIdPublishResponses, PutDocumentByIdPublishWithDescendantsData, PutDocumentByIdPublishWithDescendantsErrors, PutDocumentByIdPublishWithDescendantsResponses, PutDocumentByIdResponses, PutDocumentByIdSortChildrenData, PutDocumentByIdSortChildrenErrors, PutDocumentByIdSortChildrenResponses, PutDocumentByIdUnpublishData, PutDocumentByIdUnpublishErrors, PutDocumentByIdUnpublishResponses, PutDocumentByIdUpdateAndPublishData, PutDocumentByIdUpdateAndPublishErrors, PutDocumentByIdUpdateAndPublishResponses, PutDocumentRootSortChildrenData, PutDocumentRootSortChildrenErrors, PutDocumentRootSortChildrenResponses, PutDocumentSortData, PutDocumentSortErrors, PutDocumentSortResponses, PutDocumentTypeByIdData, PutDocumentTypeByIdErrors, PutDocumentTypeByIdImportData, PutDocumentTypeByIdImportErrors, PutDocumentTypeByIdImportResponses, PutDocumentTypeByIdMoveData, PutDocumentTypeByIdMoveErrors, PutDocumentTypeByIdMoveResponses, PutDocumentTypeByIdResponses, PutDocumentTypeFolderByIdData, PutDocumentTypeFolderByIdErrors, PutDocumentTypeFolderByIdResponses, PutDocumentVersionByIdPreventCleanupData, PutDocumentVersionByIdPreventCleanupErrors, PutDocumentVersionByIdPreventCleanupResponses, PutElementByIdData, PutElementByIdErrors, PutElementByIdMoveData, PutElementByIdMoveErrors, PutElementByIdMoveResponses, PutElementByIdMoveToRecycleBinData, PutElementByIdMoveToRecycleBinErrors, PutElementByIdMoveToRecycleBinResponses, PutElementByIdPublishData, PutElementByIdPublishErrors, PutElementByIdPublishResponses, PutElementByIdResponses, PutElementByIdUnpublishData, PutElementByIdUnpublishErrors, PutElementByIdUnpublishResponses, PutElementByIdValidateData, PutElementByIdValidateErrors, PutElementByIdValidateResponses, PutElementFolderByIdData, PutElementFolderByIdErrors, PutElementFolderByIdMoveData, PutElementFolderByIdMoveErrors, PutElementFolderByIdMoveResponses, PutElementFolderByIdMoveToRecycleBinData, PutElementFolderByIdMoveToRecycleBinErrors, PutElementFolderByIdMoveToRecycleBinResponses, PutElementFolderByIdResponses, PutElementVersionByIdPreventCleanupData, PutElementVersionByIdPreventCleanupErrors, PutElementVersionByIdPreventCleanupResponses, PutLanguageByIsoCodeData, PutLanguageByIsoCodeErrors, PutLanguageByIsoCodeResponses, PutMediaByIdData, PutMediaByIdErrors, PutMediaByIdMoveData, PutMediaByIdMoveErrors, PutMediaByIdMoveResponses, PutMediaByIdMoveToRecycleBinData, PutMediaByIdMoveToRecycleBinErrors, PutMediaByIdMoveToRecycleBinResponses, PutMediaByIdResponses, PutMediaByIdSortChildrenData, PutMediaByIdSortChildrenErrors, PutMediaByIdSortChildrenResponses, PutMediaByIdValidateData, PutMediaByIdValidateErrors, PutMediaByIdValidateResponses, PutMediaRootSortChildrenData, PutMediaRootSortChildrenErrors, PutMediaRootSortChildrenResponses, PutMediaSortData, PutMediaSortErrors, PutMediaSortResponses, PutMediaTypeByIdData, PutMediaTypeByIdErrors, PutMediaTypeByIdImportData, PutMediaTypeByIdImportErrors, PutMediaTypeByIdImportResponses, PutMediaTypeByIdMoveData, PutMediaTypeByIdMoveErrors, PutMediaTypeByIdMoveResponses, PutMediaTypeByIdResponses, PutMediaTypeFolderByIdData, PutMediaTypeFolderByIdErrors, PutMediaTypeFolderByIdResponses, PutMemberByIdData, PutMemberByIdErrors, PutMemberByIdResponses, PutMemberByIdValidateData, PutMemberByIdValidateErrors, PutMemberByIdValidateResponses, PutMemberGroupByIdData, PutMemberGroupByIdErrors, PutMemberGroupByIdResponses, PutMemberTypeByIdData, PutMemberTypeByIdErrors, PutMemberTypeByIdImportData, PutMemberTypeByIdImportErrors, PutMemberTypeByIdImportResponses, PutMemberTypeByIdMoveData, PutMemberTypeByIdMoveErrors, PutMemberTypeByIdMoveResponses, PutMemberTypeByIdResponses, PutMemberTypeFolderByIdData, PutMemberTypeFolderByIdErrors, PutMemberTypeFolderByIdResponses, PutPackageCreatedByIdData, PutPackageCreatedByIdErrors, PutPackageCreatedByIdResponses, PutPartialViewByPathData, PutPartialViewByPathErrors, PutPartialViewByPathRenameData, PutPartialViewByPathRenameErrors, PutPartialViewByPathRenameResponses, PutPartialViewByPathResponses, PutProfilingStatusData, PutProfilingStatusErrors, PutProfilingStatusResponses, PutRecycleBinDocumentByIdRestoreData, PutRecycleBinDocumentByIdRestoreErrors, PutRecycleBinDocumentByIdRestoreResponses, PutRecycleBinElementByIdRestoreData, PutRecycleBinElementByIdRestoreErrors, PutRecycleBinElementByIdRestoreResponses, PutRecycleBinElementFolderByIdRestoreData, PutRecycleBinElementFolderByIdRestoreErrors, PutRecycleBinElementFolderByIdRestoreResponses, PutRecycleBinMediaByIdRestoreData, PutRecycleBinMediaByIdRestoreErrors, PutRecycleBinMediaByIdRestoreResponses, PutScriptByPathData, PutScriptByPathErrors, PutScriptByPathRenameData, PutScriptByPathRenameErrors, PutScriptByPathRenameResponses, PutScriptByPathResponses, PutStylesheetByPathData, PutStylesheetByPathErrors, PutStylesheetByPathRenameData, PutStylesheetByPathRenameErrors, PutStylesheetByPathRenameResponses, PutStylesheetByPathResponses, PutTemplateByIdData, PutTemplateByIdErrors, PutTemplateByIdResponses, PutUmbracoManagementApiV11DocumentByIdValidate11Data, PutUmbracoManagementApiV11DocumentByIdValidate11Errors, PutUmbracoManagementApiV11DocumentByIdValidate11Responses, PutUserByIdData, PutUserByIdErrors, PutUserByIdResponses, PutUserCurrentProfileData, PutUserCurrentProfileErrors, PutUserCurrentProfileResponses, PutUserDataData, PutUserDataErrors, PutUserDataResponses, PutUserGroupByIdData, PutUserGroupByIdErrors, PutUserGroupByIdResponses, PutWebhookByIdData, PutWebhookByIdErrors, PutWebhookByIdResponses } from './types.gen'; +import type { DeleteDataTypeByIdData, DeleteDataTypeByIdErrors, DeleteDataTypeByIdResponses, DeleteDataTypeFolderByIdData, DeleteDataTypeFolderByIdErrors, DeleteDataTypeFolderByIdResponses, DeleteDictionaryByIdData, DeleteDictionaryByIdErrors, DeleteDictionaryByIdResponses, DeleteDocumentBlueprintByIdData, DeleteDocumentBlueprintByIdErrors, DeleteDocumentBlueprintByIdResponses, DeleteDocumentBlueprintFolderByIdData, DeleteDocumentBlueprintFolderByIdErrors, DeleteDocumentBlueprintFolderByIdResponses, DeleteDocumentByIdData, DeleteDocumentByIdErrors, DeleteDocumentByIdPublicAccessData, DeleteDocumentByIdPublicAccessErrors, DeleteDocumentByIdPublicAccessResponses, DeleteDocumentByIdResponses, DeleteDocumentTypeByIdData, DeleteDocumentTypeByIdErrors, DeleteDocumentTypeByIdResponses, DeleteDocumentTypeFolderByIdData, DeleteDocumentTypeFolderByIdErrors, DeleteDocumentTypeFolderByIdResponses, DeleteElementByIdData, DeleteElementByIdErrors, DeleteElementByIdResponses, DeleteElementFolderByIdData, DeleteElementFolderByIdErrors, DeleteElementFolderByIdResponses, DeleteLanguageByIsoCodeData, DeleteLanguageByIsoCodeErrors, DeleteLanguageByIsoCodeResponses, DeleteLogViewerSavedSearchByNameData, DeleteLogViewerSavedSearchByNameErrors, DeleteLogViewerSavedSearchByNameResponses, DeleteMediaByIdData, DeleteMediaByIdErrors, DeleteMediaByIdResponses, DeleteMediaTypeByIdData, DeleteMediaTypeByIdErrors, DeleteMediaTypeByIdResponses, DeleteMediaTypeFolderByIdData, DeleteMediaTypeFolderByIdErrors, DeleteMediaTypeFolderByIdResponses, DeleteMemberByIdData, DeleteMemberByIdErrors, DeleteMemberByIdResponses, DeleteMemberGroupByIdData, DeleteMemberGroupByIdErrors, DeleteMemberGroupByIdResponses, DeleteMemberTypeByIdData, DeleteMemberTypeByIdErrors, DeleteMemberTypeByIdResponses, DeleteMemberTypeFolderByIdData, DeleteMemberTypeFolderByIdErrors, DeleteMemberTypeFolderByIdResponses, DeletePackageCreatedByIdData, DeletePackageCreatedByIdErrors, DeletePackageCreatedByIdResponses, DeletePartialViewByPathData, DeletePartialViewByPathErrors, DeletePartialViewByPathResponses, DeletePartialViewFolderByPathData, DeletePartialViewFolderByPathErrors, DeletePartialViewFolderByPathResponses, DeletePreviewData, DeletePreviewResponses, DeleteRecycleBinDocumentByIdData, DeleteRecycleBinDocumentByIdErrors, DeleteRecycleBinDocumentByIdResponses, DeleteRecycleBinDocumentData, DeleteRecycleBinDocumentErrors, DeleteRecycleBinDocumentResponses, DeleteRecycleBinElementByIdData, DeleteRecycleBinElementByIdErrors, DeleteRecycleBinElementByIdResponses, DeleteRecycleBinElementData, DeleteRecycleBinElementErrors, DeleteRecycleBinElementFolderByIdData, DeleteRecycleBinElementFolderByIdErrors, DeleteRecycleBinElementFolderByIdResponses, DeleteRecycleBinElementResponses, DeleteRecycleBinMediaByIdData, DeleteRecycleBinMediaByIdErrors, DeleteRecycleBinMediaByIdResponses, DeleteRecycleBinMediaData, DeleteRecycleBinMediaErrors, DeleteRecycleBinMediaResponses, DeleteRedirectManagementByIdData, DeleteRedirectManagementByIdErrors, DeleteRedirectManagementByIdResponses, DeleteScriptByPathData, DeleteScriptByPathErrors, DeleteScriptByPathResponses, DeleteScriptFolderByPathData, DeleteScriptFolderByPathErrors, DeleteScriptFolderByPathResponses, DeleteStylesheetByPathData, DeleteStylesheetByPathErrors, DeleteStylesheetByPathResponses, DeleteStylesheetFolderByPathData, DeleteStylesheetFolderByPathErrors, DeleteStylesheetFolderByPathResponses, DeleteTemplateByIdData, DeleteTemplateByIdErrors, DeleteTemplateByIdResponses, DeleteTemporaryFileByIdData, DeleteTemporaryFileByIdErrors, DeleteTemporaryFileByIdResponses, DeleteUserAvatarByIdData, DeleteUserAvatarByIdErrors, DeleteUserAvatarByIdResponses, DeleteUserById2FaByProviderNameData, DeleteUserById2FaByProviderNameErrors, DeleteUserById2FaByProviderNameResponses, DeleteUserByIdClientCredentialsByClientIdData, DeleteUserByIdClientCredentialsByClientIdErrors, DeleteUserByIdClientCredentialsByClientIdResponses, DeleteUserByIdData, DeleteUserByIdErrors, DeleteUserByIdResponses, DeleteUserCurrent2FaByProviderNameData, DeleteUserCurrent2FaByProviderNameErrors, DeleteUserCurrent2FaByProviderNameResponses, DeleteUserCurrentAvatarData, DeleteUserCurrentAvatarErrors, DeleteUserCurrentAvatarResponses, DeleteUserData, DeleteUserDataByIdData, DeleteUserDataByIdErrors, DeleteUserDataByIdResponses, DeleteUserErrors, DeleteUserGroupByIdData, DeleteUserGroupByIdErrors, DeleteUserGroupByIdResponses, DeleteUserGroupByIdUsersData, DeleteUserGroupByIdUsersErrors, DeleteUserGroupByIdUsersResponses, DeleteUserGroupData, DeleteUserGroupErrors, DeleteUserGroupResponses, DeleteUserResponses, DeleteWebhookByIdData, DeleteWebhookByIdErrors, DeleteWebhookByIdResponses, GetCollectionDocumentByIdData, GetCollectionDocumentByIdErrors, GetCollectionDocumentByIdResponses, GetCollectionMediaData, GetCollectionMediaErrors, GetCollectionMediaResponses, GetCultureData, GetCultureErrors, GetCultureResponses, GetDataTypeBatchData, GetDataTypeBatchErrors, GetDataTypeBatchResponses, GetDataTypeByIdData, GetDataTypeByIdErrors, GetDataTypeByIdIsUsedData, GetDataTypeByIdIsUsedErrors, GetDataTypeByIdIsUsedResponses, GetDataTypeByIdReferencedByData, GetDataTypeByIdReferencedByErrors, GetDataTypeByIdReferencedByResponses, GetDataTypeByIdResponses, GetDataTypeByIdSchemaData, GetDataTypeByIdSchemaErrors, GetDataTypeByIdSchemaResponses, GetDataTypeConfigurationData, GetDataTypeConfigurationErrors, GetDataTypeConfigurationResponses, GetDataTypeFolderByIdData, GetDataTypeFolderByIdErrors, GetDataTypeFolderByIdResponses, GetDataTypeSchemasBatchData, GetDataTypeSchemasBatchErrors, GetDataTypeSchemasBatchResponses, GetDictionaryByIdData, GetDictionaryByIdErrors, GetDictionaryByIdExportData, GetDictionaryByIdExportErrors, GetDictionaryByIdExportResponses, GetDictionaryByIdResponses, GetDictionaryData, GetDictionaryErrors, GetDictionaryResponses, GetDocumentAreReferencedData, GetDocumentAreReferencedErrors, GetDocumentAreReferencedResponses, GetDocumentBlueprintByIdAuditLogData, GetDocumentBlueprintByIdAuditLogErrors, GetDocumentBlueprintByIdAuditLogResponses, GetDocumentBlueprintByIdData, GetDocumentBlueprintByIdErrors, GetDocumentBlueprintByIdResponses, GetDocumentBlueprintByIdScaffoldData, GetDocumentBlueprintByIdScaffoldErrors, GetDocumentBlueprintByIdScaffoldResponses, GetDocumentBlueprintFolderByIdData, GetDocumentBlueprintFolderByIdErrors, GetDocumentBlueprintFolderByIdResponses, GetDocumentByIdAuditLogData, GetDocumentByIdAuditLogErrors, GetDocumentByIdAuditLogResponses, GetDocumentByIdAvailableSegmentOptionsData, GetDocumentByIdAvailableSegmentOptionsErrors, GetDocumentByIdAvailableSegmentOptionsResponses, GetDocumentByIdData, GetDocumentByIdDomainsData, GetDocumentByIdDomainsErrors, GetDocumentByIdDomainsResponses, GetDocumentByIdErrors, GetDocumentByIdNotificationsData, GetDocumentByIdNotificationsErrors, GetDocumentByIdNotificationsResponses, GetDocumentByIdPreviewUrlData, GetDocumentByIdPreviewUrlErrors, GetDocumentByIdPreviewUrlResponses, GetDocumentByIdPublicAccessData, GetDocumentByIdPublicAccessErrors, GetDocumentByIdPublicAccessResponses, GetDocumentByIdPublishedData, GetDocumentByIdPublishedErrors, GetDocumentByIdPublishedResponses, GetDocumentByIdPublishWithDescendantsResultByTaskIdData, GetDocumentByIdPublishWithDescendantsResultByTaskIdErrors, GetDocumentByIdPublishWithDescendantsResultByTaskIdResponses, GetDocumentByIdReferencedByData, GetDocumentByIdReferencedByErrors, GetDocumentByIdReferencedByResponses, GetDocumentByIdReferencedDescendantsData, GetDocumentByIdReferencedDescendantsErrors, GetDocumentByIdReferencedDescendantsResponses, GetDocumentByIdResponses, GetDocumentConfigurationData, GetDocumentConfigurationErrors, GetDocumentConfigurationResponses, GetDocumentTypeAllowedAtRootData, GetDocumentTypeAllowedAtRootErrors, GetDocumentTypeAllowedAtRootResponses, GetDocumentTypeAllowedInLibraryData, GetDocumentTypeAllowedInLibraryErrors, GetDocumentTypeAllowedInLibraryResponses, GetDocumentTypeBatchData, GetDocumentTypeBatchErrors, GetDocumentTypeBatchResponses, GetDocumentTypeByIdAllowedChildrenData, GetDocumentTypeByIdAllowedChildrenErrors, GetDocumentTypeByIdAllowedChildrenResponses, GetDocumentTypeByIdAllowedParentsData, GetDocumentTypeByIdAllowedParentsErrors, GetDocumentTypeByIdAllowedParentsResponses, GetDocumentTypeByIdBlueprintData, GetDocumentTypeByIdBlueprintErrors, GetDocumentTypeByIdBlueprintResponses, GetDocumentTypeByIdCompositionReferencesData, GetDocumentTypeByIdCompositionReferencesErrors, GetDocumentTypeByIdCompositionReferencesResponses, GetDocumentTypeByIdData, GetDocumentTypeByIdErrors, GetDocumentTypeByIdExportData, GetDocumentTypeByIdExportErrors, GetDocumentTypeByIdExportResponses, GetDocumentTypeByIdResponses, GetDocumentTypeByIdSchemaData, GetDocumentTypeByIdSchemaErrors, GetDocumentTypeByIdSchemaResponses, GetDocumentTypeConfigurationData, GetDocumentTypeConfigurationErrors, GetDocumentTypeConfigurationResponses, GetDocumentTypeFolderByIdData, GetDocumentTypeFolderByIdErrors, GetDocumentTypeFolderByIdResponses, GetDocumentUrlsData, GetDocumentUrlsErrors, GetDocumentUrlsResponses, GetDocumentVersionByIdData, GetDocumentVersionByIdErrors, GetDocumentVersionByIdResponses, GetDocumentVersionData, GetDocumentVersionErrors, GetDocumentVersionResponses, GetDynamicRootStepsData, GetDynamicRootStepsErrors, GetDynamicRootStepsResponses, GetElementAreReferencedData, GetElementAreReferencedErrors, GetElementAreReferencedResponses, GetElementByIdAuditLogData, GetElementByIdAuditLogErrors, GetElementByIdAuditLogResponses, GetElementByIdData, GetElementByIdErrors, GetElementByIdPublishedData, GetElementByIdPublishedErrors, GetElementByIdPublishedResponses, GetElementByIdReferencedByData, GetElementByIdReferencedByErrors, GetElementByIdReferencedByResponses, GetElementByIdResponses, GetElementConfigurationData, GetElementConfigurationErrors, GetElementConfigurationResponses, GetElementFolderByIdData, GetElementFolderByIdErrors, GetElementFolderByIdReferencedDescendantsData, GetElementFolderByIdReferencedDescendantsErrors, GetElementFolderByIdReferencedDescendantsResponses, GetElementFolderByIdResponses, GetElementVersionByIdData, GetElementVersionByIdErrors, GetElementVersionByIdResponses, GetElementVersionData, GetElementVersionErrors, GetElementVersionResponses, GetFilterDataTypeData, GetFilterDataTypeErrors, GetFilterDataTypeResponses, GetFilterMemberData, GetFilterMemberErrors, GetFilterMemberResponses, GetFilterUserData, GetFilterUserErrors, GetFilterUserGroupData, GetFilterUserGroupErrors, GetFilterUserGroupResponses, GetFilterUserResponses, GetHealthCheckGroupByNameData, GetHealthCheckGroupByNameErrors, GetHealthCheckGroupByNameResponses, GetHealthCheckGroupData, GetHealthCheckGroupErrors, GetHealthCheckGroupResponses, GetHelpData, GetHelpErrors, GetHelpResponses, GetImagingResizeUrlsData, GetImagingResizeUrlsErrors, GetImagingResizeUrlsResponses, GetImportAnalyzeData, GetImportAnalyzeErrors, GetImportAnalyzeResponses, GetIndexerByIndexNameData, GetIndexerByIndexNameErrors, GetIndexerByIndexNameResponses, GetIndexerData, GetIndexerErrors, GetIndexerResponses, GetInstallSettingsData, GetInstallSettingsErrors, GetInstallSettingsResponses, GetItemDataTypeAncestorsData, GetItemDataTypeAncestorsErrors, GetItemDataTypeAncestorsResponses, GetItemDataTypeData, GetItemDataTypeErrors, GetItemDataTypeResponses, GetItemDataTypeSearchData, GetItemDataTypeSearchErrors, GetItemDataTypeSearchResponses, GetItemDictionaryData, GetItemDictionaryErrors, GetItemDictionaryResponses, GetItemDocumentAncestorsData, GetItemDocumentAncestorsErrors, GetItemDocumentAncestorsResponses, GetItemDocumentBlueprintData, GetItemDocumentBlueprintErrors, GetItemDocumentBlueprintResponses, GetItemDocumentData, GetItemDocumentErrors, GetItemDocumentResponses, GetItemDocumentSearchData, GetItemDocumentSearchErrors, GetItemDocumentSearchResponses, GetItemDocumentTypeAncestorsData, GetItemDocumentTypeAncestorsErrors, GetItemDocumentTypeAncestorsResponses, GetItemDocumentTypeData, GetItemDocumentTypeErrors, GetItemDocumentTypeResponses, GetItemDocumentTypeSearchData, GetItemDocumentTypeSearchErrors, GetItemDocumentTypeSearchResponses, GetItemElementAncestorsData, GetItemElementAncestorsErrors, GetItemElementAncestorsResponses, GetItemElementData, GetItemElementErrors, GetItemElementFolderData, GetItemElementFolderErrors, GetItemElementFolderResponses, GetItemElementResponses, GetItemElementSearchData, GetItemElementSearchErrors, GetItemElementSearchResponses, GetItemLanguageData, GetItemLanguageDefaultData, GetItemLanguageDefaultErrors, GetItemLanguageDefaultResponses, GetItemLanguageErrors, GetItemLanguageResponses, GetItemMediaAncestorsData, GetItemMediaAncestorsErrors, GetItemMediaAncestorsResponses, GetItemMediaData, GetItemMediaErrors, GetItemMediaResponses, GetItemMediaSearchData, GetItemMediaSearchErrors, GetItemMediaSearchResponses, GetItemMediaTypeAllowedData, GetItemMediaTypeAllowedErrors, GetItemMediaTypeAllowedResponses, GetItemMediaTypeAncestorsData, GetItemMediaTypeAncestorsErrors, GetItemMediaTypeAncestorsResponses, GetItemMediaTypeData, GetItemMediaTypeErrors, GetItemMediaTypeFoldersData, GetItemMediaTypeFoldersErrors, GetItemMediaTypeFoldersResponses, GetItemMediaTypeResponses, GetItemMediaTypeSearchData, GetItemMediaTypeSearchErrors, GetItemMediaTypeSearchResponses, GetItemMemberAncestorsData, GetItemMemberAncestorsErrors, GetItemMemberAncestorsResponses, GetItemMemberData, GetItemMemberErrors, GetItemMemberGroupData, GetItemMemberGroupErrors, GetItemMemberGroupResponses, GetItemMemberResponses, GetItemMemberSearchData, GetItemMemberSearchErrors, GetItemMemberSearchResponses, GetItemMemberTypeAncestorsData, GetItemMemberTypeAncestorsErrors, GetItemMemberTypeAncestorsResponses, GetItemMemberTypeData, GetItemMemberTypeErrors, GetItemMemberTypeResponses, GetItemMemberTypeSearchData, GetItemMemberTypeSearchErrors, GetItemMemberTypeSearchResponses, GetItemPartialViewData, GetItemPartialViewErrors, GetItemPartialViewResponses, GetItemRelationTypeData, GetItemRelationTypeErrors, GetItemRelationTypeResponses, GetItemScriptData, GetItemScriptErrors, GetItemScriptResponses, GetItemStaticFileData, GetItemStaticFileErrors, GetItemStaticFileResponses, GetItemStylesheetData, GetItemStylesheetErrors, GetItemStylesheetResponses, GetItemTemplateAncestorsData, GetItemTemplateAncestorsErrors, GetItemTemplateAncestorsResponses, GetItemTemplateData, GetItemTemplateErrors, GetItemTemplateResponses, GetItemTemplateSearchData, GetItemTemplateSearchErrors, GetItemTemplateSearchResponses, GetItemUserData, GetItemUserErrors, GetItemUserGroupData, GetItemUserGroupErrors, GetItemUserGroupResponses, GetItemUserResponses, GetItemWebhookData, GetItemWebhookErrors, GetItemWebhookResponses, GetLanguageByIsoCodeData, GetLanguageByIsoCodeErrors, GetLanguageByIsoCodeResponses, GetLanguageData, GetLanguageErrors, GetLanguageResponses, GetLogViewerLevelCountData, GetLogViewerLevelCountErrors, GetLogViewerLevelCountResponses, GetLogViewerLevelData, GetLogViewerLevelErrors, GetLogViewerLevelResponses, GetLogViewerLogData, GetLogViewerLogErrors, GetLogViewerLogResponses, GetLogViewerMessageTemplateData, GetLogViewerMessageTemplateErrors, GetLogViewerMessageTemplateResponses, GetLogViewerSavedSearchByNameData, GetLogViewerSavedSearchByNameErrors, GetLogViewerSavedSearchByNameResponses, GetLogViewerSavedSearchData, GetLogViewerSavedSearchErrors, GetLogViewerSavedSearchResponses, GetLogViewerValidateLogsSizeData, GetLogViewerValidateLogsSizeErrors, GetLogViewerValidateLogsSizeResponses, GetManifestManifestData, GetManifestManifestErrors, GetManifestManifestPrivateData, GetManifestManifestPrivateErrors, GetManifestManifestPrivateResponses, GetManifestManifestPublicData, GetManifestManifestPublicResponses, GetManifestManifestResponses, GetMediaAreReferencedData, GetMediaAreReferencedErrors, GetMediaAreReferencedResponses, GetMediaByIdAuditLogData, GetMediaByIdAuditLogErrors, GetMediaByIdAuditLogResponses, GetMediaByIdData, GetMediaByIdErrors, GetMediaByIdReferencedByData, GetMediaByIdReferencedByErrors, GetMediaByIdReferencedByResponses, GetMediaByIdReferencedDescendantsData, GetMediaByIdReferencedDescendantsErrors, GetMediaByIdReferencedDescendantsResponses, GetMediaByIdResponses, GetMediaConfigurationData, GetMediaConfigurationErrors, GetMediaConfigurationResponses, GetMediaTypeAllowedAtRootData, GetMediaTypeAllowedAtRootErrors, GetMediaTypeAllowedAtRootResponses, GetMediaTypeBatchData, GetMediaTypeBatchErrors, GetMediaTypeBatchResponses, GetMediaTypeByIdAllowedChildrenData, GetMediaTypeByIdAllowedChildrenErrors, GetMediaTypeByIdAllowedChildrenResponses, GetMediaTypeByIdAllowedParentsData, GetMediaTypeByIdAllowedParentsErrors, GetMediaTypeByIdAllowedParentsResponses, GetMediaTypeByIdCompositionReferencesData, GetMediaTypeByIdCompositionReferencesErrors, GetMediaTypeByIdCompositionReferencesResponses, GetMediaTypeByIdData, GetMediaTypeByIdErrors, GetMediaTypeByIdExportData, GetMediaTypeByIdExportErrors, GetMediaTypeByIdExportResponses, GetMediaTypeByIdResponses, GetMediaTypeByIdSchemaData, GetMediaTypeByIdSchemaErrors, GetMediaTypeByIdSchemaResponses, GetMediaTypeConfigurationData, GetMediaTypeConfigurationErrors, GetMediaTypeConfigurationResponses, GetMediaTypeFolderByIdData, GetMediaTypeFolderByIdErrors, GetMediaTypeFolderByIdResponses, GetMediaUrlsData, GetMediaUrlsErrors, GetMediaUrlsResponses, GetMemberAreReferencedData, GetMemberAreReferencedErrors, GetMemberAreReferencedResponses, GetMemberByIdData, GetMemberByIdErrors, GetMemberByIdReferencedByData, GetMemberByIdReferencedByErrors, GetMemberByIdReferencedByResponses, GetMemberByIdReferencedDescendantsData, GetMemberByIdReferencedDescendantsErrors, GetMemberByIdReferencedDescendantsResponses, GetMemberByIdResponses, GetMemberGroupByIdData, GetMemberGroupByIdErrors, GetMemberGroupByIdResponses, GetMemberGroupData, GetMemberGroupErrors, GetMemberGroupResponses, GetMemberTypeAllowedAtRootData, GetMemberTypeAllowedAtRootErrors, GetMemberTypeAllowedAtRootResponses, GetMemberTypeBatchData, GetMemberTypeBatchErrors, GetMemberTypeBatchResponses, GetMemberTypeByIdCompositionReferencesData, GetMemberTypeByIdCompositionReferencesErrors, GetMemberTypeByIdCompositionReferencesResponses, GetMemberTypeByIdData, GetMemberTypeByIdErrors, GetMemberTypeByIdExportData, GetMemberTypeByIdExportErrors, GetMemberTypeByIdExportResponses, GetMemberTypeByIdResponses, GetMemberTypeByIdSchemaData, GetMemberTypeByIdSchemaErrors, GetMemberTypeByIdSchemaResponses, GetMemberTypeConfigurationData, GetMemberTypeConfigurationErrors, GetMemberTypeConfigurationResponses, GetMemberTypeFolderByIdData, GetMemberTypeFolderByIdErrors, GetMemberTypeFolderByIdResponses, GetModelsBuilderDashboardData, GetModelsBuilderDashboardErrors, GetModelsBuilderDashboardResponses, GetModelsBuilderStatusData, GetModelsBuilderStatusErrors, GetModelsBuilderStatusResponses, GetNewsDashboardData, GetNewsDashboardErrors, GetNewsDashboardResponses, GetObjectTypesData, GetObjectTypesErrors, GetObjectTypesResponses, GetOembedQueryData, GetOembedQueryErrors, GetOembedQueryResponses, GetPackageConfigurationData, GetPackageConfigurationErrors, GetPackageConfigurationResponses, GetPackageCreatedByIdData, GetPackageCreatedByIdDownloadData, GetPackageCreatedByIdDownloadErrors, GetPackageCreatedByIdDownloadResponses, GetPackageCreatedByIdErrors, GetPackageCreatedByIdResponses, GetPackageCreatedData, GetPackageCreatedErrors, GetPackageCreatedResponses, GetPackageMigrationStatusData, GetPackageMigrationStatusErrors, GetPackageMigrationStatusResponses, GetPartialViewByPathData, GetPartialViewByPathErrors, GetPartialViewByPathResponses, GetPartialViewFolderByPathData, GetPartialViewFolderByPathErrors, GetPartialViewFolderByPathResponses, GetPartialViewSnippetByIdData, GetPartialViewSnippetByIdErrors, GetPartialViewSnippetByIdResponses, GetPartialViewSnippetData, GetPartialViewSnippetErrors, GetPartialViewSnippetResponses, GetProfilingStatusData, GetProfilingStatusErrors, GetProfilingStatusResponses, GetPropertyTypeIsUsedData, GetPropertyTypeIsUsedErrors, GetPropertyTypeIsUsedResponses, GetPublishedCacheRebuildStatusData, GetPublishedCacheRebuildStatusErrors, GetPublishedCacheRebuildStatusResponses, GetRecycleBinDocumentByIdOriginalParentData, GetRecycleBinDocumentByIdOriginalParentErrors, GetRecycleBinDocumentByIdOriginalParentResponses, GetRecycleBinDocumentChildrenData, GetRecycleBinDocumentChildrenErrors, GetRecycleBinDocumentChildrenResponses, GetRecycleBinDocumentReferencedByData, GetRecycleBinDocumentReferencedByErrors, GetRecycleBinDocumentReferencedByResponses, GetRecycleBinDocumentRootData, GetRecycleBinDocumentRootErrors, GetRecycleBinDocumentRootResponses, GetRecycleBinDocumentSiblingsData, GetRecycleBinDocumentSiblingsErrors, GetRecycleBinDocumentSiblingsResponses, GetRecycleBinElementByIdOriginalParentData, GetRecycleBinElementByIdOriginalParentErrors, GetRecycleBinElementByIdOriginalParentResponses, GetRecycleBinElementChildrenData, GetRecycleBinElementChildrenErrors, GetRecycleBinElementChildrenResponses, GetRecycleBinElementFolderByIdOriginalParentData, GetRecycleBinElementFolderByIdOriginalParentErrors, GetRecycleBinElementFolderByIdOriginalParentResponses, GetRecycleBinElementReferencedByData, GetRecycleBinElementReferencedByErrors, GetRecycleBinElementReferencedByResponses, GetRecycleBinElementRootData, GetRecycleBinElementRootErrors, GetRecycleBinElementRootResponses, GetRecycleBinElementSiblingsData, GetRecycleBinElementSiblingsErrors, GetRecycleBinElementSiblingsResponses, GetRecycleBinMediaByIdOriginalParentData, GetRecycleBinMediaByIdOriginalParentErrors, GetRecycleBinMediaByIdOriginalParentResponses, GetRecycleBinMediaChildrenData, GetRecycleBinMediaChildrenErrors, GetRecycleBinMediaChildrenResponses, GetRecycleBinMediaReferencedByData, GetRecycleBinMediaReferencedByErrors, GetRecycleBinMediaReferencedByResponses, GetRecycleBinMediaRootData, GetRecycleBinMediaRootErrors, GetRecycleBinMediaRootResponses, GetRecycleBinMediaSiblingsData, GetRecycleBinMediaSiblingsErrors, GetRecycleBinMediaSiblingsResponses, GetRedirectManagementByIdData, GetRedirectManagementByIdErrors, GetRedirectManagementByIdResponses, GetRedirectManagementData, GetRedirectManagementErrors, GetRedirectManagementResponses, GetRedirectManagementStatusData, GetRedirectManagementStatusErrors, GetRedirectManagementStatusResponses, GetRelationByRelationTypeIdData, GetRelationByRelationTypeIdErrors, GetRelationByRelationTypeIdResponses, GetRelationTypeByIdData, GetRelationTypeByIdErrors, GetRelationTypeByIdResponses, GetRelationTypeData, GetRelationTypeErrors, GetRelationTypeResponses, GetScriptByPathData, GetScriptByPathErrors, GetScriptByPathResponses, GetScriptFolderByPathData, GetScriptFolderByPathErrors, GetScriptFolderByPathResponses, GetSearcherBySearcherNameQueryData, GetSearcherBySearcherNameQueryErrors, GetSearcherBySearcherNameQueryResponses, GetSearcherData, GetSearcherErrors, GetSearcherResponses, GetSecurityConfigurationData, GetSecurityConfigurationErrors, GetSecurityConfigurationResponses, GetSegmentData, GetSegmentErrors, GetSegmentResponses, GetServerConfigurationData, GetServerConfigurationResponses, GetServerInformationData, GetServerInformationErrors, GetServerInformationResponses, GetServerStatusData, GetServerStatusErrors, GetServerStatusResponses, GetServerTroubleshootingData, GetServerTroubleshootingErrors, GetServerTroubleshootingResponses, GetServerUpgradeCheckData, GetServerUpgradeCheckErrors, GetServerUpgradeCheckResponses, GetStylesheetByPathData, GetStylesheetByPathErrors, GetStylesheetByPathResponses, GetStylesheetFolderByPathData, GetStylesheetFolderByPathErrors, GetStylesheetFolderByPathResponses, GetTagData, GetTagErrors, GetTagResponses, GetTelemetryData, GetTelemetryErrors, GetTelemetryLevelData, GetTelemetryLevelErrors, GetTelemetryLevelResponses, GetTelemetryResponses, GetTemplateByIdData, GetTemplateByIdErrors, GetTemplateByIdResponses, GetTemplateConfigurationData, GetTemplateConfigurationErrors, GetTemplateConfigurationResponses, GetTemplateQuerySettingsData, GetTemplateQuerySettingsErrors, GetTemplateQuerySettingsResponses, GetTemporaryFileByIdData, GetTemporaryFileByIdErrors, GetTemporaryFileByIdResponses, GetTemporaryFileConfigurationData, GetTemporaryFileConfigurationErrors, GetTemporaryFileConfigurationResponses, GetTreeDataTypeAncestorsData, GetTreeDataTypeAncestorsErrors, GetTreeDataTypeAncestorsResponses, GetTreeDataTypeChildrenData, GetTreeDataTypeChildrenErrors, GetTreeDataTypeChildrenResponses, GetTreeDataTypeRootData, GetTreeDataTypeRootErrors, GetTreeDataTypeRootResponses, GetTreeDataTypeSearchData, GetTreeDataTypeSearchErrors, GetTreeDataTypeSearchResponses, GetTreeDataTypeSiblingsData, GetTreeDataTypeSiblingsErrors, GetTreeDataTypeSiblingsResponses, GetTreeDictionaryAncestorsData, GetTreeDictionaryAncestorsErrors, GetTreeDictionaryAncestorsResponses, GetTreeDictionaryChildrenData, GetTreeDictionaryChildrenErrors, GetTreeDictionaryChildrenResponses, GetTreeDictionaryRootData, GetTreeDictionaryRootErrors, GetTreeDictionaryRootResponses, GetTreeDocumentAncestorsData, GetTreeDocumentAncestorsErrors, GetTreeDocumentAncestorsResponses, GetTreeDocumentBlueprintAncestorsData, GetTreeDocumentBlueprintAncestorsErrors, GetTreeDocumentBlueprintAncestorsResponses, GetTreeDocumentBlueprintChildrenData, GetTreeDocumentBlueprintChildrenErrors, GetTreeDocumentBlueprintChildrenResponses, GetTreeDocumentBlueprintRootData, GetTreeDocumentBlueprintRootErrors, GetTreeDocumentBlueprintRootResponses, GetTreeDocumentBlueprintSiblingsData, GetTreeDocumentBlueprintSiblingsErrors, GetTreeDocumentBlueprintSiblingsResponses, GetTreeDocumentChildrenData, GetTreeDocumentChildrenErrors, GetTreeDocumentChildrenResponses, GetTreeDocumentRootData, GetTreeDocumentRootErrors, GetTreeDocumentRootResponses, GetTreeDocumentSiblingsData, GetTreeDocumentSiblingsErrors, GetTreeDocumentSiblingsResponses, GetTreeDocumentTypeAncestorsData, GetTreeDocumentTypeAncestorsErrors, GetTreeDocumentTypeAncestorsResponses, GetTreeDocumentTypeChildrenData, GetTreeDocumentTypeChildrenErrors, GetTreeDocumentTypeChildrenResponses, GetTreeDocumentTypeRootData, GetTreeDocumentTypeRootErrors, GetTreeDocumentTypeRootResponses, GetTreeDocumentTypeSearchData, GetTreeDocumentTypeSearchErrors, GetTreeDocumentTypeSearchResponses, GetTreeDocumentTypeSiblingsData, GetTreeDocumentTypeSiblingsErrors, GetTreeDocumentTypeSiblingsResponses, GetTreeElementAncestorsData, GetTreeElementAncestorsErrors, GetTreeElementAncestorsResponses, GetTreeElementChildrenData, GetTreeElementChildrenErrors, GetTreeElementChildrenResponses, GetTreeElementRootData, GetTreeElementRootErrors, GetTreeElementRootResponses, GetTreeElementSiblingsData, GetTreeElementSiblingsErrors, GetTreeElementSiblingsResponses, GetTreeMediaAncestorsData, GetTreeMediaAncestorsErrors, GetTreeMediaAncestorsResponses, GetTreeMediaChildrenData, GetTreeMediaChildrenErrors, GetTreeMediaChildrenResponses, GetTreeMediaRootData, GetTreeMediaRootErrors, GetTreeMediaRootResponses, GetTreeMediaSiblingsData, GetTreeMediaSiblingsErrors, GetTreeMediaSiblingsResponses, GetTreeMediaTypeAncestorsData, GetTreeMediaTypeAncestorsErrors, GetTreeMediaTypeAncestorsResponses, GetTreeMediaTypeChildrenData, GetTreeMediaTypeChildrenErrors, GetTreeMediaTypeChildrenResponses, GetTreeMediaTypeRootData, GetTreeMediaTypeRootErrors, GetTreeMediaTypeRootResponses, GetTreeMediaTypeSiblingsData, GetTreeMediaTypeSiblingsErrors, GetTreeMediaTypeSiblingsResponses, GetTreeMemberGroupRootData, GetTreeMemberGroupRootErrors, GetTreeMemberGroupRootResponses, GetTreeMemberTypeAncestorsData, GetTreeMemberTypeAncestorsErrors, GetTreeMemberTypeAncestorsResponses, GetTreeMemberTypeChildrenData, GetTreeMemberTypeChildrenErrors, GetTreeMemberTypeChildrenResponses, GetTreeMemberTypeRootData, GetTreeMemberTypeRootErrors, GetTreeMemberTypeRootResponses, GetTreeMemberTypeSiblingsData, GetTreeMemberTypeSiblingsErrors, GetTreeMemberTypeSiblingsResponses, GetTreePartialViewAncestorsData, GetTreePartialViewAncestorsErrors, GetTreePartialViewAncestorsResponses, GetTreePartialViewChildrenData, GetTreePartialViewChildrenErrors, GetTreePartialViewChildrenResponses, GetTreePartialViewRootData, GetTreePartialViewRootErrors, GetTreePartialViewRootResponses, GetTreePartialViewSiblingsData, GetTreePartialViewSiblingsErrors, GetTreePartialViewSiblingsResponses, GetTreeScriptAncestorsData, GetTreeScriptAncestorsErrors, GetTreeScriptAncestorsResponses, GetTreeScriptChildrenData, GetTreeScriptChildrenErrors, GetTreeScriptChildrenResponses, GetTreeScriptRootData, GetTreeScriptRootErrors, GetTreeScriptRootResponses, GetTreeScriptSiblingsData, GetTreeScriptSiblingsErrors, GetTreeScriptSiblingsResponses, GetTreeStaticFileAncestorsData, GetTreeStaticFileAncestorsErrors, GetTreeStaticFileAncestorsResponses, GetTreeStaticFileChildrenData, GetTreeStaticFileChildrenErrors, GetTreeStaticFileChildrenResponses, GetTreeStaticFileRootData, GetTreeStaticFileRootErrors, GetTreeStaticFileRootResponses, GetTreeStylesheetAncestorsData, GetTreeStylesheetAncestorsErrors, GetTreeStylesheetAncestorsResponses, GetTreeStylesheetChildrenData, GetTreeStylesheetChildrenErrors, GetTreeStylesheetChildrenResponses, GetTreeStylesheetRootData, GetTreeStylesheetRootErrors, GetTreeStylesheetRootResponses, GetTreeStylesheetSiblingsData, GetTreeStylesheetSiblingsErrors, GetTreeStylesheetSiblingsResponses, GetTreeTemplateAncestorsData, GetTreeTemplateAncestorsErrors, GetTreeTemplateAncestorsResponses, GetTreeTemplateChildrenData, GetTreeTemplateChildrenErrors, GetTreeTemplateChildrenResponses, GetTreeTemplateRootData, GetTreeTemplateRootErrors, GetTreeTemplateRootResponses, GetTreeTemplateSiblingsData, GetTreeTemplateSiblingsErrors, GetTreeTemplateSiblingsResponses, GetUpgradeSettingsData, GetUpgradeSettingsErrors, GetUpgradeSettingsResponses, GetUserBatchData, GetUserBatchErrors, GetUserBatchResponses, GetUserById2FaData, GetUserById2FaErrors, GetUserById2FaResponses, GetUserByIdCalculateStartNodesData, GetUserByIdCalculateStartNodesErrors, GetUserByIdCalculateStartNodesResponses, GetUserByIdClientCredentialsData, GetUserByIdClientCredentialsErrors, GetUserByIdClientCredentialsResponses, GetUserByIdData, GetUserByIdErrors, GetUserByIdResponses, GetUserConfigurationData, GetUserConfigurationErrors, GetUserConfigurationResponses, GetUserCurrent2FaByProviderNameData, GetUserCurrent2FaByProviderNameErrors, GetUserCurrent2FaByProviderNameResponses, GetUserCurrent2FaData, GetUserCurrent2FaErrors, GetUserCurrent2FaResponses, GetUserCurrentConfigurationData, GetUserCurrentConfigurationErrors, GetUserCurrentConfigurationResponses, GetUserCurrentData, GetUserCurrentErrors, GetUserCurrentLoginProvidersData, GetUserCurrentLoginProvidersErrors, GetUserCurrentLoginProvidersResponses, GetUserCurrentPermissionsData, GetUserCurrentPermissionsDocumentData, GetUserCurrentPermissionsDocumentErrors, GetUserCurrentPermissionsDocumentResponses, GetUserCurrentPermissionsElementData, GetUserCurrentPermissionsElementErrors, GetUserCurrentPermissionsElementResponses, GetUserCurrentPermissionsErrors, GetUserCurrentPermissionsMediaData, GetUserCurrentPermissionsMediaErrors, GetUserCurrentPermissionsMediaResponses, GetUserCurrentPermissionsResponses, GetUserCurrentResponses, GetUserData, GetUserDataByIdData, GetUserDataByIdErrors, GetUserDataByIdResponses, GetUserDataData, GetUserDataErrors, GetUserDataResponses, GetUserErrors, GetUserGroupByIdData, GetUserGroupByIdErrors, GetUserGroupByIdResponses, GetUserGroupData, GetUserGroupErrors, GetUserGroupResponses, GetUserResponses, GetWebhookByIdData, GetWebhookByIdErrors, GetWebhookByIdLogsData, GetWebhookByIdLogsErrors, GetWebhookByIdLogsResponses, GetWebhookByIdResponses, GetWebhookData, GetWebhookErrors, GetWebhookEventsData, GetWebhookEventsErrors, GetWebhookEventsResponses, GetWebhookLogsData, GetWebhookLogsErrors, GetWebhookLogsResponses, GetWebhookResponses, PatchDocumentByIdPatchData, PatchDocumentByIdPatchErrors, PatchDocumentByIdPatchResponses, PostDataTypeByIdCopyData, PostDataTypeByIdCopyErrors, PostDataTypeByIdCopyResponses, PostDataTypeData, PostDataTypeErrors, PostDataTypeFolderData, PostDataTypeFolderErrors, PostDataTypeFolderResponses, PostDataTypeResponses, PostDictionaryData, PostDictionaryErrors, PostDictionaryImportData, PostDictionaryImportErrors, PostDictionaryImportResponses, PostDictionaryResponses, PostDocumentBlueprintData, PostDocumentBlueprintErrors, PostDocumentBlueprintFolderData, PostDocumentBlueprintFolderErrors, PostDocumentBlueprintFolderResponses, PostDocumentBlueprintFromDocumentData, PostDocumentBlueprintFromDocumentErrors, PostDocumentBlueprintFromDocumentResponses, PostDocumentBlueprintResponses, PostDocumentByIdCopyData, PostDocumentByIdCopyErrors, PostDocumentByIdCopyResponses, PostDocumentByIdPublicAccessData, PostDocumentByIdPublicAccessErrors, PostDocumentByIdPublicAccessResponses, PostDocumentCreateAndPublishData, PostDocumentCreateAndPublishErrors, PostDocumentCreateAndPublishResponses, PostDocumentData, PostDocumentErrors, PostDocumentResponses, PostDocumentTypeAvailableCompositionsData, PostDocumentTypeAvailableCompositionsErrors, PostDocumentTypeAvailableCompositionsResponses, PostDocumentTypeByIdCopyData, PostDocumentTypeByIdCopyErrors, PostDocumentTypeByIdCopyResponses, PostDocumentTypeByIdTemplateData, PostDocumentTypeByIdTemplateErrors, PostDocumentTypeByIdTemplateResponses, PostDocumentTypeData, PostDocumentTypeErrors, PostDocumentTypeFolderData, PostDocumentTypeFolderErrors, PostDocumentTypeFolderResponses, PostDocumentTypeImportData, PostDocumentTypeImportErrors, PostDocumentTypeImportResponses, PostDocumentTypeResponses, PostDocumentValidateData, PostDocumentValidateErrors, PostDocumentValidateResponses, PostDocumentVersionByIdRollbackData, PostDocumentVersionByIdRollbackErrors, PostDocumentVersionByIdRollbackResponses, PostDynamicRootQueryData, PostDynamicRootQueryErrors, PostDynamicRootQueryResponses, PostElementByIdCopyData, PostElementByIdCopyErrors, PostElementByIdCopyResponses, PostElementCreateAndPublishData, PostElementCreateAndPublishErrors, PostElementCreateAndPublishResponses, PostElementData, PostElementErrors, PostElementFolderData, PostElementFolderErrors, PostElementFolderResponses, PostElementResponses, PostElementValidateData, PostElementValidateErrors, PostElementValidateResponses, PostElementVersionByIdRollbackData, PostElementVersionByIdRollbackErrors, PostElementVersionByIdRollbackResponses, PostHealthCheckExecuteActionData, PostHealthCheckExecuteActionErrors, PostHealthCheckExecuteActionResponses, PostHealthCheckGroupByNameCheckData, PostHealthCheckGroupByNameCheckErrors, PostHealthCheckGroupByNameCheckResponses, PostIndexerByIndexNameRebuildData, PostIndexerByIndexNameRebuildErrors, PostIndexerByIndexNameRebuildResponses, PostInstallSetupData, PostInstallSetupErrors, PostInstallSetupResponses, PostInstallValidateDatabaseData, PostInstallValidateDatabaseErrors, PostInstallValidateDatabaseResponses, PostLanguageData, PostLanguageErrors, PostLanguageResponses, PostLogViewerSavedSearchData, PostLogViewerSavedSearchErrors, PostLogViewerSavedSearchResponses, PostMediaData, PostMediaErrors, PostMediaResponses, PostMediaTypeAvailableCompositionsData, PostMediaTypeAvailableCompositionsErrors, PostMediaTypeAvailableCompositionsResponses, PostMediaTypeByIdCopyData, PostMediaTypeByIdCopyErrors, PostMediaTypeByIdCopyResponses, PostMediaTypeData, PostMediaTypeErrors, PostMediaTypeFolderData, PostMediaTypeFolderErrors, PostMediaTypeFolderResponses, PostMediaTypeImportData, PostMediaTypeImportErrors, PostMediaTypeImportResponses, PostMediaTypeResponses, PostMediaValidateData, PostMediaValidateErrors, PostMediaValidateResponses, PostMemberData, PostMemberErrors, PostMemberGroupData, PostMemberGroupErrors, PostMemberGroupResponses, PostMemberResponses, PostMemberTypeAvailableCompositionsData, PostMemberTypeAvailableCompositionsErrors, PostMemberTypeAvailableCompositionsResponses, PostMemberTypeByIdCopyData, PostMemberTypeByIdCopyErrors, PostMemberTypeByIdCopyResponses, PostMemberTypeData, PostMemberTypeErrors, PostMemberTypeFolderData, PostMemberTypeFolderErrors, PostMemberTypeFolderResponses, PostMemberTypeImportData, PostMemberTypeImportErrors, PostMemberTypeImportResponses, PostMemberTypeResponses, PostMemberValidateData, PostMemberValidateErrors, PostMemberValidateResponses, PostModelsBuilderBuildData, PostModelsBuilderBuildErrors, PostModelsBuilderBuildResponses, PostPackageByNameRunMigrationData, PostPackageByNameRunMigrationErrors, PostPackageByNameRunMigrationResponses, PostPackageCreatedData, PostPackageCreatedErrors, PostPackageCreatedResponses, PostPartialViewData, PostPartialViewErrors, PostPartialViewFolderData, PostPartialViewFolderErrors, PostPartialViewFolderResponses, PostPartialViewResponses, PostPublishedCacheRebuildData, PostPublishedCacheRebuildErrors, PostPublishedCacheRebuildResponses, PostPublishedCacheReloadData, PostPublishedCacheReloadErrors, PostPublishedCacheReloadResponses, PostRedirectManagementStatusData, PostRedirectManagementStatusErrors, PostRedirectManagementStatusResponses, PostScriptData, PostScriptErrors, PostScriptFolderData, PostScriptFolderErrors, PostScriptFolderResponses, PostScriptResponses, PostSecurityForgotPasswordData, PostSecurityForgotPasswordErrors, PostSecurityForgotPasswordResetData, PostSecurityForgotPasswordResetErrors, PostSecurityForgotPasswordResetResponses, PostSecurityForgotPasswordResponses, PostSecurityForgotPasswordVerifyData, PostSecurityForgotPasswordVerifyErrors, PostSecurityForgotPasswordVerifyResponses, PostStylesheetData, PostStylesheetErrors, PostStylesheetFolderData, PostStylesheetFolderErrors, PostStylesheetFolderResponses, PostStylesheetResponses, PostTelemetryLevelData, PostTelemetryLevelErrors, PostTelemetryLevelResponses, PostTemplateData, PostTemplateErrors, PostTemplateQueryExecuteData, PostTemplateQueryExecuteErrors, PostTemplateQueryExecuteResponses, PostTemplateResponses, PostTemporaryFileData, PostTemporaryFileErrors, PostTemporaryFileResponses, PostUpgradeAuthorizeData, PostUpgradeAuthorizeErrors, PostUpgradeAuthorizeResponses, PostUserAvatarByIdData, PostUserAvatarByIdErrors, PostUserAvatarByIdResponses, PostUserByIdChangePasswordData, PostUserByIdChangePasswordErrors, PostUserByIdChangePasswordResponses, PostUserByIdClientCredentialsData, PostUserByIdClientCredentialsErrors, PostUserByIdClientCredentialsResponses, PostUserByIdResetPasswordData, PostUserByIdResetPasswordErrors, PostUserByIdResetPasswordResponses, PostUserCurrent2FaByProviderNameData, PostUserCurrent2FaByProviderNameErrors, PostUserCurrent2FaByProviderNameResponses, PostUserCurrentAvatarData, PostUserCurrentAvatarErrors, PostUserCurrentAvatarResponses, PostUserCurrentChangePasswordData, PostUserCurrentChangePasswordErrors, PostUserCurrentChangePasswordResponses, PostUserData, PostUserDataData, PostUserDataErrors, PostUserDataResponses, PostUserDisableData, PostUserDisableErrors, PostUserDisableResponses, PostUserEnableData, PostUserEnableErrors, PostUserEnableResponses, PostUserErrors, PostUserGroupByIdUsersData, PostUserGroupByIdUsersErrors, PostUserGroupByIdUsersResponses, PostUserGroupData, PostUserGroupErrors, PostUserGroupResponses, PostUserInviteCreatePasswordData, PostUserInviteCreatePasswordErrors, PostUserInviteCreatePasswordResponses, PostUserInviteData, PostUserInviteErrors, PostUserInviteResendData, PostUserInviteResendErrors, PostUserInviteResendResponses, PostUserInviteResponses, PostUserInviteVerifyData, PostUserInviteVerifyErrors, PostUserInviteVerifyResponses, PostUserResponses, PostUserSetUserGroupsData, PostUserSetUserGroupsErrors, PostUserSetUserGroupsResponses, PostUserUnlockData, PostUserUnlockErrors, PostUserUnlockResponses, PostWebhookData, PostWebhookErrors, PostWebhookResponses, PutDataTypeByIdData, PutDataTypeByIdErrors, PutDataTypeByIdMoveData, PutDataTypeByIdMoveErrors, PutDataTypeByIdMoveResponses, PutDataTypeByIdResponses, PutDataTypeFolderByIdData, PutDataTypeFolderByIdErrors, PutDataTypeFolderByIdResponses, PutDictionaryByIdData, PutDictionaryByIdErrors, PutDictionaryByIdMoveData, PutDictionaryByIdMoveErrors, PutDictionaryByIdMoveResponses, PutDictionaryByIdResponses, PutDocumentBlueprintByIdData, PutDocumentBlueprintByIdErrors, PutDocumentBlueprintByIdMoveData, PutDocumentBlueprintByIdMoveErrors, PutDocumentBlueprintByIdMoveResponses, PutDocumentBlueprintByIdResponses, PutDocumentBlueprintFolderByIdData, PutDocumentBlueprintFolderByIdErrors, PutDocumentBlueprintFolderByIdResponses, PutDocumentByIdData, PutDocumentByIdDomainsData, PutDocumentByIdDomainsErrors, PutDocumentByIdDomainsResponses, PutDocumentByIdErrors, PutDocumentByIdMoveData, PutDocumentByIdMoveErrors, PutDocumentByIdMoveResponses, PutDocumentByIdMoveToRecycleBinData, PutDocumentByIdMoveToRecycleBinErrors, PutDocumentByIdMoveToRecycleBinResponses, PutDocumentByIdNotificationsData, PutDocumentByIdNotificationsErrors, PutDocumentByIdNotificationsResponses, PutDocumentByIdPublicAccessData, PutDocumentByIdPublicAccessErrors, PutDocumentByIdPublicAccessResponses, PutDocumentByIdPublishData, PutDocumentByIdPublishErrors, PutDocumentByIdPublishResponses, PutDocumentByIdPublishWithDescendantsData, PutDocumentByIdPublishWithDescendantsErrors, PutDocumentByIdPublishWithDescendantsResponses, PutDocumentByIdResponses, PutDocumentByIdSortChildrenData, PutDocumentByIdSortChildrenErrors, PutDocumentByIdSortChildrenResponses, PutDocumentByIdUnpublishData, PutDocumentByIdUnpublishErrors, PutDocumentByIdUnpublishResponses, PutDocumentByIdUpdateAndPublishData, PutDocumentByIdUpdateAndPublishErrors, PutDocumentByIdUpdateAndPublishResponses, PutDocumentRootSortChildrenData, PutDocumentRootSortChildrenErrors, PutDocumentRootSortChildrenResponses, PutDocumentSortData, PutDocumentSortErrors, PutDocumentSortResponses, PutDocumentTypeByIdData, PutDocumentTypeByIdErrors, PutDocumentTypeByIdImportData, PutDocumentTypeByIdImportErrors, PutDocumentTypeByIdImportResponses, PutDocumentTypeByIdMoveData, PutDocumentTypeByIdMoveErrors, PutDocumentTypeByIdMoveResponses, PutDocumentTypeByIdResponses, PutDocumentTypeFolderByIdData, PutDocumentTypeFolderByIdErrors, PutDocumentTypeFolderByIdResponses, PutDocumentVersionByIdPreventCleanupData, PutDocumentVersionByIdPreventCleanupErrors, PutDocumentVersionByIdPreventCleanupResponses, PutElementByIdData, PutElementByIdErrors, PutElementByIdMoveData, PutElementByIdMoveErrors, PutElementByIdMoveResponses, PutElementByIdMoveToRecycleBinData, PutElementByIdMoveToRecycleBinErrors, PutElementByIdMoveToRecycleBinResponses, PutElementByIdPublishData, PutElementByIdPublishErrors, PutElementByIdPublishResponses, PutElementByIdResponses, PutElementByIdUnpublishData, PutElementByIdUnpublishErrors, PutElementByIdUnpublishResponses, PutElementByIdUpdateAndPublishData, PutElementByIdUpdateAndPublishErrors, PutElementByIdUpdateAndPublishResponses, PutElementByIdValidateData, PutElementByIdValidateErrors, PutElementByIdValidateResponses, PutElementFolderByIdData, PutElementFolderByIdErrors, PutElementFolderByIdMoveData, PutElementFolderByIdMoveErrors, PutElementFolderByIdMoveResponses, PutElementFolderByIdMoveToRecycleBinData, PutElementFolderByIdMoveToRecycleBinErrors, PutElementFolderByIdMoveToRecycleBinResponses, PutElementFolderByIdResponses, PutElementVersionByIdPreventCleanupData, PutElementVersionByIdPreventCleanupErrors, PutElementVersionByIdPreventCleanupResponses, PutLanguageByIsoCodeData, PutLanguageByIsoCodeErrors, PutLanguageByIsoCodeResponses, PutMediaByIdData, PutMediaByIdErrors, PutMediaByIdMoveData, PutMediaByIdMoveErrors, PutMediaByIdMoveResponses, PutMediaByIdMoveToRecycleBinData, PutMediaByIdMoveToRecycleBinErrors, PutMediaByIdMoveToRecycleBinResponses, PutMediaByIdResponses, PutMediaByIdSortChildrenData, PutMediaByIdSortChildrenErrors, PutMediaByIdSortChildrenResponses, PutMediaByIdValidateData, PutMediaByIdValidateErrors, PutMediaByIdValidateResponses, PutMediaRootSortChildrenData, PutMediaRootSortChildrenErrors, PutMediaRootSortChildrenResponses, PutMediaSortData, PutMediaSortErrors, PutMediaSortResponses, PutMediaTypeByIdData, PutMediaTypeByIdErrors, PutMediaTypeByIdImportData, PutMediaTypeByIdImportErrors, PutMediaTypeByIdImportResponses, PutMediaTypeByIdMoveData, PutMediaTypeByIdMoveErrors, PutMediaTypeByIdMoveResponses, PutMediaTypeByIdResponses, PutMediaTypeFolderByIdData, PutMediaTypeFolderByIdErrors, PutMediaTypeFolderByIdResponses, PutMemberByIdData, PutMemberByIdErrors, PutMemberByIdResponses, PutMemberByIdValidateData, PutMemberByIdValidateErrors, PutMemberByIdValidateResponses, PutMemberGroupByIdData, PutMemberGroupByIdErrors, PutMemberGroupByIdResponses, PutMemberTypeByIdData, PutMemberTypeByIdErrors, PutMemberTypeByIdImportData, PutMemberTypeByIdImportErrors, PutMemberTypeByIdImportResponses, PutMemberTypeByIdMoveData, PutMemberTypeByIdMoveErrors, PutMemberTypeByIdMoveResponses, PutMemberTypeByIdResponses, PutMemberTypeFolderByIdData, PutMemberTypeFolderByIdErrors, PutMemberTypeFolderByIdResponses, PutPackageCreatedByIdData, PutPackageCreatedByIdErrors, PutPackageCreatedByIdResponses, PutPartialViewByPathData, PutPartialViewByPathErrors, PutPartialViewByPathRenameData, PutPartialViewByPathRenameErrors, PutPartialViewByPathRenameResponses, PutPartialViewByPathResponses, PutProfilingStatusData, PutProfilingStatusErrors, PutProfilingStatusResponses, PutRecycleBinDocumentByIdRestoreData, PutRecycleBinDocumentByIdRestoreErrors, PutRecycleBinDocumentByIdRestoreResponses, PutRecycleBinElementByIdRestoreData, PutRecycleBinElementByIdRestoreErrors, PutRecycleBinElementByIdRestoreResponses, PutRecycleBinElementFolderByIdRestoreData, PutRecycleBinElementFolderByIdRestoreErrors, PutRecycleBinElementFolderByIdRestoreResponses, PutRecycleBinMediaByIdRestoreData, PutRecycleBinMediaByIdRestoreErrors, PutRecycleBinMediaByIdRestoreResponses, PutScriptByPathData, PutScriptByPathErrors, PutScriptByPathRenameData, PutScriptByPathRenameErrors, PutScriptByPathRenameResponses, PutScriptByPathResponses, PutStylesheetByPathData, PutStylesheetByPathErrors, PutStylesheetByPathRenameData, PutStylesheetByPathRenameErrors, PutStylesheetByPathRenameResponses, PutStylesheetByPathResponses, PutTemplateByIdData, PutTemplateByIdErrors, PutTemplateByIdResponses, PutUmbracoManagementApiV11DocumentByIdValidate11Data, PutUmbracoManagementApiV11DocumentByIdValidate11Errors, PutUmbracoManagementApiV11DocumentByIdValidate11Responses, PutUserByIdData, PutUserByIdErrors, PutUserByIdResponses, PutUserCurrentProfileData, PutUserCurrentProfileErrors, PutUserCurrentProfileResponses, PutUserDataData, PutUserDataErrors, PutUserDataResponses, PutUserGroupByIdData, PutUserGroupByIdErrors, PutUserGroupByIdResponses, PutWebhookByIdData, PutWebhookByIdErrors, PutWebhookByIdResponses } from './types.gen'; export type Options = Options2 & { /** @@ -2269,6 +2269,23 @@ export class ElementService { }); } + /** + * Updates and publishes an element. + * + * Updates and publishes an element identified by the provided Id with the details from the request model. + */ + public static putElementByIdUpdateAndPublish(options: Options) { + return (options.client ?? client).put({ + security: [{ scheme: 'bearer', type: 'http' }], + url: '/umbraco/management/api/v1/element/{id}/update-and-publish', + ...options, + headers: { + 'Content-Type': 'application/json', + ...options.headers + } + }); + } + /** * Validates updating an element. * @@ -2312,6 +2329,23 @@ export class ElementService { }); } + /** + * Creates and publishes a new element. + * + * Creates and publishes a new element with the configuration specified in the request model. + */ + public static postElementCreateAndPublish(options: Options) { + return (options.client ?? client).post({ + security: [{ scheme: 'bearer', type: 'http' }], + url: '/umbraco/management/api/v1/element/create-and-publish', + ...options, + headers: { + 'Content-Type': 'application/json', + ...options.headers + } + }); + } + /** * Creates an element folder. * diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/types.gen.ts b/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/types.gen.ts index 45c95b3ab1c2..3f51f28b5107 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/types.gen.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/backend-api/types.gen.ts @@ -188,6 +188,15 @@ export type CreateAndPublishDocumentRequestModel = { variants: Array; }; +export type CreateAndPublishElementRequestModel = { + culturesToPublish: Array; + documentType: ReferenceByIdModel; + parent?: null | ReferenceByIdModel; + id?: null | string; + values: Array; + variants: Array; +}; + export type CreateDataTypeRequestModel = { id?: null | string; parent?: null | ReferenceByIdModel; @@ -3011,6 +3020,12 @@ export type UpdateAndPublishDocumentRequestModel = { variants: Array; }; +export type UpdateAndPublishElementRequestModel = { + culturesToPublish: Array; + values: Array; + variants: Array; +}; + export type UpdateCurrentUserRequestModel = { languageIsoCode: string; }; @@ -8862,6 +8877,43 @@ export type PutElementByIdUnpublishResponses = { 200: unknown; }; +export type PutElementByIdUpdateAndPublishData = { + body: UpdateAndPublishElementRequestModel; + path: { + id: string; + }; + query?: never; + url: '/umbraco/management/api/v1/element/{id}/update-and-publish'; +}; + +export type PutElementByIdUpdateAndPublishErrors = { + /** + * Bad Request + */ + 400: ProblemDetails; + /** + * The resource is protected and requires an authentication token + */ + 401: unknown; + /** + * The authenticated user does not have access to this resource + */ + 403: unknown; + /** + * Not Found + */ + 404: ProblemDetails; +}; + +export type PutElementByIdUpdateAndPublishError = PutElementByIdUpdateAndPublishErrors[keyof PutElementByIdUpdateAndPublishErrors]; + +export type PutElementByIdUpdateAndPublishResponses = { + /** + * OK + */ + 200: unknown; +}; + export type PutElementByIdValidateData = { body: ValidateUpdateElementRequestModel; path: { @@ -8957,6 +9009,41 @@ export type GetElementConfigurationResponses = { export type GetElementConfigurationResponse = GetElementConfigurationResponses[keyof GetElementConfigurationResponses]; +export type PostElementCreateAndPublishData = { + body: CreateAndPublishElementRequestModel; + path?: never; + query?: never; + url: '/umbraco/management/api/v1/element/create-and-publish'; +}; + +export type PostElementCreateAndPublishErrors = { + /** + * Bad Request + */ + 400: ProblemDetails; + /** + * The resource is protected and requires an authentication token + */ + 401: unknown; + /** + * The authenticated user does not have access to this resource + */ + 403: unknown; + /** + * Not Found + */ + 404: ProblemDetails; +}; + +export type PostElementCreateAndPublishError = PostElementCreateAndPublishErrors[keyof PostElementCreateAndPublishErrors]; + +export type PostElementCreateAndPublishResponses = { + /** + * Created + */ + 201: unknown; +}; + export type PostElementFolderData = { body: CreateFolderRequestModel; path?: never; diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/documents/publishing/workspace-context/document-publishing.workspace-context.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/documents/publishing/workspace-context/document-publishing.workspace-context.ts index 464df20356f6..b77586ab0f2d 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/documents/publishing/workspace-context/document-publishing.workspace-context.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/documents/publishing/workspace-context/document-publishing.workspace-context.ts @@ -403,12 +403,8 @@ export class UmbDocumentPublishingWorkspaceContext extends UmbContextBase implem // If data of the selection is not valid Then just save: await this.#documentWorkspaceContext!.performCreateOrUpdate(variantIds, saveData); // Notifying that the save was successful, but we did not publish, which is what we want to symbolize here. [NL] - const notificationContext = await this.getContext(UMB_NOTIFICATION_CONTEXT); - if (!notificationContext) { - throw new Error('Notification context is missing'); - } // TODO: Get rid of the save notification. - notificationContext.peek('danger', { + this.#notificationContext?.peek('danger', { data: { message: this.#localize.term('speechBubbles_editContentPublishedFailedByValidation') }, }); // Reject even thought the save was successful, but we did not publish, which is what we want to symbolize here. [NL] diff --git a/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.repository.ts b/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.repository.ts index 56f4a94ccade..6aa374b4cdcb 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.repository.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.repository.ts @@ -7,6 +7,38 @@ import type { UmbVariantId } from '@umbraco-cms/backoffice/variant'; export class UmbElementPublishingRepository extends UmbRepositoryBase { #publishingDataSource = new UmbElementPublishingServerDataSource(this); + /** + * Creates and publishes a new Element in a single operation + * @param {UmbElementDetailModel} model - The Element to create + * @param {Array} variantIds - The variants to publish after creating + * @param {string | null} parentUnique - The unique of the parent to create under + * @returns {*} + * @memberof UmbElementPublishingRepository + */ + async createAndPublish( + model: UmbElementDetailModel, + variantIds: Array, + parentUnique: string | null = null, + ) { + if (!model) throw new Error('Element is missing'); + if (!model.unique) throw new Error('Element unique is missing'); + + return this.#publishingDataSource.createAndPublish(model, variantIds, parentUnique); + } + + /** + * Updates and publishes an existing Element in a single operation + * @param {UmbElementDetailModel} model - The Element to update + * @param {Array} variantIds - The variants to publish after updating + * @returns {*} + * @memberof UmbElementPublishingRepository + */ + async updateAndPublish(model: UmbElementDetailModel, variantIds: Array) { + if (!model.unique) throw new Error('Unique is missing'); + + return this.#publishingDataSource.updateAndPublish(model, variantIds); + } + /** * Publish one or more variants of an Element * @param {string} unique diff --git a/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.server.data-source.test.ts b/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.server.data-source.test.ts new file mode 100644 index 000000000000..d38fd39cb2aa --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.server.data-source.test.ts @@ -0,0 +1,67 @@ +import { expect } from '@open-wc/testing'; +import { UmbVariantId } from '@umbraco-cms/backoffice/variant'; +import { useMockSet } from '@umbraco-cms/internal/mock-manager'; +import { UmbControllerHostElementMixin } from '@umbraco-cms/backoffice/controller-api'; +import { customElement } from '@umbraco-cms/backoffice/external/lit'; +import { UmbId } from '@umbraco-cms/backoffice/id'; +import { UmbElementServerDataSource } from '../../repository/detail/element-detail.server.data-source.js'; +import { UmbElementPublishingServerDataSource } from './element-publishing.server.data-source.js'; + +const ELEMENT_ID = 'simple-element-id'; + +@customElement('umb-test-element-publishing-data-source-host') +class UmbTestHostElement extends UmbControllerHostElementMixin(HTMLElement) {} + +describe('UmbElementPublishingServerDataSource (create/update-and-publish)', () => { + let hostElement: UmbTestHostElement; + // The detail data source is used only to read the element back and assert the published outcome, + // since the and-publish endpoints return no element body. + let detailDataSource: UmbElementServerDataSource; + let publishingDataSource: UmbElementPublishingServerDataSource; + + beforeEach(async () => { + await useMockSet('default'); + hostElement = new UmbTestHostElement(); + document.body.appendChild(hostElement); + detailDataSource = new UmbElementServerDataSource(hostElement); + publishingDataSource = new UmbElementPublishingServerDataSource(hostElement); + }); + + afterEach(() => { + document.body.innerHTML = ''; + }); + + describe('createAndPublish', () => { + it('creates a new invariant element and publishes it', async () => { + // Use an existing element as a valid model template, with a fresh unique so it is created anew. + const { data: template } = await detailDataSource.read(ELEMENT_ID); + expect(template, 'precondition: template element loads').to.exist; + const newId = UmbId.new(); + const newModel = { ...template!, unique: newId }; + + // Invariant content publishes with an empty cultures array; the invariant variant id is filtered out. + const invariant = UmbVariantId.CreateInvariant(); + const { error } = await publishingDataSource.createAndPublish(newModel, [invariant], null); + expect(error).to.be.undefined; + + const { data: created } = await detailDataSource.read(newId); + const variant = created!.variants.find((v) => v.culture === null); + expect(variant?.state, 'the invariant variant is Published').to.equal('Published'); + }); + }); + + describe('updateAndPublish', () => { + it('publishes the invariant variant using an empty culturesToPublish array', async () => { + const { data: model } = await detailDataSource.read(ELEMENT_ID); + expect(model, 'precondition: element loads').to.exist; + + const invariant = UmbVariantId.CreateInvariant(); + const { error } = await publishingDataSource.updateAndPublish(model!, [invariant]); + expect(error).to.be.undefined; + + const { data: updated } = await detailDataSource.read(ELEMENT_ID); + const variant = updated!.variants.find((v) => v.culture === null); + expect(variant?.state, 'the invariant variant is Published').to.equal('Published'); + }); + }); +}); diff --git a/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.server.data-source.ts b/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.server.data-source.ts index be0110dada45..d726e228ba89 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.server.data-source.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/repository/element-publishing.server.data-source.ts @@ -1,8 +1,16 @@ import type { UmbElementVariantPublishModel } from '../types.js'; import type { UmbElementDetailModel } from '../../types.js'; import { umbMapElementResponseToDetailModel } from '../../repository/detail/element-detail-response.mappers.js'; +import { + umbMapElementCreateRequestBody, + umbMapElementUpdateRequestBody, +} from '../../repository/detail/element-detail-request.mappers.js'; import { tryExecute } from '@umbraco-cms/backoffice/resources'; import { ElementService } from '@umbraco-cms/backoffice/external/backend-api'; +import type { + CreateAndPublishElementRequestModel, + UpdateAndPublishElementRequestModel, +} from '@umbraco-cms/backoffice/external/backend-api'; import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api'; import type { UmbVariantId } from '@umbraco-cms/backoffice/variant'; import type { UmbDataSourceResponse } from '@umbraco-cms/backoffice/repository'; @@ -23,6 +31,64 @@ export class UmbElementPublishingServerDataSource { this.#host = host; } + /** + * Creates and publishes a new Element on the server in a single operation + * @param {UmbElementDetailModel} model - Element Model + * @param {Array} variantIds - The variants to publish after creating + * @param {string | null} parentUnique - The unique of the parent to create under + * @returns {*} + * @memberof UmbElementPublishingServerDataSource + */ + async createAndPublish( + model: UmbElementDetailModel, + variantIds: Array, + parentUnique: string | null = null, + ) { + if (!model) throw new Error('Element is missing'); + if (!model.unique) throw new Error('Element unique is missing'); + + const body: CreateAndPublishElementRequestModel = { + ...umbMapElementCreateRequestBody(model, parentUnique), + culturesToPublish: this.#mapCulturesToPublish(variantIds), + }; + + // 201 Created returns only the key (no element body). The workspace reloads after this to refresh + // its state, so we deliberately do NOT re-read the full element here — that would be a redundant + // round-trip on top of the reload. + return tryExecute(this.#host, ElementService.postElementCreateAndPublish({ body })); + } + + /** + * Updates and publishes an Element on the server in a single operation + * @param {UmbElementDetailModel} model - Element Model + * @param {Array} variantIds - The variants to publish after updating + * @returns {*} + * @memberof UmbElementPublishingServerDataSource + */ + async updateAndPublish(model: UmbElementDetailModel, variantIds: Array) { + if (!model.unique) throw new Error('Unique is missing'); + + const body: UpdateAndPublishElementRequestModel = { + ...umbMapElementUpdateRequestBody(model), + culturesToPublish: this.#mapCulturesToPublish(variantIds), + }; + + // 200 returns only a notification header (no element body). The workspace reloads after this to + // refresh its state, so we deliberately do NOT re-read the full element here. + return tryExecute(this.#host, ElementService.putElementByIdUpdateAndPublish({ path: { id: model.unique }, body })); + } + + /** + * Maps the selected variants to the culture codes accepted by the create/update-and-publish endpoints. + * Invariant content types require an empty array (cultures cannot be specified), and the server rejects + * `null`/`"*"` entries, so invariant variants are filtered out and only distinct culture codes remain. + * @param {Array} variantIds - The selected variants to publish + * @returns {Array} The distinct culture codes to publish + */ + #mapCulturesToPublish(variantIds: Array): Array { + return [...new Set(variantIds.filter((x) => !x.isCultureInvariant()).map((x) => x.toCultureString()))]; + } + /** * Publish one or more variants of an Element * @param {string} unique diff --git a/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/workspace-context/element-publishing.workspace-context.ts b/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/workspace-context/element-publishing.workspace-context.ts index 2ff70aadba3b..e4a0dd0bf6d2 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/workspace-context/element-publishing.workspace-context.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/elements/publishing/workspace-context/element-publishing.workspace-context.ts @@ -186,30 +186,43 @@ export class UmbElementPublishingWorkspaceContext extends UmbContextBase impleme await this.#elementWorkspaceContext.runMandatoryValidationForSaveData(saveData, variantIds); await this.#elementWorkspaceContext.askServerToValidate(saveData, variantIds); - return this.#elementWorkspaceContext.validateAndSubmit( + return this.#elementWorkspaceContext.validateVariantsAndSubmit( + variantIds, async () => { - if (!this.#elementWorkspaceContext) { - throw new Error('Element workspace context is missing'); - } - - // Save the element before scheduling - await this.#elementWorkspaceContext.performCreateOrUpdate(variantIds, saveData); + try { + if (!this.#elementWorkspaceContext) { + throw new Error('Element workspace context is missing'); + } + + // Save the element before scheduling + await this.#elementWorkspaceContext.performCreateOrUpdate(variantIds, saveData); + + // Schedule the element + const { error } = await this.#publishingRepository.publish(unique, variants); + if (error) { + throw error; + } + + const notification = { + data: { message: this.#localize.term('speechBubbles_editContentScheduledSavedText') }, + }; + this.#notificationContext?.peek('positive', notification); + + // reload the element so all states are updated after the schedule operation + await this.#elementWorkspaceContext.reload(); + + // request reload of this entity + const structureEvent = new UmbRequestReloadStructureForEntityEvent({ entityType, unique }); + this.#eventContext?.dispatchEvent(structureEvent); + } catch (error) { + // Notify only on the publish path. The validation-failure path below already + // notifies, so a shared top-level .catch would fire a second toast. + this.#notificationContext?.peek('danger', { + data: { message: this.#localize.term('speechBubbles_editContentScheduledNotSavedText') }, + }); - // Schedule the element - const { error } = await this.#publishingRepository.publish(unique, variants); - if (error) { return Promise.reject(error); } - - const notification = { data: { message: this.#localize.term('speechBubbles_editContentScheduledSavedText') } }; - this.#notificationContext?.peek('positive', notification); - - // reload the element so all states are updated after the schedule operation - await this.#elementWorkspaceContext.reload(); - - // request reload of this entity - const structureEvent = new UmbRequestReloadStructureForEntityEvent({ entityType, unique }); - this.#eventContext?.dispatchEvent(structureEvent); }, async (reason?: unknown) => { this.#notificationContext?.peek('danger', { @@ -283,9 +296,17 @@ export class UmbElementPublishingWorkspaceContext extends UmbContextBase impleme await this.#elementWorkspaceContext.runMandatoryValidationForSaveData(saveData, variantIds); await this.#elementWorkspaceContext.askServerToValidate(saveData, variantIds); - return this.#elementWorkspaceContext.validateAndSubmit( - async () => { - return this.#performSaveAndPublish(variantIds, saveData); + return this.#elementWorkspaceContext.validateVariantsAndSubmit( + variantIds, + () => { + // Notify only on the publish path. The validation-failure path below already + // notifies, so a shared top-level .catch would fire a second, contradictory toast. + return this.#performSaveAndPublish(variantIds, saveData).catch((error) => { + this.#notificationContext?.peek('danger', { + data: { message: this.#localize.term('speechBubbles_editElementPublishedFailed') }, + }); + return Promise.reject(error); + }); }, async (reason?: unknown) => { // If data of the selection is not valid Then just save: @@ -309,31 +330,49 @@ export class UmbElementPublishingWorkspaceContext extends UmbContextBase impleme const entityType = this.#elementWorkspaceContext.getEntityType(); if (!entityType) throw new Error('Entity type is missing'); - await this.#elementWorkspaceContext.performCreateOrUpdate(variantIds, saveData); + // The publish already succeeded server-side once we reach the read-back; a failed read-back must not be + // reported as a publish failure, so we fall back to the submitted data and flag the editor as stale. + let reloadAfterPublishFailed = false; + const loadAfterPublish = async (): Promise => { + try { + return await this.#elementWorkspaceContext!.loadWithoutPersist(); + } catch { + reloadAfterPublishFailed = true; + return saveData; + } + }; - const { error } = await this.#publishingRepository.publish( - unique, - variantIds.map((variantId) => ({ variantId })), - ); + await this.#elementWorkspaceContext.performCreateOrUpdate(variantIds, saveData, { + create: async (data, ids, parent) => { + const { error } = await this.#publishingRepository.createAndPublish(data, ids, parent.unique); + if (error) throw new Error('Error creating and publishing element', { cause: error }); + return loadAfterPublish(); + }, + update: async (data, ids) => { + const { error } = await this.#publishingRepository.updateAndPublish(data, ids); + if (error) throw new Error('Error updating and publishing element', { cause: error }); + return loadAfterPublish(); + }, + }); - if (!error) { - this.#notificationContext?.peek('positive', { - data: { message: this.#localize.term('speechBubbles_editElementPublishedHeader') }, - }); + this.#notificationContext?.peek('positive', { + data: { + message: this.#localize.term('speechBubbles_editElementPublishedHeader'), + }, + }); - // Clear stale published data and pending changes state so the - // persistedData observer does not run a comparison against outdated - // data during reload, which would briefly show a false-positive - // "pending changes" state. - this.#clear(); + if (reloadAfterPublishFailed) { + this.#notificationContext?.peek('warning', { + data: { + message: this.#localize.term('speechBubbles_editElementPublishedReloadFailed'), + }, + }); + } - // reload the element so all states are updated after the publish operation - await this.#elementWorkspaceContext.reload(); - await this.#loadAndProcessLastPublished(); + await this.#loadAndProcessLastPublished(); - const event = new UmbRequestReloadStructureForEntityEvent({ unique, entityType }); - this.#eventContext?.dispatchEvent(event); - } + const event = new UmbRequestReloadStructureForEntityEvent({ unique, entityType }); + this.#eventContext?.dispatchEvent(event); } #publishableVariantsFilter = (option: UmbElementVariantOptionModel) => { diff --git a/src/Umbraco.Web.UI.Client/src/packages/elements/repository/detail/element-detail-request.mappers.ts b/src/Umbraco.Web.UI.Client/src/packages/elements/repository/detail/element-detail-request.mappers.ts new file mode 100644 index 000000000000..c822876ce8c5 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/packages/elements/repository/detail/element-detail-request.mappers.ts @@ -0,0 +1,38 @@ +import type { UmbElementDetailModel } from '../../types.js'; +import type { + CreateElementRequestModel, + UpdateElementRequestModel, +} from '@umbraco-cms/backoffice/external/backend-api'; + +/** + * Maps an Element detail model to the create request body. + * Shared by the detail create endpoint and the publishing create-and-publish endpoint. + * @param {UmbElementDetailModel} model - The Element to create + * @param {string | null} parentUnique - The unique of the parent to create under + * @returns {CreateElementRequestModel} The create request body + */ +export function umbMapElementCreateRequestBody( + model: UmbElementDetailModel, + parentUnique: string | null, +): CreateElementRequestModel { + return { + id: model.unique, + parent: parentUnique ? { id: parentUnique } : null, + documentType: { id: model.documentType.unique }, + values: model.values, + variants: model.variants, + }; +} + +/** + * Maps an Element detail model to the update request body. + * Shared by the detail update endpoint and the publishing update-and-publish endpoint. + * @param {UmbElementDetailModel} model - The Element to update + * @returns {UpdateElementRequestModel} The update request body + */ +export function umbMapElementUpdateRequestBody(model: UmbElementDetailModel): UpdateElementRequestModel { + return { + values: model.values, + variants: model.variants, + }; +} diff --git a/src/Umbraco.Web.UI.Client/src/packages/elements/repository/detail/element-detail.server.data-source.ts b/src/Umbraco.Web.UI.Client/src/packages/elements/repository/detail/element-detail.server.data-source.ts index cbe4e9545fea..e2b9b5a5fcb2 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/elements/repository/detail/element-detail.server.data-source.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/elements/repository/detail/element-detail.server.data-source.ts @@ -1,15 +1,12 @@ import type { UmbElementDetailModel } from '../../types.js'; import { UMB_ELEMENT_ENTITY_TYPE } from '../../entity.js'; +import { umbMapElementCreateRequestBody, umbMapElementUpdateRequestBody } from './element-detail-request.mappers.js'; +import { umbMapElementResponseToDetailModel } from './element-detail-response.mappers.js'; import { tryExecute } from '@umbraco-cms/backoffice/resources'; import { ElementService } from '@umbraco-cms/backoffice/external/backend-api'; import { UmbId } from '@umbraco-cms/backoffice/id'; import type { UmbDataSourceResponse, UmbDetailDataSource } from '@umbraco-cms/backoffice/repository'; -import type { - CreateElementRequestModel, - UpdateElementRequestModel, -} from '@umbraco-cms/backoffice/external/backend-api'; import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api'; -import { umbMapElementResponseToDetailModel } from './element-detail-response.mappers.js'; /** * A data source for the Element that fetches data from the server @@ -83,14 +80,7 @@ export class UmbElementServerDataSource implements UmbDetailDataSource { protected override getPublishingContextToken() { return UMB_ELEMENT_PUBLISHING_WORKSPACE_CONTEXT; diff --git a/tests/Umbraco.Tests.Integration/ManagementApi/Element/CreateAndPublishElementControllerTests.cs b/tests/Umbraco.Tests.Integration/ManagementApi/Element/CreateAndPublishElementControllerTests.cs new file mode 100644 index 000000000000..6d8d844cdeb5 --- /dev/null +++ b/tests/Umbraco.Tests.Integration/ManagementApi/Element/CreateAndPublishElementControllerTests.cs @@ -0,0 +1,73 @@ +using System.Linq.Expressions; +using System.Net; +using System.Net.Http.Json; +using NUnit.Framework; +using Umbraco.Cms.Api.Management.Controllers.Element; +using Umbraco.Cms.Api.Management.ViewModels; +using Umbraco.Cms.Api.Management.ViewModels.Element; +using Umbraco.Cms.Core; +using Umbraco.Cms.Core.Services; +using Umbraco.Cms.Tests.Common.Builders; +using Umbraco.Cms.Tests.Common.Builders.Extensions; + +namespace Umbraco.Cms.Tests.Integration.ManagementApi.Element; + +public class CreateAndPublishElementControllerTests : ManagementApiUserGroupTestBase +{ + private IContentTypeService ContentTypeService => GetRequiredService(); + + private Guid _elementTypeKey; + + [SetUp] + public async Task CreateElementType() + { + var elementType = new ContentTypeBuilder() + .WithAlias(Guid.NewGuid().ToString()) + .WithName("Test Element") + .WithIsElement(true) + .WithAllowedInLibrary(true) + .Build(); + await ContentTypeService.CreateAsync(elementType, Constants.Security.SuperUserKey); + _elementTypeKey = elementType.Key; + } + + protected override Expression> MethodSelector => + x => x.Create(CancellationToken.None, null!); + + protected override UserGroupAssertionModel AdminUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Created }; + + protected override UserGroupAssertionModel EditorUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Created }; + + protected override UserGroupAssertionModel SensitiveDataUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; + + protected override UserGroupAssertionModel TranslatorUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; + + // Writers can create but not publish, so the combined operation must be forbidden for them. + protected override UserGroupAssertionModel WriterUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; + + protected override UserGroupAssertionModel UnauthorizedUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Unauthorized }; + + protected override async Task ClientRequest() + { + var createAndPublishElementRequestModel = new CreateAndPublishElementRequestModel + { + DocumentType = new ReferenceByIdModel(_elementTypeKey), + Parent = null, + Id = Guid.NewGuid(), + Values = [], + Variants = + [ + new ElementVariantRequestModel { Culture = null, Segment = null, Name = "Test Element Instance" } + ], + CulturesToPublish = [], + }; + + return await Client.PostAsync(Url, JsonContent.Create(createAndPublishElementRequestModel)); + } +} diff --git a/tests/Umbraco.Tests.Integration/ManagementApi/Element/UpdateAndPublishElementControllerTests.cs b/tests/Umbraco.Tests.Integration/ManagementApi/Element/UpdateAndPublishElementControllerTests.cs new file mode 100644 index 000000000000..71b4920a3d7f --- /dev/null +++ b/tests/Umbraco.Tests.Integration/ManagementApi/Element/UpdateAndPublishElementControllerTests.cs @@ -0,0 +1,78 @@ +using System.Linq.Expressions; +using System.Net; +using System.Net.Http.Json; +using NUnit.Framework; +using Umbraco.Cms.Api.Management.Controllers.Element; +using Umbraco.Cms.Api.Management.ViewModels.Element; +using Umbraco.Cms.Core; +using Umbraco.Cms.Core.Models.ContentEditing; +using Umbraco.Cms.Core.Services; +using Umbraco.Cms.Tests.Common.Builders; +using Umbraco.Cms.Tests.Common.Builders.Extensions; + +namespace Umbraco.Cms.Tests.Integration.ManagementApi.Element; + +public class UpdateAndPublishElementControllerTests : ManagementApiUserGroupTestBase +{ + private IElementEditingService ElementEditingService => GetRequiredService(); + + private IContentTypeService ContentTypeService => GetRequiredService(); + + private Guid _elementKey; + + [SetUp] + public async Task CreateElementType() + { + var elementType = new ContentTypeBuilder() + .WithAlias(Guid.NewGuid().ToString()) + .WithName("Test Element") + .WithIsElement(true) + .WithAllowedInLibrary(true) + .Build(); + await ContentTypeService.CreateAsync(elementType, Constants.Security.SuperUserKey); + + var createModel = new ElementCreateModel + { + ContentTypeKey = elementType.Key, + ParentKey = null, + Variants = [new VariantModel { Name = "Test Element" }], + }; + var response = await ElementEditingService.CreateAsync(createModel, Constants.Security.SuperUserKey); + Assert.IsTrue(response.Success, $"Failed to create element: {response.Status}"); + _elementKey = response.Result!.Content!.Key; + } + + protected override Expression> MethodSelector => + x => x.Update(CancellationToken.None, _elementKey, null!); + + protected override UserGroupAssertionModel AdminUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.OK }; + + protected override UserGroupAssertionModel EditorUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.OK }; + + protected override UserGroupAssertionModel SensitiveDataUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; + + protected override UserGroupAssertionModel TranslatorUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; + + // Writers can update but not publish, so the combined operation must be forbidden for them. + protected override UserGroupAssertionModel WriterUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; + + protected override UserGroupAssertionModel UnauthorizedUserGroupAssertionModel + => new() { ExpectedStatusCode = HttpStatusCode.Unauthorized }; + + protected override async Task ClientRequest() + { + var updateAndPublishElementRequestModel = new UpdateAndPublishElementRequestModel + { + Values = [], + Variants = [new ElementVariantRequestModel { Culture = null, Segment = null, Name = "Updated Element" }], + CulturesToPublish = [], + }; + + return await Client.PutAsync(Url, JsonContent.Create(updateAndPublishElementRequestModel)); + } +} diff --git a/tests/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ElementEditingServiceTests.CreateAndPublish.cs b/tests/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ElementEditingServiceTests.CreateAndPublish.cs new file mode 100644 index 000000000000..ecb04cc66ff7 --- /dev/null +++ b/tests/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ElementEditingServiceTests.CreateAndPublish.cs @@ -0,0 +1,176 @@ +using NUnit.Framework; +using Umbraco.Cms.Core; +using Umbraco.Cms.Core.Models; +using Umbraco.Cms.Core.Models.ContentEditing; +using Umbraco.Cms.Core.Services.OperationStatus; + +namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Services; + +public partial class ElementEditingServiceTests +{ + [Test] + public async Task Can_CreateAndPublish_Invariant_Element() + { + var elementType = await CreateInvariantElementType(); + + var createModel = new ElementCreateModel + { + ContentTypeKey = elementType.Key, + ParentKey = null, + Variants = + [ + new VariantModel { Name = "Test Create And Publish" } + ], + Properties = + [ + new PropertyValueModel { Alias = "title", Value = "The title" }, + new PropertyValueModel { Alias = "text", Value = "The text" } + ], + }; + + var result = await ElementEditingService.CreateAndPublishAsync(createModel, [], Constants.Security.SuperUserKey); + Assert.IsTrue(result.Success); + VerifyCreateAndPublish(result.Result.Content); + + // re-get and re-test + VerifyCreateAndPublish(await ElementEditingService.GetAsync(result.Result.Content!.Key)); + + void VerifyCreateAndPublish(IElement? element) + { + Assert.IsNotNull(element); + Assert.IsTrue(element.HasIdentity); + Assert.IsTrue(element.Published); + Assert.AreEqual("Test Create And Publish", element.Name); + Assert.AreEqual("The title", element.GetValue("title", published: true)); + Assert.AreEqual("The text", element.GetValue("text", published: true)); + } + } + + [Test] + public async Task Can_CreateAndPublish_Culture_Variant_All_Cultures() + { + var elementType = await CreateVariantElementType(); + + var createModel = new ElementCreateModel + { + ContentTypeKey = elementType.Key, + ParentKey = null, + Properties = + [ + new PropertyValueModel { Alias = "invariantTitle", Value = "The Invariant Title" }, + new PropertyValueModel { Alias = "variantTitle", Value = "The English Title", Culture = "en-US" }, + new PropertyValueModel { Alias = "variantTitle", Value = "The Danish Title", Culture = "da-DK" } + ], + Variants = + [ + new VariantModel { Culture = "en-US", Name = "English Name" }, + new VariantModel { Culture = "da-DK", Name = "Danish Name" } + ], + }; + + var result = await ElementEditingService.CreateAndPublishAsync(createModel, ["en-US", "da-DK"], Constants.Security.SuperUserKey); + Assert.IsTrue(result.Success); + VerifyCreateAndPublish(result.Result.Content); + + // re-get and re-test + VerifyCreateAndPublish(await ElementEditingService.GetAsync(result.Result.Content!.Key)); + + void VerifyCreateAndPublish(IElement? element) + { + Assert.IsNotNull(element); + Assert.IsTrue(element.Published); + Assert.IsTrue(element.IsCulturePublished("en-US")); + Assert.IsTrue(element.IsCulturePublished("da-DK")); + Assert.AreEqual("English Name", element.GetCultureName("en-US")); + Assert.AreEqual("Danish Name", element.GetCultureName("da-DK")); + Assert.AreEqual("The Invariant Title", element.GetValue("invariantTitle")); + Assert.AreEqual("The English Title", element.GetValue("variantTitle", "en-US", published: true)); + Assert.AreEqual("The Danish Title", element.GetValue("variantTitle", "da-DK", published: true)); + } + } + + [Test] + public async Task Can_CreateAndPublish_Culture_Variant_Single_Culture() + { + var elementType = await CreateVariantElementType(); + + var createModel = new ElementCreateModel + { + ContentTypeKey = elementType.Key, + ParentKey = null, + Properties = + [ + new PropertyValueModel { Alias = "invariantTitle", Value = "The Invariant Title" }, + new PropertyValueModel { Alias = "variantTitle", Value = "The English Title", Culture = "en-US" }, + new PropertyValueModel { Alias = "variantTitle", Value = "The Danish Title", Culture = "da-DK" } + ], + Variants = + [ + new VariantModel { Culture = "en-US", Name = "English Name" }, + new VariantModel { Culture = "da-DK", Name = "Danish Name" } + ], + }; + + var result = await ElementEditingService.CreateAndPublishAsync(createModel, ["en-US"], Constants.Security.SuperUserKey); + Assert.IsTrue(result.Success); + VerifyCreateAndPublish(result.Result.Content); + + // re-get and re-test + VerifyCreateAndPublish(await ElementEditingService.GetAsync(result.Result.Content!.Key)); + + void VerifyCreateAndPublish(IElement? element) + { + Assert.IsNotNull(element); + Assert.IsTrue(element.IsCulturePublished("en-US")); + Assert.IsFalse(element.IsCulturePublished("da-DK")); + + // both values should still be saved + Assert.AreEqual("The English Title", element.GetValue("variantTitle", "en-US", published: true)); + Assert.AreEqual("The Danish Title", element.GetValue("variantTitle", "da-DK")); + } + } + + [Test] + public async Task Cannot_CreateAndPublish_Invariant_Without_Variants() + { + var elementType = await CreateInvariantElementType(); + + // An invariant content type requires exactly one invariant variant (which carries the name); + // supplying no variants is therefore a variance mismatch. + var createModel = new ElementCreateModel + { + ContentTypeKey = elementType.Key, + ParentKey = Constants.System.RootKey, + Variants = [], + Properties = + [ + new PropertyValueModel { Alias = "title", Value = "The title value" } + ], + }; + + var result = await ElementEditingService.CreateAndPublishAsync(createModel, [], Constants.Security.SuperUserKey); + Assert.IsFalse(result.Success); + Assert.AreEqual( + ContentEditingOperationStatus.ContentTypeCultureVarianceMismatch, + result.Status, + "Creating an invariant element without any variants should fail with a variance mismatch."); + } + + [Test] + public async Task Cannot_CreateAndPublish_Without_Content_Type() + { + var createModel = new ElementCreateModel + { + ContentTypeKey = Guid.NewGuid(), + ParentKey = null, + Variants = + [ + new VariantModel { Name = "Test" } + ], + }; + + var result = await ElementEditingService.CreateAndPublishAsync(createModel, [], Constants.Security.SuperUserKey); + Assert.IsFalse(result.Success); + Assert.AreEqual(ContentEditingOperationStatus.ContentTypeNotFound, result.Status); + } +} diff --git a/tests/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ElementEditingServiceTests.UpdateAndPublish.cs b/tests/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ElementEditingServiceTests.UpdateAndPublish.cs new file mode 100644 index 000000000000..40ef86138d41 --- /dev/null +++ b/tests/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ElementEditingServiceTests.UpdateAndPublish.cs @@ -0,0 +1,97 @@ +using NUnit.Framework; +using Umbraco.Cms.Core; +using Umbraco.Cms.Core.Models; +using Umbraco.Cms.Core.Models.ContentEditing; +using Umbraco.Cms.Core.Services.OperationStatus; + +namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Services; + +public partial class ElementEditingServiceTests +{ + [Test] + public async Task Can_UpdateAndPublish_Invariant_Element() + { + var element = await CreateInvariantElement(); + + var updateModel = new ElementUpdateModel + { + Variants = + [ + new VariantModel { Name = "Updated Name" } + ], + Properties = + [ + new PropertyValueModel { Alias = "title", Value = "The updated title" }, + new PropertyValueModel { Alias = "text", Value = "The updated text" } + ], + }; + + var result = await ElementEditingService.UpdateAndPublishAsync(element.Key, updateModel, [], Constants.Security.SuperUserKey); + Assert.IsTrue(result.Success); + VerifyUpdateAndPublish(result.Result.Content); + + // re-get and re-test + VerifyUpdateAndPublish(await ElementEditingService.GetAsync(element.Key)); + + void VerifyUpdateAndPublish(IElement? updatedElement) + { + Assert.IsNotNull(updatedElement); + Assert.IsTrue(updatedElement.Published); + Assert.AreEqual("Updated Name", updatedElement.Name); + Assert.AreEqual("The updated title", updatedElement.GetValue("title", published: true)); + Assert.AreEqual("The updated text", updatedElement.GetValue("text", published: true)); + } + } + + [Test] + public async Task Can_UpdateAndPublish_Culture_Variant_Single_Culture() + { + var element = await CreateCultureVariantElement(); + + var updateModel = new ElementUpdateModel + { + Properties = + [ + new PropertyValueModel { Alias = "invariantTitle", Value = "The updated invariant title" }, + new PropertyValueModel { Alias = "variantTitle", Value = "The updated English title", Culture = "en-US" }, + new PropertyValueModel { Alias = "variantTitle", Value = "The updated Danish title", Culture = "da-DK" }, + ], + Variants = + [ + new VariantModel { Culture = "en-US", Name = "Updated English Name" }, + new VariantModel { Culture = "da-DK", Name = "Updated Danish Name" } + ], + }; + + var result = await ElementEditingService.UpdateAndPublishAsync(element.Key, updateModel, ["en-US"], Constants.Security.SuperUserKey); + Assert.IsTrue(result.Success); + VerifyUpdateAndPublish(await ElementEditingService.GetAsync(element.Key)); + + void VerifyUpdateAndPublish(IElement? updatedElement) + { + Assert.IsNotNull(updatedElement); + Assert.IsTrue(updatedElement.IsCulturePublished("en-US")); + Assert.IsFalse(updatedElement.IsCulturePublished("da-DK")); + + // both cultures should be saved even though only one was published + Assert.AreEqual("The updated English title", updatedElement.GetValue("variantTitle", "en-US", published: true)); + Assert.AreEqual("The updated Danish title", updatedElement.GetValue("variantTitle", "da-DK")); + } + } + + [Test] + public async Task Cannot_UpdateAndPublish_Non_Existing_Element() + { + var updateModel = new ElementUpdateModel + { + Variants = + [ + new VariantModel { Name = "Updated Name" } + ], + }; + + var result = await ElementEditingService.UpdateAndPublishAsync(Guid.NewGuid(), updateModel, [], Constants.Security.SuperUserKey); + Assert.IsFalse(result.Success); + Assert.AreEqual(ContentEditingOperationStatus.NotFound, result.Status); + } +} diff --git a/tests/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj b/tests/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj index 97974dc30fe6..058f593e706a 100644 --- a/tests/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj +++ b/tests/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj @@ -388,6 +388,12 @@ ElementEditingServiceTests.cs + + ElementEditingServiceTests.cs + + + ElementEditingServiceTests.cs + ElementContainerServiceTests.cs