From be9ebd1eab9a326abf4252552996ae515eff57d4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 25 Dec 2025 07:53:57 +0000 Subject: [PATCH 1/3] Initial plan From 5a54c7e937c24ab6bf6dc561a5f1e3168ded7074 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 25 Dec 2025 08:46:12 +0000 Subject: [PATCH 2/3] Fix duplicate enum values in DBALErrorCode Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- dbal/ts/src/core/errors.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dbal/ts/src/core/errors.ts b/dbal/ts/src/core/errors.ts index 572ce2eda..0a3d64728 100644 --- a/dbal/ts/src/core/errors.ts +++ b/dbal/ts/src/core/errors.ts @@ -9,10 +9,10 @@ export enum DBALErrorCode { TIMEOUT = 504, DATABASE_ERROR = 503, CAPABILITY_NOT_SUPPORTED = 501, - SANDBOX_VIOLATION = 403, - MALICIOUS_CODE_DETECTED = 403, + SANDBOX_VIOLATION = 4031, + MALICIOUS_CODE_DETECTED = 4032, QUOTA_EXCEEDED = 507, - PERMISSION_DENIED = 403, + PERMISSION_DENIED = 4033, } export class DBALError extends Error { From 8cbc7585af66b1b7a28307f3ec3a63f6a0374dd2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 25 Dec 2025 08:47:12 +0000 Subject: [PATCH 3/3] Include app, dbal, and scripts directories in tsconfig Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index bfa8ac886..3c37720de 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -46,10 +46,13 @@ }, "include": [ "src", + "app", + "dbal", "packages", "e2e", "playwright.config.ts", "vite.config.ts", + "scripts/**/*.ts", ".next/types/**/*.ts", ".next/dev/types/**/*.ts" ],