@mastra/client-js 0.1.19-alpha.8 → 0.1.20-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 +7 -7
- package/CHANGELOG.md +37 -0
- package/dist/index.d.cts +11 -2
- package/dist/index.d.ts +11 -2
- package/package.json +2 -2
- package/src/types.ts +11 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/client-js@0.1.
|
|
2
|
+
> @mastra/client-js@0.1.20-alpha.0 build /home/runner/work/mastra/mastra/client-sdks/client-js
|
|
3
3
|
> tsup src/index.ts --format esm,cjs --dts --clean --treeshake=smallest --splitting
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -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[32m27.12 KB[39m
|
|
13
|
-
[32mESM[39m ⚡️ Build success in 1551ms
|
|
14
12
|
[32mCJS[39m [1mdist/index.cjs [22m[32m27.30 KB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 1193ms
|
|
14
|
+
[32mESM[39m [1mdist/index.js [22m[32m27.12 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 1199ms
|
|
16
16
|
[34mDTS[39m Build start
|
|
17
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
19
|
-
[32mDTS[39m [1mdist/index.d.cts [22m[
|
|
17
|
+
[32mDTS[39m ⚡️ Build success in 12145ms
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m24.11 KB[39m
|
|
19
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m24.11 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
+
## 0.1.20-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0097d50: Add serializedStepGraph to vNext workflow
|
|
8
|
+
Return serializedStepGraph from vNext workflow
|
|
9
|
+
Use serializedStepGraph in vNext workflow graph
|
|
10
|
+
- Updated dependencies [0097d50]
|
|
11
|
+
- @mastra/core@0.9.2-alpha.0
|
|
12
|
+
|
|
13
|
+
## 0.1.19
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- b50b9b7: Add vNext workflow to client-js
|
|
18
|
+
- 11d4485: Show VNext workflows on the playground
|
|
19
|
+
Show running status for step in vNext workflowState
|
|
20
|
+
- Updated dependencies [405b63d]
|
|
21
|
+
- Updated dependencies [81fb7f6]
|
|
22
|
+
- Updated dependencies [20275d4]
|
|
23
|
+
- Updated dependencies [7d1892c]
|
|
24
|
+
- Updated dependencies [a90a082]
|
|
25
|
+
- Updated dependencies [2d17c73]
|
|
26
|
+
- Updated dependencies [61e92f5]
|
|
27
|
+
- Updated dependencies [35955b0]
|
|
28
|
+
- Updated dependencies [6262bd5]
|
|
29
|
+
- Updated dependencies [c1409ef]
|
|
30
|
+
- Updated dependencies [3e7b69d]
|
|
31
|
+
- Updated dependencies [e4943b8]
|
|
32
|
+
- Updated dependencies [11d4485]
|
|
33
|
+
- Updated dependencies [479f490]
|
|
34
|
+
- Updated dependencies [c23a81c]
|
|
35
|
+
- Updated dependencies [2d4001d]
|
|
36
|
+
- Updated dependencies [c71013a]
|
|
37
|
+
- Updated dependencies [1d3b1cd]
|
|
38
|
+
- @mastra/core@0.9.1
|
|
39
|
+
|
|
3
40
|
## 0.1.19-alpha.8
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/dist/index.d.cts
CHANGED
|
@@ -67,8 +67,17 @@ type WorkflowRunResult = {
|
|
|
67
67
|
};
|
|
68
68
|
interface GetVNextWorkflowResponse {
|
|
69
69
|
name: string;
|
|
70
|
-
steps:
|
|
71
|
-
|
|
70
|
+
steps: {
|
|
71
|
+
[key: string]: {
|
|
72
|
+
id: string;
|
|
73
|
+
description: string;
|
|
74
|
+
inputSchema: string;
|
|
75
|
+
outputSchema: string;
|
|
76
|
+
resumeSchema: string;
|
|
77
|
+
suspendSchema: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
stepGraph: NewWorkflow['serializedStepGraph'];
|
|
72
81
|
inputSchema: string;
|
|
73
82
|
outputSchema: string;
|
|
74
83
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -67,8 +67,17 @@ type WorkflowRunResult = {
|
|
|
67
67
|
};
|
|
68
68
|
interface GetVNextWorkflowResponse {
|
|
69
69
|
name: string;
|
|
70
|
-
steps:
|
|
71
|
-
|
|
70
|
+
steps: {
|
|
71
|
+
[key: string]: {
|
|
72
|
+
id: string;
|
|
73
|
+
description: string;
|
|
74
|
+
inputSchema: string;
|
|
75
|
+
outputSchema: string;
|
|
76
|
+
resumeSchema: string;
|
|
77
|
+
suspendSchema: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
stepGraph: NewWorkflow['serializedStepGraph'];
|
|
72
81
|
inputSchema: string;
|
|
73
82
|
outputSchema: string;
|
|
74
83
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/client-js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20-alpha.0",
|
|
4
4
|
"description": "The official TypeScript library for the Mastra Client API",
|
|
5
5
|
"author": "",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"json-schema": "^0.4.0",
|
|
27
27
|
"zod": "^3.24.2",
|
|
28
28
|
"zod-to-json-schema": "^3.24.3",
|
|
29
|
-
"@mastra/core": "^0.9.
|
|
29
|
+
"@mastra/core": "^0.9.2-alpha.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"zod": "^3.24.2"
|
package/src/types.ts
CHANGED
|
@@ -82,8 +82,17 @@ export type WorkflowRunResult = {
|
|
|
82
82
|
|
|
83
83
|
export interface GetVNextWorkflowResponse {
|
|
84
84
|
name: string;
|
|
85
|
-
steps:
|
|
86
|
-
|
|
85
|
+
steps: {
|
|
86
|
+
[key: string]: {
|
|
87
|
+
id: string;
|
|
88
|
+
description: string;
|
|
89
|
+
inputSchema: string;
|
|
90
|
+
outputSchema: string;
|
|
91
|
+
resumeSchema: string;
|
|
92
|
+
suspendSchema: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
stepGraph: NewWorkflow['serializedStepGraph'];
|
|
87
96
|
inputSchema: string;
|
|
88
97
|
outputSchema: string;
|
|
89
98
|
}
|