@mastra/mssql 0.2.3 → 0.3.0-alpha.0
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.
- package/.turbo/turbo-build.log +2 -21
- package/CHANGELOG.md +28 -1
- package/dist/index.cjs +1568 -1104
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +2 -4
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1568 -1104
- package/dist/index.js.map +1 -0
- package/dist/storage/domains/legacy-evals/index.d.ts +20 -0
- package/dist/storage/domains/legacy-evals/index.d.ts.map +1 -0
- package/dist/storage/domains/memory/index.d.ts +90 -0
- package/dist/storage/domains/memory/index.d.ts.map +1 -0
- package/dist/storage/domains/operations/index.d.ts +51 -0
- package/dist/storage/domains/operations/index.d.ts.map +1 -0
- package/dist/storage/domains/scores/index.d.ts +46 -0
- package/dist/storage/domains/scores/index.d.ts.map +1 -0
- package/dist/storage/domains/traces/index.d.ts +37 -0
- package/dist/storage/domains/traces/index.d.ts.map +1 -0
- package/dist/storage/domains/utils.d.ts +6 -0
- package/dist/storage/domains/utils.d.ts.map +1 -0
- package/dist/storage/domains/workflows/index.d.ts +36 -0
- package/dist/storage/domains/workflows/index.d.ts.map +1 -0
- package/dist/{_tsup-dts-rollup.d.cts → storage/index.d.ts} +81 -117
- package/dist/storage/index.d.ts.map +1 -0
- package/package.json +6 -6
- package/src/storage/domains/legacy-evals/index.ts +175 -0
- package/src/storage/domains/memory/index.ts +1024 -0
- package/src/storage/domains/operations/index.ts +401 -0
- package/src/storage/domains/scores/index.ts +315 -0
- package/src/storage/domains/traces/index.ts +212 -0
- package/src/storage/domains/utils.ts +12 -0
- package/src/storage/domains/workflows/index.ts +259 -0
- package/src/storage/index.ts +147 -1835
- package/tsconfig.build.json +9 -0
- package/tsconfig.json +1 -1
- package/tsup.config.ts +22 -0
- package/dist/_tsup-dts-rollup.d.ts +0 -251
- package/dist/index.d.cts +0 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,23 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/mssql@0.
|
|
3
|
-
> tsup
|
|
2
|
+
> @mastra/mssql@0.3.0-alpha.0 build /home/runner/work/mastra/mastra/stores/mssql
|
|
3
|
+
> tsup --silent --config tsup.config.ts
|
|
4
4
|
|
|
5
|
-
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
-
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
-
[34mCLI[39m tsup v8.5.0
|
|
8
|
-
[34mTSC[39m Build start
|
|
9
|
-
[32mTSC[39m ⚡️ Build success in 10219ms
|
|
10
|
-
[34mDTS[39m Build start
|
|
11
|
-
[34mCLI[39m Target: es2022
|
|
12
|
-
Analysis will use the bundled TypeScript version 5.8.3
|
|
13
|
-
[36mWriting package typings: /home/runner/work/mastra/mastra/stores/mssql/dist/_tsup-dts-rollup.d.ts[39m
|
|
14
|
-
Analysis will use the bundled TypeScript version 5.8.3
|
|
15
|
-
[36mWriting package typings: /home/runner/work/mastra/mastra/stores/mssql/dist/_tsup-dts-rollup.d.cts[39m
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in 13166ms
|
|
17
|
-
[34mCLI[39m Cleaning output folder
|
|
18
|
-
[34mESM[39m Build start
|
|
19
|
-
[34mCJS[39m Build start
|
|
20
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m65.10 KB[39m
|
|
21
|
-
[32mCJS[39m ⚡️ Build success in 1615ms
|
|
22
|
-
[32mESM[39m [1mdist/index.js [22m[32m63.89 KB[39m
|
|
23
|
-
[32mESM[39m ⚡️ Build success in 1615ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,31 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @mastra/mssql
|
|
2
|
+
|
|
3
|
+
## 0.3.0-alpha.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8c5a2b0: 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)
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [ea0c5f2]
|
|
25
|
+
- Updated dependencies [b0e43c1]
|
|
26
|
+
- Updated dependencies [1fb812e]
|
|
27
|
+
- Updated dependencies [35c5798]
|
|
28
|
+
- @mastra/core@0.13.0-alpha.1
|
|
2
29
|
|
|
3
30
|
## 0.2.3
|
|
4
31
|
|