@mastra/memory 0.14.3-alpha.1 → 0.14.3-alpha.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.
Files changed (37) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/index.cjs +2 -5
  3. package/dist/index.cjs.map +1 -1
  4. package/dist/index.d.ts.map +1 -1
  5. package/dist/index.js +2 -4
  6. package/dist/index.js.map +1 -1
  7. package/package.json +17 -4
  8. package/.turbo/turbo-build.log +0 -8
  9. package/eslint.config.js +0 -12
  10. package/integration-tests-v5/.env.test +0 -5
  11. package/integration-tests-v5/CHANGELOG.md +0 -175
  12. package/integration-tests-v5/docker-compose.yml +0 -39
  13. package/integration-tests-v5/node_modules/.bin/next +0 -21
  14. package/integration-tests-v5/node_modules/.bin/tsc +0 -21
  15. package/integration-tests-v5/node_modules/.bin/tsserver +0 -21
  16. package/integration-tests-v5/node_modules/.bin/vitest +0 -21
  17. package/integration-tests-v5/package.json +0 -43
  18. package/integration-tests-v5/src/agent-memory.test.ts +0 -621
  19. package/integration-tests-v5/src/mastra/agents/weather.ts +0 -75
  20. package/integration-tests-v5/src/mastra/index.ts +0 -13
  21. package/integration-tests-v5/src/mastra/tools/weather.ts +0 -24
  22. package/integration-tests-v5/src/processors.test.ts +0 -604
  23. package/integration-tests-v5/src/streaming-memory.test.ts +0 -367
  24. package/integration-tests-v5/src/test-utils.ts +0 -147
  25. package/integration-tests-v5/src/working-memory.test.ts +0 -1064
  26. package/integration-tests-v5/tsconfig.json +0 -13
  27. package/integration-tests-v5/vitest.config.ts +0 -18
  28. package/src/index.ts +0 -1040
  29. package/src/processors/index.test.ts +0 -246
  30. package/src/processors/index.ts +0 -2
  31. package/src/processors/token-limiter.ts +0 -159
  32. package/src/processors/tool-call-filter.ts +0 -77
  33. package/src/tools/working-memory.ts +0 -154
  34. package/tsconfig.build.json +0 -9
  35. package/tsconfig.json +0 -5
  36. package/tsup.config.ts +0 -17
  37. package/vitest.config.ts +0 -11
@@ -1,13 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "ESNext",
5
- "moduleResolution": "bundler",
6
- "strict": true,
7
- "esModuleInterop": true,
8
- "skipLibCheck": true,
9
- "forceConsistentCasingInFileNames": true
10
- },
11
- "include": ["src/**/*", "vitest.config.ts"],
12
- "exclude": ["node_modules"]
13
- }
@@ -1,18 +0,0 @@
1
- import { defineConfig } from 'vitest/config';
2
-
3
- export default defineConfig({
4
- test: {
5
- pool: 'forks',
6
- globals: true,
7
- environment: 'node',
8
- testTimeout: 60000,
9
- hookTimeout: 30000,
10
- coverage: {
11
- provider: 'v8',
12
- reporter: ['text', 'json', 'html'],
13
- },
14
- // smaller output to save token space when LLMs run tests
15
- reporters: 'dot',
16
- bail: 1,
17
- },
18
- });