@mastra/mongodb 1.11.1-alpha.0 → 1.11.1
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 +24 -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 +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- 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
|
@@ -13,7 +13,7 @@ import { skillSnapshotFieldValuesEqual } from '@mastra/core/storage/domains/skil
|
|
|
13
13
|
|
|
14
14
|
// package.json
|
|
15
15
|
var package_default = {
|
|
16
|
-
version: "1.11.1
|
|
16
|
+
version: "1.11.1"};
|
|
17
17
|
var MongoDBFilterTranslator = class extends BaseFilterTranslator {
|
|
18
18
|
getSupportedOperators() {
|
|
19
19
|
return {
|
|
@@ -6261,7 +6261,9 @@ var MemoryStorageMongoDB = class _MemoryStorageMongoDB extends MemoryStorage {
|
|
|
6261
6261
|
createdAt: /* @__PURE__ */ new Date(),
|
|
6262
6262
|
suggestedContinuation: input.chunk.suggestedContinuation,
|
|
6263
6263
|
currentTask: input.chunk.currentTask,
|
|
6264
|
-
threadTitle: input.chunk.threadTitle
|
|
6264
|
+
threadTitle: input.chunk.threadTitle,
|
|
6265
|
+
extractedValues: input.chunk.extractedValues,
|
|
6266
|
+
extractionFailures: input.chunk.extractionFailures
|
|
6265
6267
|
};
|
|
6266
6268
|
const now = /* @__PURE__ */ new Date();
|
|
6267
6269
|
const setStage = {
|