@dbx-tools/shared-mastra 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 +4 -4
- package/src/feedback.ts +2 -0
- package/src/marker.ts +2 -0
- package/src/override.ts +2 -0
- package/src/routes.ts +2 -0
- package/src/thread.ts +2 -0
- package/src/wire.ts +2 -0
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.
|
|
16
|
-
"@dbx-tools/shared-model": "0.3.
|
|
17
|
-
"@dbx-tools/shared-genie": "0.3.
|
|
15
|
+
"@dbx-tools/shared-core": "0.3.16",
|
|
16
|
+
"@dbx-tools/shared-model": "0.3.16",
|
|
17
|
+
"@dbx-tools/shared-genie": "0.3.16"
|
|
18
18
|
},
|
|
19
19
|
"main": "index.ts",
|
|
20
20
|
"license": "UNLICENSED",
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
|
-
"version": "0.3.
|
|
24
|
+
"version": "0.3.16",
|
|
25
25
|
"types": "index.ts",
|
|
26
26
|
"type": "module",
|
|
27
27
|
"exports": {
|
package/src/feedback.ts
CHANGED
package/src/marker.ts
CHANGED
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
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";
|