@dbx-tools/genie 0.3.14 → 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
@@ -16,16 +16,16 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@databricks/sdk-experimental": "^0.17.0",
19
- "@dbx-tools/appkit": "0.3.14",
20
- "@dbx-tools/shared-genie": "0.3.14",
21
- "@dbx-tools/shared-core": "0.3.14"
19
+ "@dbx-tools/appkit": "0.3.15",
20
+ "@dbx-tools/shared-core": "0.3.15",
21
+ "@dbx-tools/shared-genie": "0.3.15"
22
22
  },
23
23
  "main": "index.ts",
24
24
  "license": "UNLICENSED",
25
25
  "publishConfig": {
26
26
  "access": "public"
27
27
  },
28
- "version": "0.3.14",
28
+ "version": "0.3.15",
29
29
  "types": "index.ts",
30
30
  "type": "module",
31
31
  "exports": {
package/src/chat.ts CHANGED
@@ -17,6 +17,8 @@
17
17
  * by throwing, with no `error` variant. Iterating UI / agent code that wants
18
18
  * every message verbatim takes the low-level stream; subscribers reacting to
19
19
  * "Genie is thinking about X" or "Genie produced text Y" take the event layer.
20
+ *
21
+ * @module
20
22
  */
21
23
 
22
24
  import { async, log, type PollContext } from "@dbx-tools/shared-core";
package/src/space.ts CHANGED
@@ -9,6 +9,8 @@
9
9
  * only when `include_serialized_space=true`. We hit that endpoint through the
10
10
  * workspace client's raw `apiClient` since the typed request shape has no flag
11
11
  * for it.
12
+ *
13
+ * @module
12
14
  */
13
15
 
14
16
  import { error, log, object, string } from "@dbx-tools/shared-core";