@dbx-tools/appkit-autopg 0.1.13 → 0.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,7 +32,7 @@
32
32
  * picks them up. Pass `{ exportEnv: false }` to keep `process.env`
33
33
  * untouched and just inspect the returned record.
34
34
  */
35
- import { logUtils } from "@dbx-tools/appkit-shared";
35
+ import { logUtils } from "@dbx-tools/shared";
36
36
  import { applyToEnv, resolveConnection, } from "./resolver.js";
37
37
  /**
38
38
  * Resolve Lakebase Postgres connection info from config + env (and the
@@ -32,7 +32,7 @@
32
32
  *
33
33
  * @see https://docs.databricks.com/api/workspace/postgres
34
34
  */
35
- import { type logUtils } from "@dbx-tools/appkit-shared";
35
+ import { type logUtils } from "@dbx-tools/shared";
36
36
  /** Postgres TLS mode passed through to `pg`. */
37
37
  export type SslMode = "require" | "disable" | "prefer";
38
38
  /**
@@ -33,7 +33,7 @@
33
33
  * @see https://docs.databricks.com/api/workspace/postgres
34
34
  */
35
35
  import { getWorkspaceClient } from "@databricks/appkit";
36
- import { projectUtils, stringUtils } from "@dbx-tools/appkit-shared";
36
+ import { projectUtils, stringUtils } from "@dbx-tools/shared";
37
37
  import { setTimeout as sleep } from "node:timers/promises";
38
38
  import { parseAddress } from "./address.js";
39
39
  const API_BASE = "/api/2.0/postgres";