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,3 +1,4 @@
import type { WebhookEntity } from '@n8n/db';
import { Service } from '@n8n/di';
import { HookContext, WebhookContext, Logger } from 'n8n-core';
import { Node, NodeHelpers, UnexpectedError } from 'n8n-workflow';
@@ -14,7 +15,6 @@ import type {
WorkflowExecuteMode,
} from 'n8n-workflow';
import type { WebhookEntity } from '@/databases/entities/webhook-entity';
import { WebhookRepository } from '@/databases/repositories/webhook.repository';
import { NodeTypes } from '@/node-types';
import { CacheService } from '@/services/cache/cache.service';