@dbx-tools/shared-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
@@ -12,15 +12,15 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "zod": "^4.3.6",
15
- "@dbx-tools/shared-core": "0.3.14",
16
- "@dbx-tools/shared-sdk-model": "0.3.14"
15
+ "@dbx-tools/shared-core": "0.3.15",
16
+ "@dbx-tools/shared-sdk-model": "0.3.15"
17
17
  },
18
18
  "main": "index.ts",
19
19
  "license": "UNLICENSED",
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
- "version": "0.3.14",
23
+ "version": "0.3.15",
24
24
  "types": "index.ts",
25
25
  "type": "module",
26
26
  "exports": {
package/src/event.ts CHANGED
@@ -21,6 +21,8 @@
21
21
  * lifecycle layer (the `genieEventChat` driver) because they track
22
22
  * per-yield / per-turn-completion semantics rather than a
23
23
  * field-level snapshot diff.
24
+ *
25
+ * @module
24
26
  */
25
27
 
26
28
  import {
@@ -34,6 +34,8 @@
34
34
  *
35
35
  * Pure types: no runtime imports beyond zod + the generated
36
36
  * sdk-type schemas, no Node-only code, safe for browser bundles.
37
+ *
38
+ * @module
37
39
  */
38
40
 
39
41
  import { string } from "@dbx-tools/shared-core";