diff --git a/frontends/nextjs/src/lib/dbal-client.ts b/frontends/nextjs/src/lib/dbal-client.ts index 15e98ddf0..0d0026331 100644 --- a/frontends/nextjs/src/lib/dbal-client.ts +++ b/frontends/nextjs/src/lib/dbal-client.ts @@ -1,5 +1,5 @@ -import { DBALClient } from '@/dbal/ts/src' -import type { User as DBALUser } from '@/dbal/ts/src/core/types' +import { DBALClient } from '@/lib/dbal-stub' +import type { User as DBALUser } from '@/lib/dbal-stub/core/types' import type { User } from './level-types' let dbalInstance: DBALClient | null = null diff --git a/frontends/nextjs/src/lib/dbal-integration.ts b/frontends/nextjs/src/lib/dbal-integration.ts index 3a994f344..3c37eb149 100644 --- a/frontends/nextjs/src/lib/dbal-integration.ts +++ b/frontends/nextjs/src/lib/dbal-integration.ts @@ -6,12 +6,12 @@ * new DBAL system. */ -import { DBALClient, DBALError, DBALErrorCode } from '@/dbal/ts/src' -import type { DBALConfig } from '@/dbal/ts/src' -import { InMemoryTenantManager } from '@/dbal/ts/src/core/tenant-context' -import { InMemoryKVStore } from '@/dbal/ts/src/core/kv-store' -import { createBlobStorage } from '@/dbal/ts/src/blob' -import { TenantAwareBlobStorage } from '@/dbal/ts/src/blob/tenant-aware-storage' +import { DBALClient, DBALError, DBALErrorCode } from '@/lib/dbal-stub' +import type { DBALConfig } from '@/lib/dbal-stub' +import { InMemoryTenantManager } from '@/lib/dbal-stub/core/tenant-context' +import { InMemoryKVStore } from '@/lib/dbal-stub/core/kv-store' +import { createBlobStorage } from '@/lib/dbal-stub/blob' +import { TenantAwareBlobStorage } from '@/lib/dbal-stub/blob/tenant-aware-storage' /** * DBAL Integration Manager