@mastra/mysql 0.3.1 → 0.3.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 +9 -0
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/storage/domains/memory/index.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -6538,7 +6538,10 @@ var MemoryMySQL = class _MemoryMySQL extends MemoryStorage {
|
|
|
6538
6538
|
lastObservedAt: input.chunk.lastObservedAt,
|
|
6539
6539
|
createdAt: /* @__PURE__ */ new Date(),
|
|
6540
6540
|
suggestedContinuation: input.chunk.suggestedContinuation,
|
|
6541
|
-
currentTask: input.chunk.currentTask
|
|
6541
|
+
currentTask: input.chunk.currentTask,
|
|
6542
|
+
threadTitle: input.chunk.threadTitle,
|
|
6543
|
+
extractedValues: input.chunk.extractedValues,
|
|
6544
|
+
extractionFailures: input.chunk.extractionFailures
|
|
6542
6545
|
};
|
|
6543
6546
|
const newChunks = [...existingChunks, newChunk];
|
|
6544
6547
|
const lastBufferedAtTime = input.lastBufferedAtTime ? transformToSqlValue(input.lastBufferedAtTime) : null;
|