@dbx-tools/shared-mastra 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,16 +12,16 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "zod": "^4.3.6",
15
- "@dbx-tools/shared-core": "0.3.14",
16
- "@dbx-tools/shared-model": "0.3.14",
17
- "@dbx-tools/shared-genie": "0.3.14"
15
+ "@dbx-tools/shared-core": "0.3.15",
16
+ "@dbx-tools/shared-genie": "0.3.15",
17
+ "@dbx-tools/shared-model": "0.3.15"
18
18
  },
19
19
  "main": "index.ts",
20
20
  "license": "UNLICENSED",
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
24
- "version": "0.3.14",
24
+ "version": "0.3.15",
25
25
  "types": "index.ts",
26
26
  "type": "module",
27
27
  "exports": {
package/src/feedback.ts CHANGED
@@ -11,6 +11,8 @@
11
11
  * captures it per assistant message and sends it back here when the
12
12
  * user reacts. Kept dependency-free so both the browser client and the
13
13
  * server plugin share one definition.
14
+ *
15
+ * @module
14
16
  */
15
17
 
16
18
  import { z } from "zod";
package/src/marker.ts CHANGED
@@ -38,6 +38,8 @@
38
38
  *
39
39
  * Parse everything through {@link parseMarkers}, validate the id with
40
40
  * {@link isUuid}, and branch on the returned {@link ParsedMarker.type}.
41
+ *
42
+ * @module
41
43
  */
42
44
 
43
45
  /**
package/src/override.ts CHANGED
@@ -4,6 +4,8 @@
4
4
  * and the browser chat client (`@dbx-tools/appkit-mastra-ui`). Kept
5
5
  * here so the header / query / body field names can never drift
6
6
  * between the side that sets them and the side that reads them.
7
+ *
8
+ * @module
7
9
  */
8
10
 
9
11
  /** HTTP header inspected for a per-request model override. */
package/src/routes.ts CHANGED
@@ -15,6 +15,8 @@
15
15
  * log a thumbs / comment assessment against a turn's MLflow trace (see
16
16
  * `feedback.ts`); it is not agent-scoped (a trace id identifies the
17
17
  * turn on its own).
18
+ *
19
+ * @module
18
20
  */
19
21
  export const MASTRA_ROUTES = {
20
22
  history: "/route/history",
package/src/thread.ts CHANGED
@@ -10,6 +10,8 @@
10
10
  * the per-session cookie when absent). Keeping the header / query
11
11
  * names in one place means the side that sets them and the side that
12
12
  * reads them can never drift.
13
+ *
14
+ * @module
13
15
  */
14
16
 
15
17
  /** HTTP header inspected for the thread id a request targets. */
package/src/wire.ts CHANGED
@@ -27,6 +27,8 @@
27
27
  * so this file stays purely declarative (schemas + inferred types).
28
28
  * The browser client that drives these routes (`MastraPluginClient`)
29
29
  * ships from `@dbx-tools/appkit-mastra-ui`.
30
+ *
31
+ * @module
30
32
  */
31
33
 
32
34
  import { genieModel, type GenieChatEvent, type MessageStatus } from "@dbx-tools/shared-genie";