From 558940f691ea4a965f55d08dd40dd6287ee62348 Mon Sep 17 00:00:00 2001 From: Codex Date: Thu, 30 Jul 2026 07:36:44 +0300 Subject: [PATCH] =?UTF-8?q?CHORE=20-=20NAS=20DEPLOY:=20=D0=BF=D0=B0=D0=BA?= =?UTF-8?q?=D0=B5=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20?= =?UTF-8?q?Ops=20BIM=20gateway=20artifacts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../build-bim-tasker-cad-ops-artifacts.mjs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/infra/deploy-runner/build-bim-tasker-cad-ops-artifacts.mjs b/infra/deploy-runner/build-bim-tasker-cad-ops-artifacts.mjs index a726d44..4416571 100644 --- a/infra/deploy-runner/build-bim-tasker-cad-ops-artifacts.mjs +++ b/infra/deploy-runner/build-bim-tasker-cad-ops-artifacts.mjs @@ -13,7 +13,7 @@ const taskerRoot = resolve( process.env.NODEDC_TASKMANAGER_ROOT || resolve(platformRoot, "../../data/dc_taskmanager/NODEDC_TASKMANAGER"), ); const artifactDir = resolve(process.env.NODEDC_DEPLOY_ARTIFACT_DIR || resolve(scriptDir, "../deploy-artifacts")); -const [release = "20260729-001", ...extra] = process.argv.slice(2); +const [release = "20260730-002", ...extra] = process.argv.slice(2); if (extra.length || !/^\d{8}-\d{3}$/.test(release)) { throw new Error("usage: build-bim-tasker-cad-ops-artifacts.mjs [YYYYMMDD-NNN]"); @@ -25,8 +25,10 @@ const descriptors = [ component: "bim-viewer", files: [ "converter/worker.py", + "frontend/dcViewer.js", "server/cad-formats.js", "server/index.js", + "server/tasker-gateway-auth.js", ], patchId: `bim-viewer-cad-ops-${release}`, sourceRoot: bimRoot, @@ -35,6 +37,13 @@ const descriptors = [ artifactBasename: `nodedc-tasker-cad-ops-${release}.tgz`, component: "tasker", files: [ + "plane-src/apps/api/plane/app/urls/issue.py", + "plane-src/apps/api/plane/app/views/__init__.py", + "plane-src/apps/api/plane/app/views/issue/attachment.py", + "plane-src/apps/api/plane/app/views/issue/bim_attachment.py", + "plane-src/apps/api/plane/utils/nodedc_bim_gateway.py", + "plane-src/apps/web/core/components/issues/attachment/attachment-list-item.tsx", + "plane-src/apps/web/core/services/issue/issue_attachment.service.ts", "plane-src/apps/web/helpers/beam-viewer-config.ts", "plane-src/apps/web/helpers/beam-viewer.ts", ],