refactor(core): Move leaf entities to @n8n/db (#15010)

This commit is contained in:
Iván Ovejero
2025-04-30 10:31:28 +02:00
committed by GitHub
parent a88b889309
commit 1de95ead0d
49 changed files with 110 additions and 89 deletions

View File

@@ -1,4 +1,5 @@
import type { ProjectIcon, ProjectRole, ProjectType } from '@n8n/api-types';
import type { Variables } from '@n8n/db';
import type { AssignableRole, GlobalRole, Scope } from '@n8n/permissions';
import type express from 'express';
import type {
@@ -9,7 +10,6 @@ import type {
import type { Project } from '@/databases/entities/project';
import type { User } from '@/databases/entities/user';
import type { Variables } from '@/databases/entities/variables';
import type { WorkflowHistory } from '@/databases/entities/workflow-history';
import type { ListQuery } from '@/types-db';