@dbx-tools/databricks 0.3.13 → 0.3.15

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
@@ -12,16 +12,16 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "@databricks/sdk-experimental": "^0.17.0",
15
- "@dbx-tools/core": "0.3.13",
16
- "@dbx-tools/appkit": "0.3.13",
17
- "@dbx-tools/shared-core": "0.3.13"
15
+ "@dbx-tools/appkit": "0.3.15",
16
+ "@dbx-tools/shared-core": "0.3.15",
17
+ "@dbx-tools/core": "0.3.15"
18
18
  },
19
19
  "main": "index.ts",
20
20
  "license": "UNLICENSED",
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
24
- "version": "0.3.13",
24
+ "version": "0.3.15",
25
25
  "types": "index.ts",
26
26
  "type": "module",
27
27
  "exports": {
package/src/cloud.ts CHANGED
@@ -15,6 +15,8 @@
15
15
  * Server-only: DNS resolution needs `node:dns` (via `./net.ts`), the
16
16
  * disk cache needs `node:fs` / `node:os` / `node:path`, and the feeds
17
17
  * are fetched with the global `fetch`.
18
+ *
19
+ * @module
18
20
  */
19
21
 
20
22
  import { mkdir, readFile, rename, unlink, writeFile } from "node:fs/promises";
package/src/net.ts CHANGED
@@ -3,6 +3,8 @@
3
3
  * browser-safe URL / IP toolkit in `@dbx-tools/shared-core`'s `net` module: DNS
4
4
  * resolution ({@link resolveHostIps}, `node:dns`) and public-IP discovery
5
5
  * ({@link getPublicIp}).
6
+ *
7
+ * @module
6
8
  */
7
9
 
8
10
  import { lookup } from "node:dns/promises";
package/src/workspace.ts CHANGED
@@ -2,6 +2,8 @@
2
2
  * Resolve the current Databricks workspace's URL and numeric id from the active
3
3
  * execution context (AppKit, when initialized), a default `WorkspaceClient`, or
4
4
  * the environment. Server-only.
5
+ *
6
+ * @module
5
7
  */
6
8
 
7
9
  import { functionModule, net } from "@dbx-tools/shared-core";