@mastra/server 0.0.0-main-test-05-11-2025-2-20251106022801 → 0.0.0-main-test-05-11-2025-2-20251106053353
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 +2 -2
- package/dist/{chunk-3KJQ5SGR.js → chunk-2IS5WICF.js} +5 -3
- package/dist/chunk-2IS5WICF.js.map +1 -0
- package/dist/{chunk-M43TUXTH.cjs → chunk-ID6JYDNL.cjs} +5 -3
- package/dist/chunk-ID6JYDNL.cjs.map +1 -0
- package/dist/server/handlers/agent-builder.cjs +19 -19
- package/dist/server/handlers/agent-builder.js +1 -1
- package/dist/server/handlers.cjs +2 -2
- package/dist/server/handlers.js +1 -1
- package/package.json +6 -6
- package/dist/chunk-3KJQ5SGR.js.map +0 -1
- package/dist/chunk-M43TUXTH.cjs.map +0 -1
|
@@ -17746,6 +17746,7 @@ export const weatherAgent = new Agent({
|
|
|
17746
17746
|
tools: { weatherTool },
|
|
17747
17747
|
memory: new Memory({
|
|
17748
17748
|
storage: new LibSQLStore({
|
|
17749
|
+
id: 'mastra-memory-storage',
|
|
17749
17750
|
url: 'file:../mastra.db', // ask user what database to use, use this as the default
|
|
17750
17751
|
}),
|
|
17751
17752
|
}),
|
|
@@ -17913,6 +17914,7 @@ export const mastra = new Mastra({
|
|
|
17913
17914
|
workflows: { weatherWorkflow },
|
|
17914
17915
|
agents: { weatherAgent },
|
|
17915
17916
|
storage: new LibSQLStore({
|
|
17917
|
+
id: 'mastra-storage',
|
|
17916
17918
|
// stores observability, evals, ... into memory storage, if it needs to persist, change to file:../mastra.db
|
|
17917
17919
|
url: ":memory:",
|
|
17918
17920
|
}),
|
|
@@ -22222,7 +22224,7 @@ export const mastra = new Mastra({
|
|
|
22222
22224
|
sendEmailWorkflow, // Use camelCase for keys
|
|
22223
22225
|
dataProcessingWorkflow
|
|
22224
22226
|
},
|
|
22225
|
-
storage: new LibSQLStore({ url: 'file:./mastra.db' }), // Required for suspend/resume
|
|
22227
|
+
storage: new LibSQLStore({ id: 'mastra-storage', url: 'file:./mastra.db' }), // Required for suspend/resume
|
|
22226
22228
|
});
|
|
22227
22229
|
\`\`\`
|
|
22228
22230
|
|
|
@@ -23069,5 +23071,5 @@ exports.startAsyncAgentBuilderActionHandler = startAsyncAgentBuilderActionHandle
|
|
|
23069
23071
|
exports.streamAgentBuilderActionHandler = streamAgentBuilderActionHandler;
|
|
23070
23072
|
exports.streamLegacyAgentBuilderActionHandler = streamLegacyAgentBuilderActionHandler;
|
|
23071
23073
|
exports.streamVNextAgentBuilderActionHandler = streamVNextAgentBuilderActionHandler;
|
|
23072
|
-
//# sourceMappingURL=chunk-
|
|
23073
|
-
//# sourceMappingURL=chunk-
|
|
23074
|
+
//# sourceMappingURL=chunk-ID6JYDNL.cjs.map
|
|
23075
|
+
//# sourceMappingURL=chunk-ID6JYDNL.cjs.map
|