@mastra/client-js 0.1.20-alpha.6 → 0.1.20
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 +3 -3
- package/CHANGELOG.md +34 -0
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[32mCJS[39m [1mdist/index.cjs [22m[32m34.65 KB[39m
|
|
13
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 1542ms
|
|
14
14
|
[32mESM[39m [1mdist/index.js [22m[32m34.43 KB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 1566ms
|
|
16
16
|
[34mDTS[39m Build start
|
|
17
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
+
[32mDTS[39m ⚡️ Build success in 14884ms
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m25.12 KB[39m
|
|
19
19
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m25.12 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
+
## 0.1.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2cf3b8f: dependencies updates:
|
|
8
|
+
- Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
|
|
9
|
+
- Updated dependency [`zod-to-json-schema@^3.24.5` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.5) (from `^3.24.3`, in `dependencies`)
|
|
10
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
11
|
+
Add fromDate and toDate to telemetry parameters
|
|
12
|
+
- 254f5c3: Audit, cleanup MastraClient
|
|
13
|
+
- 0097d50: Add serializedStepGraph to vNext workflow
|
|
14
|
+
Return serializedStepGraph from vNext workflow
|
|
15
|
+
Use serializedStepGraph in vNext workflow graph
|
|
16
|
+
- 2429c74: Add get workflow runs api to client-js
|
|
17
|
+
- 2e4f8e9: Agui client integration
|
|
18
|
+
- Updated dependencies [6052aa6]
|
|
19
|
+
- Updated dependencies [967b41c]
|
|
20
|
+
- Updated dependencies [3d2fb5c]
|
|
21
|
+
- Updated dependencies [26738f4]
|
|
22
|
+
- Updated dependencies [4155f47]
|
|
23
|
+
- Updated dependencies [7eeb2bc]
|
|
24
|
+
- Updated dependencies [b804723]
|
|
25
|
+
- Updated dependencies [8607972]
|
|
26
|
+
- Updated dependencies [ccef9f9]
|
|
27
|
+
- Updated dependencies [0097d50]
|
|
28
|
+
- Updated dependencies [7eeb2bc]
|
|
29
|
+
- Updated dependencies [17826a9]
|
|
30
|
+
- Updated dependencies [7d8b7c7]
|
|
31
|
+
- Updated dependencies [fba031f]
|
|
32
|
+
- Updated dependencies [3a5f1e1]
|
|
33
|
+
- Updated dependencies [51e6923]
|
|
34
|
+
- Updated dependencies [8398d89]
|
|
35
|
+
- @mastra/core@0.9.2
|
|
36
|
+
|
|
3
37
|
## 0.1.20-alpha.6
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/client-js",
|
|
3
|
-
"version": "0.1.20
|
|
3
|
+
"version": "0.1.20",
|
|
4
4
|
"description": "The official TypeScript library for the Mastra Client API",
|
|
5
5
|
"author": "",
|
|
6
6
|
"type": "module",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"@ai-sdk/ui-utils": "^1.1.19",
|
|
27
27
|
"json-schema": "^0.4.0",
|
|
28
28
|
"rxjs": "7.8.1",
|
|
29
|
-
"zod": "^3.24.
|
|
30
|
-
"zod-to-json-schema": "^3.24.
|
|
31
|
-
"@mastra/core": "^0.9.2
|
|
29
|
+
"zod": "^3.24.3",
|
|
30
|
+
"zod-to-json-schema": "^3.24.5",
|
|
31
|
+
"@mastra/core": "^0.9.2"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"zod": "^3.24.2"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"tsup": "^8.4.0",
|
|
43
43
|
"typescript": "^5.8.2",
|
|
44
44
|
"vitest": "^3.1.2",
|
|
45
|
-
"@internal/lint": "0.0.
|
|
45
|
+
"@internal/lint": "0.0.3"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsup src/index.ts --format esm,cjs --dts --clean --treeshake=smallest --splitting",
|