@mastra/deployer 0.24.1 → 0.24.2-alpha.0
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,13 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 0.24.2-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`eebb7bb`](https://github.com/mastra-ai/mastra/commit/eebb7bb407c57342a3be3a2efbe68c696589feeb), [`c6e6d07`](https://github.com/mastra-ai/mastra/commit/c6e6d071ecf346a80dceab410af2c567c7e66a57), [`0e6df8f`](https://github.com/mastra-ai/mastra/commit/0e6df8f66340992cb1b319834657deb17368de52), [`6295fd7`](https://github.com/mastra-ai/mastra/commit/6295fd783d49075d5bf2c18ff9486e94d36aaa56), [`d813cf7`](https://github.com/mastra-ai/mastra/commit/d813cf7251695d85cc60469058384ffa74974484)]:
|
|
8
|
+
- @mastra/core@0.24.2-alpha.0
|
|
9
|
+
- @mastra/server@0.24.2-alpha.0
|
|
10
|
+
|
|
3
11
|
## 0.24.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -7,16 +7,6 @@ export declare function getScorerHandler(c: Context): Promise<Response & import(
|
|
|
7
7
|
description: string;
|
|
8
8
|
judge?: {
|
|
9
9
|
model: import("@mastra/core/llm/model").ModelRouterModelId | {
|
|
10
|
-
readonly specificationVersion: "v1";
|
|
11
|
-
readonly provider: string;
|
|
12
|
-
readonly modelId: string;
|
|
13
|
-
readonly defaultObjectGenerationMode: "tool" | "json" | undefined;
|
|
14
|
-
readonly supportsImageUrls?: boolean | undefined;
|
|
15
|
-
readonly supportsStructuredOutputs?: boolean | undefined;
|
|
16
|
-
supportsUrl?: undefined;
|
|
17
|
-
doGenerate: never;
|
|
18
|
-
doStream: never;
|
|
19
|
-
} | {
|
|
20
10
|
readonly specificationVersion: "v2";
|
|
21
11
|
readonly provider: string;
|
|
22
12
|
readonly modelId: string;
|
|
@@ -56,6 +46,41 @@ export declare function getScorerHandler(c: Context): Promise<Response & import(
|
|
|
56
46
|
headers?: {
|
|
57
47
|
[x: string]: string;
|
|
58
48
|
} | undefined;
|
|
49
|
+
} | {
|
|
50
|
+
readonly specificationVersion: "v1";
|
|
51
|
+
readonly provider: string;
|
|
52
|
+
readonly modelId: string;
|
|
53
|
+
readonly defaultObjectGenerationMode: "tool" | "json" | undefined;
|
|
54
|
+
readonly supportsImageUrls?: boolean | undefined;
|
|
55
|
+
readonly supportsStructuredOutputs?: boolean | undefined;
|
|
56
|
+
supportsUrl?: undefined;
|
|
57
|
+
doGenerate: never;
|
|
58
|
+
doStream: never;
|
|
59
|
+
} | {
|
|
60
|
+
readonly provider: string;
|
|
61
|
+
readonly specificationVersion: "v2";
|
|
62
|
+
readonly modelId: string;
|
|
63
|
+
supportedUrls: {
|
|
64
|
+
[x: string]: {
|
|
65
|
+
exec: never;
|
|
66
|
+
test: never;
|
|
67
|
+
readonly source: string;
|
|
68
|
+
readonly global: boolean;
|
|
69
|
+
readonly ignoreCase: boolean;
|
|
70
|
+
readonly multiline: boolean;
|
|
71
|
+
lastIndex: number;
|
|
72
|
+
compile: never;
|
|
73
|
+
readonly flags: string;
|
|
74
|
+
readonly sticky: boolean;
|
|
75
|
+
readonly unicode: boolean;
|
|
76
|
+
readonly dotAll: boolean;
|
|
77
|
+
readonly hasIndices: boolean;
|
|
78
|
+
}[];
|
|
79
|
+
} | {
|
|
80
|
+
then: never;
|
|
81
|
+
};
|
|
82
|
+
doGenerate: never;
|
|
83
|
+
doStream: never;
|
|
59
84
|
};
|
|
60
85
|
instructions: string;
|
|
61
86
|
} | undefined;
|
|
@@ -224,16 +249,6 @@ export declare function getScorerHandler(c: Context): Promise<Response & import(
|
|
|
224
249
|
readonly description: string;
|
|
225
250
|
readonly judge: {
|
|
226
251
|
model: import("@mastra/core/llm/model").ModelRouterModelId | {
|
|
227
|
-
readonly specificationVersion: "v1";
|
|
228
|
-
readonly provider: string;
|
|
229
|
-
readonly modelId: string;
|
|
230
|
-
readonly defaultObjectGenerationMode: "tool" | "json" | undefined;
|
|
231
|
-
readonly supportsImageUrls?: boolean | undefined;
|
|
232
|
-
readonly supportsStructuredOutputs?: boolean | undefined;
|
|
233
|
-
supportsUrl?: undefined;
|
|
234
|
-
doGenerate: never;
|
|
235
|
-
doStream: never;
|
|
236
|
-
} | {
|
|
237
252
|
readonly specificationVersion: "v2";
|
|
238
253
|
readonly provider: string;
|
|
239
254
|
readonly modelId: string;
|
|
@@ -273,6 +288,41 @@ export declare function getScorerHandler(c: Context): Promise<Response & import(
|
|
|
273
288
|
headers?: {
|
|
274
289
|
[x: string]: string;
|
|
275
290
|
} | undefined;
|
|
291
|
+
} | {
|
|
292
|
+
readonly specificationVersion: "v1";
|
|
293
|
+
readonly provider: string;
|
|
294
|
+
readonly modelId: string;
|
|
295
|
+
readonly defaultObjectGenerationMode: "tool" | "json" | undefined;
|
|
296
|
+
readonly supportsImageUrls?: boolean | undefined;
|
|
297
|
+
readonly supportsStructuredOutputs?: boolean | undefined;
|
|
298
|
+
supportsUrl?: undefined;
|
|
299
|
+
doGenerate: never;
|
|
300
|
+
doStream: never;
|
|
301
|
+
} | {
|
|
302
|
+
readonly provider: string;
|
|
303
|
+
readonly specificationVersion: "v2";
|
|
304
|
+
readonly modelId: string;
|
|
305
|
+
supportedUrls: {
|
|
306
|
+
[x: string]: {
|
|
307
|
+
exec: never;
|
|
308
|
+
test: never;
|
|
309
|
+
readonly source: string;
|
|
310
|
+
readonly global: boolean;
|
|
311
|
+
readonly ignoreCase: boolean;
|
|
312
|
+
readonly multiline: boolean;
|
|
313
|
+
lastIndex: number;
|
|
314
|
+
compile: never;
|
|
315
|
+
readonly flags: string;
|
|
316
|
+
readonly sticky: boolean;
|
|
317
|
+
readonly unicode: boolean;
|
|
318
|
+
readonly dotAll: boolean;
|
|
319
|
+
readonly hasIndices: boolean;
|
|
320
|
+
}[];
|
|
321
|
+
} | {
|
|
322
|
+
then: never;
|
|
323
|
+
};
|
|
324
|
+
doGenerate: never;
|
|
325
|
+
doStream: never;
|
|
276
326
|
};
|
|
277
327
|
instructions: string;
|
|
278
328
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"handlers.d.ts","sourceRoot":"","sources":["../../../../../src/server/handlers/routes/scores/handlers.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAGpC,wBAAsB,iBAAiB,CAAC,CAAC,EAAE,OAAO,qBAUjD;AAED,wBAAsB,gBAAgB,CAAC,CAAC,EAAE,OAAO
|
|
1
|
+
{"version":3,"file":"handlers.d.ts","sourceRoot":"","sources":["../../../../../src/server/handlers/routes/scores/handlers.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAGpC,wBAAsB,iBAAiB,CAAC,CAAC,EAAE,OAAO,qBAUjD;AAED,wBAAsB,gBAAgB,CAAC,CAAC,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0EAYhD;AAED,wBAAsB,uBAAuB,CAAC,CAAC,EAAE,OAAO,qBAkBvD;AAED,wBAAsB,0BAA0B,CAAC,CAAC,EAAE,OAAO,qBAsB1D;AAED,wBAAsB,0BAA0B,CAAC,CAAC,EAAE,OAAO,qBAqB1D;AAED,wBAAsB,gBAAgB,CAAC,CAAC,EAAE,OAAO,qBAchD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.2-alpha.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"rollup-plugin-node-externals": "^8.0.1",
|
|
115
115
|
"tinyglobby": "^0.2.15",
|
|
116
116
|
"typescript-paths": "^1.5.1",
|
|
117
|
-
"@mastra/server": "^0.24.
|
|
117
|
+
"@mastra/server": "^0.24.2-alpha.0"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
120
|
"@hono/node-server": "^1.19.5",
|
|
@@ -136,8 +136,8 @@
|
|
|
136
136
|
"zod": "^3.25.76",
|
|
137
137
|
"@internal/lint": "0.0.59",
|
|
138
138
|
"@internal/types-builder": "0.0.34",
|
|
139
|
-
"@mastra/core": "0.24.
|
|
140
|
-
"@mastra/mcp": "^0.14.
|
|
139
|
+
"@mastra/core": "0.24.2-alpha.0",
|
|
140
|
+
"@mastra/mcp": "^0.14.3-alpha.0"
|
|
141
141
|
},
|
|
142
142
|
"peerDependencies": {
|
|
143
143
|
"@mastra/core": ">=0.24.0-0 <0.25.0-0",
|