@mastra/mssql 0.0.0-fix-tool-call-history-20250731222019 → 0.0.0-fix-message-list-args-missing-20250807205055

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