@mastra/mssql 0.0.0-fix-tool-call-history-20250730195323 → 0.0.0-mssql-store-20250804200341

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 +26 -4
  2. package/dist/index.cjs +1547 -1104
  3. package/dist/index.cjs.map +1 -0
  4. package/dist/index.d.ts +2 -4
  5. package/dist/index.d.ts.map +1 -0
  6. package/dist/index.js +1547 -1104
  7. package/dist/index.js.map +1 -0
  8. package/dist/storage/domains/legacy-evals/index.d.ts +20 -0
  9. package/dist/storage/domains/legacy-evals/index.d.ts.map +1 -0
  10. package/dist/storage/domains/memory/index.d.ts +90 -0
  11. package/dist/storage/domains/memory/index.d.ts.map +1 -0
  12. package/dist/storage/domains/operations/index.d.ts +51 -0
  13. package/dist/storage/domains/operations/index.d.ts.map +1 -0
  14. package/dist/storage/domains/scores/index.d.ts +46 -0
  15. package/dist/storage/domains/scores/index.d.ts.map +1 -0
  16. package/dist/storage/domains/traces/index.d.ts +37 -0
  17. package/dist/storage/domains/traces/index.d.ts.map +1 -0
  18. package/dist/storage/domains/utils.d.ts +6 -0
  19. package/dist/storage/domains/utils.d.ts.map +1 -0
  20. package/dist/storage/domains/workflows/index.d.ts +36 -0
  21. package/dist/storage/domains/workflows/index.d.ts.map +1 -0
  22. package/dist/{_tsup-dts-rollup.d.cts → storage/index.d.ts} +81 -117
  23. package/dist/storage/index.d.ts.map +1 -0
  24. package/package.json +7 -7
  25. package/src/storage/domains/legacy-evals/index.ts +175 -0
  26. package/src/storage/domains/memory/index.ts +1024 -0
  27. package/src/storage/domains/operations/index.ts +401 -0
  28. package/src/storage/domains/scores/index.ts +289 -0
  29. package/src/storage/domains/traces/index.ts +212 -0
  30. package/src/storage/domains/utils.ts +12 -0
  31. package/src/storage/domains/workflows/index.ts +259 -0
  32. package/src/storage/index.ts +147 -1835
  33. package/tsconfig.build.json +9 -0
  34. package/tsconfig.json +1 -1
  35. package/tsup.config.ts +22 -0
  36. package/dist/_tsup-dts-rollup.d.ts +0 -251
  37. package/dist/index.d.cts +0 -4
package/CHANGELOG.md CHANGED
@@ -1,11 +1,33 @@
1
- # Changelog for mastra-mssql
1
+ # @mastra/mssql
2
2
 
3
- ## 0.0.0-fix-tool-call-history-20250730195323
3
+ ## 0.0.0-mssql-store-20250804200341
4
+
5
+ ### Minor Changes
6
+
7
+ - 5f1e4bb: feat(mssql): implement comprehensive scoring system, enhance storage operations & format storage into domains
8
+ - Add full CRUD operations for scoring system (getScoreById, saveScore, getScoresByScorerId, etc.)
9
+ - Implement message deletion functionality with thread timestamp updates
10
+ - Enhance thread management with sorting options and improved pagination
11
+ - Add batch trace insertion for improved performance
12
+ - Implement proper storage domain initialization with all operation bindings
13
+ - Enhance message parsing and formatting with better v1/v2 support
14
+ - Improve table operations with better foreign key handling
15
+ - Add float data type support in schema creation
16
+ - Enhance timestamp handling with proper SQL DateTime2 usage
17
+ - Update core dependency to latest version
18
+ - Format storage into domains and separate these into different files
19
+
20
+ BREAKING CHANGE: deleteMessages support is now enabled (was previously false)
4
21
 
5
22
  ### Patch Changes
6
23
 
7
- - Updated dependencies [f953f00]
8
- - @mastra/core@0.0.0-fix-tool-call-history-20250730195323
24
+ - Updated dependencies [94f4812]
25
+ - Updated dependencies [e202b82]
26
+ - Updated dependencies [e00f6a0]
27
+ - Updated dependencies [b0e43c1]
28
+ - Updated dependencies [1fb812e]
29
+ - Updated dependencies [35c5798]
30
+ - @mastra/core@0.0.0-mssql-store-20250804200341
9
31
 
10
32
  ## 0.2.3
11
33