@dbx-tools/shared-genie 0.1.17 → 0.1.19
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/README.md +4 -4
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Browser-safe Genie schemas, event vocabulary, and snapshot diff helpers.
|
|
|
5
5
|
Import this package when a UI, test, or server component needs to validate Genie
|
|
6
6
|
wire payloads or derive high-level events from raw Genie message snapshots
|
|
7
7
|
without importing the Databricks SDK. The Node driver that calls Genie is
|
|
8
|
-
[`@dbx-tools/
|
|
8
|
+
[`@dbx-tools/genie`](../../node/genie).
|
|
9
9
|
|
|
10
10
|
Key features:
|
|
11
11
|
|
|
@@ -26,8 +26,8 @@ event vocabulary independent of AppKit transport:
|
|
|
26
26
|
|
|
27
27
|
- validating raw Genie messages captured from the Databricks SDK;
|
|
28
28
|
- replaying persisted snapshots into semantic events;
|
|
29
|
-
- sharing a flat event union between `@dbx-tools/
|
|
30
|
-
`@dbx-tools/
|
|
29
|
+
- sharing a flat event union between `@dbx-tools/genie`,
|
|
30
|
+
`@dbx-tools/appkit-mastra`, and custom UI/tests;
|
|
31
31
|
- detecting attachment/status shapes that are present on the live wire but not
|
|
32
32
|
always convenient in generated SDK types.
|
|
33
33
|
|
|
@@ -110,4 +110,4 @@ detectors when a test needs to assert one specific behavior.
|
|
|
110
110
|
- `event` - event detector factory, individual detectors, and
|
|
111
111
|
`eventsFromMessage()`.
|
|
112
112
|
|
|
113
|
-
Server-side streaming is in [`@dbx-tools/
|
|
113
|
+
Server-side streaming is in [`@dbx-tools/genie`](../../node/genie).
|
package/package.json
CHANGED
|
@@ -12,12 +12,15 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"zod": "^4.3.6",
|
|
15
|
-
"@dbx-tools/shared-core": "0.1.
|
|
16
|
-
"@dbx-tools/shared-sdk-model": "0.1.
|
|
15
|
+
"@dbx-tools/shared-core": "0.1.19",
|
|
16
|
+
"@dbx-tools/shared-sdk-model": "0.1.19"
|
|
17
17
|
},
|
|
18
18
|
"main": "index.ts",
|
|
19
19
|
"license": "UNLICENSED",
|
|
20
|
-
"
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"version": "0.1.19",
|
|
21
24
|
"types": "index.ts",
|
|
22
25
|
"type": "module",
|
|
23
26
|
"exports": {
|