@mastra/mssql 0.2.3-alpha.1 → 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 +60 -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 9861ms
|
|
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 11619ms
|
|
17
|
-
[34mCLI[39m Cleaning output folder
|
|
18
|
-
[34mESM[39m Build start
|
|
19
|
-
[34mCJS[39m Build start
|
|
20
|
-
[32mESM[39m [1mdist/index.js [22m[32m63.89 KB[39m
|
|
21
|
-
[32mESM[39m ⚡️ Build success in 1663ms
|
|
22
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m65.10 KB[39m
|
|
23
|
-
[32mCJS[39m ⚡️ Build success in 1663ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,63 @@
|
|
|
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
|
|
29
|
+
|
|
30
|
+
## 0.2.3
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- 4230a13: dependencies updates:
|
|
35
|
+
- Updated dependency [`mssql@^10.0.4` ↗︎](https://www.npmjs.com/package/mssql/v/10.0.4) (from `^10.0.0`, in `dependencies`)
|
|
36
|
+
- f42c4c2: update peer deps for packages to latest core range
|
|
37
|
+
- Updated dependencies [510e2c8]
|
|
38
|
+
- Updated dependencies [2f72fb2]
|
|
39
|
+
- Updated dependencies [27cc97a]
|
|
40
|
+
- Updated dependencies [3f89307]
|
|
41
|
+
- Updated dependencies [9eda7d4]
|
|
42
|
+
- Updated dependencies [9d49408]
|
|
43
|
+
- Updated dependencies [41daa63]
|
|
44
|
+
- Updated dependencies [ad0a58b]
|
|
45
|
+
- Updated dependencies [254a36b]
|
|
46
|
+
- Updated dependencies [2ecf658]
|
|
47
|
+
- Updated dependencies [7a7754f]
|
|
48
|
+
- Updated dependencies [fc92d80]
|
|
49
|
+
- Updated dependencies [e0f73c6]
|
|
50
|
+
- Updated dependencies [0b89602]
|
|
51
|
+
- Updated dependencies [4d37822]
|
|
52
|
+
- Updated dependencies [23a6a7c]
|
|
53
|
+
- Updated dependencies [cda801d]
|
|
54
|
+
- Updated dependencies [a77c823]
|
|
55
|
+
- Updated dependencies [ff9c125]
|
|
56
|
+
- Updated dependencies [09bca64]
|
|
57
|
+
- Updated dependencies [b8efbb9]
|
|
58
|
+
- Updated dependencies [71466e7]
|
|
59
|
+
- Updated dependencies [0c99fbe]
|
|
60
|
+
- @mastra/core@0.12.0
|
|
2
61
|
|
|
3
62
|
## 0.2.3-alpha.1
|
|
4
63
|
|