mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(editor): Fix role DTO exported types (#18977)
This commit is contained in:
committed by
GitHub
parent
6a400732ae
commit
2882547a69
@@ -78,8 +78,8 @@ export {
|
||||
USERS_LIST_SORT_OPTIONS,
|
||||
} from './user/users-list-filter.dto';
|
||||
|
||||
export { UpdateRoleDto } from './roles/update-role.dto';
|
||||
export { CreateRoleDto } from './roles/create-role.dto';
|
||||
export type { UpdateRoleDto } from './roles/update-role.dto';
|
||||
export type { CreateRoleDto } from './roles/create-role.dto';
|
||||
|
||||
export { OidcConfigDto } from './oidc/config.dto';
|
||||
|
||||
|
||||
@@ -6,7 +6,13 @@ export * from './scope-information';
|
||||
export * from './roles/role-maps.ee';
|
||||
export * from './roles/all-roles';
|
||||
|
||||
export { projectRoleSchema, teamRoleSchema, roleSchema, Role, scopeSchema } from './schemas.ee';
|
||||
export {
|
||||
projectRoleSchema,
|
||||
teamRoleSchema,
|
||||
roleSchema,
|
||||
type Role,
|
||||
scopeSchema,
|
||||
} from './schemas.ee';
|
||||
|
||||
export { hasScope } from './utilities/has-scope.ee';
|
||||
export { hasGlobalScope } from './utilities/has-global-scope.ee';
|
||||
|
||||
Reference in New Issue
Block a user