From 629dca8003482286fd3a6e5a739077d3811187ad Mon Sep 17 00:00:00 2001 From: EMaslowskiQ <118929649+EMaslowskiQ@users.noreply.github.com> Date: Mon, 12 Aug 2024 10:47:55 -0400 Subject: [PATCH] DPO3DPKRT-841/Server not deploying from incorrect reference of COMMON module (#615) COMMON module was referenced by relative paths, but should use generated module (@dpo-packrat/common) --- server/db/api/WorkflowSet.ts | 2 +- server/http/routes/api/generateDownloads.ts | 2 +- server/http/routes/api/project.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/db/api/WorkflowSet.ts b/server/db/api/WorkflowSet.ts index 5dbe643a..6f930b52 100644 --- a/server/db/api/WorkflowSet.ts +++ b/server/db/api/WorkflowSet.ts @@ -4,7 +4,7 @@ import * as DBC from '../connection'; import * as DBAPI from '../'; import * as LOG from '../../utils/logger'; import * as H from '../../utils/helpers'; -import * as COMMON from '../../../common'; +import * as COMMON from '@dpo-packrat/common'; export class WorkflowSet extends DBC.DBObject implements WorkflowSetBase { idWorkflowSet!: number; diff --git a/server/http/routes/api/generateDownloads.ts b/server/http/routes/api/generateDownloads.ts index d46b111d..d777fed5 100644 --- a/server/http/routes/api/generateDownloads.ts +++ b/server/http/routes/api/generateDownloads.ts @@ -2,7 +2,7 @@ import * as LOG from '../../../utils/logger'; import * as DBAPI from '../../../db'; import * as H from '../../../utils/helpers'; -import * as COMMON from '../../../../common'; +import * as COMMON from '@dpo-packrat/common'; import * as COL from '../../../collections/interface'; import { ASL, LocalStore } from '../../../utils/localStore'; diff --git a/server/http/routes/api/project.ts b/server/http/routes/api/project.ts index 30c91026..35e7216e 100644 --- a/server/http/routes/api/project.ts +++ b/server/http/routes/api/project.ts @@ -2,7 +2,7 @@ import * as LOG from '../../../utils/logger'; import * as DBAPI from '../../../db'; import * as H from '../../../utils/helpers'; -import * as COMMON from '../../../../common'; +import * as COMMON from '@dpo-packrat/common'; import { ASL, LocalStore } from '../../../utils/localStore'; import { PublishScene } from '../../../collections/impl/PublishScene'; // import { eEventKey } from '../../../event/interface/EventEnums';