@mastra/server 0.0.0-ai-v5-20250625173645 → 0.0.0-ai-v5-20250626003446
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/_tsup-dts-rollup.d.cts +6 -3
- package/dist/_tsup-dts-rollup.d.ts +6 -3
- package/dist/{chunk-WC7U7A6Y.js → chunk-2XXCPCYB.js} +3 -2
- package/dist/{chunk-LFA7KZS6.cjs → chunk-5BKZNI2F.cjs} +3 -2
- package/dist/{chunk-EKDOJJMG.js → chunk-BSUAZLUK.js} +3 -2
- package/dist/{chunk-QOHBG2JI.cjs → chunk-I3FR2N5I.cjs} +3 -2
- package/dist/{chunk-SAR3AYOK.js → chunk-P54JFWUD.js} +3 -2
- package/dist/{chunk-NDAWJCUJ.cjs → chunk-PADRC33G.cjs} +3 -2
- package/dist/server/handlers/agents.cjs +7 -7
- package/dist/server/handlers/agents.js +1 -1
- package/dist/server/handlers/memory.cjs +9 -9
- package/dist/server/handlers/memory.js +1 -1
- package/dist/server/handlers/network.cjs +5 -5
- package/dist/server/handlers/network.js +1 -1
- package/dist/server/handlers.cjs +6 -6
- package/dist/server/handlers.js +3 -3
- package/package.json +4 -4
|
@@ -297,9 +297,10 @@ export declare function getMemoryStatusHandler({ mastra, agentId }: Pick<MemoryC
|
|
|
297
297
|
result: boolean;
|
|
298
298
|
}>;
|
|
299
299
|
|
|
300
|
-
export declare function getMessagesHandler({ mastra, agentId, threadId, limit, format, }: Pick<MemoryContext, 'mastra' | 'agentId' | 'threadId'> & {
|
|
300
|
+
export declare function getMessagesHandler({ mastra, agentId, threadId, limit, format, clientSdkCompat, }: Pick<MemoryContext, 'mastra' | 'agentId' | 'threadId'> & {
|
|
301
301
|
limit?: number;
|
|
302
302
|
format?: 'aiv4' | 'aiv5';
|
|
303
|
+
clientSdkCompat?: string;
|
|
303
304
|
}): Promise<{
|
|
304
305
|
messages: ModelMessage[];
|
|
305
306
|
uiMessages: any[];
|
|
@@ -693,19 +694,21 @@ export declare function storeTelemetryHandler({ mastra, body }: Context & {
|
|
|
693
694
|
traceCount: number;
|
|
694
695
|
}>;
|
|
695
696
|
|
|
696
|
-
export declare function streamGenerateHandler({ mastra, runtimeContext, agentId, body, }: Context & {
|
|
697
|
+
export declare function streamGenerateHandler({ mastra, runtimeContext, agentId, body, clientSdkCompat, }: Context & {
|
|
697
698
|
runtimeContext: RuntimeContext;
|
|
698
699
|
agentId: string;
|
|
699
700
|
body: GetBody<'stream'> & {
|
|
700
701
|
runtimeContext?: string;
|
|
701
702
|
};
|
|
703
|
+
clientSdkCompat?: string;
|
|
702
704
|
}): Promise<Response | undefined>;
|
|
703
705
|
|
|
704
|
-
export declare function streamGenerateHandler_alias_1({ mastra, networkId, body, runtimeContext, }: NetworkContext & {
|
|
706
|
+
export declare function streamGenerateHandler_alias_1({ mastra, networkId, body, runtimeContext, clientSdkCompat, }: NetworkContext & {
|
|
705
707
|
runtimeContext: RuntimeContext;
|
|
706
708
|
body: {
|
|
707
709
|
messages?: Parameters<AgentNetwork['stream']>[0];
|
|
708
710
|
} & Parameters<AgentNetwork['stream']>[1];
|
|
711
|
+
clientSdkCompat?: string;
|
|
709
712
|
}): Promise<Response>;
|
|
710
713
|
|
|
711
714
|
export declare function streamWorkflowHandler({ mastra, runtimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
@@ -297,9 +297,10 @@ export declare function getMemoryStatusHandler({ mastra, agentId }: Pick<MemoryC
|
|
|
297
297
|
result: boolean;
|
|
298
298
|
}>;
|
|
299
299
|
|
|
300
|
-
export declare function getMessagesHandler({ mastra, agentId, threadId, limit, format, }: Pick<MemoryContext, 'mastra' | 'agentId' | 'threadId'> & {
|
|
300
|
+
export declare function getMessagesHandler({ mastra, agentId, threadId, limit, format, clientSdkCompat, }: Pick<MemoryContext, 'mastra' | 'agentId' | 'threadId'> & {
|
|
301
301
|
limit?: number;
|
|
302
302
|
format?: 'aiv4' | 'aiv5';
|
|
303
|
+
clientSdkCompat?: string;
|
|
303
304
|
}): Promise<{
|
|
304
305
|
messages: ModelMessage[];
|
|
305
306
|
uiMessages: any[];
|
|
@@ -693,19 +694,21 @@ export declare function storeTelemetryHandler({ mastra, body }: Context & {
|
|
|
693
694
|
traceCount: number;
|
|
694
695
|
}>;
|
|
695
696
|
|
|
696
|
-
export declare function streamGenerateHandler({ mastra, runtimeContext, agentId, body, }: Context & {
|
|
697
|
+
export declare function streamGenerateHandler({ mastra, runtimeContext, agentId, body, clientSdkCompat, }: Context & {
|
|
697
698
|
runtimeContext: RuntimeContext;
|
|
698
699
|
agentId: string;
|
|
699
700
|
body: GetBody<'stream'> & {
|
|
700
701
|
runtimeContext?: string;
|
|
701
702
|
};
|
|
703
|
+
clientSdkCompat?: string;
|
|
702
704
|
}): Promise<Response | undefined>;
|
|
703
705
|
|
|
704
|
-
export declare function streamGenerateHandler_alias_1({ mastra, networkId, body, runtimeContext, }: NetworkContext & {
|
|
706
|
+
export declare function streamGenerateHandler_alias_1({ mastra, networkId, body, runtimeContext, clientSdkCompat, }: NetworkContext & {
|
|
705
707
|
runtimeContext: RuntimeContext;
|
|
706
708
|
body: {
|
|
707
709
|
messages?: Parameters<AgentNetwork['stream']>[0];
|
|
708
710
|
} & Parameters<AgentNetwork['stream']>[1];
|
|
711
|
+
clientSdkCompat?: string;
|
|
709
712
|
}): Promise<Response>;
|
|
710
713
|
|
|
711
714
|
export declare function streamWorkflowHandler({ mastra, runtimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
@@ -224,7 +224,8 @@ async function streamGenerateHandler({
|
|
|
224
224
|
mastra,
|
|
225
225
|
runtimeContext,
|
|
226
226
|
agentId,
|
|
227
|
-
body
|
|
227
|
+
body,
|
|
228
|
+
clientSdkCompat
|
|
228
229
|
}) {
|
|
229
230
|
try {
|
|
230
231
|
const agent = mastra.getAgent(agentId);
|
|
@@ -249,7 +250,7 @@ async function streamGenerateHandler({
|
|
|
249
250
|
if (rest.output) {
|
|
250
251
|
return streamResult.toTextStreamResponse({ headers });
|
|
251
252
|
}
|
|
252
|
-
const useV4Compat = mastra.getAiSdkCompatMode() === "v4";
|
|
253
|
+
const useV4Compat = clientSdkCompat === "v4" || mastra.getAiSdkCompatMode() === "v4";
|
|
253
254
|
const uiMessageStream = streamResult.toUIMessageStreamResponse({
|
|
254
255
|
headers,
|
|
255
256
|
sendReasoning: true,
|
|
@@ -226,7 +226,8 @@ async function streamGenerateHandler({
|
|
|
226
226
|
mastra,
|
|
227
227
|
runtimeContext: runtimeContext$1,
|
|
228
228
|
agentId,
|
|
229
|
-
body
|
|
229
|
+
body,
|
|
230
|
+
clientSdkCompat
|
|
230
231
|
}) {
|
|
231
232
|
try {
|
|
232
233
|
const agent$1 = mastra.getAgent(agentId);
|
|
@@ -251,7 +252,7 @@ async function streamGenerateHandler({
|
|
|
251
252
|
if (rest.output) {
|
|
252
253
|
return streamResult.toTextStreamResponse({ headers });
|
|
253
254
|
}
|
|
254
|
-
const useV4Compat = mastra.getAiSdkCompatMode() === "v4";
|
|
255
|
+
const useV4Compat = clientSdkCompat === "v4" || mastra.getAiSdkCompatMode() === "v4";
|
|
255
256
|
const uiMessageStream = streamResult.toUIMessageStreamResponse({
|
|
256
257
|
headers,
|
|
257
258
|
sendReasoning: true,
|
|
@@ -184,7 +184,8 @@ async function getMessagesHandler({
|
|
|
184
184
|
agentId,
|
|
185
185
|
threadId,
|
|
186
186
|
limit,
|
|
187
|
-
format
|
|
187
|
+
format,
|
|
188
|
+
clientSdkCompat
|
|
188
189
|
}) {
|
|
189
190
|
if (limit !== void 0 && (!Number.isInteger(limit) || limit <= 0)) {
|
|
190
191
|
throw new HTTPException(400, { message: "Invalid limit: must be a positive integer" });
|
|
@@ -209,7 +210,7 @@ async function getMessagesHandler({
|
|
|
209
210
|
} else if (format === "aiv5") {
|
|
210
211
|
useV4Format = false;
|
|
211
212
|
} else {
|
|
212
|
-
useV4Format = mastra.getAiSdkCompatMode() === "v4";
|
|
213
|
+
useV4Format = clientSdkCompat === "v4" || mastra.getAiSdkCompatMode() === "v4";
|
|
213
214
|
}
|
|
214
215
|
if (useV4Format) {
|
|
215
216
|
return { messages: result.messages, uiMessages: result.uiMessagesV4 };
|
|
@@ -115,7 +115,8 @@ async function streamGenerateHandler({
|
|
|
115
115
|
mastra,
|
|
116
116
|
networkId,
|
|
117
117
|
body,
|
|
118
|
-
runtimeContext
|
|
118
|
+
runtimeContext,
|
|
119
|
+
clientSdkCompat
|
|
119
120
|
}) {
|
|
120
121
|
try {
|
|
121
122
|
const network = mastra.getNetwork(networkId);
|
|
@@ -129,7 +130,7 @@ async function streamGenerateHandler({
|
|
|
129
130
|
...rest,
|
|
130
131
|
runtimeContext
|
|
131
132
|
});
|
|
132
|
-
const useV4Compat = mastra.getAiSdkCompatMode() === "v4";
|
|
133
|
+
const useV4Compat = clientSdkCompat === "v4" || mastra.getAiSdkCompatMode() === "v4";
|
|
133
134
|
const streamResponse = output ? streamResult.toTextStreamResponse() : streamResult.toUIMessageStreamResponse({
|
|
134
135
|
onError: (error) => {
|
|
135
136
|
return `An error occurred while processing your request. ${error instanceof Error ? error.message : JSON.stringify(error)}`;
|
|
@@ -113,7 +113,8 @@ async function streamGenerateHandler({
|
|
|
113
113
|
mastra,
|
|
114
114
|
networkId,
|
|
115
115
|
body,
|
|
116
|
-
runtimeContext
|
|
116
|
+
runtimeContext,
|
|
117
|
+
clientSdkCompat
|
|
117
118
|
}) {
|
|
118
119
|
try {
|
|
119
120
|
const network = mastra.getNetwork(networkId);
|
|
@@ -127,7 +128,7 @@ async function streamGenerateHandler({
|
|
|
127
128
|
...rest,
|
|
128
129
|
runtimeContext
|
|
129
130
|
});
|
|
130
|
-
const useV4Compat = mastra.getAiSdkCompatMode() === "v4";
|
|
131
|
+
const useV4Compat = clientSdkCompat === "v4" || mastra.getAiSdkCompatMode() === "v4";
|
|
131
132
|
const streamResponse = output ? streamResult.toTextStreamResponse() : streamResult.toUIMessageStreamResponse({
|
|
132
133
|
onError: (error) => {
|
|
133
134
|
return `An error occurred while processing your request. ${error instanceof Error ? error.message : JSON.stringify(error)}`;
|
|
@@ -186,7 +186,8 @@ async function getMessagesHandler({
|
|
|
186
186
|
agentId,
|
|
187
187
|
threadId,
|
|
188
188
|
limit,
|
|
189
|
-
format
|
|
189
|
+
format,
|
|
190
|
+
clientSdkCompat
|
|
190
191
|
}) {
|
|
191
192
|
if (limit !== void 0 && (!Number.isInteger(limit) || limit <= 0)) {
|
|
192
193
|
throw new chunkOCWPVYNI_cjs.HTTPException(400, { message: "Invalid limit: must be a positive integer" });
|
|
@@ -211,7 +212,7 @@ async function getMessagesHandler({
|
|
|
211
212
|
} else if (format === "aiv5") {
|
|
212
213
|
useV4Format = false;
|
|
213
214
|
} else {
|
|
214
|
-
useV4Format = mastra.getAiSdkCompatMode() === "v4";
|
|
215
|
+
useV4Format = clientSdkCompat === "v4" || mastra.getAiSdkCompatMode() === "v4";
|
|
215
216
|
}
|
|
216
217
|
if (useV4Format) {
|
|
217
218
|
return { messages: result.messages, uiMessages: result.uiMessagesV4 };
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk5BKZNI2F_cjs = require('../../chunk-5BKZNI2F.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "generateHandler", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunk5BKZNI2F_cjs.generateHandler; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "getAgentByIdHandler", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunk5BKZNI2F_cjs.getAgentByIdHandler; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "getAgentsHandler", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunk5BKZNI2F_cjs.getAgentsHandler; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "getEvalsByAgentIdHandler", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunk5BKZNI2F_cjs.getEvalsByAgentIdHandler; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "getLiveEvalsByAgentIdHandler", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunk5BKZNI2F_cjs.getLiveEvalsByAgentIdHandler; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "streamGenerateHandler", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunk5BKZNI2F_cjs.streamGenerateHandler; }
|
|
30
30
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { generateHandler, getAgentByIdHandler, getAgentsHandler, getEvalsByAgentIdHandler, getLiveEvalsByAgentIdHandler, streamGenerateHandler } from '../../chunk-
|
|
1
|
+
export { generateHandler, getAgentByIdHandler, getAgentsHandler, getEvalsByAgentIdHandler, getLiveEvalsByAgentIdHandler, streamGenerateHandler } from '../../chunk-2XXCPCYB.js';
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkPADRC33G_cjs = require('../../chunk-PADRC33G.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "createThreadHandler", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunkPADRC33G_cjs.createThreadHandler; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "deleteThreadHandler", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkPADRC33G_cjs.deleteThreadHandler; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "getMemoryStatusHandler", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkPADRC33G_cjs.getMemoryStatusHandler; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "getMessagesHandler", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkPADRC33G_cjs.getMessagesHandler; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "getThreadByIdHandler", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkPADRC33G_cjs.getThreadByIdHandler; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "getThreadsHandler", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkPADRC33G_cjs.getThreadsHandler; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "saveMessagesHandler", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkPADRC33G_cjs.saveMessagesHandler; }
|
|
34
34
|
});
|
|
35
35
|
Object.defineProperty(exports, "updateThreadHandler", {
|
|
36
36
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
37
|
+
get: function () { return chunkPADRC33G_cjs.updateThreadHandler; }
|
|
38
38
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { createThreadHandler, deleteThreadHandler, getMemoryStatusHandler, getMessagesHandler, getThreadByIdHandler, getThreadsHandler, saveMessagesHandler, updateThreadHandler } from '../../chunk-
|
|
1
|
+
export { createThreadHandler, deleteThreadHandler, getMemoryStatusHandler, getMessagesHandler, getThreadByIdHandler, getThreadsHandler, saveMessagesHandler, updateThreadHandler } from '../../chunk-BSUAZLUK.js';
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkI3FR2N5I_cjs = require('../../chunk-I3FR2N5I.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "generateHandler", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunkI3FR2N5I_cjs.generateHandler; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "getNetworkByIdHandler", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkI3FR2N5I_cjs.getNetworkByIdHandler; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "getNetworksHandler", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkI3FR2N5I_cjs.getNetworksHandler; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "streamGenerateHandler", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkI3FR2N5I_cjs.streamGenerateHandler; }
|
|
22
22
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { generateHandler, getNetworkByIdHandler, getNetworksHandler, streamGenerateHandler } from '../../chunk-
|
|
1
|
+
export { generateHandler, getNetworkByIdHandler, getNetworksHandler, streamGenerateHandler } from '../../chunk-P54JFWUD.js';
|
package/dist/server/handlers.cjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkI3FR2N5I_cjs = require('../chunk-I3FR2N5I.cjs');
|
|
4
4
|
var chunkB4MQFJ7G_cjs = require('../chunk-B4MQFJ7G.cjs');
|
|
5
5
|
var chunkNGURCFEJ_cjs = require('../chunk-NGURCFEJ.cjs');
|
|
6
6
|
var chunkBNEY4P4P_cjs = require('../chunk-BNEY4P4P.cjs');
|
|
7
7
|
var chunkWJY57THV_cjs = require('../chunk-WJY57THV.cjs');
|
|
8
8
|
var chunkXUTX4CAB_cjs = require('../chunk-XUTX4CAB.cjs');
|
|
9
9
|
var chunkT7WA465P_cjs = require('../chunk-T7WA465P.cjs');
|
|
10
|
-
var
|
|
10
|
+
var chunk5BKZNI2F_cjs = require('../chunk-5BKZNI2F.cjs');
|
|
11
11
|
var chunkWE32JG64_cjs = require('../chunk-WE32JG64.cjs');
|
|
12
12
|
var chunkIMBY5XUG_cjs = require('../chunk-IMBY5XUG.cjs');
|
|
13
|
-
var
|
|
13
|
+
var chunkPADRC33G_cjs = require('../chunk-PADRC33G.cjs');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
Object.defineProperty(exports, "network", {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunkI3FR2N5I_cjs.network_exports; }
|
|
20
20
|
});
|
|
21
21
|
Object.defineProperty(exports, "telemetry", {
|
|
22
22
|
enumerable: true,
|
|
@@ -44,7 +44,7 @@ Object.defineProperty(exports, "a2a", {
|
|
|
44
44
|
});
|
|
45
45
|
Object.defineProperty(exports, "agents", {
|
|
46
46
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
47
|
+
get: function () { return chunk5BKZNI2F_cjs.agents_exports; }
|
|
48
48
|
});
|
|
49
49
|
Object.defineProperty(exports, "legacyWorkflows", {
|
|
50
50
|
enumerable: true,
|
|
@@ -56,5 +56,5 @@ Object.defineProperty(exports, "logs", {
|
|
|
56
56
|
});
|
|
57
57
|
Object.defineProperty(exports, "memory", {
|
|
58
58
|
enumerable: true,
|
|
59
|
-
get: function () { return
|
|
59
|
+
get: function () { return chunkPADRC33G_cjs.memory_exports; }
|
|
60
60
|
});
|
package/dist/server/handlers.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { network_exports as network } from '../chunk-
|
|
1
|
+
export { network_exports as network } from '../chunk-P54JFWUD.js';
|
|
2
2
|
export { telemetry_exports as telemetry } from '../chunk-BFOA2QQY.js';
|
|
3
3
|
export { tools_exports as tools } from '../chunk-2HXKRRNS.js';
|
|
4
4
|
export { vector_exports as vector } from '../chunk-55DOQLP6.js';
|
|
5
5
|
export { voice_exports as voice } from '../chunk-R5VGYBV6.js';
|
|
6
6
|
export { workflows_exports as workflows } from '../chunk-3CSC35VL.js';
|
|
7
7
|
export { a2a_exports as a2a } from '../chunk-B36R2PHA.js';
|
|
8
|
-
export { agents_exports as agents } from '../chunk-
|
|
8
|
+
export { agents_exports as agents } from '../chunk-2XXCPCYB.js';
|
|
9
9
|
export { legacyWorkflows_exports as legacyWorkflows } from '../chunk-CLYX4KLH.js';
|
|
10
10
|
export { logs_exports as logs } from '../chunk-QLG2PFHE.js';
|
|
11
|
-
export { memory_exports as memory } from '../chunk-
|
|
11
|
+
export { memory_exports as memory } from '../chunk-BSUAZLUK.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/server",
|
|
3
|
-
"version": "0.0.0-ai-v5-
|
|
3
|
+
"version": "0.0.0-ai-v5-20250626003446",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"license": "Elastic-2.0",
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"zod": "^3.0.0",
|
|
49
|
-
"@mastra/core": "0.0.0-ai-v5-
|
|
49
|
+
"@mastra/core": "0.0.0-ai-v5-20250626003446"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@ai-sdk/openai": "2.0.0-beta.1",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"vitest": "^2.1.9",
|
|
60
60
|
"zod": "^3.25.57",
|
|
61
61
|
"zod-to-json-schema": "^3.24.5",
|
|
62
|
-
"@internal/lint": "0.0.0-ai-v5-
|
|
63
|
-
"@mastra/core": "0.0.0-ai-v5-
|
|
62
|
+
"@internal/lint": "0.0.0-ai-v5-20250626003446",
|
|
63
|
+
"@mastra/core": "0.0.0-ai-v5-20250626003446"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"build": "tsup src/index.ts src/server/handlers.ts src/server/handlers/*.ts !src/server/handlers/*.test.ts --format esm,cjs --clean --experimental-dts --treeshake=smallest --splitting",
|