@mastra/pg 1.14.2 → 1.14.3
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 +18 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- 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 +5 -5
package/dist/index.js
CHANGED
|
@@ -10478,7 +10478,9 @@ var MemoryPG = class _MemoryPG extends MemoryStorage {
|
|
|
10478
10478
|
createdAt: /* @__PURE__ */ new Date(),
|
|
10479
10479
|
suggestedContinuation: input.chunk.suggestedContinuation,
|
|
10480
10480
|
currentTask: input.chunk.currentTask,
|
|
10481
|
-
threadTitle: input.chunk.threadTitle
|
|
10481
|
+
threadTitle: input.chunk.threadTitle,
|
|
10482
|
+
extractedValues: input.chunk.extractedValues,
|
|
10483
|
+
extractionFailures: input.chunk.extractionFailures
|
|
10482
10484
|
};
|
|
10483
10485
|
const lastBufferedAtTime = input.lastBufferedAtTime ? input.lastBufferedAtTime.toISOString() : null;
|
|
10484
10486
|
const result = await this.#db.client.query(
|