@mastra/mssql 0.0.0-fix-tool-call-history-20250730195323 → 0.0.0-fix-tool-call-history-3-20250806004225

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 +84 -4
  2. package/dist/index.cjs +1573 -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 +1573 -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 +9 -8
  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 +316 -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 +17 -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,91 @@
1
- # Changelog for mastra-mssql
1
+ # @mastra/mssql
2
2
 
3
- ## 0.0.0-fix-tool-call-history-20250730195323
3
+ ## 0.0.0-fix-tool-call-history-3-20250806004225
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - Updated dependencies [f953f00]
8
- - @mastra/core@0.0.0-fix-tool-call-history-20250730195323
7
+ - Updated dependencies [d82ba9f]
8
+ - @mastra/core@0.0.0-fix-tool-call-history-3-20250806004225
9
+
10
+ ## 0.3.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 8c5a2b0: feat(mssql): implement comprehensive scoring system, enhance storage operations & format storage into domains
15
+ - Add full CRUD operations for scoring system (getScoreById, saveScore, getScoresByScorerId, etc.)
16
+ - Implement message deletion functionality with thread timestamp updates
17
+ - Enhance thread management with sorting options and improved pagination
18
+ - Add batch trace insertion for improved performance
19
+ - Implement proper storage domain initialization with all operation bindings
20
+ - Enhance message parsing and formatting with better v1/v2 support
21
+ - Improve table operations with better foreign key handling
22
+ - Add float data type support in schema creation
23
+ - Enhance timestamp handling with proper SQL DateTime2 usage
24
+ - Update core dependency to latest version
25
+ - Format storage into domains and separate these into different files
26
+
27
+ BREAKING CHANGE: deleteMessages support is now enabled (was previously false)
28
+
29
+ ### Patch Changes
30
+
31
+ - 2871020: update safelyParseJSON to check for value of param when handling parse
32
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
33
+ - Updated dependencies [cb36de0]
34
+ - Updated dependencies [d0496e6]
35
+ - Updated dependencies [a82b851]
36
+ - Updated dependencies [ea0c5f2]
37
+ - Updated dependencies [41a0a0e]
38
+ - Updated dependencies [2871020]
39
+ - Updated dependencies [94f4812]
40
+ - Updated dependencies [e202b82]
41
+ - Updated dependencies [e00f6a0]
42
+ - Updated dependencies [4a406ec]
43
+ - Updated dependencies [b0e43c1]
44
+ - Updated dependencies [5d377e5]
45
+ - Updated dependencies [1fb812e]
46
+ - Updated dependencies [35c5798]
47
+ - @mastra/core@0.13.0
48
+
49
+ ## 0.3.0-alpha.1
50
+
51
+ ### Patch Changes
52
+
53
+ - 2871020: update safelyParseJSON to check for value of param when handling parse
54
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
55
+ - Updated dependencies [cb36de0]
56
+ - Updated dependencies [a82b851]
57
+ - Updated dependencies [41a0a0e]
58
+ - Updated dependencies [2871020]
59
+ - Updated dependencies [4a406ec]
60
+ - Updated dependencies [5d377e5]
61
+ - @mastra/core@0.13.0-alpha.2
62
+
63
+ ## 0.3.0-alpha.0
64
+
65
+ ### Minor Changes
66
+
67
+ - 8c5a2b0: feat(mssql): implement comprehensive scoring system, enhance storage operations & format storage into domains
68
+ - Add full CRUD operations for scoring system (getScoreById, saveScore, getScoresByScorerId, etc.)
69
+ - Implement message deletion functionality with thread timestamp updates
70
+ - Enhance thread management with sorting options and improved pagination
71
+ - Add batch trace insertion for improved performance
72
+ - Implement proper storage domain initialization with all operation bindings
73
+ - Enhance message parsing and formatting with better v1/v2 support
74
+ - Improve table operations with better foreign key handling
75
+ - Add float data type support in schema creation
76
+ - Enhance timestamp handling with proper SQL DateTime2 usage
77
+ - Update core dependency to latest version
78
+ - Format storage into domains and separate these into different files
79
+
80
+ BREAKING CHANGE: deleteMessages support is now enabled (was previously false)
81
+
82
+ ### Patch Changes
83
+
84
+ - Updated dependencies [ea0c5f2]
85
+ - Updated dependencies [b0e43c1]
86
+ - Updated dependencies [1fb812e]
87
+ - Updated dependencies [35c5798]
88
+ - @mastra/core@0.13.0-alpha.1
9
89
 
10
90
  ## 0.2.3
11
91