@dbx-tools/databricks 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 +4 -4
- package/src/cloud.ts +2 -0
- package/src/net.ts +2 -0
- package/src/workspace.ts +2 -0
package/package.json
CHANGED
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@databricks/sdk-experimental": "^0.17.0",
|
|
15
|
-
"@dbx-tools/appkit": "0.3.
|
|
16
|
-
"@dbx-tools/shared-core": "0.3.
|
|
17
|
-
"@dbx-tools/core": "0.3.
|
|
15
|
+
"@dbx-tools/appkit": "0.3.16",
|
|
16
|
+
"@dbx-tools/shared-core": "0.3.16",
|
|
17
|
+
"@dbx-tools/core": "0.3.16"
|
|
18
18
|
},
|
|
19
19
|
"main": "index.ts",
|
|
20
20
|
"license": "UNLICENSED",
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
|
-
"version": "0.3.
|
|
24
|
+
"version": "0.3.16",
|
|
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
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";
|