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 { 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" ],