@dbx-tools/appkit 0.3.14 → 0.3.16

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.
package/package.json CHANGED
@@ -18,15 +18,15 @@
18
18
  "@databricks/sdk-experimental": "^0.17.0",
19
19
  "yaml": "^2.9.0",
20
20
  "zod": "^4.3.6",
21
- "@dbx-tools/core": "0.3.14",
22
- "@dbx-tools/shared-core": "0.3.14"
21
+ "@dbx-tools/core": "0.3.16",
22
+ "@dbx-tools/shared-core": "0.3.16"
23
23
  },
24
24
  "main": "index.ts",
25
25
  "license": "UNLICENSED",
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "version": "0.3.14",
29
+ "version": "0.3.16",
30
30
  "types": "index.ts",
31
31
  "type": "module",
32
32
  "exports": {
package/src/appkit.ts CHANGED
@@ -7,6 +7,8 @@
7
7
  * request scope ({@link tryGetExecutionContext}) and to lazily boot a bare app
8
8
  * ({@link ensureInitialized}), and re-export the derived types so add-on
9
9
  * packages can type a context / client without re-deriving them inline.
10
+ *
11
+ * @module
10
12
  */
11
13
 
12
14
  import { createApp, getExecutionContext, InitializationError } from "@databricks/appkit";
package/src/config.ts CHANGED
@@ -8,6 +8,8 @@
8
8
  *
9
9
  * Server-only (`node:child_process`, bundle root discovery). Databricks-app
10
10
  * specific, so it lives in node-appkit rather than shared-core.
11
+ *
12
+ * @module
11
13
  */
12
14
 
13
15
  import { readFile } from "node:fs/promises";
package/src/create-app.ts CHANGED
@@ -17,6 +17,8 @@
17
17
  * `process.env` during their synchronous `setup()`. Lakebase Postgres runs when
18
18
  * a `lakebase` plugin is present, or when `autoConfigure: true` is set on the
19
19
  * config object.
20
+ *
21
+ * @module
20
22
  */
21
23
 
22
24
  import { log } from "@dbx-tools/shared-core";
package/src/databricks.ts CHANGED
@@ -6,6 +6,8 @@
6
6
  *
7
7
  * Server-only: leans on the Databricks SDK `Context`. Lives in node-appkit so
8
8
  * the browser-safe shared-core stays SDK-free.
9
+ *
10
+ * @module
9
11
  */
10
12
 
11
13
  import { async } from "@dbx-tools/shared-core";
@@ -31,6 +31,8 @@
31
31
  * `process.env` so the downstream `lakebase` plugin picks them up.
32
32
  *
33
33
  * @see https://docs.databricks.com/api/workspace/postgres
34
+ *
35
+ * @module
34
36
  */
35
37
 
36
38
  import { log, string } from "@dbx-tools/shared-core";
package/src/pgaddress.ts CHANGED
@@ -39,6 +39,8 @@
39
39
  * yields `project`.
40
40
  *
41
41
  * Returns an empty object for inputs it doesn't recognize.
42
+ *
43
+ * @module
42
44
  */
43
45
 
44
46
  /** Postgres TLS mode passed through to `pg`. */
package/src/plugin.ts CHANGED
@@ -16,6 +16,8 @@
16
16
  *
17
17
  * Generic AppKit runtime (execution context, `WorkspaceClientLike`) lives in
18
18
  * `./appkit`; this module is plugin-lookup only.
19
+ *
20
+ * @module
19
21
  */
20
22
 
21
23
  import { type NameLike } from "@dbx-tools/shared-core";
package/src/provision.ts CHANGED
@@ -17,6 +17,8 @@
17
17
  * Must run AFTER {@link applyLakebaseToEnv} has written the resolved connection
18
18
  * to `process.env` (so `createLakebasePool` picks up host / database / endpoint)
19
19
  * and BEFORE `createApp` initializes the cache.
20
+ *
21
+ * @module
20
22
  */
21
23
 
22
24
  import { error, type log } from "@dbx-tools/shared-core";