@mastra/deployer 0.1.8-alpha.3 → 0.1.8-alpha.4

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.
@@ -1,41 +1,41 @@
1
1
 
2
- > @mastra/deployer@0.1.8-alpha.3 build /home/runner/work/mastra/mastra/packages/deployer
2
+ > @mastra/deployer@0.1.8-alpha.4 build /home/runner/work/mastra/mastra/packages/deployer
3
3
  > tsup src/index.ts src/build/index.ts src/server/index.ts src/build/bundler.ts src/build/analyze.ts src/bundler/index.ts --format esm,cjs --clean --experimental-dts --treeshake --publicDir
4
4
 
5
- CLI Building entry: src/index.ts, src/build/analyze.ts, src/build/bundler.ts, src/build/index.ts, src/bundler/index.ts, src/server/index.ts
5
+ CLI Building entry: src/index.ts, src/build/analyze.ts, src/build/bundler.ts, src/build/index.ts, src/server/index.ts, src/bundler/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.3.6
8
8
  TSC Build start
9
- TSC ⚡️ Build success in 20621ms
9
+ TSC ⚡️ Build success in 11442ms
10
10
  DTS Build start
11
11
  CLI Target: es2022
12
12
  Analysis will use the bundled TypeScript version 5.7.3
13
13
  Writing package typings: /home/runner/work/mastra/mastra/packages/deployer/dist/_tsup-dts-rollup.d.ts
14
14
  Analysis will use the bundled TypeScript version 5.7.3
15
15
  Writing package typings: /home/runner/work/mastra/mastra/packages/deployer/dist/_tsup-dts-rollup.d.cts
16
- DTS ⚡️ Build success in 13433ms
16
+ DTS ⚡️ Build success in 4281ms
17
17
  CLI Cleaning output folder
18
18
  ESM Build start
19
19
  CJS Build start
20
20
  "nodeResolve" is imported from external module "@rollup/plugin-node-resolve" but never used in "dist/index.cjs".
21
21
  "watch" is imported from external module "rollup" but never used in "dist/index.cjs".
22
- ESM dist/index.js 3.74 KB
23
- ESM dist/build/bundler.js 102.00 B
24
22
  ESM dist/build/analyze.js 85.00 B
23
+ ESM dist/build/bundler.js 102.00 B
24
+ ESM dist/build/index.js 383.00 B
25
25
  ESM dist/chunk-72GFPLLU.js 7.41 KB
26
+ ESM dist/chunk-OF7TVLEI.js 4.40 KB
27
+ ESM dist/bundler/index.js 172.00 B
28
+ ESM dist/chunk-TQSSPVHI.js 8.45 KB
26
29
  ESM dist/chunk-VPQMSJB2.js 8.39 KB
27
30
  ESM dist/chunk-AC67BJSW.js 7.44 KB
28
- ESM dist/chunk-TQSSPVHI.js 8.45 KB
29
31
  ESM dist/chunk-PT5XTSU2.js 1.86 KB
30
- ESM dist/chunk-OF7TVLEI.js 4.40 KB
31
- ESM dist/bundler/index.js 172.00 B
32
- ESM dist/build/index.js 383.00 B
33
- ESM dist/server/index.js 155.78 KB
34
- ESM ⚡️ Build success in 5545ms
35
- CJS dist/bundler/index.cjs 31.52 KB
32
+ ESM dist/index.js 3.74 KB
33
+ ESM dist/server/index.js 155.85 KB
34
+ ESM ⚡️ Build success in 1922ms
36
35
  CJS dist/index.cjs 38.41 KB
37
- CJS dist/server/index.cjs 156.83 KB
38
- CJS dist/build/analyze.cjs 11.21 KB
39
36
  CJS dist/build/bundler.cjs 10.25 KB
40
37
  CJS dist/build/index.cjs 34.98 KB
41
- CJS ⚡️ Build success in 5545ms
38
+ CJS dist/bundler/index.cjs 31.52 KB
39
+ CJS dist/build/analyze.cjs 11.21 KB
40
+ CJS dist/server/index.cjs 156.91 KB
41
+ CJS ⚡️ Build success in 1922ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.1.8-alpha.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 144b3d5: Update traces table UI, agent Chat UI
8
+ Fix get workflows breaking
9
+ - Updated dependencies [d79aedf]
10
+ - @mastra/core@0.5.0-alpha.4
11
+
3
12
  ## 0.1.8-alpha.3
4
13
 
5
14
  ### Patch Changes
@@ -3591,7 +3591,8 @@ async function getWorkflowsHandler(c2) {
3591
3591
  const workflows = mastra.getWorkflows({ serialized: false });
3592
3592
  const _workflows = Object.entries(workflows).reduce((acc, [key, workflow]) => {
3593
3593
  acc[key] = {
3594
- ...workflow,
3594
+ stepGraph: workflow.stepGraph,
3595
+ stepSubscriberGraph: workflow.stepSubscriberGraph,
3595
3596
  name: workflow.name,
3596
3597
  triggerSchema: workflow.triggerSchema ? stringify(esm_default(workflow.triggerSchema)) : void 0,
3597
3598
  steps: Object.entries(workflow.steps).reduce((acc2, [key2, step]) => {
@@ -3585,7 +3585,8 @@ async function getWorkflowsHandler(c2) {
3585
3585
  const workflows = mastra.getWorkflows({ serialized: false });
3586
3586
  const _workflows = Object.entries(workflows).reduce((acc, [key, workflow]) => {
3587
3587
  acc[key] = {
3588
- ...workflow,
3588
+ stepGraph: workflow.stepGraph,
3589
+ stepSubscriberGraph: workflow.stepSubscriberGraph,
3589
3590
  name: workflow.name,
3590
3591
  triggerSchema: workflow.triggerSchema ? stringify(esm_default(workflow.triggerSchema)) : void 0,
3591
3592
  steps: Object.entries(workflow.steps).reduce((acc2, [key2, step]) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer",
3
- "version": "0.1.8-alpha.3",
3
+ "version": "0.1.8-alpha.4",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -80,7 +80,7 @@
80
80
  "rollup-plugin-esbuild": "^6.1.1",
81
81
  "rollup-plugin-node-externals": "^8.0.0",
82
82
  "zod": "^3.24.1",
83
- "@mastra/core": "^0.5.0-alpha.3"
83
+ "@mastra/core": "^0.5.0-alpha.4"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@hono/node-server": "^1.13.7",
@@ -12,7 +12,8 @@ export async function getWorkflowsHandler(c: Context) {
12
12
  const workflows = mastra.getWorkflows({ serialized: false });
13
13
  const _workflows = Object.entries(workflows).reduce<any>((acc, [key, workflow]) => {
14
14
  acc[key] = {
15
- ...workflow,
15
+ stepGraph: workflow.stepGraph,
16
+ stepSubscriberGraph: workflow.stepSubscriberGraph,
16
17
  name: workflow.name,
17
18
  triggerSchema: workflow.triggerSchema ? stringify(zodToJsonSchema(workflow.triggerSchema)) : undefined,
18
19
  steps: Object.entries(workflow.steps).reduce<any>((acc, [key, step]) => {