@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 +3 -3
- package/src/appkit.ts +2 -0
- package/src/config.ts +2 -0
- package/src/create-app.ts +2 -0
- package/src/databricks.ts +2 -0
- package/src/lakebase-resolver.ts +2 -0
- package/src/pgaddress.ts +2 -0
- package/src/plugin.ts +2 -0
- package/src/provision.ts +2 -0
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.
|
|
22
|
-
"@dbx-tools/shared-core": "0.3.
|
|
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.
|
|
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
package/src/create-app.ts
CHANGED
package/src/databricks.ts
CHANGED
package/src/lakebase-resolver.ts
CHANGED
package/src/pgaddress.ts
CHANGED
package/src/plugin.ts
CHANGED
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";
|