@dbx-tools/databricks 0.3.22 → 0.3.23

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/appkit": "0.3.22",
16
- "@dbx-tools/core": "0.3.22",
17
- "@dbx-tools/shared-core": "0.3.22"
15
+ "@dbx-tools/appkit": "0.3.23",
16
+ "@dbx-tools/core": "0.3.23",
17
+ "@dbx-tools/shared-core": "0.3.23"
18
18
  },
19
19
  "main": "index.ts",
20
20
  "license": "UNLICENSED",
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
24
- "version": "0.3.22",
24
+ "version": "0.3.23",
25
25
  "types": "index.ts",
26
26
  "type": "module",
27
27
  "exports": {
package/src/workspace.ts CHANGED
@@ -6,9 +6,9 @@
6
6
  * @module
7
7
  */
8
8
 
9
- import { functionModule, net } from "@dbx-tools/shared-core";
10
- import { appkit } from "@dbx-tools/appkit";
11
9
  import { type Config, WorkspaceClient } from "@databricks/sdk-experimental";
10
+ import { appkit } from "@dbx-tools/appkit";
11
+ import { functionModule, net } from "@dbx-tools/shared-core";
12
12
 
13
13
  /** Databricks workspace ids are a 10-20 digit run embedded in the host. */
14
14
  const WORKSPACE_ID_REGEX = /\d{10,20}/;
@@ -0,0 +1,14 @@
1
+ // ~~ Generated by projen. To modify, edit .projenrc.js and run "pnpm exec projen".
2
+ {
3
+ "extends": "../tsconfig.json",
4
+ "compilerOptions": {
5
+ "noEmit": true,
6
+ "rootDir": ".."
7
+ },
8
+ "include": [
9
+ "**/*.ts"
10
+ ],
11
+ "exclude": [
12
+ "node_modules"
13
+ ]
14
+ }