@mastra/mssql 0.2.3 → 0.3.0-alpha.1

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 (38) hide show
  1. package/.turbo/turbo-build.log +2 -21
  2. package/CHANGELOG.md +42 -1
  3. package/dist/index.cjs +1573 -1104
  4. package/dist/index.cjs.map +1 -0
  5. package/dist/index.d.ts +2 -4
  6. package/dist/index.d.ts.map +1 -0
  7. package/dist/index.js +1573 -1104
  8. package/dist/index.js.map +1 -0
  9. package/dist/storage/domains/legacy-evals/index.d.ts +20 -0
  10. package/dist/storage/domains/legacy-evals/index.d.ts.map +1 -0
  11. package/dist/storage/domains/memory/index.d.ts +90 -0
  12. package/dist/storage/domains/memory/index.d.ts.map +1 -0
  13. package/dist/storage/domains/operations/index.d.ts +51 -0
  14. package/dist/storage/domains/operations/index.d.ts.map +1 -0
  15. package/dist/storage/domains/scores/index.d.ts +46 -0
  16. package/dist/storage/domains/scores/index.d.ts.map +1 -0
  17. package/dist/storage/domains/traces/index.d.ts +37 -0
  18. package/dist/storage/domains/traces/index.d.ts.map +1 -0
  19. package/dist/storage/domains/utils.d.ts +6 -0
  20. package/dist/storage/domains/utils.d.ts.map +1 -0
  21. package/dist/storage/domains/workflows/index.d.ts +36 -0
  22. package/dist/storage/domains/workflows/index.d.ts.map +1 -0
  23. package/dist/{_tsup-dts-rollup.d.cts → storage/index.d.ts} +81 -117
  24. package/dist/storage/index.d.ts.map +1 -0
  25. package/package.json +9 -8
  26. package/src/storage/domains/legacy-evals/index.ts +175 -0
  27. package/src/storage/domains/memory/index.ts +1024 -0
  28. package/src/storage/domains/operations/index.ts +401 -0
  29. package/src/storage/domains/scores/index.ts +316 -0
  30. package/src/storage/domains/traces/index.ts +212 -0
  31. package/src/storage/domains/utils.ts +12 -0
  32. package/src/storage/domains/workflows/index.ts +259 -0
  33. package/src/storage/index.ts +147 -1835
  34. package/tsconfig.build.json +9 -0
  35. package/tsconfig.json +1 -1
  36. package/tsup.config.ts +17 -0
  37. package/dist/_tsup-dts-rollup.d.ts +0 -251
  38. package/dist/index.d.cts +0 -4
@@ -1,23 +1,4 @@
1
1
 
2
- > @mastra/mssql@0.2.3-alpha.1 build /home/runner/work/mastra/mastra/stores/mssql
3
- > tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
2
+ > @mastra/mssql@0.3.0-alpha.1 build /home/runner/work/mastra/mastra/stores/mssql
3
+ > tsup --silent --config tsup.config.ts
4
4
 
5
- CLI Building entry: src/index.ts
6
- CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.5.0
8
- TSC Build start
9
- TSC ⚡️ Build success in 10219ms
10
- DTS Build start
11
- CLI Target: es2022
12
- Analysis will use the bundled TypeScript version 5.8.3
13
- Writing package typings: /home/runner/work/mastra/mastra/stores/mssql/dist/_tsup-dts-rollup.d.ts
14
- Analysis will use the bundled TypeScript version 5.8.3
15
- Writing package typings: /home/runner/work/mastra/mastra/stores/mssql/dist/_tsup-dts-rollup.d.cts
16
- DTS ⚡️ Build success in 13166ms
17
- CLI Cleaning output folder
18
- ESM Build start
19
- CJS Build start
20
- CJS dist/index.cjs 65.10 KB
21
- CJS ⚡️ Build success in 1615ms
22
- ESM dist/index.js 63.89 KB
23
- ESM ⚡️ Build success in 1615ms
package/CHANGELOG.md CHANGED
@@ -1,4 +1,45 @@
1
- # Changelog for mastra-mssql
1
+ # @mastra/mssql
2
+
3
+ ## 0.3.0-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2871020: update safelyParseJSON to check for value of param when handling parse
8
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
9
+ - Updated dependencies [cb36de0]
10
+ - Updated dependencies [a82b851]
11
+ - Updated dependencies [41a0a0e]
12
+ - Updated dependencies [2871020]
13
+ - Updated dependencies [4a406ec]
14
+ - Updated dependencies [5d377e5]
15
+ - @mastra/core@0.13.0-alpha.2
16
+
17
+ ## 0.3.0-alpha.0
18
+
19
+ ### Minor Changes
20
+
21
+ - 8c5a2b0: feat(mssql): implement comprehensive scoring system, enhance storage operations & format storage into domains
22
+ - Add full CRUD operations for scoring system (getScoreById, saveScore, getScoresByScorerId, etc.)
23
+ - Implement message deletion functionality with thread timestamp updates
24
+ - Enhance thread management with sorting options and improved pagination
25
+ - Add batch trace insertion for improved performance
26
+ - Implement proper storage domain initialization with all operation bindings
27
+ - Enhance message parsing and formatting with better v1/v2 support
28
+ - Improve table operations with better foreign key handling
29
+ - Add float data type support in schema creation
30
+ - Enhance timestamp handling with proper SQL DateTime2 usage
31
+ - Update core dependency to latest version
32
+ - Format storage into domains and separate these into different files
33
+
34
+ BREAKING CHANGE: deleteMessages support is now enabled (was previously false)
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies [ea0c5f2]
39
+ - Updated dependencies [b0e43c1]
40
+ - Updated dependencies [1fb812e]
41
+ - Updated dependencies [35c5798]
42
+ - @mastra/core@0.13.0-alpha.1
2
43
 
3
44
  ## 0.2.3
4
45