diff --git a/frontends/nextjs/src/lib/components/index.ts b/frontends/nextjs/src/lib/components/index.ts index cc2d3a4d5..79d9735cf 100644 --- a/frontends/nextjs/src/lib/components/index.ts +++ b/frontends/nextjs/src/lib/components/index.ts @@ -1,3 +1,3 @@ // Component system exports -export { componentCatalog, getComponentCatalog } from './component-catalog' +export { componentCatalog } from './component-catalog' export { ComponentRegistry, getComponentRegistry } from './component-registry' diff --git a/frontends/nextjs/src/lib/dbal/index.ts b/frontends/nextjs/src/lib/dbal/index.ts index e1686bd58..64dabd752 100644 --- a/frontends/nextjs/src/lib/dbal/index.ts +++ b/frontends/nextjs/src/lib/dbal/index.ts @@ -1,4 +1,5 @@ // DBAL (Database Abstraction Layer) exports export { DBALClient, createDBALClient } from './dbal-client' -export { getDBALIntegration, initializeDBAL } from './dbal-integration' -export { createDBALStub, DBALStub } from './dbal-stub' +export { DBALIntegration, dbal } from './dbal-integration' +export { default as DBALStub } from './dbal-stub' +export type { DBALConfig, DBALUser, ListResult } from './dbal-stub'