diff --git a/app/src/data/connection/postgres/PgPostgresConnection.ts b/app/src/data/connection/postgres/PgPostgresConnection.ts index c5cf310..ee961a0 100644 --- a/app/src/data/connection/postgres/PgPostgresConnection.ts +++ b/app/src/data/connection/postgres/PgPostgresConnection.ts @@ -1,7 +1,7 @@ import { Kysely, PostgresDialect } from "kysely"; import { PostgresIntrospector } from "./PostgresIntrospector"; import { PostgresConnection, plugins } from "./PostgresConnection"; -import { customIntrospector } from "bknd"; +import { customIntrospector } from "../Connection"; import $pg from "pg"; export type PgPostgresConnectionConfig = $pg.PoolConfig; diff --git a/app/src/data/connection/postgres/PostgresConnection.ts b/app/src/data/connection/postgres/PostgresConnection.ts index bf99239..b55df6d 100644 --- a/app/src/data/connection/postgres/PostgresConnection.ts +++ b/app/src/data/connection/postgres/PostgresConnection.ts @@ -5,7 +5,7 @@ import { type SchemaResponse, type ConnQuery, type ConnQueryResults, -} from "bknd"; +} from "../Connection"; import { ParseJSONResultsPlugin, type ColumnDataType, diff --git a/app/src/data/connection/postgres/PostgresIntrospector.ts b/app/src/data/connection/postgres/PostgresIntrospector.ts index a4cd491..c4b52b3 100644 --- a/app/src/data/connection/postgres/PostgresIntrospector.ts +++ b/app/src/data/connection/postgres/PostgresIntrospector.ts @@ -1,5 +1,5 @@ import { type SchemaMetadata, sql } from "kysely"; -import { BaseIntrospector } from "bknd"; +import { BaseIntrospector } from "../BaseIntrospector"; type PostgresSchemaSpec = { name: string; diff --git a/app/src/data/connection/postgres/PostgresJsConnection.ts b/app/src/data/connection/postgres/PostgresJsConnection.ts index d4b4261..b67bdde 100644 --- a/app/src/data/connection/postgres/PostgresJsConnection.ts +++ b/app/src/data/connection/postgres/PostgresJsConnection.ts @@ -1,7 +1,7 @@ import { Kysely } from "kysely"; import { PostgresIntrospector } from "./PostgresIntrospector"; import { PostgresConnection, plugins } from "./PostgresConnection"; -import { customIntrospector } from "bknd"; +import { customIntrospector } from "../Connection"; import { PostgresJSDialect } from "kysely-postgres-js"; import $postgresJs, { type Sql, type Options, type PostgresType } from "postgres"; diff --git a/app/src/data/connection/postgres/custom.ts b/app/src/data/connection/postgres/custom.ts index 9d626a0..4229638 100644 --- a/app/src/data/connection/postgres/custom.ts +++ b/app/src/data/connection/postgres/custom.ts @@ -1,4 +1,4 @@ -import { customIntrospector, type DbFunctions } from "bknd"; +import { customIntrospector, type DbFunctions } from "../Connection"; import { Kysely, type Dialect, type KyselyPlugin } from "kysely"; import { plugins, PostgresConnection } from "./PostgresConnection"; import { PostgresIntrospector } from "./PostgresIntrospector";