@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/dist/types.d.ts CHANGED
@@ -1098,11 +1098,11 @@ export declare const PackageMergeResultSchema: z.ZodObject<{
1098
1098
  error?: string | undefined;
1099
1099
  }>;
1100
1100
  export declare const InstallInputSchema: z.ZodObject<{
1101
- targetPath: z.ZodString;
1101
+ targetPath: z.ZodOptional<z.ZodString>;
1102
1102
  }, "strip", z.ZodTypeAny, {
1103
- targetPath: string;
1103
+ targetPath?: string | undefined;
1104
1104
  }, {
1105
- targetPath: string;
1105
+ targetPath?: string | undefined;
1106
1106
  }>;
1107
1107
  export declare const InstallResultSchema: z.ZodObject<{
1108
1108
  success: z.ZodBoolean;
@@ -311,11 +311,11 @@ export declare const agentBuilderTemplateWorkflow: import("@mastra/core/workflow
311
311
  }, {
312
312
  [x: string]: any;
313
313
  }>, z.ZodObject<{
314
- targetPath: z.ZodString;
314
+ targetPath: z.ZodOptional<z.ZodString>;
315
315
  }, "strip", z.ZodTypeAny, {
316
- targetPath: string;
316
+ targetPath?: string | undefined;
317
317
  }, {
318
- targetPath: string;
318
+ targetPath?: string | undefined;
319
319
  }>, z.ZodObject<{
320
320
  success: z.ZodBoolean;
321
321
  error: z.ZodOptional<z.ZodString>;
@@ -1548,11 +1548,11 @@ export declare function mergeTemplateBySlug(slug: string, targetPath?: string):
1548
1548
  }, {
1549
1549
  [x: string]: any;
1550
1550
  }>, z.ZodObject<{
1551
- targetPath: z.ZodString;
1551
+ targetPath: z.ZodOptional<z.ZodString>;
1552
1552
  }, "strip", z.ZodTypeAny, {
1553
- targetPath: string;
1553
+ targetPath?: string | undefined;
1554
1554
  }, {
1555
- targetPath: string;
1555
+ targetPath?: string | undefined;
1556
1556
  }>, z.ZodObject<{
1557
1557
  success: z.ZodBoolean;
1558
1558
  error: z.ZodOptional<z.ZodString>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/agent-builder",
3
- "version": "1.0.0-beta.3",
3
+ "version": "1.0.0-beta.4",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -37,7 +37,7 @@
37
37
  "ignore": "^7.0.5",
38
38
  "semver": "^7.7.2",
39
39
  "swpm": "^2.6.0",
40
- "@mastra/memory": "1.0.0-beta.3"
40
+ "@mastra/memory": "1.0.0-beta.4"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/node": "22.13.17",
@@ -52,7 +52,7 @@
52
52
  "zod": "^3.25.76",
53
53
  "@internal/lint": "0.0.53",
54
54
  "@internal/types-builder": "0.0.28",
55
- "@mastra/core": "1.0.0-beta.6"
55
+ "@mastra/core": "1.0.0-beta.8"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "@mastra/core": ">=1.0.0-0 <2.0.0-0",