From 63afd60b44d5006088b7afe31deea33e8e29f7b5 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 30 May 2024 14:57:42 +0200 Subject: [PATCH 01/20] only render folders for move document-type --- .../entity-actions/move-to/manifests.ts | 1 + .../tree/document-type.tree.server.data-source.ts | 13 +++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/move-to/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/move-to/manifests.ts index b53091d713..ebb3f30c81 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/move-to/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/move-to/manifests.ts @@ -15,6 +15,7 @@ const entityActions: Array = [ treeRepositoryAlias: UMB_DOCUMENT_TYPE_TREE_REPOSITORY_ALIAS, moveRepositoryAlias: UMB_MOVE_DOCUMENT_TYPE_REPOSITORY_ALIAS, treeAlias: UMB_DOCUMENT_TYPE_TREE_ALIAS, + foldersOnly: true, }, }, ]; diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/tree/document-type.tree.server.data-source.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/tree/document-type.tree.server.data-source.ts index f24ada9e7d..04f34144bb 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/tree/document-type.tree.server.data-source.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/tree/document-type.tree.server.data-source.ts @@ -41,15 +41,24 @@ export class UmbDocumentTypeTreeServerDataSource extends UmbTreeServerDataSource const getRootItems = (args: UmbTreeRootItemsRequestArgs) => // eslint-disable-next-line local-rules/no-direct-api-import - DocumentTypeService.getTreeDocumentTypeRoot({ skip: args.skip, take: args.take }); + DocumentTypeService.getTreeDocumentTypeRoot({ + foldersOnly: args.foldersOnly, + skip: args.skip, + take: args.take, + }); const getChildrenOf = (args: UmbTreeChildrenOfRequestArgs) => { if (args.parent.unique === null) { - return getRootItems({ skip: args.skip, take: args.take }); + return getRootItems({ + foldersOnly: args.foldersOnly, + skip: args.skip, + take: args.take, + }); } else { // eslint-disable-next-line local-rules/no-direct-api-import return DocumentTypeService.getTreeDocumentTypeChildren({ parentId: args.parent.unique, + foldersOnly: args.foldersOnly, skip: args.skip, take: args.take, }); From e4e46c93eae9740a390aaa715b72ba2a3d2ac38d Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 30 May 2024 15:13:23 +0200 Subject: [PATCH 02/20] add foldersOnly to duplicateTo kind manifest --- .../core/extension-registry/models/entity-action.model.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/extension-registry/models/entity-action.model.ts b/src/Umbraco.Web.UI.Client/src/packages/core/extension-registry/models/entity-action.model.ts index 590cb7e3df..a24470e952 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/extension-registry/models/entity-action.model.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/extension-registry/models/entity-action.model.ts @@ -122,6 +122,7 @@ export interface MetaEntityActionDuplicateToKind extends MetaEntityActionDefault duplicateRepositoryAlias: string; treeRepositoryAlias: string; treeAlias: string; + foldersOnly?: boolean; } // MOVE TO From b713b6d18a4910d0604aa5e414ee7fd16dcf1f39 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 30 May 2024 15:13:40 +0200 Subject: [PATCH 03/20] pass foldersOnly to modal --- .../core/tree/entity-actions/duplicate-to/duplicate-to.action.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/duplicate-to.action.ts b/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/duplicate-to.action.ts index 7d6a81ae81..24099a2140 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/duplicate-to.action.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/duplicate-to.action.ts @@ -17,6 +17,7 @@ export class UmbDuplicateToEntityAction extends UmbEntityActionBase Date: Thu, 30 May 2024 15:14:01 +0200 Subject: [PATCH 04/20] allow foldersOnly setting in duplicateTo modal data --- .../duplicate-to/modal/duplicate-to-modal.token.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.token.ts b/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.token.ts index a228dbd907..7237ce4a28 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.token.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.token.ts @@ -4,6 +4,7 @@ import { UmbModalToken } from '@umbraco-cms/backoffice/modal'; export interface UmbDuplicateToModalData extends UmbEntityModel { treeAlias: string; + foldersOnly?: boolean; } export interface UmbDuplicateToModalValue { From 95c596b939d5bdd96ce46d1b51d4c9c3356f3e70 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 30 May 2024 15:14:17 +0200 Subject: [PATCH 05/20] pass foldersOnly to tree --- .../duplicate-to/modal/duplicate-to-modal.element.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.element.ts index 8b7a959933..2015eaf3aa 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.element.ts @@ -22,7 +22,12 @@ export class UmbDuplicateToModalElement extends UmbModalBaseElement - + ${this.#renderActions()} From b579fde88f0c25e0a507465740e9f75a60392715 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 30 May 2024 15:14:44 +0200 Subject: [PATCH 06/20] only show folder for data-type, document-type, and media-type move --- .../src/packages/data-type/entity-actions/duplicate/manifests.ts | 1 + .../document-types/entity-actions/duplicate/manifests.ts | 1 + .../media/media-types/entity-actions/duplicate/manifests.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/data-type/entity-actions/duplicate/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/data-type/entity-actions/duplicate/manifests.ts index 5006459a3a..28f7228262 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/data-type/entity-actions/duplicate/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/data-type/entity-actions/duplicate/manifests.ts @@ -15,6 +15,7 @@ const entityActions: Array = [ duplicateRepositoryAlias: UMB_DUPLICATE_DATA_TYPE_REPOSITORY_ALIAS, treeAlias: UMB_DATA_TYPE_TREE_ALIAS, treeRepositoryAlias: UMB_DATA_TYPE_TREE_REPOSITORY_ALIAS, + foldersOnly: true, }, }, ]; diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/duplicate/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/duplicate/manifests.ts index 5b7b684ccd..dc5e01fca1 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/duplicate/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/duplicate/manifests.ts @@ -15,6 +15,7 @@ const entityActions: Array = [ duplicateRepositoryAlias: UMB_DUPLICATE_DOCUMENT_TYPE_REPOSITORY_ALIAS, treeAlias: UMB_DOCUMENT_TYPE_TREE_ALIAS, treeRepositoryAlias: UMB_DOCUMENT_TYPE_TREE_REPOSITORY_ALIAS, + foldersOnly: true, }, }, ]; diff --git a/src/Umbraco.Web.UI.Client/src/packages/media/media-types/entity-actions/duplicate/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/media/media-types/entity-actions/duplicate/manifests.ts index af36d87377..17d3a8af44 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/media/media-types/entity-actions/duplicate/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/media/media-types/entity-actions/duplicate/manifests.ts @@ -15,6 +15,7 @@ const entityActions: Array = [ duplicateRepositoryAlias: UMB_DUPLICATE_MEDIA_TYPE_REPOSITORY_ALIAS, treeAlias: UMB_MEDIA_TYPE_TREE_ALIAS, treeRepositoryAlias: UMB_MEDIA_TYPE_TREE_REPOSITORY_ALIAS, + foldersOnly: true, }, }, ]; From 04a7dfbc3108da970aaabb59aca222e34880be76 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 30 May 2024 15:29:06 +0200 Subject: [PATCH 07/20] focus folder name input --- .../core/tree/folder/modal/folder-modal-element-base.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/modal/folder-modal-element-base.ts b/src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/modal/folder-modal-element-base.ts index 7547074252..efb9567c95 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/modal/folder-modal-element-base.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/modal/folder-modal-element-base.ts @@ -4,6 +4,7 @@ import { UmbModalBaseElement } from '@umbraco-cms/backoffice/modal'; import type { UmbFolderModel, UmbFolderRepository } from '@umbraco-cms/backoffice/tree'; import { UmbExtensionApiInitializer } from '@umbraco-cms/backoffice/extension-api'; import { umbExtensionsRegistry } from '@umbraco-cms/backoffice/extension-registry'; +import { umbFocus } from '@umbraco-cms/backoffice/lit-element'; export abstract class UmbFolderModalElementBase< FolderModalDataType extends { folderRepositoryAlias: string }, @@ -69,7 +70,8 @@ export abstract class UmbFolderModalElementBase< placeholder="Enter folder name..." .value="${this.value?.folder?.name || ''}" required - required-message="Folder name is required"> + required-message="Folder name is required" + ${umbFocus()}> From 7bd7cc7b148af6f9e8f43145674b963a8fabaca2 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 31 May 2024 09:15:06 +0200 Subject: [PATCH 08/20] chore: generate new models --- .../src/external/backend-api/src/models.ts | 1195 +++++++++-------- .../src/external/backend-api/src/services.ts | 730 +++++----- 2 files changed, 948 insertions(+), 977 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/external/backend-api/src/models.ts b/src/Umbraco.Web.UI.Client/src/external/backend-api/src/models.ts index 89eb0afc11..a43051d388 100644 --- a/src/Umbraco.Web.UI.Client/src/external/backend-api/src/models.ts +++ b/src/Umbraco.Web.UI.Client/src/external/backend-api/src/models.ts @@ -147,7 +147,7 @@ variants: Array id?: string | null parent?: ReferenceByIdModel | null documentType: ReferenceByIdModel -template?: ReferenceByIdModel | null +template: ReferenceByIdModel | null }; export type CreateDocumentTypePropertyTypeContainerRequestModel = { @@ -727,6 +727,7 @@ export type DocumentTypeItemResponseModel = { name: string isElement: boolean icon?: string | null +description?: string | null }; export type DocumentTypePropertyTypeContainerResponseModel = { @@ -793,7 +794,7 @@ icon: string }; export type DocumentUrlInfoModel = { - culture?: string | null + culture: string | null url: string }; @@ -1271,7 +1272,7 @@ isDeletable: boolean }; export type MediaUrlInfoModel = { - culture?: string | null + culture: string | null url: string }; @@ -2759,77 +2760,77 @@ events: Array }; export type CultureData = { - + payloads: { GetCulture: { skip?: number take?: number - + }; } - - + + responses: { GetCulture: PagedCultureReponseModel - + } - + } export type DataTypeData = { - + payloads: { PostDataType: { requestBody?: CreateDataTypeRequestModel - + }; GetDataTypeById: { id: string - + }; DeleteDataTypeById: { id: string - + }; PutDataTypeById: { id: string requestBody?: UpdateDataTypeRequestModel - + }; PostDataTypeByIdCopy: { id: string requestBody?: CopyDataTypeRequestModel - + }; GetDataTypeByIdIsUsed: { id: string - + }; PutDataTypeByIdMove: { id: string requestBody?: MoveDataTypeRequestModel - + }; GetDataTypeByIdReferences: { id: string - + }; PostDataTypeFolder: { requestBody?: CreateFolderRequestModel - + }; GetDataTypeFolderById: { id: string - + }; DeleteDataTypeFolderById: { id: string - + }; PutDataTypeFolderById: { id: string requestBody?: UpdateFolderResponseModel - + }; GetFilterDataType: { editorAlias?: string @@ -2837,38 +2838,38 @@ editorUiAlias?: string name?: string skip?: number take?: number - + }; GetItemDataType: { id?: Array - + }; GetItemDataTypeSearch: { query?: string skip?: number take?: number - + }; GetTreeDataTypeAncestors: { descendantId?: string - + }; GetTreeDataTypeChildren: { foldersOnly?: boolean parentId?: string skip?: number take?: number - + }; GetTreeDataTypeRoot: { foldersOnly?: boolean skip?: number take?: number - + }; } - - + + responses: { PostDataType: string ,GetDataTypeById: DataTypeResponseModel @@ -2889,73 +2890,73 @@ take?: number ,GetTreeDataTypeAncestors: Array ,GetTreeDataTypeChildren: PagedDataTypeTreeItemResponseModel ,GetTreeDataTypeRoot: PagedDataTypeTreeItemResponseModel - + } - + } export type DictionaryData = { - + payloads: { GetDictionary: { filter?: string skip?: number take?: number - + }; PostDictionary: { requestBody?: CreateDictionaryItemRequestModel - + }; GetDictionaryById: { id: string - + }; DeleteDictionaryById: { id: string - + }; PutDictionaryById: { id: string requestBody?: UpdateDictionaryItemRequestModel - + }; GetDictionaryByIdExport: { id: string includeChildren?: boolean - + }; PutDictionaryByIdMove: { id: string requestBody?: MoveDictionaryRequestModel - + }; PostDictionaryImport: { requestBody?: ImportDictionaryRequestModel - + }; GetItemDictionary: { id?: Array - + }; GetTreeDictionaryAncestors: { descendantId?: string - + }; GetTreeDictionaryChildren: { parentId?: string skip?: number take?: number - + }; GetTreeDictionaryRoot: { skip?: number take?: number - + }; } - - + + responses: { GetDictionary: PagedDictionaryOverviewResponseModel ,PostDictionary: string @@ -2969,81 +2970,81 @@ take?: number ,GetTreeDictionaryAncestors: Array ,GetTreeDictionaryChildren: PagedNamedEntityTreeItemResponseModel ,GetTreeDictionaryRoot: PagedNamedEntityTreeItemResponseModel - + } - + } export type DocumentBlueprintData = { - + payloads: { PostDocumentBlueprint: { requestBody?: CreateDocumentBlueprintRequestModel - + }; GetDocumentBlueprintById: { id: string - + }; DeleteDocumentBlueprintById: { id: string - + }; PutDocumentBlueprintById: { id: string requestBody?: UpdateDocumentBlueprintRequestModel - + }; PutDocumentBlueprintByIdMove: { id: string requestBody?: MoveDocumentBlueprintRequestModel - + }; PostDocumentBlueprintFolder: { requestBody?: CreateFolderRequestModel - + }; GetDocumentBlueprintFolderById: { id: string - + }; DeleteDocumentBlueprintFolderById: { id: string - + }; PutDocumentBlueprintFolderById: { id: string requestBody?: UpdateFolderResponseModel - + }; PostDocumentBlueprintFromDocument: { requestBody?: CreateDocumentBlueprintFromDocumentRequestModel - + }; GetItemDocumentBlueprint: { id?: Array - + }; GetTreeDocumentBlueprintAncestors: { descendantId?: string - + }; GetTreeDocumentBlueprintChildren: { foldersOnly?: boolean parentId?: string skip?: number take?: number - + }; GetTreeDocumentBlueprintRoot: { foldersOnly?: boolean skip?: number take?: number - + }; } - - + + responses: { PostDocumentBlueprint: string ,GetDocumentBlueprintById: DocumentBlueprintResponseModel @@ -3059,126 +3060,126 @@ take?: number ,GetTreeDocumentBlueprintAncestors: Array ,GetTreeDocumentBlueprintChildren: PagedDocumentBlueprintTreeItemResponseModel ,GetTreeDocumentBlueprintRoot: PagedDocumentBlueprintTreeItemResponseModel - + } - + } export type DocumentTypeData = { - + payloads: { PostDocumentType: { requestBody?: CreateDocumentTypeRequestModel - + }; GetDocumentTypeById: { id: string - + }; DeleteDocumentTypeById: { id: string - + }; PutDocumentTypeById: { id: string requestBody?: UpdateDocumentTypeRequestModel - + }; GetDocumentTypeByIdAllowedChildren: { id: string skip?: number take?: number - + }; GetDocumentTypeByIdBlueprint: { id: string skip?: number take?: number - + }; GetDocumentTypeByIdCompositionReferences: { id: string - + }; PostDocumentTypeByIdCopy: { id: string requestBody?: CopyDocumentTypeRequestModel - + }; GetDocumentTypeByIdExport: { id: string - + }; PutDocumentTypeByIdImport: { id: string requestBody?: ImportDocumentTypeRequestModel - + }; PutDocumentTypeByIdMove: { id: string requestBody?: MoveDocumentTypeRequestModel - + }; GetDocumentTypeAllowedAtRoot: { skip?: number take?: number - + }; PostDocumentTypeAvailableCompositions: { requestBody?: DocumentTypeCompositionRequestModel - + }; PostDocumentTypeFolder: { requestBody?: CreateFolderRequestModel - + }; GetDocumentTypeFolderById: { id: string - + }; DeleteDocumentTypeFolderById: { id: string - + }; PutDocumentTypeFolderById: { id: string requestBody?: UpdateFolderResponseModel - + }; PostDocumentTypeImport: { requestBody?: ImportDocumentTypeRequestModel - + }; GetItemDocumentType: { id?: Array - + }; GetItemDocumentTypeSearch: { query?: string skip?: number take?: number - + }; GetTreeDocumentTypeAncestors: { descendantId?: string - + }; GetTreeDocumentTypeChildren: { foldersOnly?: boolean parentId?: string skip?: number take?: number - + }; GetTreeDocumentTypeRoot: { foldersOnly?: boolean skip?: number take?: number - + }; } - - + + responses: { PostDocumentType: string ,GetDocumentTypeById: DocumentTypeResponseModel @@ -3204,50 +3205,50 @@ take?: number ,GetTreeDocumentTypeAncestors: Array ,GetTreeDocumentTypeChildren: PagedDocumentTypeTreeItemResponseModel ,GetTreeDocumentTypeRoot: PagedDocumentTypeTreeItemResponseModel - + } - + } export type DocumentVersionData = { - + payloads: { GetDocumentVersion: { culture?: string documentId: string skip?: number take?: number - + }; GetDocumentVersionById: { id: string - + }; PutDocumentVersionByIdPreventCleanup: { id: string preventCleanup?: boolean - + }; PostDocumentVersionByIdRollback: { culture?: string id: string - + }; } - - + + responses: { GetDocumentVersion: PagedDocumentVersionItemResponseModel ,GetDocumentVersionById: DocumentVersionResponseModel ,PutDocumentVersionByIdPreventCleanup: string ,PostDocumentVersionByIdRollback: string - + } - + } export type DocumentData = { - + payloads: { GetCollectionDocumentById: { dataTypeId?: string @@ -3258,24 +3259,24 @@ orderCulture?: string orderDirection?: DirectionModel skip?: number take?: number - + }; PostDocument: { requestBody?: CreateDocumentRequestModel - + }; GetDocumentById: { id: string - + }; DeleteDocumentById: { id: string - + }; PutDocumentById: { id: string requestBody?: UpdateDocumentRequestModel - + }; GetDocumentByIdAuditLog: { id: string @@ -3283,162 +3284,162 @@ orderDirection?: DirectionModel sinceDate?: string skip?: number take?: number - + }; PostDocumentByIdCopy: { id: string requestBody?: CopyDocumentRequestModel - + }; GetDocumentByIdDomains: { id: string - + }; PutDocumentByIdDomains: { id: string requestBody?: UpdateDomainsRequestModel - + }; PutDocumentByIdMove: { id: string requestBody?: MoveDocumentRequestModel - + }; PutDocumentByIdMoveToRecycleBin: { id: string - + }; GetDocumentByIdNotifications: { id: string - + }; PutDocumentByIdNotifications: { id: string requestBody?: UpdateDocumentNotificationsRequestModel - + }; PostDocumentByIdPublicAccess: { id: string requestBody?: PublicAccessRequestModel - + }; DeleteDocumentByIdPublicAccess: { id: string - + }; GetDocumentByIdPublicAccess: { id: string - + }; PutDocumentByIdPublicAccess: { id: string requestBody?: PublicAccessRequestModel - + }; PutDocumentByIdPublish: { id: string requestBody?: PublishDocumentRequestModel - + }; PutDocumentByIdPublishWithDescendants: { id: string requestBody?: PublishDocumentWithDescendantsRequestModel - + }; GetDocumentByIdReferencedBy: { id: string skip?: number take?: number - + }; GetDocumentByIdReferencedDescendants: { id: string skip?: number take?: number - + }; PutDocumentByIdUnpublish: { id: string requestBody?: UnpublishDocumentRequestModel - + }; PutDocumentByIdValidate: { id: string requestBody?: UpdateDocumentRequestModel - + }; GetDocumentAreReferenced: { id?: Array skip?: number take?: number - + }; PutDocumentSort: { requestBody?: SortingRequestModel - + }; GetDocumentUrls: { id?: Array - + }; PostDocumentValidate: { requestBody?: CreateDocumentRequestModel - + }; GetItemDocument: { id?: Array - + }; GetItemDocumentSearch: { query?: string skip?: number take?: number - + }; DeleteRecycleBinDocumentById: { id: string - + }; GetRecycleBinDocumentByIdOriginalParent: { id: string - + }; PutRecycleBinDocumentByIdRestore: { id: string requestBody?: MoveMediaRequestModel - + }; GetRecycleBinDocumentChildren: { parentId?: string skip?: number take?: number - + }; GetRecycleBinDocumentRoot: { skip?: number take?: number - + }; GetTreeDocumentAncestors: { descendantId?: string - + }; GetTreeDocumentChildren: { dataTypeId?: string parentId?: string skip?: number take?: number - + }; GetTreeDocumentRoot: { dataTypeId?: string skip?: number take?: number - + }; } - - + + responses: { GetCollectionDocumentById: PagedDocumentCollectionResponseModel ,PostDocument: string @@ -3479,64 +3480,64 @@ take?: number ,GetTreeDocumentAncestors: Array ,GetTreeDocumentChildren: PagedDocumentTreeItemResponseModel ,GetTreeDocumentRoot: PagedDocumentTreeItemResponseModel - + } - + } export type DynamicRootData = { - + payloads: { PostDynamicRootQuery: { requestBody?: DynamicRootRequestModel - + }; } - - + + responses: { PostDynamicRootQuery: DynamicRootResponseModel ,GetDynamicRootSteps: Array - + } - + } export type HealthCheckData = { - + payloads: { GetHealthCheckGroup: { skip?: number take?: number - + }; GetHealthCheckGroupByName: { name: string - + }; PostHealthCheckGroupByNameCheck: { name: string - + }; PostHealthCheckExecuteAction: { requestBody?: HealthCheckActionRequestModel - + }; } - - + + responses: { GetHealthCheckGroup: PagedHealthCheckGroupResponseModel ,GetHealthCheckGroupByName: HealthCheckGroupPresentationModel ,PostHealthCheckGroupByNameCheck: HealthCheckGroupWithResultResponseModel ,PostHealthCheckExecuteAction: HealthCheckResultResponseModel - + } - + } export type HelpData = { - + payloads: { GetHelp: { baseUrl?: string @@ -3544,138 +3545,138 @@ section?: string skip?: number take?: number tree?: string - + }; } - - + + responses: { GetHelp: PagedHelpPageResponseModel - + } - + } export type ImagingData = { - + payloads: { GetImagingResizeUrls: { height?: number id?: Array mode?: ImageCropModeModel width?: number - + }; } - - + + responses: { GetImagingResizeUrls: Array - + } - + } export type ImportData = { - + payloads: { GetImportAnalyze: { temporaryFileId?: string - + }; } - - + + responses: { GetImportAnalyze: EntityImportAnalysisResponseModel - + } - + } export type IndexerData = { - + payloads: { GetIndexer: { skip?: number take?: number - + }; GetIndexerByIndexName: { indexName: string - + }; PostIndexerByIndexNameRebuild: { indexName: string - + }; } - - + + responses: { GetIndexer: PagedIndexResponseModel ,GetIndexerByIndexName: IndexResponseModel ,PostIndexerByIndexNameRebuild: string - + } - + } export type InstallData = { - + payloads: { PostInstallSetup: { requestBody?: InstallRequestModel - + }; PostInstallValidateDatabase: { requestBody?: DatabaseInstallRequestModel - + }; } - - + + responses: { GetInstallSettings: InstallSettingsResponseModel ,PostInstallSetup: string ,PostInstallValidateDatabase: string - + } - + } export type LanguageData = { - + payloads: { GetItemLanguage: { isoCode?: Array - + }; GetLanguage: { skip?: number take?: number - + }; PostLanguage: { requestBody?: CreateLanguageRequestModel - + }; GetLanguageByIsoCode: { isoCode: string - + }; DeleteLanguageByIsoCode: { isoCode: string - + }; PutLanguageByIsoCode: { isoCode: string requestBody?: UpdateLanguageRequestModel - + }; } - - + + responses: { GetItemLanguage: Array ,GetItemLanguageDefault: LanguageItemResponseModel @@ -3684,23 +3685,23 @@ requestBody?: UpdateLanguageRequestModel ,GetLanguageByIsoCode: LanguageResponseModel ,DeleteLanguageByIsoCode: string ,PutLanguageByIsoCode: string - + } - + } export type LogViewerData = { - + payloads: { GetLogViewerLevel: { skip?: number take?: number - + }; GetLogViewerLevelCount: { endDate?: string startDate?: string - + }; GetLogViewerLog: { endDate?: string @@ -3710,40 +3711,40 @@ orderDirection?: DirectionModel skip?: number startDate?: string take?: number - + }; GetLogViewerMessageTemplate: { endDate?: string skip?: number startDate?: string take?: number - + }; GetLogViewerSavedSearch: { skip?: number take?: number - + }; PostLogViewerSavedSearch: { requestBody?: SavedLogSearchRequestModel - + }; GetLogViewerSavedSearchByName: { name: string - + }; DeleteLogViewerSavedSearchByName: { name: string - + }; GetLogViewerValidateLogsSize: { endDate?: string startDate?: string - + }; } - - + + responses: { GetLogViewerLevel: PagedLoggerResponseModel ,GetLogViewerLevelCount: LogLevelCountsReponseModel @@ -3754,143 +3755,143 @@ startDate?: string ,GetLogViewerSavedSearchByName: SavedLogSearchResponseModel ,DeleteLogViewerSavedSearchByName: string ,GetLogViewerValidateLogsSize: any - + } - + } export type ManifestData = { - - + + responses: { GetManifestManifest: Array ,GetManifestManifestPrivate: Array ,GetManifestManifestPublic: Array - + } - + } export type MediaTypeData = { - + payloads: { GetItemMediaType: { id?: Array - + }; GetItemMediaTypeAllowed: { fileExtension?: string skip?: number take?: number - + }; GetItemMediaTypeFolders: { skip?: number take?: number - + }; GetItemMediaTypeSearch: { query?: string skip?: number take?: number - + }; PostMediaType: { requestBody?: CreateMediaTypeRequestModel - + }; GetMediaTypeById: { id: string - + }; DeleteMediaTypeById: { id: string - + }; PutMediaTypeById: { id: string requestBody?: UpdateMediaTypeRequestModel - + }; GetMediaTypeByIdAllowedChildren: { id: string skip?: number take?: number - + }; GetMediaTypeByIdCompositionReferences: { id: string - + }; PostMediaTypeByIdCopy: { id: string requestBody?: CopyMediaTypeRequestModel - + }; GetMediaTypeByIdExport: { id: string - + }; PutMediaTypeByIdImport: { id: string requestBody?: ImportMediaTypeRequestModel - + }; PutMediaTypeByIdMove: { id: string requestBody?: MoveMediaTypeRequestModel - + }; GetMediaTypeAllowedAtRoot: { skip?: number take?: number - + }; PostMediaTypeAvailableCompositions: { requestBody?: MediaTypeCompositionRequestModel - + }; PostMediaTypeFolder: { requestBody?: CreateFolderRequestModel - + }; GetMediaTypeFolderById: { id: string - + }; DeleteMediaTypeFolderById: { id: string - + }; PutMediaTypeFolderById: { id: string requestBody?: UpdateFolderResponseModel - + }; PostMediaTypeImport: { requestBody?: ImportMediaTypeRequestModel - + }; GetTreeMediaTypeAncestors: { descendantId?: string - + }; GetTreeMediaTypeChildren: { foldersOnly?: boolean parentId?: string skip?: number take?: number - + }; GetTreeMediaTypeRoot: { foldersOnly?: boolean skip?: number take?: number - + }; } - - + + responses: { GetItemMediaType: Array ,GetItemMediaTypeAllowed: PagedModelMediaTypeItemResponseModel @@ -3916,13 +3917,13 @@ take?: number ,GetTreeMediaTypeAncestors: Array ,GetTreeMediaTypeChildren: PagedMediaTypeTreeItemResponseModel ,GetTreeMediaTypeRoot: PagedMediaTypeTreeItemResponseModel - + } - + } export type MediaData = { - + payloads: { GetCollectionMedia: { dataTypeId?: string @@ -3932,34 +3933,34 @@ orderBy?: string orderDirection?: DirectionModel skip?: number take?: number - + }; GetItemMedia: { id?: Array - + }; GetItemMediaSearch: { query?: string skip?: number take?: number - + }; PostMedia: { requestBody?: CreateMediaRequestModel - + }; GetMediaById: { id: string - + }; DeleteMediaById: { id: string - + }; PutMediaById: { id: string requestBody?: UpdateMediaRequestModel - + }; GetMediaByIdAuditLog: { id: string @@ -3967,96 +3968,96 @@ orderDirection?: DirectionModel sinceDate?: string skip?: number take?: number - + }; PutMediaByIdMove: { id: string requestBody?: MoveMediaRequestModel - + }; PutMediaByIdMoveToRecycleBin: { id: string - + }; GetMediaByIdReferencedBy: { id: string skip?: number take?: number - + }; GetMediaByIdReferencedDescendants: { id: string skip?: number take?: number - + }; PutMediaByIdValidate: { id: string requestBody?: UpdateMediaRequestModel - + }; GetMediaAreReferenced: { id?: Array skip?: number take?: number - + }; PutMediaSort: { requestBody?: SortingRequestModel - + }; GetMediaUrls: { id?: Array - + }; PostMediaValidate: { requestBody?: CreateMediaRequestModel - + }; DeleteRecycleBinMediaById: { id: string - + }; GetRecycleBinMediaByIdOriginalParent: { id: string - + }; PutRecycleBinMediaByIdRestore: { id: string requestBody?: MoveMediaRequestModel - + }; GetRecycleBinMediaChildren: { parentId?: string skip?: number take?: number - + }; GetRecycleBinMediaRoot: { skip?: number take?: number - + }; GetTreeMediaAncestors: { descendantId?: string - + }; GetTreeMediaChildren: { dataTypeId?: string parentId?: string skip?: number take?: number - + }; GetTreeMediaRoot: { dataTypeId?: string skip?: number take?: number - + }; } - - + + responses: { GetCollectionMedia: PagedMediaCollectionResponseModel ,GetItemMedia: Array @@ -4085,48 +4086,48 @@ take?: number ,GetTreeMediaAncestors: Array ,GetTreeMediaChildren: PagedMediaTreeItemResponseModel ,GetTreeMediaRoot: PagedMediaTreeItemResponseModel - + } - + } export type MemberGroupData = { - + payloads: { GetItemMemberGroup: { id?: Array - + }; GetMemberGroup: { skip?: number take?: number - + }; PostMemberGroup: { requestBody?: CreateMemberGroupRequestModel - + }; GetMemberGroupById: { id: string - + }; DeleteMemberGroupById: { id: string - + }; PutMemberGroupById: { id: string requestBody?: UpdateMemberGroupRequestModel - + }; GetTreeMemberGroupRoot: { skip?: number take?: number - + }; } - - + + responses: { GetItemMemberGroup: Array ,GetMemberGroup: PagedMemberGroupResponseModel @@ -4135,61 +4136,61 @@ take?: number ,DeleteMemberGroupById: string ,PutMemberGroupById: string ,GetTreeMemberGroupRoot: PagedNamedEntityTreeItemResponseModel - + } - + } export type MemberTypeData = { - + payloads: { GetItemMemberType: { id?: Array - + }; GetItemMemberTypeSearch: { query?: string skip?: number take?: number - + }; PostMemberType: { requestBody?: CreateMemberTypeRequestModel - + }; GetMemberTypeById: { id: string - + }; DeleteMemberTypeById: { id: string - + }; PutMemberTypeById: { id: string requestBody?: UpdateMemberTypeRequestModel - + }; GetMemberTypeByIdCompositionReferences: { id: string - + }; PostMemberTypeByIdCopy: { id: string - + }; PostMemberTypeAvailableCompositions: { requestBody?: MemberTypeCompositionRequestModel - + }; GetTreeMemberTypeRoot: { skip?: number take?: number - + }; } - - + + responses: { GetItemMemberType: Array ,GetItemMemberTypeSearch: PagedModelMemberTypeItemResponseModel @@ -4201,13 +4202,13 @@ take?: number ,PostMemberTypeByIdCopy: string ,PostMemberTypeAvailableCompositions: Array ,GetTreeMemberTypeRoot: PagedMemberTypeTreeItemResponseModel - + } - + } export type MemberData = { - + payloads: { GetFilterMember: { filter?: string @@ -4219,47 +4220,47 @@ orderBy?: string orderDirection?: DirectionModel skip?: number take?: number - + }; GetItemMember: { id?: Array - + }; GetItemMemberSearch: { query?: string skip?: number take?: number - + }; PostMember: { requestBody?: CreateMemberRequestModel - + }; GetMemberById: { id: string - + }; DeleteMemberById: { id: string - + }; PutMemberById: { id: string requestBody?: UpdateMemberRequestModel - + }; PutMemberByIdValidate: { id: string requestBody?: UpdateMemberRequestModel - + }; PostMemberValidate: { requestBody?: CreateMemberRequestModel - + }; } - - + + responses: { GetFilterMember: PagedMemberResponseModel ,GetItemMember: Array @@ -4271,101 +4272,101 @@ PostMemberValidate: { ,PutMemberByIdValidate: string ,GetMemberConfiguration: MemberConfigurationResponseModel ,PostMemberValidate: string - + } - + } export type ModelsBuilderData = { - - + + responses: { PostModelsBuilderBuild: string ,GetModelsBuilderDashboard: ModelsBuilderResponseModel ,GetModelsBuilderStatus: OutOfDateStatusResponseModel - + } - + } export type ObjectTypesData = { - + payloads: { GetObjectTypes: { skip?: number take?: number - + }; } - - + + responses: { GetObjectTypes: PagedObjectTypeResponseModel - + } - + } export type OembedData = { - + payloads: { GetOembedQuery: { maxHeight?: number maxWidth?: number url?: string - + }; } - - + + responses: { GetOembedQuery: OEmbedResponseModel - + } - + } export type PackageData = { - + payloads: { PostPackageByNameRunMigration: { name: string - + }; GetPackageCreated: { skip?: number take?: number - + }; PostPackageCreated: { requestBody?: CreatePackageRequestModel - + }; GetPackageCreatedById: { id: string - + }; DeletePackageCreatedById: { id: string - + }; PutPackageCreatedById: { id: string requestBody?: UpdatePackageRequestModel - + }; GetPackageCreatedByIdDownload: { id: string - + }; GetPackageMigrationStatus: { skip?: number take?: number - + }; } - - + + responses: { PostPackageByNameRunMigration: string ,GetPackageConfiguration: PackageConfigurationResponseModel @@ -4376,79 +4377,79 @@ take?: number ,PutPackageCreatedById: string ,GetPackageCreatedByIdDownload: Blob | File ,GetPackageMigrationStatus: PagedPackageMigrationStatusResponseModel - + } - + } export type PartialViewData = { - + payloads: { GetItemPartialView: { path?: Array - + }; PostPartialView: { requestBody?: CreatePartialViewRequestModel - + }; GetPartialViewByPath: { path: string - + }; DeletePartialViewByPath: { path: string - + }; PutPartialViewByPath: { path: string requestBody?: UpdatePartialViewRequestModel - + }; PutPartialViewByPathRename: { path: string requestBody?: RenamePartialViewRequestModel - + }; PostPartialViewFolder: { requestBody?: CreatePartialViewFolderRequestModel - + }; GetPartialViewFolderByPath: { path: string - + }; DeletePartialViewFolderByPath: { path: string - + }; GetPartialViewSnippet: { skip?: number take?: number - + }; GetPartialViewSnippetById: { id: string - + }; GetTreePartialViewAncestors: { descendantPath?: string - + }; GetTreePartialViewChildren: { parentPath?: string skip?: number take?: number - + }; GetTreePartialViewRoot: { skip?: number take?: number - + }; } - - + + responses: { GetItemPartialView: Array ,PostPartialView: string @@ -4464,214 +4465,214 @@ take?: number ,GetTreePartialViewAncestors: Array ,GetTreePartialViewChildren: PagedFileSystemTreeItemPresentationModel ,GetTreePartialViewRoot: PagedFileSystemTreeItemPresentationModel - + } - + } export type PreviewData = { - - + + responses: { DeletePreview: string ,PostPreview: string - + } - + } export type ProfilingData = { - + payloads: { PutProfilingStatus: { requestBody?: ProfilingStatusRequestModel - + }; } - - + + responses: { GetProfilingStatus: ProfilingStatusResponseModel ,PutProfilingStatus: string - + } - + } export type PropertyTypeData = { - + payloads: { GetPropertyTypeIsUsed: { contentTypeId?: string propertyAlias?: string - + }; } - - + + responses: { GetPropertyTypeIsUsed: boolean - + } - + } export type PublishedCacheData = { - - + + responses: { PostPublishedCacheCollect: string ,PostPublishedCacheRebuild: string ,PostPublishedCacheReload: string ,GetPublishedCacheStatus: string - + } - + } export type RedirectManagementData = { - + payloads: { GetRedirectManagement: { filter?: string skip?: number take?: number - + }; GetRedirectManagementById: { id: string skip?: number take?: number - + }; DeleteRedirectManagementById: { id: string - + }; PostRedirectManagementStatus: { status?: RedirectStatusModel - + }; } - - + + responses: { GetRedirectManagement: PagedRedirectUrlResponseModel ,GetRedirectManagementById: PagedRedirectUrlResponseModel ,DeleteRedirectManagementById: string ,GetRedirectManagementStatus: RedirectUrlStatusResponseModel ,PostRedirectManagementStatus: string - + } - + } export type RelationTypeData = { - + payloads: { GetItemRelationType: { id?: Array - + }; GetRelationType: { skip?: number take?: number - + }; GetRelationTypeById: { id: string - + }; } - - + + responses: { GetItemRelationType: Array ,GetRelationType: PagedRelationTypeResponseModel ,GetRelationTypeById: RelationTypeResponseModel - + } - + } export type RelationData = { - + payloads: { GetRelationTypeById: { id: string skip?: number take?: number - + }; } - - + + responses: { GetRelationTypeById: PagedRelationResponseModel - + } - + } export type ScriptData = { - + payloads: { GetItemScript: { path?: Array - + }; PostScript: { requestBody?: CreateScriptRequestModel - + }; GetScriptByPath: { path: string - + }; DeleteScriptByPath: { path: string - + }; PutScriptByPath: { path: string requestBody?: UpdateScriptRequestModel - + }; PutScriptByPathRename: { path: string requestBody?: RenameScriptRequestModel - + }; PostScriptFolder: { requestBody?: CreateScriptFolderRequestModel - + }; GetScriptFolderByPath: { path: string - + }; DeleteScriptFolderByPath: { path: string - + }; GetTreeScriptAncestors: { descendantPath?: string - + }; GetTreeScriptChildren: { parentPath?: string skip?: number take?: number - + }; GetTreeScriptRoot: { skip?: number take?: number - + }; } - - + + responses: { GetItemScript: Array ,PostScript: string @@ -4685,190 +4686,190 @@ take?: number ,GetTreeScriptAncestors: Array ,GetTreeScriptChildren: PagedFileSystemTreeItemPresentationModel ,GetTreeScriptRoot: PagedFileSystemTreeItemPresentationModel - + } - + } export type SearcherData = { - + payloads: { GetSearcher: { skip?: number take?: number - + }; GetSearcherBySearcherNameQuery: { searcherName: string skip?: number take?: number term?: string - + }; } - - + + responses: { GetSearcher: PagedSearcherResponseModel ,GetSearcherBySearcherNameQuery: PagedSearchResultResponseModel - + } - + } export type SecurityData = { - + payloads: { PostSecurityForgotPassword: { requestBody?: ResetPasswordRequestModel - + }; PostSecurityForgotPasswordReset: { requestBody?: ResetPasswordTokenRequestModel - + }; PostSecurityForgotPasswordVerify: { requestBody?: VerifyResetPasswordTokenRequestModel - + }; } - - + + responses: { GetSecurityConfiguration: SecurityConfigurationResponseModel ,PostSecurityForgotPassword: string ,PostSecurityForgotPasswordReset: string ,PostSecurityForgotPasswordVerify: VerifyResetPasswordResponseModel - + } - + } export type SegmentData = { - + payloads: { GetSegment: { skip?: number take?: number - + }; } - - + + responses: { GetSegment: PagedSegmentResponseModel - + } - + } export type ServerData = { - - + + responses: { GetServerConfiguration: ServerConfigurationResponseModel ,GetServerInformation: ServerInformationResponseModel ,GetServerStatus: ServerStatusResponseModel ,GetServerTroubleshooting: ServerTroubleshootingResponseModel - + } - + } export type StaticFileData = { - + payloads: { GetItemStaticFile: { path?: Array - + }; GetTreeStaticFileAncestors: { descendantPath?: string - + }; GetTreeStaticFileChildren: { parentPath?: string skip?: number take?: number - + }; GetTreeStaticFileRoot: { skip?: number take?: number - + }; } - - + + responses: { GetItemStaticFile: Array ,GetTreeStaticFileAncestors: Array ,GetTreeStaticFileChildren: PagedFileSystemTreeItemPresentationModel ,GetTreeStaticFileRoot: PagedFileSystemTreeItemPresentationModel - + } - + } export type StylesheetData = { - + payloads: { GetItemStylesheet: { path?: Array - + }; PostStylesheet: { requestBody?: CreateStylesheetRequestModel - + }; GetStylesheetByPath: { path: string - + }; DeleteStylesheetByPath: { path: string - + }; PutStylesheetByPath: { path: string requestBody?: UpdateStylesheetRequestModel - + }; PutStylesheetByPathRename: { path: string requestBody?: RenameStylesheetRequestModel - + }; PostStylesheetFolder: { requestBody?: CreateStylesheetFolderRequestModel - + }; GetStylesheetFolderByPath: { path: string - + }; DeleteStylesheetFolderByPath: { path: string - + }; GetTreeStylesheetAncestors: { descendantPath?: string - + }; GetTreeStylesheetChildren: { parentPath?: string skip?: number take?: number - + }; GetTreeStylesheetRoot: { skip?: number take?: number - + }; } - - + + responses: { GetItemStylesheet: Array ,PostStylesheet: string @@ -4882,13 +4883,13 @@ take?: number ,GetTreeStylesheetAncestors: Array ,GetTreeStylesheetChildren: PagedFileSystemTreeItemPresentationModel ,GetTreeStylesheetRoot: PagedFileSystemTreeItemPresentationModel - + } - + } export type TagData = { - + payloads: { GetTag: { culture?: string @@ -4896,94 +4897,94 @@ query?: string skip?: number tagGroup?: string take?: number - + }; } - - + + responses: { GetTag: PagedTagResponseModel - + } - + } export type TelemetryData = { - + payloads: { GetTelemetry: { skip?: number take?: number - + }; PostTelemetryLevel: { requestBody?: TelemetryRequestModel - + }; } - - + + responses: { GetTelemetry: PagedTelemetryResponseModel ,GetTelemetryLevel: TelemetryResponseModel ,PostTelemetryLevel: string - + } - + } export type TemplateData = { - + payloads: { GetItemTemplate: { id?: Array - + }; GetItemTemplateSearch: { query?: string skip?: number take?: number - + }; PostTemplate: { requestBody?: CreateTemplateRequestModel - + }; GetTemplateById: { id: string - + }; DeleteTemplateById: { id: string - + }; PutTemplateById: { id: string requestBody?: UpdateTemplateRequestModel - + }; PostTemplateQueryExecute: { requestBody?: TemplateQueryExecuteModel - + }; GetTreeTemplateAncestors: { descendantId?: string - + }; GetTreeTemplateChildren: { parentId?: string skip?: number take?: number - + }; GetTreeTemplateRoot: { skip?: number take?: number - + }; } - - + + responses: { GetItemTemplate: Array ,GetItemTemplateSearch: PagedModelTemplateItemResponseModel @@ -4997,140 +4998,140 @@ take?: number ,GetTreeTemplateAncestors: Array ,GetTreeTemplateChildren: PagedNamedEntityTreeItemResponseModel ,GetTreeTemplateRoot: PagedNamedEntityTreeItemResponseModel - + } - + } export type TemporaryFileData = { - + payloads: { PostTemporaryFile: { formData?: { - Id?: string -File?: Blob | File + Id: string +File: Blob | File } - + }; GetTemporaryFileById: { id: string - + }; DeleteTemporaryFileById: { id: string - + }; } - - + + responses: { PostTemporaryFile: string ,GetTemporaryFileById: TemporaryFileResponseModel ,DeleteTemporaryFileById: string ,GetTemporaryFileConfiguration: TemporaryFileConfigurationResponseModel - + } - + } export type UpgradeData = { - - + + responses: { PostUpgradeAuthorize: string ,GetUpgradeSettings: UpgradeSettingsResponseModel - + } - + } export type UserDataData = { - + payloads: { PostUserData: { requestBody?: CreateUserDataRequestModel - + }; GetUserData: { groups?: Array identifiers?: Array skip?: number take?: number - + }; PutUserData: { requestBody?: UpdateUserDataRequestModel - + }; GetUserDataById: { id: string - + }; } - - + + responses: { PostUserData: string ,GetUserData: PagedUserDataResponseModel ,PutUserData: string ,GetUserDataById: UserDataModel - + } - + } export type UserGroupData = { - + payloads: { GetFilterUserGroup: { filter?: string skip?: number take?: number - + }; GetItemUserGroup: { id?: Array - + }; DeleteUserGroup: { requestBody?: DeleteUserGroupsRequestModel - + }; PostUserGroup: { requestBody?: CreateUserGroupRequestModel - + }; GetUserGroup: { skip?: number take?: number - + }; GetUserGroupById: { id: string - + }; DeleteUserGroupById: { id: string - + }; PutUserGroupById: { id: string requestBody?: UpdateUserGroupRequestModel - + }; DeleteUserGroupByIdUsers: { id: string requestBody?: Array - + }; PostUserGroupByIdUsers: { id: string requestBody?: Array - + }; } - - + + responses: { GetFilterUserGroup: PagedUserGroupResponseModel ,GetItemUserGroup: Array @@ -5142,13 +5143,13 @@ requestBody?: Array ,PutUserGroupById: string ,DeleteUserGroupByIdUsers: string ,PostUserGroupByIdUsers: string - + } - + } export type UserData = { - + payloads: { GetFilterUser: { filter?: string @@ -5158,134 +5159,134 @@ skip?: number take?: number userGroupIds?: Array userStates?: Array - + }; GetItemUser: { id?: Array - + }; PostUser: { requestBody?: CreateUserRequestModel - + }; DeleteUser: { requestBody?: DeleteUsersRequestModel - + }; GetUser: { skip?: number take?: number - + }; GetUserById: { id: string - + }; DeleteUserById: { id: string - + }; PutUserById: { id: string requestBody?: UpdateUserRequestModel - + }; GetUserById2Fa: { id: string - + }; DeleteUserById2FaByProviderName: { id: string providerName: string - + }; PostUserByIdChangePassword: { id: string requestBody?: ChangePasswordUserRequestModel - + }; PostUserByIdResetPassword: { id: string - + }; DeleteUserAvatarById: { id: string - + }; PostUserAvatarById: { id: string requestBody?: SetAvatarRequestModel - + }; DeleteUserCurrent2FaByProviderName: { code?: string providerName: string - + }; PostUserCurrent2FaByProviderName: { providerName: string requestBody?: EnableTwoFactorRequestModel - + }; GetUserCurrent2FaByProviderName: { providerName: string - + }; PostUserCurrentAvatar: { requestBody?: SetAvatarRequestModel - + }; PostUserCurrentChangePassword: { requestBody?: ChangePasswordCurrentUserRequestModel - + }; GetUserCurrentPermissions: { id?: Array - + }; GetUserCurrentPermissionsDocument: { id?: Array - + }; GetUserCurrentPermissionsMedia: { id?: Array - + }; PostUserDisable: { requestBody?: DisableUserRequestModel - + }; PostUserEnable: { requestBody?: EnableUserRequestModel - + }; PostUserInvite: { requestBody?: InviteUserRequestModel - + }; PostUserInviteCreatePassword: { requestBody?: CreateInitialPasswordUserRequestModel - + }; PostUserInviteResend: { requestBody?: ResendInviteUserRequestModel - + }; PostUserInviteVerify: { requestBody?: VerifyInviteUserRequestModel - + }; PostUserSetUserGroups: { requestBody?: UpdateUserGroupsOnUserRequestModel - + }; PostUserUnlock: { requestBody?: UnlockUsersRequestModel - + }; } - - + + responses: { GetFilterUser: PagedUserResponseModel ,GetItemUser: Array @@ -5322,48 +5323,48 @@ PostUserUnlock: { ,PostUserInviteVerify: VerifyInviteUserResponseModel ,PostUserSetUserGroups: string ,PostUserUnlock: string - + } - + } export type WebhookData = { - + payloads: { GetItemWebhook: { id?: Array - + }; GetWebhook: { skip?: number take?: number - + }; PostWebhook: { requestBody?: CreateWebhookRequestModel - + }; GetWebhookById: { id: string - + }; DeleteWebhookById: { id: string - + }; PutWebhookById: { id: string requestBody?: UpdateWebhookRequestModel - + }; GetWebhookEvents: { skip?: number take?: number - + }; } - - + + responses: { GetItemWebhook: Array ,GetWebhook: PagedWebhookResponseModel @@ -5372,7 +5373,7 @@ take?: number ,DeleteWebhookById: string ,PutWebhookById: string ,GetWebhookEvents: PagedWebhookEventModel - + } - - } \ No newline at end of file + + } diff --git a/src/Umbraco.Web.UI.Client/src/external/backend-api/src/services.ts b/src/Umbraco.Web.UI.Client/src/external/backend-api/src/services.ts index 2b3fe82994..39f875d253 100644 --- a/src/Umbraco.Web.UI.Client/src/external/backend-api/src/services.ts +++ b/src/Umbraco.Web.UI.Client/src/external/backend-api/src/services.ts @@ -6,7 +6,7 @@ import type { CultureData, DataTypeData, DictionaryData, DocumentBlueprintData, export class CultureService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getCulture(data: CultureData['payloads']['GetCulture'] = {}): CancelablePromise { @@ -56,7 +56,7 @@ export class DataTypeService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDataTypeById(data: DataTypeData['payloads']['GetDataTypeById']): CancelablePromise { @@ -79,7 +79,7 @@ export class DataTypeService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDataTypeById(data: DataTypeData['payloads']['DeleteDataTypeById']): CancelablePromise { @@ -104,7 +104,7 @@ export class DataTypeService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDataTypeById(data: DataTypeData['payloads']['PutDataTypeById']): CancelablePromise { @@ -159,7 +159,7 @@ requestBody } /** - * @returns boolean Success + * @returns boolean OK * @throws ApiError */ public static getDataTypeByIdIsUsed(data: DataTypeData['payloads']['GetDataTypeByIdIsUsed']): CancelablePromise { @@ -182,7 +182,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDataTypeByIdMove(data: DataTypeData['payloads']['PutDataTypeByIdMove']): CancelablePromise { @@ -209,7 +209,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDataTypeByIdReferences(data: DataTypeData['payloads']['GetDataTypeByIdReferences']): CancelablePromise { @@ -232,7 +232,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDataTypeConfiguration(): CancelablePromise { @@ -272,7 +272,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDataTypeFolderById(data: DataTypeData['payloads']['GetDataTypeFolderById']): CancelablePromise { @@ -295,7 +295,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDataTypeFolderById(data: DataTypeData['payloads']['DeleteDataTypeFolderById']): CancelablePromise { @@ -320,7 +320,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDataTypeFolderById(data: DataTypeData['payloads']['PutDataTypeFolderById']): CancelablePromise { @@ -348,7 +348,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getFilterDataType(data: DataTypeData['payloads']['GetFilterDataType'] = {}): CancelablePromise { @@ -374,7 +374,7 @@ editorAlias } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemDataType(data: DataTypeData['payloads']['GetItemDataType'] = {}): CancelablePromise { @@ -390,13 +390,12 @@ editorAlias }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemDataTypeSearch(data: DataTypeData['payloads']['GetItemDataTypeSearch'] = {}): CancelablePromise { @@ -414,13 +413,12 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDataTypeAncestors(data: DataTypeData['payloads']['GetTreeDataTypeAncestors'] = {}): CancelablePromise { @@ -442,7 +440,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDataTypeChildren(data: DataTypeData['payloads']['GetTreeDataTypeChildren'] = {}): CancelablePromise { @@ -467,7 +465,7 @@ foldersOnly } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDataTypeRoot(data: DataTypeData['payloads']['GetTreeDataTypeRoot'] = {}): CancelablePromise { @@ -495,7 +493,7 @@ foldersOnly export class DictionaryService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDictionary(data: DictionaryData['payloads']['GetDictionary'] = {}): CancelablePromise { @@ -544,7 +542,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDictionaryById(data: DictionaryData['payloads']['GetDictionaryById']): CancelablePromise { @@ -567,7 +565,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDictionaryById(data: DictionaryData['payloads']['DeleteDictionaryById']): CancelablePromise { @@ -592,7 +590,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDictionaryById(data: DictionaryData['payloads']['PutDictionaryById']): CancelablePromise { @@ -620,7 +618,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDictionaryByIdExport(data: DictionaryData['payloads']['GetDictionaryByIdExport']): CancelablePromise { @@ -647,7 +645,7 @@ includeChildren } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDictionaryByIdMove(data: DictionaryData['payloads']['PutDictionaryByIdMove']): CancelablePromise { @@ -699,7 +697,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemDictionary(data: DictionaryData['payloads']['GetItemDictionary'] = {}): CancelablePromise { @@ -715,13 +713,12 @@ requestBody }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDictionaryAncestors(data: DictionaryData['payloads']['GetTreeDictionaryAncestors'] = {}): CancelablePromise { @@ -743,7 +740,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDictionaryChildren(data: DictionaryData['payloads']['GetTreeDictionaryChildren'] = {}): CancelablePromise { @@ -767,7 +764,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDictionaryRoot(data: DictionaryData['payloads']['GetTreeDictionaryRoot'] = {}): CancelablePromise { @@ -818,7 +815,7 @@ export class DocumentBlueprintService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentBlueprintById(data: DocumentBlueprintData['payloads']['GetDocumentBlueprintById']): CancelablePromise { @@ -841,7 +838,7 @@ export class DocumentBlueprintService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDocumentBlueprintById(data: DocumentBlueprintData['payloads']['DeleteDocumentBlueprintById']): CancelablePromise { @@ -866,7 +863,7 @@ export class DocumentBlueprintService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentBlueprintById(data: DocumentBlueprintData['payloads']['PutDocumentBlueprintById']): CancelablePromise { @@ -894,7 +891,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentBlueprintByIdMove(data: DocumentBlueprintData['payloads']['PutDocumentBlueprintByIdMove']): CancelablePromise { @@ -945,7 +942,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentBlueprintFolderById(data: DocumentBlueprintData['payloads']['GetDocumentBlueprintFolderById']): CancelablePromise { @@ -968,7 +965,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDocumentBlueprintFolderById(data: DocumentBlueprintData['payloads']['DeleteDocumentBlueprintFolderById']): CancelablePromise { @@ -993,7 +990,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentBlueprintFolderById(data: DocumentBlueprintData['payloads']['PutDocumentBlueprintFolderById']): CancelablePromise { @@ -1044,7 +1041,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemDocumentBlueprint(data: DocumentBlueprintData['payloads']['GetItemDocumentBlueprint'] = {}): CancelablePromise { @@ -1060,13 +1057,12 @@ requestBody }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentBlueprintAncestors(data: DocumentBlueprintData['payloads']['GetTreeDocumentBlueprintAncestors'] = {}): CancelablePromise { @@ -1088,7 +1084,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentBlueprintChildren(data: DocumentBlueprintData['payloads']['GetTreeDocumentBlueprintChildren'] = {}): CancelablePromise { @@ -1113,7 +1109,7 @@ foldersOnly } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentBlueprintRoot(data: DocumentBlueprintData['payloads']['GetTreeDocumentBlueprintRoot'] = {}): CancelablePromise { @@ -1165,7 +1161,7 @@ export class DocumentTypeService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentTypeById(data: DocumentTypeData['payloads']['GetDocumentTypeById']): CancelablePromise { @@ -1188,7 +1184,7 @@ export class DocumentTypeService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDocumentTypeById(data: DocumentTypeData['payloads']['DeleteDocumentTypeById']): CancelablePromise { @@ -1212,7 +1208,7 @@ export class DocumentTypeService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentTypeById(data: DocumentTypeData['payloads']['PutDocumentTypeById']): CancelablePromise { @@ -1240,7 +1236,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentTypeByIdAllowedChildren(data: DocumentTypeData['payloads']['GetDocumentTypeByIdAllowedChildren']): CancelablePromise { @@ -1268,7 +1264,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentTypeByIdBlueprint(data: DocumentTypeData['payloads']['GetDocumentTypeByIdBlueprint']): CancelablePromise { @@ -1296,7 +1292,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentTypeByIdCompositionReferences(data: DocumentTypeData['payloads']['GetDocumentTypeByIdCompositionReferences']): CancelablePromise { @@ -1348,7 +1344,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentTypeByIdExport(data: DocumentTypeData['payloads']['GetDocumentTypeByIdExport']): CancelablePromise { @@ -1371,7 +1367,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentTypeByIdImport(data: DocumentTypeData['payloads']['PutDocumentTypeByIdImport']): CancelablePromise { @@ -1399,7 +1395,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentTypeByIdMove(data: DocumentTypeData['payloads']['PutDocumentTypeByIdMove']): CancelablePromise { @@ -1427,7 +1423,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentTypeAllowedAtRoot(data: DocumentTypeData['payloads']['GetDocumentTypeAllowedAtRoot'] = {}): CancelablePromise { @@ -1450,7 +1446,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postDocumentTypeAvailableCompositions(data: DocumentTypeData['payloads']['PostDocumentTypeAvailableCompositions'] = {}): CancelablePromise { @@ -1471,7 +1467,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentTypeConfiguration(): CancelablePromise { @@ -1511,7 +1507,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentTypeFolderById(data: DocumentTypeData['payloads']['GetDocumentTypeFolderById']): CancelablePromise { @@ -1534,7 +1530,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDocumentTypeFolderById(data: DocumentTypeData['payloads']['DeleteDocumentTypeFolderById']): CancelablePromise { @@ -1559,7 +1555,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentTypeFolderById(data: DocumentTypeData['payloads']['PutDocumentTypeFolderById']): CancelablePromise { @@ -1611,7 +1607,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemDocumentType(data: DocumentTypeData['payloads']['GetItemDocumentType'] = {}): CancelablePromise { @@ -1627,13 +1623,12 @@ requestBody }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemDocumentTypeSearch(data: DocumentTypeData['payloads']['GetItemDocumentTypeSearch'] = {}): CancelablePromise { @@ -1651,13 +1646,12 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentTypeAncestors(data: DocumentTypeData['payloads']['GetTreeDocumentTypeAncestors'] = {}): CancelablePromise { @@ -1679,7 +1673,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentTypeChildren(data: DocumentTypeData['payloads']['GetTreeDocumentTypeChildren'] = {}): CancelablePromise { @@ -1704,7 +1698,7 @@ foldersOnly } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentTypeRoot(data: DocumentTypeData['payloads']['GetTreeDocumentTypeRoot'] = {}): CancelablePromise { @@ -1732,7 +1726,7 @@ foldersOnly export class DocumentVersionService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentVersion(data: DocumentVersionData['payloads']['GetDocumentVersion']): CancelablePromise { @@ -1759,7 +1753,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentVersionById(data: DocumentVersionData['payloads']['GetDocumentVersionById']): CancelablePromise { @@ -1783,7 +1777,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentVersionByIdPreventCleanup(data: DocumentVersionData['payloads']['PutDocumentVersionByIdPreventCleanup']): CancelablePromise { @@ -1812,7 +1806,7 @@ preventCleanup } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postDocumentVersionByIdRollback(data: DocumentVersionData['payloads']['PostDocumentVersionByIdRollback']): CancelablePromise { @@ -1845,7 +1839,7 @@ culture export class DocumentService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getCollectionDocumentById(data: DocumentData['payloads']['GetCollectionDocumentById']): CancelablePromise { @@ -1903,7 +1897,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentById(data: DocumentData['payloads']['GetDocumentById']): CancelablePromise { @@ -1926,7 +1920,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDocumentById(data: DocumentData['payloads']['DeleteDocumentById']): CancelablePromise { @@ -1951,7 +1945,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentById(data: DocumentData['payloads']['PutDocumentById']): CancelablePromise { @@ -1979,7 +1973,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentByIdAuditLog(data: DocumentData['payloads']['GetDocumentByIdAuditLog']): CancelablePromise { @@ -2035,7 +2029,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentByIdDomains(data: DocumentData['payloads']['GetDocumentByIdDomains']): CancelablePromise { @@ -2058,7 +2052,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdDomains(data: DocumentData['payloads']['PutDocumentByIdDomains']): CancelablePromise { @@ -2087,7 +2081,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdMove(data: DocumentData['payloads']['PutDocumentByIdMove']): CancelablePromise { @@ -2114,7 +2108,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdMoveToRecycleBin(data: DocumentData['payloads']['PutDocumentByIdMoveToRecycleBin']): CancelablePromise { @@ -2139,7 +2133,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentByIdNotifications(data: DocumentData['payloads']['GetDocumentByIdNotifications']): CancelablePromise { @@ -2162,7 +2156,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdNotifications(data: DocumentData['payloads']['PutDocumentByIdNotifications']): CancelablePromise { @@ -2216,7 +2210,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteDocumentByIdPublicAccess(data: DocumentData['payloads']['DeleteDocumentByIdPublicAccess']): CancelablePromise { @@ -2240,7 +2234,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentByIdPublicAccess(data: DocumentData['payloads']['GetDocumentByIdPublicAccess']): CancelablePromise { @@ -2263,7 +2257,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdPublicAccess(data: DocumentData['payloads']['PutDocumentByIdPublicAccess']): CancelablePromise { @@ -2290,7 +2284,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdPublish(data: DocumentData['payloads']['PutDocumentByIdPublish']): CancelablePromise { @@ -2318,7 +2312,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdPublishWithDescendants(data: DocumentData['payloads']['PutDocumentByIdPublishWithDescendants']): CancelablePromise { @@ -2346,7 +2340,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentByIdReferencedBy(data: DocumentData['payloads']['GetDocumentByIdReferencedBy']): CancelablePromise { @@ -2373,7 +2367,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentByIdReferencedDescendants(data: DocumentData['payloads']['GetDocumentByIdReferencedDescendants']): CancelablePromise { @@ -2400,7 +2394,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdUnpublish(data: DocumentData['payloads']['PutDocumentByIdUnpublish']): CancelablePromise { @@ -2428,7 +2422,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentByIdValidate(data: DocumentData['payloads']['PutDocumentByIdValidate']): CancelablePromise { @@ -2456,7 +2450,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentAreReferenced(data: DocumentData['payloads']['GetDocumentAreReferenced'] = {}): CancelablePromise { @@ -2480,7 +2474,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentConfiguration(): CancelablePromise { @@ -2496,7 +2490,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putDocumentSort(data: DocumentData['payloads']['PutDocumentSort'] = {}): CancelablePromise { @@ -2520,7 +2514,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getDocumentUrls(data: DocumentData['payloads']['GetDocumentUrls'] = {}): CancelablePromise { @@ -2542,7 +2536,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postDocumentValidate(data: DocumentData['payloads']['PostDocumentValidate'] = {}): CancelablePromise { @@ -2566,7 +2560,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemDocument(data: DocumentData['payloads']['GetItemDocument'] = {}): CancelablePromise { @@ -2582,13 +2576,12 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemDocumentSearch(data: DocumentData['payloads']['GetItemDocumentSearch'] = {}): CancelablePromise { @@ -2606,13 +2599,12 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteRecycleBinDocument(): CancelablePromise { @@ -2630,7 +2622,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteRecycleBinDocumentById(data: DocumentData['payloads']['DeleteRecycleBinDocumentById']): CancelablePromise { @@ -2655,7 +2647,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRecycleBinDocumentByIdOriginalParent(data: DocumentData['payloads']['GetRecycleBinDocumentByIdOriginalParent']): CancelablePromise { @@ -2679,7 +2671,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putRecycleBinDocumentByIdRestore(data: DocumentData['payloads']['PutRecycleBinDocumentByIdRestore']): CancelablePromise { @@ -2707,7 +2699,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRecycleBinDocumentChildren(data: DocumentData['payloads']['GetRecycleBinDocumentChildren'] = {}): CancelablePromise { @@ -2731,7 +2723,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRecycleBinDocumentRoot(data: DocumentData['payloads']['GetRecycleBinDocumentRoot'] = {}): CancelablePromise { @@ -2754,7 +2746,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentAncestors(data: DocumentData['payloads']['GetTreeDocumentAncestors'] = {}): CancelablePromise { @@ -2776,7 +2768,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentChildren(data: DocumentData['payloads']['GetTreeDocumentChildren'] = {}): CancelablePromise { @@ -2801,7 +2793,7 @@ dataTypeId } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeDocumentRoot(data: DocumentData['payloads']['GetTreeDocumentRoot'] = {}): CancelablePromise { @@ -2829,7 +2821,7 @@ dataTypeId export class DynamicRootService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postDynamicRootQuery(data: DynamicRootData['payloads']['PostDynamicRootQuery'] = {}): CancelablePromise { @@ -2850,7 +2842,7 @@ export class DynamicRootService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static getDynamicRootSteps(): CancelablePromise { @@ -2870,7 +2862,7 @@ export class DynamicRootService { export class HealthCheckService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getHealthCheckGroup(data: HealthCheckData['payloads']['GetHealthCheckGroup'] = {}): CancelablePromise { @@ -2893,7 +2885,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getHealthCheckGroupByName(data: HealthCheckData['payloads']['GetHealthCheckGroupByName']): CancelablePromise { @@ -2916,7 +2908,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postHealthCheckGroupByNameCheck(data: HealthCheckData['payloads']['PostHealthCheckGroupByNameCheck']): CancelablePromise { @@ -2939,7 +2931,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postHealthCheckExecuteAction(data: HealthCheckData['payloads']['PostHealthCheckExecuteAction'] = {}): CancelablePromise { @@ -2965,7 +2957,7 @@ take export class HelpService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getHelp(data: HelpData['payloads']['GetHelp'] = {}): CancelablePromise { @@ -2995,7 +2987,7 @@ baseUrl export class ImagingService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getImagingResizeUrls(data: ImagingData['payloads']['GetImagingResizeUrls'] = {}): CancelablePromise { @@ -3024,7 +3016,7 @@ mode export class ImportService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getImportAnalyze(data: ImportData['payloads']['GetImportAnalyze'] = {}): CancelablePromise { @@ -3051,7 +3043,7 @@ export class ImportService { export class IndexerService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getIndexer(data: IndexerData['payloads']['GetIndexer'] = {}): CancelablePromise { @@ -3073,7 +3065,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getIndexerByIndexName(data: IndexerData['payloads']['GetIndexerByIndexName']): CancelablePromise { @@ -3095,7 +3087,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postIndexerByIndexNameRebuild(data: IndexerData['payloads']['PostIndexerByIndexNameRebuild']): CancelablePromise { @@ -3124,7 +3116,7 @@ take export class InstallService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getInstallSettings(): CancelablePromise { @@ -3133,13 +3125,13 @@ export class InstallService { method: 'GET', url: '/umbraco/management/api/v1/install/settings', errors: { - 428: `Client Error`, + 428: `Precondition Required`, }, }); } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postInstallSetup(data: InstallData['payloads']['PostInstallSetup'] = {}): CancelablePromise { @@ -3154,13 +3146,13 @@ export class InstallService { mediaType: 'application/json', responseHeader: 'Umb-Notifications', errors: { - 428: `Client Error`, + 428: `Precondition Required`, }, }); } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postInstallValidateDatabase(data: InstallData['payloads']['PostInstallValidateDatabase'] = {}): CancelablePromise { @@ -3185,7 +3177,7 @@ export class InstallService { export class LanguageService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemLanguage(data: LanguageData['payloads']['GetItemLanguage'] = {}): CancelablePromise { @@ -3201,13 +3193,12 @@ export class LanguageService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemLanguageDefault(): CancelablePromise { @@ -3217,13 +3208,12 @@ export class LanguageService { url: '/umbraco/management/api/v1/item/language/default', errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getLanguage(data: LanguageData['payloads']['GetLanguage'] = {}): CancelablePromise { @@ -3269,7 +3259,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getLanguageByIsoCode(data: LanguageData['payloads']['GetLanguageByIsoCode']): CancelablePromise { @@ -3291,7 +3281,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteLanguageByIsoCode(data: LanguageData['payloads']['DeleteLanguageByIsoCode']): CancelablePromise { @@ -3316,7 +3306,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putLanguageByIsoCode(data: LanguageData['payloads']['PutLanguageByIsoCode']): CancelablePromise { @@ -3348,7 +3338,7 @@ requestBody export class LogViewerService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getLogViewerLevel(data: LogViewerData['payloads']['GetLogViewerLevel'] = {}): CancelablePromise { @@ -3371,7 +3361,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getLogViewerLevelCount(data: LogViewerData['payloads']['GetLogViewerLevelCount'] = {}): CancelablePromise { @@ -3395,7 +3385,7 @@ endDate } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getLogViewerLog(data: LogViewerData['payloads']['GetLogViewerLog'] = {}): CancelablePromise { @@ -3423,7 +3413,7 @@ endDate } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getLogViewerMessageTemplate(data: LogViewerData['payloads']['GetLogViewerMessageTemplate'] = {}): CancelablePromise { @@ -3449,7 +3439,7 @@ endDate } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getLogViewerSavedSearch(data: LogViewerData['payloads']['GetLogViewerSavedSearch'] = {}): CancelablePromise { @@ -3495,7 +3485,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getLogViewerSavedSearchByName(data: LogViewerData['payloads']['GetLogViewerSavedSearchByName']): CancelablePromise { @@ -3518,7 +3508,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteLogViewerSavedSearchByName(data: LogViewerData['payloads']['DeleteLogViewerSavedSearchByName']): CancelablePromise { @@ -3542,7 +3532,7 @@ take } /** - * @returns any Success + * @returns any OK * @throws ApiError */ public static getLogViewerValidateLogsSize(data: LogViewerData['payloads']['GetLogViewerValidateLogsSize'] = {}): CancelablePromise { @@ -3570,7 +3560,7 @@ endDate export class ManifestService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getManifestManifest(): CancelablePromise { @@ -3586,7 +3576,7 @@ export class ManifestService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getManifestManifestPrivate(): CancelablePromise { @@ -3602,7 +3592,7 @@ export class ManifestService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getManifestManifestPublic(): CancelablePromise { @@ -3618,7 +3608,7 @@ export class ManifestService { export class MediaTypeService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMediaType(data: MediaTypeData['payloads']['GetItemMediaType'] = {}): CancelablePromise { @@ -3634,13 +3624,12 @@ export class MediaTypeService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMediaTypeAllowed(data: MediaTypeData['payloads']['GetItemMediaTypeAllowed'] = {}): CancelablePromise { @@ -3658,13 +3647,12 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMediaTypeFolders(data: MediaTypeData['payloads']['GetItemMediaTypeFolders'] = {}): CancelablePromise { @@ -3681,13 +3669,12 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMediaTypeSearch(data: MediaTypeData['payloads']['GetItemMediaTypeSearch'] = {}): CancelablePromise { @@ -3705,7 +3692,6 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -3735,7 +3721,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaTypeById(data: MediaTypeData['payloads']['GetMediaTypeById']): CancelablePromise { @@ -3758,7 +3744,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteMediaTypeById(data: MediaTypeData['payloads']['DeleteMediaTypeById']): CancelablePromise { @@ -3782,7 +3768,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaTypeById(data: MediaTypeData['payloads']['PutMediaTypeById']): CancelablePromise { @@ -3810,7 +3796,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaTypeByIdAllowedChildren(data: MediaTypeData['payloads']['GetMediaTypeByIdAllowedChildren']): CancelablePromise { @@ -3838,7 +3824,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaTypeByIdCompositionReferences(data: MediaTypeData['payloads']['GetMediaTypeByIdCompositionReferences']): CancelablePromise { @@ -3890,7 +3876,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaTypeByIdExport(data: MediaTypeData['payloads']['GetMediaTypeByIdExport']): CancelablePromise { @@ -3913,7 +3899,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaTypeByIdImport(data: MediaTypeData['payloads']['PutMediaTypeByIdImport']): CancelablePromise { @@ -3941,7 +3927,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaTypeByIdMove(data: MediaTypeData['payloads']['PutMediaTypeByIdMove']): CancelablePromise { @@ -3969,7 +3955,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaTypeAllowedAtRoot(data: MediaTypeData['payloads']['GetMediaTypeAllowedAtRoot'] = {}): CancelablePromise { @@ -3992,7 +3978,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postMediaTypeAvailableCompositions(data: MediaTypeData['payloads']['PostMediaTypeAvailableCompositions'] = {}): CancelablePromise { @@ -4037,7 +4023,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaTypeFolderById(data: MediaTypeData['payloads']['GetMediaTypeFolderById']): CancelablePromise { @@ -4060,7 +4046,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteMediaTypeFolderById(data: MediaTypeData['payloads']['DeleteMediaTypeFolderById']): CancelablePromise { @@ -4085,7 +4071,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaTypeFolderById(data: MediaTypeData['payloads']['PutMediaTypeFolderById']): CancelablePromise { @@ -4137,7 +4123,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeMediaTypeAncestors(data: MediaTypeData['payloads']['GetTreeMediaTypeAncestors'] = {}): CancelablePromise { @@ -4159,7 +4145,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeMediaTypeChildren(data: MediaTypeData['payloads']['GetTreeMediaTypeChildren'] = {}): CancelablePromise { @@ -4184,7 +4170,7 @@ foldersOnly } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeMediaTypeRoot(data: MediaTypeData['payloads']['GetTreeMediaTypeRoot'] = {}): CancelablePromise { @@ -4212,7 +4198,7 @@ foldersOnly export class MediaService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getCollectionMedia(data: MediaData['payloads']['GetCollectionMedia'] = {}): CancelablePromise { @@ -4242,7 +4228,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMedia(data: MediaData['payloads']['GetItemMedia'] = {}): CancelablePromise { @@ -4258,13 +4244,12 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMediaSearch(data: MediaData['payloads']['GetItemMediaSearch'] = {}): CancelablePromise { @@ -4282,7 +4267,6 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -4312,7 +4296,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaById(data: MediaData['payloads']['GetMediaById']): CancelablePromise { @@ -4335,7 +4319,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteMediaById(data: MediaData['payloads']['DeleteMediaById']): CancelablePromise { @@ -4360,7 +4344,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaById(data: MediaData['payloads']['PutMediaById']): CancelablePromise { @@ -4388,7 +4372,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaByIdAuditLog(data: MediaData['payloads']['GetMediaByIdAuditLog']): CancelablePromise { @@ -4417,7 +4401,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaByIdMove(data: MediaData['payloads']['PutMediaByIdMove']): CancelablePromise { @@ -4444,7 +4428,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaByIdMoveToRecycleBin(data: MediaData['payloads']['PutMediaByIdMoveToRecycleBin']): CancelablePromise { @@ -4469,7 +4453,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaByIdReferencedBy(data: MediaData['payloads']['GetMediaByIdReferencedBy']): CancelablePromise { @@ -4496,7 +4480,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaByIdReferencedDescendants(data: MediaData['payloads']['GetMediaByIdReferencedDescendants']): CancelablePromise { @@ -4523,7 +4507,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaByIdValidate(data: MediaData['payloads']['PutMediaByIdValidate']): CancelablePromise { @@ -4551,7 +4535,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaAreReferenced(data: MediaData['payloads']['GetMediaAreReferenced'] = {}): CancelablePromise { @@ -4575,7 +4559,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaConfiguration(): CancelablePromise { @@ -4591,7 +4575,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMediaSort(data: MediaData['payloads']['PutMediaSort'] = {}): CancelablePromise { @@ -4615,7 +4599,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMediaUrls(data: MediaData['payloads']['GetMediaUrls'] = {}): CancelablePromise { @@ -4637,7 +4621,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postMediaValidate(data: MediaData['payloads']['PostMediaValidate'] = {}): CancelablePromise { @@ -4661,7 +4645,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteRecycleBinMedia(): CancelablePromise { @@ -4679,7 +4663,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteRecycleBinMediaById(data: MediaData['payloads']['DeleteRecycleBinMediaById']): CancelablePromise { @@ -4704,7 +4688,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRecycleBinMediaByIdOriginalParent(data: MediaData['payloads']['GetRecycleBinMediaByIdOriginalParent']): CancelablePromise { @@ -4728,7 +4712,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putRecycleBinMediaByIdRestore(data: MediaData['payloads']['PutRecycleBinMediaByIdRestore']): CancelablePromise { @@ -4756,7 +4740,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRecycleBinMediaChildren(data: MediaData['payloads']['GetRecycleBinMediaChildren'] = {}): CancelablePromise { @@ -4780,7 +4764,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRecycleBinMediaRoot(data: MediaData['payloads']['GetRecycleBinMediaRoot'] = {}): CancelablePromise { @@ -4803,7 +4787,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeMediaAncestors(data: MediaData['payloads']['GetTreeMediaAncestors'] = {}): CancelablePromise { @@ -4825,7 +4809,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeMediaChildren(data: MediaData['payloads']['GetTreeMediaChildren'] = {}): CancelablePromise { @@ -4850,7 +4834,7 @@ dataTypeId } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeMediaRoot(data: MediaData['payloads']['GetTreeMediaRoot'] = {}): CancelablePromise { @@ -4878,7 +4862,7 @@ dataTypeId export class MemberGroupService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMemberGroup(data: MemberGroupData['payloads']['GetItemMemberGroup'] = {}): CancelablePromise { @@ -4894,13 +4878,12 @@ export class MemberGroupService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMemberGroup(data: MemberGroupData['payloads']['GetMemberGroup'] = {}): CancelablePromise { @@ -4946,7 +4929,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMemberGroupById(data: MemberGroupData['payloads']['GetMemberGroupById']): CancelablePromise { @@ -4969,7 +4952,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteMemberGroupById(data: MemberGroupData['payloads']['DeleteMemberGroupById']): CancelablePromise { @@ -4994,7 +4977,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMemberGroupById(data: MemberGroupData['payloads']['PutMemberGroupById']): CancelablePromise { @@ -5022,7 +5005,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeMemberGroupRoot(data: MemberGroupData['payloads']['GetTreeMemberGroupRoot'] = {}): CancelablePromise { @@ -5049,7 +5032,7 @@ take export class MemberTypeService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMemberType(data: MemberTypeData['payloads']['GetItemMemberType'] = {}): CancelablePromise { @@ -5065,13 +5048,12 @@ export class MemberTypeService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMemberTypeSearch(data: MemberTypeData['payloads']['GetItemMemberTypeSearch'] = {}): CancelablePromise { @@ -5089,7 +5071,6 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -5119,7 +5100,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMemberTypeById(data: MemberTypeData['payloads']['GetMemberTypeById']): CancelablePromise { @@ -5142,7 +5123,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteMemberTypeById(data: MemberTypeData['payloads']['DeleteMemberTypeById']): CancelablePromise { @@ -5166,7 +5147,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMemberTypeById(data: MemberTypeData['payloads']['PutMemberTypeById']): CancelablePromise { @@ -5194,7 +5175,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMemberTypeByIdCompositionReferences(data: MemberTypeData['payloads']['GetMemberTypeByIdCompositionReferences']): CancelablePromise { @@ -5243,7 +5224,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postMemberTypeAvailableCompositions(data: MemberTypeData['payloads']['PostMemberTypeAvailableCompositions'] = {}): CancelablePromise { @@ -5264,7 +5245,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeMemberTypeRoot(data: MemberTypeData['payloads']['GetTreeMemberTypeRoot'] = {}): CancelablePromise { @@ -5291,7 +5272,7 @@ take export class MemberService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getFilterMember(data: MemberData['payloads']['GetFilterMember'] = {}): CancelablePromise { @@ -5322,7 +5303,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMember(data: MemberData['payloads']['GetItemMember'] = {}): CancelablePromise { @@ -5338,13 +5319,12 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemMemberSearch(data: MemberData['payloads']['GetItemMemberSearch'] = {}): CancelablePromise { @@ -5362,7 +5342,6 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -5392,7 +5371,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMemberById(data: MemberData['payloads']['GetMemberById']): CancelablePromise { @@ -5415,7 +5394,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteMemberById(data: MemberData['payloads']['DeleteMemberById']): CancelablePromise { @@ -5440,7 +5419,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMemberById(data: MemberData['payloads']['PutMemberById']): CancelablePromise { @@ -5468,7 +5447,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putMemberByIdValidate(data: MemberData['payloads']['PutMemberByIdValidate']): CancelablePromise { @@ -5496,7 +5475,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getMemberConfiguration(): CancelablePromise { @@ -5512,7 +5491,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postMemberValidate(data: MemberData['payloads']['PostMemberValidate'] = {}): CancelablePromise { @@ -5540,7 +5519,7 @@ requestBody export class ModelsBuilderService { /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postModelsBuilderBuild(): CancelablePromise { @@ -5552,13 +5531,13 @@ export class ModelsBuilderService { errors: { 401: `The resource is protected and requires an authentication token`, 403: `The authenticated user do not have access to this resource`, - 428: `Client Error`, + 428: `Precondition Required`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getModelsBuilderDashboard(): CancelablePromise { @@ -5574,7 +5553,7 @@ export class ModelsBuilderService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getModelsBuilderStatus(): CancelablePromise { @@ -5594,7 +5573,7 @@ export class ModelsBuilderService { export class ObjectTypesService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getObjectTypes(data: ObjectTypesData['payloads']['GetObjectTypes'] = {}): CancelablePromise { @@ -5620,7 +5599,7 @@ take export class OEmbedService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getOembedQuery(data: OembedData['payloads']['GetOembedQuery'] = {}): CancelablePromise { @@ -5648,7 +5627,7 @@ maxHeight export class PackageService { /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postPackageByNameRunMigration(data: PackageData['payloads']['PostPackageByNameRunMigration']): CancelablePromise { @@ -5673,7 +5652,7 @@ export class PackageService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPackageConfiguration(): CancelablePromise { @@ -5689,7 +5668,7 @@ export class PackageService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPackageCreated(data: PackageData['payloads']['GetPackageCreated'] = {}): CancelablePromise { @@ -5736,7 +5715,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPackageCreatedById(data: PackageData['payloads']['GetPackageCreatedById']): CancelablePromise { @@ -5759,7 +5738,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deletePackageCreatedById(data: PackageData['payloads']['DeletePackageCreatedById']): CancelablePromise { @@ -5783,7 +5762,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putPackageCreatedById(data: PackageData['payloads']['PutPackageCreatedById']): CancelablePromise { @@ -5810,7 +5789,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPackageCreatedByIdDownload(data: PackageData['payloads']['GetPackageCreatedByIdDownload']): CancelablePromise { @@ -5833,7 +5812,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPackageMigrationStatus(data: PackageData['payloads']['GetPackageMigrationStatus'] = {}): CancelablePromise { @@ -5860,7 +5839,7 @@ take export class PartialViewService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemPartialView(data: PartialViewData['payloads']['GetItemPartialView'] = {}): CancelablePromise { @@ -5876,7 +5855,6 @@ export class PartialViewService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -5906,7 +5884,7 @@ export class PartialViewService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPartialViewByPath(data: PartialViewData['payloads']['GetPartialViewByPath']): CancelablePromise { @@ -5929,7 +5907,7 @@ export class PartialViewService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deletePartialViewByPath(data: PartialViewData['payloads']['DeletePartialViewByPath']): CancelablePromise { @@ -5954,7 +5932,7 @@ export class PartialViewService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putPartialViewByPath(data: PartialViewData['payloads']['PutPartialViewByPath']): CancelablePromise { @@ -6034,7 +6012,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPartialViewFolderByPath(data: PartialViewData['payloads']['GetPartialViewFolderByPath']): CancelablePromise { @@ -6057,7 +6035,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deletePartialViewFolderByPath(data: PartialViewData['payloads']['DeletePartialViewFolderByPath']): CancelablePromise { @@ -6082,7 +6060,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPartialViewSnippet(data: PartialViewData['payloads']['GetPartialViewSnippet'] = {}): CancelablePromise { @@ -6105,7 +6083,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getPartialViewSnippetById(data: PartialViewData['payloads']['GetPartialViewSnippetById']): CancelablePromise { @@ -6128,7 +6106,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreePartialViewAncestors(data: PartialViewData['payloads']['GetTreePartialViewAncestors'] = {}): CancelablePromise { @@ -6150,7 +6128,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreePartialViewChildren(data: PartialViewData['payloads']['GetTreePartialViewChildren'] = {}): CancelablePromise { @@ -6174,7 +6152,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreePartialViewRoot(data: PartialViewData['payloads']['GetTreePartialViewRoot'] = {}): CancelablePromise { @@ -6201,7 +6179,7 @@ take export class PreviewService { /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deletePreview(): CancelablePromise { @@ -6214,7 +6192,7 @@ export class PreviewService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postPreview(): CancelablePromise { @@ -6234,7 +6212,7 @@ export class PreviewService { export class ProfilingService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getProfilingStatus(): CancelablePromise { @@ -6250,7 +6228,7 @@ export class ProfilingService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putProfilingStatus(data: ProfilingData['payloads']['PutProfilingStatus'] = {}): CancelablePromise { @@ -6276,7 +6254,7 @@ export class ProfilingService { export class PropertyTypeService { /** - * @returns boolean Success + * @returns boolean OK * @throws ApiError */ public static getPropertyTypeIsUsed(data: PropertyTypeData['payloads']['GetPropertyTypeIsUsed'] = {}): CancelablePromise { @@ -6304,7 +6282,7 @@ propertyAlias export class PublishedCacheService { /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postPublishedCacheCollect(): CancelablePromise { @@ -6320,7 +6298,7 @@ export class PublishedCacheService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postPublishedCacheRebuild(): CancelablePromise { @@ -6336,7 +6314,7 @@ export class PublishedCacheService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postPublishedCacheReload(): CancelablePromise { @@ -6352,7 +6330,7 @@ export class PublishedCacheService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static getPublishedCacheStatus(): CancelablePromise { @@ -6371,7 +6349,7 @@ export class PublishedCacheService { export class RedirectManagementService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRedirectManagement(data: RedirectManagementData['payloads']['GetRedirectManagement'] = {}): CancelablePromise { @@ -6396,7 +6374,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRedirectManagementById(data: RedirectManagementData['payloads']['GetRedirectManagementById']): CancelablePromise { @@ -6423,7 +6401,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteRedirectManagementById(data: RedirectManagementData['payloads']['DeleteRedirectManagementById']): CancelablePromise { @@ -6446,7 +6424,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRedirectManagementStatus(): CancelablePromise { @@ -6462,7 +6440,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postRedirectManagementStatus(data: RedirectManagementData['payloads']['PostRedirectManagementStatus'] = {}): CancelablePromise { @@ -6489,7 +6467,7 @@ take export class RelationTypeService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemRelationType(data: RelationTypeData['payloads']['GetItemRelationType'] = {}): CancelablePromise { @@ -6505,13 +6483,12 @@ export class RelationTypeService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRelationType(data: RelationTypeData['payloads']['GetRelationType'] = {}): CancelablePromise { @@ -6534,7 +6511,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRelationTypeById(data: RelationTypeData['payloads']['GetRelationTypeById']): CancelablePromise { @@ -6561,7 +6538,7 @@ take export class RelationService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getRelationTypeById(data: RelationData['payloads']['GetRelationTypeById']): CancelablePromise { @@ -6593,7 +6570,7 @@ take export class ScriptService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemScript(data: ScriptData['payloads']['GetItemScript'] = {}): CancelablePromise { @@ -6609,7 +6586,6 @@ export class ScriptService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -6639,7 +6615,7 @@ export class ScriptService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getScriptByPath(data: ScriptData['payloads']['GetScriptByPath']): CancelablePromise { @@ -6662,7 +6638,7 @@ export class ScriptService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteScriptByPath(data: ScriptData['payloads']['DeleteScriptByPath']): CancelablePromise { @@ -6687,7 +6663,7 @@ export class ScriptService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putScriptByPath(data: ScriptData['payloads']['PutScriptByPath']): CancelablePromise { @@ -6767,7 +6743,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getScriptFolderByPath(data: ScriptData['payloads']['GetScriptFolderByPath']): CancelablePromise { @@ -6790,7 +6766,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteScriptFolderByPath(data: ScriptData['payloads']['DeleteScriptFolderByPath']): CancelablePromise { @@ -6815,7 +6791,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeScriptAncestors(data: ScriptData['payloads']['GetTreeScriptAncestors'] = {}): CancelablePromise { @@ -6837,7 +6813,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeScriptChildren(data: ScriptData['payloads']['GetTreeScriptChildren'] = {}): CancelablePromise { @@ -6861,7 +6837,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeScriptRoot(data: ScriptData['payloads']['GetTreeScriptRoot'] = {}): CancelablePromise { @@ -6888,7 +6864,7 @@ take export class SearcherService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getSearcher(data: SearcherData['payloads']['GetSearcher'] = {}): CancelablePromise { @@ -6910,7 +6886,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getSearcherBySearcherNameQuery(data: SearcherData['payloads']['GetSearcherBySearcherNameQuery']): CancelablePromise { @@ -6942,7 +6918,7 @@ take export class SecurityService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getSecurityConfiguration(): CancelablePromise { @@ -6958,7 +6934,7 @@ export class SecurityService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postSecurityForgotPassword(data: SecurityData['payloads']['PostSecurityForgotPassword'] = {}): CancelablePromise { @@ -7005,7 +6981,7 @@ export class SecurityService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postSecurityForgotPasswordVerify(data: SecurityData['payloads']['PostSecurityForgotPasswordVerify'] = {}): CancelablePromise { @@ -7030,7 +7006,7 @@ export class SecurityService { export class SegmentService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getSegment(data: SegmentData['payloads']['GetSegment'] = {}): CancelablePromise { @@ -7058,7 +7034,7 @@ take export class ServerService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getServerConfiguration(): CancelablePromise { @@ -7073,7 +7049,7 @@ export class ServerService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getServerInformation(): CancelablePromise { @@ -7088,7 +7064,7 @@ export class ServerService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getServerStatus(): CancelablePromise { @@ -7103,7 +7079,7 @@ export class ServerService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getServerTroubleshooting(): CancelablePromise { @@ -7122,7 +7098,7 @@ export class ServerService { export class StaticFileService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemStaticFile(data: StaticFileData['payloads']['GetItemStaticFile'] = {}): CancelablePromise { @@ -7143,7 +7119,7 @@ export class StaticFileService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeStaticFileAncestors(data: StaticFileData['payloads']['GetTreeStaticFileAncestors'] = {}): CancelablePromise { @@ -7164,7 +7140,7 @@ export class StaticFileService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeStaticFileChildren(data: StaticFileData['payloads']['GetTreeStaticFileChildren'] = {}): CancelablePromise { @@ -7187,7 +7163,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeStaticFileRoot(data: StaticFileData['payloads']['GetTreeStaticFileRoot'] = {}): CancelablePromise { @@ -7213,7 +7189,7 @@ take export class StylesheetService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemStylesheet(data: StylesheetData['payloads']['GetItemStylesheet'] = {}): CancelablePromise { @@ -7229,7 +7205,6 @@ export class StylesheetService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -7259,7 +7234,7 @@ export class StylesheetService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getStylesheetByPath(data: StylesheetData['payloads']['GetStylesheetByPath']): CancelablePromise { @@ -7282,7 +7257,7 @@ export class StylesheetService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteStylesheetByPath(data: StylesheetData['payloads']['DeleteStylesheetByPath']): CancelablePromise { @@ -7307,7 +7282,7 @@ export class StylesheetService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putStylesheetByPath(data: StylesheetData['payloads']['PutStylesheetByPath']): CancelablePromise { @@ -7387,7 +7362,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getStylesheetFolderByPath(data: StylesheetData['payloads']['GetStylesheetFolderByPath']): CancelablePromise { @@ -7410,7 +7385,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteStylesheetFolderByPath(data: StylesheetData['payloads']['DeleteStylesheetFolderByPath']): CancelablePromise { @@ -7435,7 +7410,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeStylesheetAncestors(data: StylesheetData['payloads']['GetTreeStylesheetAncestors'] = {}): CancelablePromise { @@ -7457,7 +7432,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeStylesheetChildren(data: StylesheetData['payloads']['GetTreeStylesheetChildren'] = {}): CancelablePromise { @@ -7481,7 +7456,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeStylesheetRoot(data: StylesheetData['payloads']['GetTreeStylesheetRoot'] = {}): CancelablePromise { @@ -7508,7 +7483,7 @@ take export class TagService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTag(data: TagData['payloads']['GetTag'] = {}): CancelablePromise { @@ -7537,7 +7512,7 @@ take export class TelemetryService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTelemetry(data: TelemetryData['payloads']['GetTelemetry'] = {}): CancelablePromise { @@ -7560,7 +7535,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTelemetryLevel(): CancelablePromise { @@ -7576,7 +7551,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postTelemetryLevel(data: TelemetryData['payloads']['PostTelemetryLevel'] = {}): CancelablePromise { @@ -7603,7 +7578,7 @@ take export class TemplateService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemTemplate(data: TemplateData['payloads']['GetItemTemplate'] = {}): CancelablePromise { @@ -7619,13 +7594,12 @@ export class TemplateService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemTemplateSearch(data: TemplateData['payloads']['GetItemTemplateSearch'] = {}): CancelablePromise { @@ -7643,7 +7617,6 @@ take }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -7673,7 +7646,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTemplateById(data: TemplateData['payloads']['GetTemplateById']): CancelablePromise { @@ -7696,7 +7669,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteTemplateById(data: TemplateData['payloads']['DeleteTemplateById']): CancelablePromise { @@ -7721,7 +7694,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putTemplateById(data: TemplateData['payloads']['PutTemplateById']): CancelablePromise { @@ -7749,7 +7722,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTemplateConfiguration(): CancelablePromise { @@ -7765,7 +7738,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postTemplateQueryExecute(data: TemplateData['payloads']['PostTemplateQueryExecute'] = {}): CancelablePromise { @@ -7786,7 +7759,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTemplateQuerySettings(): CancelablePromise { @@ -7802,7 +7775,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeTemplateAncestors(data: TemplateData['payloads']['GetTreeTemplateAncestors'] = {}): CancelablePromise { @@ -7824,7 +7797,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeTemplateChildren(data: TemplateData['payloads']['GetTreeTemplateChildren'] = {}): CancelablePromise { @@ -7848,7 +7821,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTreeTemplateRoot(data: TemplateData['payloads']['GetTreeTemplateRoot'] = {}): CancelablePromise { @@ -7897,7 +7870,7 @@ export class TemporaryFileService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTemporaryFileById(data: TemporaryFileData['payloads']['GetTemporaryFileById']): CancelablePromise { @@ -7920,7 +7893,7 @@ export class TemporaryFileService { } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteTemporaryFileById(data: TemporaryFileData['payloads']['DeleteTemporaryFileById']): CancelablePromise { @@ -7944,7 +7917,7 @@ export class TemporaryFileService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getTemporaryFileConfiguration(): CancelablePromise { @@ -7963,7 +7936,7 @@ export class TemporaryFileService { export class UpgradeService { /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUpgradeAuthorize(): CancelablePromise { @@ -7975,14 +7948,14 @@ export class UpgradeService { errors: { 401: `The resource is protected and requires an authentication token`, 403: `The authenticated user do not have access to this resource`, - 428: `Client Error`, - 500: `Server Error`, + 428: `Precondition Required`, + 500: `Internal Server Error`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUpgradeSettings(): CancelablePromise { @@ -7993,7 +7966,7 @@ export class UpgradeService { errors: { 401: `The resource is protected and requires an authentication token`, 403: `The authenticated user do not have access to this resource`, - 428: `Client Error`, + 428: `Precondition Required`, }, }); } @@ -8026,7 +7999,7 @@ export class UserDataService { } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserData(data: UserDataData['payloads']['GetUserData'] = {}): CancelablePromise { @@ -8050,7 +8023,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putUserData(data: UserDataData['payloads']['PutUserData'] = {}): CancelablePromise { @@ -8073,7 +8046,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserDataById(data: UserDataData['payloads']['GetUserDataById']): CancelablePromise { @@ -8099,7 +8072,7 @@ take export class UserGroupService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getFilterUserGroup(data: UserGroupData['payloads']['GetFilterUserGroup'] = {}): CancelablePromise { @@ -8125,7 +8098,7 @@ filter } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemUserGroup(data: UserGroupData['payloads']['GetItemUserGroup'] = {}): CancelablePromise { @@ -8141,13 +8114,12 @@ filter }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteUserGroup(data: UserGroupData['payloads']['DeleteUserGroup'] = {}): CancelablePromise { @@ -8193,7 +8165,7 @@ filter } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserGroup(data: UserGroupData['payloads']['GetUserGroup'] = {}): CancelablePromise { @@ -8216,7 +8188,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserGroupById(data: UserGroupData['payloads']['GetUserGroupById']): CancelablePromise { @@ -8239,7 +8211,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteUserGroupById(data: UserGroupData['payloads']['DeleteUserGroupById']): CancelablePromise { @@ -8263,7 +8235,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putUserGroupById(data: UserGroupData['payloads']['PutUserGroupById']): CancelablePromise { @@ -8290,7 +8262,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteUserGroupByIdUsers(data: UserGroupData['payloads']['DeleteUserGroupByIdUsers']): CancelablePromise { @@ -8317,7 +8289,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserGroupByIdUsers(data: UserGroupData['payloads']['PostUserGroupByIdUsers']): CancelablePromise { @@ -8348,7 +8320,7 @@ requestBody export class UserService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getFilterUser(data: UserData['payloads']['GetFilterUser'] = {}): CancelablePromise { @@ -8378,7 +8350,7 @@ filter } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemUser(data: UserData['payloads']['GetItemUser'] = {}): CancelablePromise { @@ -8394,7 +8366,6 @@ filter }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } @@ -8424,7 +8395,7 @@ filter } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteUser(data: UserData['payloads']['DeleteUser'] = {}): CancelablePromise { @@ -8447,7 +8418,7 @@ filter } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUser(data: UserData['payloads']['GetUser'] = {}): CancelablePromise { @@ -8471,7 +8442,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserById(data: UserData['payloads']['GetUserById']): CancelablePromise { @@ -8494,7 +8465,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteUserById(data: UserData['payloads']['DeleteUserById']): CancelablePromise { @@ -8519,7 +8490,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putUserById(data: UserData['payloads']['PutUserById']): CancelablePromise { @@ -8547,7 +8518,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserById2Fa(data: UserData['payloads']['GetUserById2Fa']): CancelablePromise { @@ -8570,7 +8541,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteUserById2FaByProviderName(data: UserData['payloads']['DeleteUserById2FaByProviderName']): CancelablePromise { @@ -8596,7 +8567,7 @@ providerName } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserByIdChangePassword(data: UserData['payloads']['PostUserByIdChangePassword']): CancelablePromise { @@ -8624,7 +8595,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postUserByIdResetPassword(data: UserData['payloads']['PostUserByIdResetPassword']): CancelablePromise { @@ -8648,7 +8619,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteUserAvatarById(data: UserData['payloads']['DeleteUserAvatarById']): CancelablePromise { @@ -8673,7 +8644,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserAvatarById(data: UserData['payloads']['PostUserAvatarById']): CancelablePromise { @@ -8701,7 +8672,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserConfiguration(): CancelablePromise { @@ -8717,7 +8688,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserCurrent(): CancelablePromise { @@ -8732,7 +8703,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserCurrent2Fa(): CancelablePromise { @@ -8747,7 +8718,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteUserCurrent2FaByProviderName(data: UserData['payloads']['DeleteUserCurrent2FaByProviderName']): CancelablePromise { @@ -8775,7 +8746,7 @@ code } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postUserCurrent2FaByProviderName(data: UserData['payloads']['PostUserCurrent2FaByProviderName']): CancelablePromise { @@ -8801,7 +8772,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserCurrent2FaByProviderName(data: UserData['payloads']['GetUserCurrent2FaByProviderName']): CancelablePromise { @@ -8824,7 +8795,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserCurrentAvatar(data: UserData['payloads']['PostUserCurrentAvatar'] = {}): CancelablePromise { @@ -8846,7 +8817,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserCurrentChangePassword(data: UserData['payloads']['PostUserCurrentChangePassword'] = {}): CancelablePromise { @@ -8868,7 +8839,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserCurrentConfiguration(): CancelablePromise { @@ -8884,7 +8855,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserCurrentLoginProviders(): CancelablePromise { @@ -8899,7 +8870,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserCurrentPermissions(data: UserData['payloads']['GetUserCurrentPermissions'] = {}): CancelablePromise { @@ -8921,7 +8892,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserCurrentPermissionsDocument(data: UserData['payloads']['GetUserCurrentPermissionsDocument'] = {}): CancelablePromise { @@ -8943,7 +8914,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getUserCurrentPermissionsMedia(data: UserData['payloads']['GetUserCurrentPermissionsMedia'] = {}): CancelablePromise { @@ -8965,7 +8936,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserDisable(data: UserData['payloads']['PostUserDisable'] = {}): CancelablePromise { @@ -8989,7 +8960,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserEnable(data: UserData['payloads']['PostUserEnable'] = {}): CancelablePromise { @@ -9037,7 +9008,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserInviteCreatePassword(data: UserData['payloads']['PostUserInviteCreatePassword'] = {}): CancelablePromise { @@ -9060,7 +9031,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserInviteResend(data: UserData['payloads']['PostUserInviteResend'] = {}): CancelablePromise { @@ -9084,7 +9055,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static postUserInviteVerify(data: UserData['payloads']['PostUserInviteVerify'] = {}): CancelablePromise { @@ -9106,7 +9077,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserSetUserGroups(data: UserData['payloads']['PostUserSetUserGroups'] = {}): CancelablePromise { @@ -9128,7 +9099,7 @@ requestBody } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static postUserUnlock(data: UserData['payloads']['PostUserUnlock'] = {}): CancelablePromise { @@ -9155,7 +9126,7 @@ requestBody export class WebhookService { /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getItemWebhook(data: WebhookData['payloads']['GetItemWebhook'] = {}): CancelablePromise { @@ -9171,13 +9142,12 @@ export class WebhookService { }, errors: { 401: `The resource is protected and requires an authentication token`, - 403: `The authenticated user do not have access to this resource`, }, }); } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getWebhook(data: WebhookData['payloads']['GetWebhook'] = {}): CancelablePromise { @@ -9223,7 +9193,7 @@ take } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getWebhookById(data: WebhookData['payloads']['GetWebhookById']): CancelablePromise { @@ -9245,7 +9215,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static deleteWebhookById(data: WebhookData['payloads']['DeleteWebhookById']): CancelablePromise { @@ -9270,7 +9240,7 @@ take } /** - * @returns string Success + * @returns string OK * @throws ApiError */ public static putWebhookById(data: WebhookData['payloads']['PutWebhookById']): CancelablePromise { @@ -9298,7 +9268,7 @@ requestBody } /** - * @returns unknown Success + * @returns unknown OK * @throws ApiError */ public static getWebhookEvents(data: WebhookData['payloads']['GetWebhookEvents'] = {}): CancelablePromise { From b93f7927aa8f4137e3ead218c419be0edc7ef29f Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 31 May 2024 09:15:22 +0200 Subject: [PATCH 09/20] fix: add `template` to the blueprint model, although it isn't returned from the server --- .../detail/document-blueprint-detail.server.data-source.ts | 4 +++- .../src/packages/documents/document-blueprints/types.ts | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts index 33eb7dbeb8..3242b4d64b 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts @@ -41,6 +41,7 @@ export class UmbDocumentBlueprintServerDataSource implements UmbDetailDataSource unique: '', collection: null, }, + template: null, values: [], variants: [], ...preset, @@ -113,6 +114,7 @@ export class UmbDocumentBlueprintServerDataSource implements UmbDetailDataSource unique: data.documentType.id, collection: data.documentType.collection ? { unique: data.documentType.collection.id } : null, }, + template: null, // TODO: Should this be returned from the server? }; return { data: document }; @@ -133,7 +135,7 @@ export class UmbDocumentBlueprintServerDataSource implements UmbDetailDataSource id: model.unique, parent: parentUnique ? { id: parentUnique } : null, documentType: { id: model.documentType.unique }, - + template: model.template ? { id: model.template.unique } : null, values: model.values, variants: model.variants, }; diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/types.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/types.ts index 09965e112f..d7cc4b7649 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/types.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/types.ts @@ -10,6 +10,7 @@ export interface UmbDocumentBlueprintDetailModel { collection: UmbReferenceByUnique | null; }; entityType: UmbDocumentBlueprintEntityType; + template: UmbReferenceByUnique | null; unique: string; values: Array; variants: Array; From 069b8647d8ff211b5b2dfbdb2630c8104072a1cf Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 30 May 2024 20:50:18 +0200 Subject: [PATCH 10/20] add sidebar bottom space --- .../core/section/section-sidebar/section-sidebar.element.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/section/section-sidebar/section-sidebar.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/section/section-sidebar/section-sidebar.element.ts index 5c86779064..ba7a4a2081 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/section/section-sidebar/section-sidebar.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/section/section-sidebar/section-sidebar.element.ts @@ -30,6 +30,8 @@ export class UmbSectionSidebarElement extends UmbLitElement { flex-direction: column; z-index: 10; position: relative; + padding-bottom: var(--uui-size-4); + box-sizing: border-box; } #scroll-container { From ac996470c6628bbf26589696e16e855570585ea3 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 31 May 2024 11:28:44 +0200 Subject: [PATCH 11/20] feat: add localization keys to folder modal --- .../folder/modal/folder-modal-element-base.ts | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/modal/folder-modal-element-base.ts b/src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/modal/folder-modal-element-base.ts index efb9567c95..c7117f87d6 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/modal/folder-modal-element-base.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/modal/folder-modal-element-base.ts @@ -57,27 +57,32 @@ export abstract class UmbFolderModalElementBase< render() { return html` - +
- Folder name + + Enter folder name +
- + + label=${this.localize.term(this._isNew ? 'actions_folderCreate' : 'actions_folderRename')}>
`; } From 72da0c4c0b4f603af96091a9bbc9a694fc08cb69 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 30 May 2024 14:57:42 +0200 Subject: [PATCH 12/20] only render folders for move document-type --- .../entity-actions/move-to/manifests.ts | 1 + .../tree/document-type.tree.server.data-source.ts | 13 +++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/move-to/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/move-to/manifests.ts index b53091d713..ebb3f30c81 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/move-to/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/entity-actions/move-to/manifests.ts @@ -15,6 +15,7 @@ const entityActions: Array = [ treeRepositoryAlias: UMB_DOCUMENT_TYPE_TREE_REPOSITORY_ALIAS, moveRepositoryAlias: UMB_MOVE_DOCUMENT_TYPE_REPOSITORY_ALIAS, treeAlias: UMB_DOCUMENT_TYPE_TREE_ALIAS, + foldersOnly: true, }, }, ]; diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/tree/document-type.tree.server.data-source.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/tree/document-type.tree.server.data-source.ts index f24ada9e7d..04f34144bb 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/tree/document-type.tree.server.data-source.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/tree/document-type.tree.server.data-source.ts @@ -41,15 +41,24 @@ export class UmbDocumentTypeTreeServerDataSource extends UmbTreeServerDataSource const getRootItems = (args: UmbTreeRootItemsRequestArgs) => // eslint-disable-next-line local-rules/no-direct-api-import - DocumentTypeService.getTreeDocumentTypeRoot({ skip: args.skip, take: args.take }); + DocumentTypeService.getTreeDocumentTypeRoot({ + foldersOnly: args.foldersOnly, + skip: args.skip, + take: args.take, + }); const getChildrenOf = (args: UmbTreeChildrenOfRequestArgs) => { if (args.parent.unique === null) { - return getRootItems({ skip: args.skip, take: args.take }); + return getRootItems({ + foldersOnly: args.foldersOnly, + skip: args.skip, + take: args.take, + }); } else { // eslint-disable-next-line local-rules/no-direct-api-import return DocumentTypeService.getTreeDocumentTypeChildren({ parentId: args.parent.unique, + foldersOnly: args.foldersOnly, skip: args.skip, take: args.take, }); From 3977d8036d09885f055b2a226439ae2524c2c098 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 31 May 2024 11:37:15 +0200 Subject: [PATCH 13/20] fix: use correct `CreateDocumentBlueprintRequestModel` to prevent extra fields from being required --- .../detail/document-blueprint-detail.server.data-source.ts | 7 ++----- .../src/packages/documents/document-blueprints/types.ts | 1 - 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts index 3242b4d64b..baaab0edfe 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts @@ -3,7 +3,7 @@ import { UMB_DOCUMENT_BLUEPRINT_ENTITY_TYPE } from '../../entity.js'; import { UmbId } from '@umbraco-cms/backoffice/id'; import type { UmbDetailDataSource } from '@umbraco-cms/backoffice/repository'; import type { - CreateDocumentRequestModel, + CreateDocumentBlueprintRequestModel, UpdateDocumentRequestModel, } from '@umbraco-cms/backoffice/external/backend-api'; import { DocumentBlueprintService } from '@umbraco-cms/backoffice/external/backend-api'; @@ -41,7 +41,6 @@ export class UmbDocumentBlueprintServerDataSource implements UmbDetailDataSource unique: '', collection: null, }, - template: null, values: [], variants: [], ...preset, @@ -114,7 +113,6 @@ export class UmbDocumentBlueprintServerDataSource implements UmbDetailDataSource unique: data.documentType.id, collection: data.documentType.collection ? { unique: data.documentType.collection.id } : null, }, - template: null, // TODO: Should this be returned from the server? }; return { data: document }; @@ -131,11 +129,10 @@ export class UmbDocumentBlueprintServerDataSource implements UmbDetailDataSource if (!model.unique) throw new Error('Document unique is missing'); // TODO: make data mapper to prevent errors - const requestBody: CreateDocumentRequestModel = { + const requestBody: CreateDocumentBlueprintRequestModel = { id: model.unique, parent: parentUnique ? { id: parentUnique } : null, documentType: { id: model.documentType.unique }, - template: model.template ? { id: model.template.unique } : null, values: model.values, variants: model.variants, }; diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/types.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/types.ts index d7cc4b7649..09965e112f 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/types.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/types.ts @@ -10,7 +10,6 @@ export interface UmbDocumentBlueprintDetailModel { collection: UmbReferenceByUnique | null; }; entityType: UmbDocumentBlueprintEntityType; - template: UmbReferenceByUnique | null; unique: string; values: Array; variants: Array; From 1d219f157ac193598c5438571e46e91d2f9f2c21 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 31 May 2024 11:38:29 +0200 Subject: [PATCH 14/20] fix: use the `UpdateDocumentBlueprintRequestModel` to update blueprints --- .../detail/document-blueprint-detail.server.data-source.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts index baaab0edfe..524f12f553 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/repository/detail/document-blueprint-detail.server.data-source.ts @@ -4,7 +4,7 @@ import { UmbId } from '@umbraco-cms/backoffice/id'; import type { UmbDetailDataSource } from '@umbraco-cms/backoffice/repository'; import type { CreateDocumentBlueprintRequestModel, - UpdateDocumentRequestModel, + UpdateDocumentBlueprintRequestModel, } from '@umbraco-cms/backoffice/external/backend-api'; import { DocumentBlueprintService } from '@umbraco-cms/backoffice/external/backend-api'; import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api'; @@ -161,7 +161,7 @@ export class UmbDocumentBlueprintServerDataSource implements UmbDetailDataSource if (!model.unique) throw new Error('Unique is missing'); // TODO: make data mapper to prevent errors - const requestBody: UpdateDocumentRequestModel = { + const requestBody: UpdateDocumentBlueprintRequestModel = { values: model.values, variants: model.variants, }; From 39b8a38ddcda5867ed59318909762618791f1d43 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Fri, 31 May 2024 12:31:30 +0200 Subject: [PATCH 15/20] remove of in translation --- src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts | 2 +- src/Umbraco.Web.UI.Client/src/assets/lang/en.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts b/src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts index 3da222ba60..d7b86fa3d9 100644 --- a/src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts +++ b/src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts @@ -60,7 +60,7 @@ export default { sendToTranslate: 'Send To Translation', setGroup: 'Set group', setPermissions: 'Set permissions', - sort: 'Sort children of', + sort: 'Sort children', toInTheTreeStructureBelow: 'to in the tree structure below', translate: 'Translate', trash: 'Trash', 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 7ac38c0e4e..6c1b5d9514 100644 --- a/src/Umbraco.Web.UI.Client/src/assets/lang/en.ts +++ b/src/Umbraco.Web.UI.Client/src/assets/lang/en.ts @@ -59,7 +59,7 @@ export default { sendToTranslate: 'Send To Translation', setGroup: 'Set group', setPermissions: 'Set permissions', - sort: 'Sort children of', + sort: 'Sort children', toInTheTreeStructureBelow: 'to in the tree structure below', translate: 'Translate', trash: 'Trash', From aba338d88a971602568342ec3f3ebcbbe11af33b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 18:47:31 +0000 Subject: [PATCH 16/20] Bump vite-plugin-static-copy from 1.0.2 to 1.0.5 Bumps [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) from 1.0.2 to 1.0.5. - [Release notes](https://github.com/sapphi-red/vite-plugin-static-copy/releases) - [Changelog](https://github.com/sapphi-red/vite-plugin-static-copy/blob/main/CHANGELOG.md) - [Commits](https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@1.0.2...vite-plugin-static-copy@1.0.5) --- updated-dependencies: - dependency-name: vite-plugin-static-copy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- src/Umbraco.Web.UI.Client/package-lock.json | 8 ++++---- src/Umbraco.Web.UI.Client/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/package-lock.json b/src/Umbraco.Web.UI.Client/package-lock.json index 0c40cdbf37..52156276bb 100644 --- a/src/Umbraco.Web.UI.Client/package-lock.json +++ b/src/Umbraco.Web.UI.Client/package-lock.json @@ -82,7 +82,7 @@ "typescript": "^5.4.5", "typescript-json-schema": "^0.63.0", "vite": "^5.2.9", - "vite-plugin-static-copy": "^1.0.2", + "vite-plugin-static-copy": "^1.0.5", "vite-tsconfig-paths": "^4.3.2", "web-component-analyzer": "^2.0.0" }, @@ -20319,9 +20319,9 @@ } }, "node_modules/vite-plugin-static-copy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/vite-plugin-static-copy/-/vite-plugin-static-copy-1.0.2.tgz", - "integrity": "sha512-AfmEF+a/mfjsUsrgjbCkhzUCeIUF4EKQXXt3Ie1cour9MBpy6f6GphbdW2td28oYfOrwCyRzFCksgLkpk58q6Q==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/vite-plugin-static-copy/-/vite-plugin-static-copy-1.0.5.tgz", + "integrity": "sha512-02k0Rox+buYdEOfeilKZSgs1gXfPf9RjVztZEIYZgVIxjsVZi6AXssjzdi+qW6zYt00d3bq+tpP2voVXN2fKLw==", "dev": true, "dependencies": { "chokidar": "^3.5.3", diff --git a/src/Umbraco.Web.UI.Client/package.json b/src/Umbraco.Web.UI.Client/package.json index bf71749021..19753c023c 100644 --- a/src/Umbraco.Web.UI.Client/package.json +++ b/src/Umbraco.Web.UI.Client/package.json @@ -244,7 +244,7 @@ "typescript": "^5.4.5", "typescript-json-schema": "^0.63.0", "vite": "^5.2.9", - "vite-plugin-static-copy": "^1.0.2", + "vite-plugin-static-copy": "^1.0.5", "vite-tsconfig-paths": "^4.3.2", "web-component-analyzer": "^2.0.0" }, From e388b6a1f6a4e8089bd4f2cc3b3640a05f85d9e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 18:47:52 +0000 Subject: [PATCH 17/20] Bump @web/dev-server-rollup from 0.6.1 to 0.6.3 Bumps [@web/dev-server-rollup](https://github.com/modernweb-dev/web/tree/HEAD/packages/dev-server-rollup) from 0.6.1 to 0.6.3. - [Release notes](https://github.com/modernweb-dev/web/releases) - [Changelog](https://github.com/modernweb-dev/web/blob/master/packages/dev-server-rollup/CHANGELOG.md) - [Commits](https://github.com/modernweb-dev/web/commits/@web/dev-server-rollup@0.6.3/packages/dev-server-rollup) --- updated-dependencies: - dependency-name: "@web/dev-server-rollup" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- src/Umbraco.Web.UI.Client/package-lock.json | 16 ++++++++-------- src/Umbraco.Web.UI.Client/package.json | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/package-lock.json b/src/Umbraco.Web.UI.Client/package-lock.json index 52156276bb..3b51d1bf8c 100644 --- a/src/Umbraco.Web.UI.Client/package-lock.json +++ b/src/Umbraco.Web.UI.Client/package-lock.json @@ -49,7 +49,7 @@ "@typescript-eslint/parser": "^7.1.0", "@web/dev-server-esbuild": "^1.0.2", "@web/dev-server-import-maps": "^0.2.0", - "@web/dev-server-rollup": "^0.6.1", + "@web/dev-server-rollup": "^0.6.3", "@web/test-runner": "^0.18.1", "@web/test-runner-playwright": "^0.11.0", "babel-loader": "^9.1.3", @@ -7669,9 +7669,9 @@ } }, "node_modules/@web/dev-server-core": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/@web/dev-server-core/-/dev-server-core-0.7.1.tgz", - "integrity": "sha512-alHd2j0f4e1ekqYDR8lWScrzR7D5gfsUZq3BP3De9bkFWM3AELINCmqqlVKmCtlkAdEc9VyQvNiEqrxraOdc2A==", + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/@web/dev-server-core/-/dev-server-core-0.7.2.tgz", + "integrity": "sha512-Q/0jpF13Ipk+qGGQ+Yx/FW1TQBYazpkfgYHHo96HBE7qv4V4KKHqHglZcSUxti/zd4bToxX1cFTz8dmbTlb8JA==", "dev": true, "dependencies": { "@types/koa": "^2.11.6", @@ -8158,13 +8158,13 @@ } }, "node_modules/@web/dev-server-rollup": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/@web/dev-server-rollup/-/dev-server-rollup-0.6.1.tgz", - "integrity": "sha512-vhtsQ8qu1pBHailOBOYJwZnYDc1Lmx6ZAd2j+y5PD2ck0R1LmVsZ7dZK8hDCpkvpvlu2ndURjL9tbzdcsBRJmg==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@web/dev-server-rollup/-/dev-server-rollup-0.6.3.tgz", + "integrity": "sha512-dzMwQRBk9Rhpfoo7vvQGvRP18sDELejJCwxsMdt509aLouIB6fviv0i87DJQWbXH24hBeq6+jSILI3JTtVaPZQ==", "dev": true, "dependencies": { "@rollup/plugin-node-resolve": "^15.0.1", - "@web/dev-server-core": "^0.7.0", + "@web/dev-server-core": "^0.7.2", "nanocolors": "^0.2.1", "parse5": "^6.0.1", "rollup": "^4.4.0", diff --git a/src/Umbraco.Web.UI.Client/package.json b/src/Umbraco.Web.UI.Client/package.json index 19753c023c..2a13a7dd08 100644 --- a/src/Umbraco.Web.UI.Client/package.json +++ b/src/Umbraco.Web.UI.Client/package.json @@ -211,7 +211,7 @@ "@typescript-eslint/parser": "^7.1.0", "@web/dev-server-esbuild": "^1.0.2", "@web/dev-server-import-maps": "^0.2.0", - "@web/dev-server-rollup": "^0.6.1", + "@web/dev-server-rollup": "^0.6.3", "@web/test-runner": "^0.18.1", "@web/test-runner-playwright": "^0.11.0", "babel-loader": "^9.1.3", From 30bdad58197a65659052b879dd6eeb9d7cb9ce72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 18:47:15 +0000 Subject: [PATCH 18/20] Bump eslint-plugin-lit from 1.11.0 to 1.14.0 Bumps [eslint-plugin-lit](https://github.com/43081j/eslint-plugin-lit) from 1.11.0 to 1.14.0. - [Release notes](https://github.com/43081j/eslint-plugin-lit/releases) - [Commits](https://github.com/43081j/eslint-plugin-lit/compare/v1.11.0...v1.14.0) --- updated-dependencies: - dependency-name: eslint-plugin-lit dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/Umbraco.Web.UI.Client/package-lock.json | 8 ++++---- src/Umbraco.Web.UI.Client/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/package-lock.json b/src/Umbraco.Web.UI.Client/package-lock.json index 3b51d1bf8c..9bb5afc5d9 100644 --- a/src/Umbraco.Web.UI.Client/package-lock.json +++ b/src/Umbraco.Web.UI.Client/package-lock.json @@ -57,7 +57,7 @@ "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.1", - "eslint-plugin-lit": "^1.11.0", + "eslint-plugin-lit": "^1.14.0", "eslint-plugin-lit-a11y": "^4.1.1", "eslint-plugin-local-rules": "^2.0.1", "eslint-plugin-storybook": "^0.6.15", @@ -11233,9 +11233,9 @@ } }, "node_modules/eslint-plugin-lit": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-lit/-/eslint-plugin-lit-1.11.0.tgz", - "integrity": "sha512-jVqy2juQTAtOzj1ILf+ZW5GpDobXlSw0kvpP2zu2r8ZbW7KISt7ikj1Gw9DhNeirEU1UlSJR0VIWpdr4lzjayw==", + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-lit/-/eslint-plugin-lit-1.14.0.tgz", + "integrity": "sha512-J4w+CgO31621GreLFCdTUbTr5yeV2/RJ/M0myw0dykD5p9FGGIRLityQiNa6SG+JpVbmeQTQPJy4pNFmiurJ/w==", "dev": true, "dependencies": { "parse5": "^6.0.1", diff --git a/src/Umbraco.Web.UI.Client/package.json b/src/Umbraco.Web.UI.Client/package.json index 2a13a7dd08..1916e0557e 100644 --- a/src/Umbraco.Web.UI.Client/package.json +++ b/src/Umbraco.Web.UI.Client/package.json @@ -219,7 +219,7 @@ "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.1", - "eslint-plugin-lit": "^1.11.0", + "eslint-plugin-lit": "^1.14.0", "eslint-plugin-lit-a11y": "^4.1.1", "eslint-plugin-local-rules": "^2.0.1", "eslint-plugin-storybook": "^0.6.15", From 4f751e755861ab145aba2a6f1ce11a65f3ab4427 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 18:48:11 +0000 Subject: [PATCH 19/20] Bump typedoc from 0.25.10 to 0.25.13 Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.25.10 to 0.25.13. - [Release notes](https://github.com/TypeStrong/TypeDoc/releases) - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.25.10...v0.25.13) --- updated-dependencies: - dependency-name: typedoc dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- src/Umbraco.Web.UI.Client/package-lock.json | 10 +++++----- src/Umbraco.Web.UI.Client/package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/package-lock.json b/src/Umbraco.Web.UI.Client/package-lock.json index 9bb5afc5d9..02bf0cafa9 100644 --- a/src/Umbraco.Web.UI.Client/package-lock.json +++ b/src/Umbraco.Web.UI.Client/package-lock.json @@ -78,7 +78,7 @@ "storybook": "^7.6.17", "tiny-glob": "^0.2.9", "tsc-alias": "^1.8.8", - "typedoc": "^0.25.10", + "typedoc": "^0.25.13", "typescript": "^5.4.5", "typescript-json-schema": "^0.63.0", "vite": "^5.2.9", @@ -19630,9 +19630,9 @@ "dev": true }, "node_modules/typedoc": { - "version": "0.25.10", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.25.10.tgz", - "integrity": "sha512-v10rtOFojrjW9og3T+6wAKeJaGMuojU87DXGZ33sfs+554wgPTRG+s07Ag1BjPZI85Y5QPVouPI63JQ6fcQM5w==", + "version": "0.25.13", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.25.13.tgz", + "integrity": "sha512-pQqiwiJ+Z4pigfOnnysObszLiU3mVLWAExSPf+Mu06G/qsc3wzbuM56SZQvONhHLncLUhYzOVkjFFpFfL5AzhQ==", "dev": true, "dependencies": { "lunr": "^2.3.9", @@ -19647,7 +19647,7 @@ "node": ">= 16" }, "peerDependencies": { - "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x" + "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x" } }, "node_modules/typedoc/node_modules/marked": { diff --git a/src/Umbraco.Web.UI.Client/package.json b/src/Umbraco.Web.UI.Client/package.json index 1916e0557e..3f90d0e56c 100644 --- a/src/Umbraco.Web.UI.Client/package.json +++ b/src/Umbraco.Web.UI.Client/package.json @@ -240,7 +240,7 @@ "storybook": "^7.6.17", "tiny-glob": "^0.2.9", "tsc-alias": "^1.8.8", - "typedoc": "^0.25.10", + "typedoc": "^0.25.13", "typescript": "^5.4.5", "typescript-json-schema": "^0.63.0", "vite": "^5.2.9", From 7aaeb09cc1fe454f1ad445b29c180a44d2d0a650 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 18:48:32 +0000 Subject: [PATCH 20/20] Bump simple-icons from 11.15.0 to 12.0.0 Bumps [simple-icons](https://github.com/simple-icons/simple-icons) from 11.15.0 to 12.0.0. - [Release notes](https://github.com/simple-icons/simple-icons/releases) - [Commits](https://github.com/simple-icons/simple-icons/compare/11.15.0...12.0.0) --- updated-dependencies: - dependency-name: simple-icons dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- src/Umbraco.Web.UI.Client/package-lock.json | 8 ++++---- src/Umbraco.Web.UI.Client/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/package-lock.json b/src/Umbraco.Web.UI.Client/package-lock.json index 02bf0cafa9..4647b601ad 100644 --- a/src/Umbraco.Web.UI.Client/package-lock.json +++ b/src/Umbraco.Web.UI.Client/package-lock.json @@ -74,7 +74,7 @@ "rollup-plugin-esbuild": "^6.1.1", "rollup-plugin-import-css": "^3.5.0", "rollup-plugin-web-worker-loader": "^1.6.1", - "simple-icons": "^11.15.0", + "simple-icons": "^12.0.0", "storybook": "^7.6.17", "tiny-glob": "^0.2.9", "tsc-alias": "^1.8.8", @@ -18468,9 +18468,9 @@ "dev": true }, "node_modules/simple-icons": { - "version": "11.15.0", - "resolved": "https://registry.npmjs.org/simple-icons/-/simple-icons-11.15.0.tgz", - "integrity": "sha512-uDAdtIGc56YJiGpdzImENY4E+5qtHEorW11KoXiwDj4u4YSY74G+q/a9idlY8iEqrjghHGkZ/ras0jRT7JpDTQ==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/simple-icons/-/simple-icons-12.0.0.tgz", + "integrity": "sha512-KsqyGTRS1c9hp1oGEspCdp8qbqljjH199pUZZWR3DeStg2RBjzB3EJT9kLZ8tPlIrWOyktjj+TIgDQphYHq7XQ==", "dev": true, "engines": { "node": ">=0.12.18" diff --git a/src/Umbraco.Web.UI.Client/package.json b/src/Umbraco.Web.UI.Client/package.json index 3f90d0e56c..bc2aa0cb85 100644 --- a/src/Umbraco.Web.UI.Client/package.json +++ b/src/Umbraco.Web.UI.Client/package.json @@ -236,7 +236,7 @@ "rollup-plugin-esbuild": "^6.1.1", "rollup-plugin-import-css": "^3.5.0", "rollup-plugin-web-worker-loader": "^1.6.1", - "simple-icons": "^11.15.0", + "simple-icons": "^12.0.0", "storybook": "^7.6.17", "tiny-glob": "^0.2.9", "tsc-alias": "^1.8.8",