@mastra/mssql 0.0.0-feat-tool-input-validation-20250731232758 → 0.0.0-feat-support-ai-sdk-5-again-20250813225910

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