@dbx-tools/shared-mastra 0.3.28 → 0.3.29
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/override.ts +0 -8
- package/src/wire.ts +1 -1
package/package.json
CHANGED
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"zod": "^4.3.6",
|
|
15
|
-
"@dbx-tools/shared-
|
|
16
|
-
"@dbx-tools/shared-
|
|
17
|
-
"@dbx-tools/shared-
|
|
15
|
+
"@dbx-tools/shared-genie": "0.3.29",
|
|
16
|
+
"@dbx-tools/shared-core": "0.3.29",
|
|
17
|
+
"@dbx-tools/shared-model": "0.3.29"
|
|
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.29",
|
|
25
25
|
"types": "index.ts",
|
|
26
26
|
"type": "module",
|
|
27
27
|
"exports": {
|
package/src/override.ts
CHANGED
|
@@ -11,14 +11,6 @@
|
|
|
11
11
|
/** HTTP header inspected for a per-request model override. */
|
|
12
12
|
export const MODEL_OVERRIDE_HEADER = "x-mastra-model";
|
|
13
13
|
|
|
14
|
-
/**
|
|
15
|
-
* HTTP header that pins a specific thread id for the request. When
|
|
16
|
-
* present, the server uses it as the conversation thread id instead of
|
|
17
|
-
* the session cookie, enabling the client to switch between stored
|
|
18
|
-
* conversations without resetting the cookie.
|
|
19
|
-
*/
|
|
20
|
-
export const THREAD_OVERRIDE_HEADER = "x-mastra-thread-id";
|
|
21
|
-
|
|
22
14
|
/** Query string parameter inspected for a per-request model override. */
|
|
23
15
|
export const MODEL_OVERRIDE_QUERY = "model";
|
|
24
16
|
|
package/src/wire.ts
CHANGED
|
@@ -603,7 +603,7 @@ export type GenieDatasetData = z.infer<typeof GenieDatasetDataSchema>;
|
|
|
603
603
|
*/
|
|
604
604
|
export const GenieDatasetChartSchema = z.object({
|
|
605
605
|
chartId: z.string(),
|
|
606
|
-
chartType:
|
|
606
|
+
chartType: ChartTypeSchema,
|
|
607
607
|
});
|
|
608
608
|
export type GenieDatasetChart = z.infer<typeof GenieDatasetChartSchema>;
|
|
609
609
|
|