@mastra/client-js 0.10.3-alpha.3 → 0.10.3
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 +4 -4
- package/CHANGELOG.md +27 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
[34mCLI[39m Cleaning output folder
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
|
-
[32mESM[39m [1mdist/index.js [22m[32m46.36 KB[39m
|
|
13
|
-
[32mESM[39m ⚡️ Build success in 1410ms
|
|
14
12
|
[32mCJS[39m [1mdist/index.cjs [22m[32m46.65 KB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 2103ms
|
|
14
|
+
[32mESM[39m [1mdist/index.js [22m[32m46.36 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 2107ms
|
|
16
16
|
[34mDTS[39m Build start
|
|
17
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
+
[32mDTS[39m ⚡️ Build success in 14926ms
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m32.85 KB[39m
|
|
19
19
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m32.85 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
+
## 0.10.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1ccccff: dependencies updates:
|
|
8
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
9
|
+
- 1ccccff: dependencies updates:
|
|
10
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
11
|
+
- f1f1f1b: Add basic filtering capabilities to logs
|
|
12
|
+
- b2810ab: Move @mastra/core to deps
|
|
13
|
+
- 82090c1: Add pagination to logs
|
|
14
|
+
- 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
|
|
15
|
+
- Updated dependencies [d1ed912]
|
|
16
|
+
- Updated dependencies [f6fd25f]
|
|
17
|
+
- Updated dependencies [dffb67b]
|
|
18
|
+
- Updated dependencies [f1f1f1b]
|
|
19
|
+
- Updated dependencies [925ab94]
|
|
20
|
+
- Updated dependencies [f9816ae]
|
|
21
|
+
- Updated dependencies [82090c1]
|
|
22
|
+
- Updated dependencies [1b443fd]
|
|
23
|
+
- Updated dependencies [ce97900]
|
|
24
|
+
- Updated dependencies [f1309d3]
|
|
25
|
+
- Updated dependencies [14a2566]
|
|
26
|
+
- Updated dependencies [f7f8293]
|
|
27
|
+
- Updated dependencies [48eddb9]
|
|
28
|
+
- @mastra/core@0.10.4
|
|
29
|
+
|
|
3
30
|
## 0.10.3-alpha.3
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/client-js",
|
|
3
|
-
"version": "0.10.3
|
|
3
|
+
"version": "0.10.3",
|
|
4
4
|
"description": "The official TypeScript library for the Mastra Client API",
|
|
5
5
|
"author": "",
|
|
6
6
|
"type": "module",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"rxjs": "7.8.1",
|
|
29
29
|
"zod": "^3.25.56",
|
|
30
30
|
"zod-to-json-schema": "^3.24.5",
|
|
31
|
-
"@mastra/core": "0.10.4
|
|
31
|
+
"@mastra/core": "0.10.4"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"zod": "^3.0.0"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"tsup": "^8.5.0",
|
|
43
43
|
"typescript": "^5.8.2",
|
|
44
44
|
"vitest": "^3.2.2",
|
|
45
|
-
"@internal/lint": "0.0.
|
|
45
|
+
"@internal/lint": "0.0.11"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsup src/index.ts --format esm,cjs --dts --clean --treeshake=smallest --splitting",
|