From f47f00a516ca06ce6f038a204a64b93516f3145c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennes=20Sch=C3=A4ffler?= Date: Tue, 9 Dec 2025 16:00:36 +0100 Subject: [PATCH] Refactor imports in index.ts to separate common and core dependencies --- index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 8ea11e7..f3ee380 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,6 @@ import { Inject, Injectable, OnApplicationBootstrap } from '@nestjs/common'; -import { DocumentLineItem, DocumentLineItemStatusChangedEvent, DocumentStatusType, EventBus, Logger, PhoenixPlugin, PluginCommonModule } from '@phoenix/core'; +import { DocumentStatusType } from '@phoenix/common'; +import { DocumentLineItem, DocumentLineItemStatusChangedEvent, EventBus, Logger, PhoenixPlugin, PluginCommonModule } from '@phoenix/core'; // Example service for the plugin @Injectable()