@mastra/server 1.0.0-beta.18 → 1.0.0-beta.19
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/CHANGELOG.md +7 -0
- package/dist/{chunk-T5QRQJCY.cjs → chunk-7ZYZHQRF.cjs} +3 -3
- package/dist/chunk-7ZYZHQRF.cjs.map +1 -0
- package/dist/{chunk-IRLQEU63.js → chunk-AWK2DVRO.js} +3 -3
- package/dist/chunk-AWK2DVRO.js.map +1 -0
- package/dist/server/handlers/agent-builder.cjs +19 -19
- package/dist/server/handlers/agent-builder.js +1 -1
- package/dist/server/handlers.cjs +2 -2
- package/dist/server/handlers.js +1 -1
- package/dist/server/server-adapter/index.cjs +19 -19
- package/dist/server/server-adapter/index.js +1 -1
- package/package.json +4 -4
- package/dist/chunk-IRLQEU63.js.map +0 -1
- package/dist/chunk-T5QRQJCY.cjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @mastra/server
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`e54953e`](https://github.com/mastra-ai/mastra/commit/e54953ed8ce1b28c0d62a19950163039af7834b4), [`7d56d92`](https://github.com/mastra-ai/mastra/commit/7d56d9213886e8353956d7d40df10045fd12b299), [`fdac646`](https://github.com/mastra-ai/mastra/commit/fdac646033a0930a1a4e00d13aa64c40bb7f1e02), [`d07b568`](https://github.com/mastra-ai/mastra/commit/d07b5687819ea8cb1dffa776d0c1765faf4aa1ae), [`68ec97d`](https://github.com/mastra-ai/mastra/commit/68ec97d4c07c6393fcf95c2481fc5d73da99f8c8), [`4aa55b3`](https://github.com/mastra-ai/mastra/commit/4aa55b383cf06043943359ea316572fd969861a7)]:
|
|
8
|
+
- @mastra/core@1.0.0-beta.19
|
|
9
|
+
|
|
3
10
|
## 1.0.0-beta.18
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -6648,7 +6648,7 @@ function trimStartOfStream() {
|
|
|
6648
6648
|
};
|
|
6649
6649
|
}
|
|
6650
6650
|
function isZodType(value) {
|
|
6651
|
-
return typeof value === "object" && value !== null && "_def" in value && "parse" in value && typeof value.parse === "function" && "safeParse" in value && typeof value.safeParse === "function";
|
|
6651
|
+
return typeof value === "object" && value !== null && ("_def" in value || "_zod" in value) && "parse" in value && typeof value.parse === "function" && "safeParse" in value && typeof value.safeParse === "function";
|
|
6652
6652
|
}
|
|
6653
6653
|
function convertSchemaToZod(schema) {
|
|
6654
6654
|
if (isZodType(schema)) {
|
|
@@ -32887,5 +32887,5 @@ exports.STREAM_AGENT_BUILDER_ACTION_ROUTE = STREAM_AGENT_BUILDER_ACTION_ROUTE;
|
|
|
32887
32887
|
exports.STREAM_LEGACY_AGENT_BUILDER_ACTION_ROUTE = STREAM_LEGACY_AGENT_BUILDER_ACTION_ROUTE;
|
|
32888
32888
|
exports.STREAM_VNEXT_AGENT_BUILDER_ACTION_ROUTE = STREAM_VNEXT_AGENT_BUILDER_ACTION_ROUTE;
|
|
32889
32889
|
exports.agent_builder_exports = agent_builder_exports;
|
|
32890
|
-
//# sourceMappingURL=chunk-
|
|
32891
|
-
//# sourceMappingURL=chunk-
|
|
32890
|
+
//# sourceMappingURL=chunk-7ZYZHQRF.cjs.map
|
|
32891
|
+
//# sourceMappingURL=chunk-7ZYZHQRF.cjs.map
|