Merge branch 'bugfix/move-entity-action' into bugfix-duplicate-to-entity-action-(part-1)

This commit is contained in:
Mads Rasmussen
2024-04-11 20:49:30 +02:00
6 changed files with 3 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
export * from './duplicate-to/index.js';
export * from './move-to/index.js';
export * from './delete/delete.action.js';
export * from './move-to/move-to.action.js';
export * from './sort-children-of/sort-children-of.action.js';

View File

@@ -1,4 +1,3 @@
export type { UmbMoveToDataSource } from './move-to-data-source.interface.js';
export type { UmbMoveToRepository } from './move-to-repository.interface.js';
export * from './types.js';
export type { UmbMoveToRequestArgs } from './types.js';

View File

@@ -1,4 +1,4 @@
import type { UmbRepositoryErrorResponse } from '../types.js';
import type { UmbRepositoryErrorResponse } from '../../../repository/types.js';
import type { UmbMoveToRequestArgs } from './types.js';
import type { UmbApi } from '@umbraco-cms/backoffice/extension-api';

View File

@@ -5,5 +5,4 @@ export * from './item/index.js';
export * from './detail/index.js';
export type { UmbDataSourceResponse, UmbDataSourceErrorResponse } from './data-source-response.interface.js';
export type { UmbMoveToDataSource, UmbMoveToRepository, UmbMoveToRequestArgs } from './move-to/index.js';
export type { UmbPagedModel, UmbRepositoryResponse, UmbRepositoryErrorResponse } from './types.js';