@mastra/libsql 1.14.2 → 1.14.3-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/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/docs-agents-agent-approval.md +38 -0
- package/dist/docs/references/docs-memory-working-memory.md +2 -0
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/storage/domains/memory/index.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -8330,7 +8330,9 @@ var MemoryLibSQL = class extends MemoryStorage {
|
|
|
8330
8330
|
createdAt: /* @__PURE__ */ new Date(),
|
|
8331
8331
|
suggestedContinuation: input.chunk.suggestedContinuation,
|
|
8332
8332
|
currentTask: input.chunk.currentTask,
|
|
8333
|
-
threadTitle: input.chunk.threadTitle
|
|
8333
|
+
threadTitle: input.chunk.threadTitle,
|
|
8334
|
+
extractedValues: input.chunk.extractedValues,
|
|
8335
|
+
extractionFailures: input.chunk.extractionFailures
|
|
8334
8336
|
};
|
|
8335
8337
|
const newChunks = [...existingChunks, newChunk];
|
|
8336
8338
|
const lastBufferedAtTime = input.lastBufferedAtTime ? input.lastBufferedAtTime.toISOString() : null;
|