@mastra/agent-builder 1.0.0-beta.3 → 1.0.0-beta.4

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @mastra/agent-builder
2
2
 
3
+ ## 1.0.0-beta.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix install step validation error by making targetPath optional in InstallInputSchema. This resolves the "expected string, received undefined" error when running the agent builder template workflow without explicitly providing a targetPath parameter. ([#10922](https://github.com/mastra-ai/mastra/pull/10922))
8
+
9
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`9f2c5b1`](https://github.com/mastra-ai/mastra/commit/9f2c5b163e959b0cd08e2f399fb0ff927a3dba91), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
10
+ - @mastra/core@1.0.0-beta.8
11
+ - @mastra/memory@1.0.0-beta.4
12
+
3
13
  ## 1.0.0-beta.3
4
14
 
5
15
  ### Patch Changes
package/dist/index.js CHANGED
@@ -187,7 +187,7 @@ var PackageMergeResultSchema = z.object({
187
187
  error: z.string().optional()
188
188
  });
189
189
  var InstallInputSchema = z.object({
190
- targetPath: z.string().describe("Path to the project to install packages in")
190
+ targetPath: z.string().optional().describe("Path to the project to install packages in")
191
191
  });
192
192
  var InstallResultSchema = z.object({
193
193
  success: z.boolean(),