From 56ce32e902e9165bcdb3d87f1ffc9aee1f5ee9b8 Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Thu, 25 Dec 2025 20:48:21 +0000 Subject: [PATCH] code: nextjs,index,frontends (2 files) --- frontends/nextjs/src/lib/components/index.ts | 2 +- frontends/nextjs/src/lib/dbal/index.ts | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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'