create-mastra 0.10.14 → 0.10.15

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.
@@ -0,0 +1,26 @@
1
+ export declare const config: {
2
+ readonly name: "PROJECT_NAME";
3
+ readonly integrations: readonly [];
4
+ readonly db: {
5
+ readonly provider: "postgres";
6
+ readonly uri: string;
7
+ };
8
+ readonly runner: {
9
+ readonly provider: "inngest";
10
+ readonly uri: string;
11
+ readonly signingKey: string;
12
+ readonly eventKey: string;
13
+ };
14
+ readonly workflows: {
15
+ readonly blueprintDirPath: "/mastra/blueprints";
16
+ readonly systemEvents: {};
17
+ readonly systemApis: readonly [];
18
+ };
19
+ readonly agents: {
20
+ readonly agentDirPath: "/mastra/agents";
21
+ readonly vectorProvider: readonly [];
22
+ };
23
+ readonly systemHostURL: string;
24
+ readonly routeRegistrationPath: "/api/mastra";
25
+ };
26
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/starter-files/config.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;CAwBT,CAAC"}
@@ -0,0 +1,79 @@
1
+ import { z } from 'zod';
2
+ export declare const weatherTool: import("@mastra/core/tools").Tool<z.ZodObject<{
3
+ location: z.ZodString;
4
+ }, "strip", z.ZodTypeAny, {
5
+ location: string;
6
+ }, {
7
+ location: string;
8
+ }>, z.ZodObject<{
9
+ temperature: z.ZodNumber;
10
+ feelsLike: z.ZodNumber;
11
+ humidity: z.ZodNumber;
12
+ windSpeed: z.ZodNumber;
13
+ windGust: z.ZodNumber;
14
+ conditions: z.ZodString;
15
+ location: z.ZodString;
16
+ }, "strip", z.ZodTypeAny, {
17
+ location: string;
18
+ temperature: number;
19
+ feelsLike: number;
20
+ humidity: number;
21
+ windSpeed: number;
22
+ windGust: number;
23
+ conditions: string;
24
+ }, {
25
+ location: string;
26
+ temperature: number;
27
+ feelsLike: number;
28
+ humidity: number;
29
+ windSpeed: number;
30
+ windGust: number;
31
+ conditions: string;
32
+ }>, import("@mastra/core").ToolExecutionContext<z.ZodObject<{
33
+ location: z.ZodString;
34
+ }, "strip", z.ZodTypeAny, {
35
+ location: string;
36
+ }, {
37
+ location: string;
38
+ }>>> & {
39
+ inputSchema: z.ZodObject<{
40
+ location: z.ZodString;
41
+ }, "strip", z.ZodTypeAny, {
42
+ location: string;
43
+ }, {
44
+ location: string;
45
+ }>;
46
+ outputSchema: z.ZodObject<{
47
+ temperature: z.ZodNumber;
48
+ feelsLike: z.ZodNumber;
49
+ humidity: z.ZodNumber;
50
+ windSpeed: z.ZodNumber;
51
+ windGust: z.ZodNumber;
52
+ conditions: z.ZodString;
53
+ location: z.ZodString;
54
+ }, "strip", z.ZodTypeAny, {
55
+ location: string;
56
+ temperature: number;
57
+ feelsLike: number;
58
+ humidity: number;
59
+ windSpeed: number;
60
+ windGust: number;
61
+ conditions: string;
62
+ }, {
63
+ location: string;
64
+ temperature: number;
65
+ feelsLike: number;
66
+ humidity: number;
67
+ windSpeed: number;
68
+ windGust: number;
69
+ conditions: string;
70
+ }>;
71
+ execute: (context: import("@mastra/core").ToolExecutionContext<z.ZodObject<{
72
+ location: z.ZodString;
73
+ }, "strip", z.ZodTypeAny, {
74
+ location: string;
75
+ }, {
76
+ location: string;
77
+ }>>) => Promise<any>;
78
+ };
79
+ //# sourceMappingURL=tools.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/starter-files/tools.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqBxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkBtB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=dev.entry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dev.entry.d.ts","sourceRoot":"","sources":["../../src/templates/dev.entry.js"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mastra",
3
- "version": "0.10.14",
3
+ "version": "0.10.15",
4
4
  "description": "Create Mastra apps with one command",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -52,8 +52,8 @@
52
52
  "rollup-plugin-esbuild": "^6.2.1",
53
53
  "rollup-plugin-node-externals": "^8.0.1",
54
54
  "typescript": "^5.8.3",
55
- "mastra": "^0.10.16",
56
- "@internal/lint": "0.0.24"
55
+ "@internal/lint": "0.0.26",
56
+ "mastra": "^0.10.18"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=20"