refactor(core): Move final batch of entities to @n8n/db (#15061)

This commit is contained in:
Iván Ovejero
2025-05-02 17:46:05 +02:00
committed by GitHub
parent f3e29d25ed
commit bd258be052
63 changed files with 201 additions and 420 deletions

View File

@@ -1,5 +1,5 @@
import type { ProjectIcon, ProjectRole, ProjectType } from '@n8n/api-types';
import type { Variables, Project, User, ListQueryDb } from '@n8n/db';
import type { Variables, Project, User, ListQueryDb, WorkflowHistory } from '@n8n/db';
import type { AssignableRole, GlobalRole, Scope } from '@n8n/permissions';
import type express from 'express';
import type {
@@ -8,8 +8,6 @@ import type {
IPersonalizationSurveyAnswersV4,
} from 'n8n-workflow';
import type { WorkflowHistory } from '@/databases/entities/workflow-history';
export type APIRequest<
RouteParams = {},
ResponseBody = {},