@mastra/server 0.10.4 → 0.10.6-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.
@@ -1,4 +1,4 @@
1
- import { stringify, esm_default } from './chunk-WKWHYFX4.js';
1
+ import { stringify, esm_default } from './chunk-TGJMNUYJ.js';
2
2
  import { handleError } from './chunk-M5ABIP7D.js';
3
3
  import { HTTPException } from './chunk-NYN7KFXL.js';
4
4
  import { __export } from './chunk-MLKGABMK.js';
@@ -48,12 +48,46 @@ async function getWorkflowsHandler({ mastra }) {
48
48
  throw new HTTPException(500, { message: error?.message || "Error getting workflows" });
49
49
  }
50
50
  }
51
+ async function getWorkflowsFromSystem({ mastra, workflowId }) {
52
+ const logger = mastra.getLogger();
53
+ if (!workflowId) {
54
+ throw new HTTPException(400, { message: "Workflow ID is required" });
55
+ }
56
+ let workflow;
57
+ try {
58
+ workflow = mastra.getWorkflow(workflowId);
59
+ } catch (error) {
60
+ logger.debug("Error getting workflow, searching agents for workflow", error);
61
+ }
62
+ if (!workflow) {
63
+ logger.debug("Workflow not found, searching agents for workflow", { workflowId });
64
+ const agents = mastra.getAgents();
65
+ if (Object.keys(agents || {}).length) {
66
+ for (const [_, agent] of Object.entries(agents)) {
67
+ try {
68
+ const workflows = await agent.getWorkflows();
69
+ if (workflows[workflowId]) {
70
+ workflow = workflows[workflowId];
71
+ break;
72
+ }
73
+ break;
74
+ } catch (error) {
75
+ logger.debug("Error getting workflow from agent", error);
76
+ }
77
+ }
78
+ }
79
+ }
80
+ if (!workflow) {
81
+ throw new HTTPException(404, { message: "Workflow not found" });
82
+ }
83
+ return { workflow };
84
+ }
51
85
  async function getWorkflowByIdHandler({ mastra, workflowId }) {
52
86
  try {
53
87
  if (!workflowId) {
54
88
  throw new HTTPException(400, { message: "Workflow ID is required" });
55
89
  }
56
- const workflow = mastra.getWorkflow(workflowId);
90
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
57
91
  if (!workflow) {
58
92
  throw new HTTPException(404, { message: "Workflow not found" });
59
93
  }
@@ -91,7 +125,7 @@ async function getWorkflowRunByIdHandler({
91
125
  if (!runId) {
92
126
  throw new HTTPException(400, { message: "Run ID is required" });
93
127
  }
94
- const workflow = mastra.getWorkflow(workflowId);
128
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
95
129
  if (!workflow) {
96
130
  throw new HTTPException(404, { message: "Workflow not found" });
97
131
  }
@@ -113,7 +147,7 @@ async function createWorkflowRunHandler({
113
147
  if (!workflowId) {
114
148
  throw new HTTPException(400, { message: "Workflow ID is required" });
115
149
  }
116
- const workflow = mastra.getWorkflow(workflowId);
150
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
117
151
  if (!workflow) {
118
152
  throw new HTTPException(404, { message: "Workflow not found" });
119
153
  }
@@ -134,7 +168,7 @@ async function startAsyncWorkflowHandler({
134
168
  if (!workflowId) {
135
169
  throw new HTTPException(400, { message: "Workflow ID is required" });
136
170
  }
137
- const workflow = mastra.getWorkflow(workflowId);
171
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
138
172
  if (!workflow) {
139
173
  throw new HTTPException(404, { message: "Workflow not found" });
140
174
  }
@@ -162,7 +196,10 @@ async function startWorkflowRunHandler({
162
196
  if (!runId) {
163
197
  throw new HTTPException(400, { message: "runId required to start run" });
164
198
  }
165
- const workflow = mastra.getWorkflow(workflowId);
199
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
200
+ if (!workflow) {
201
+ throw new HTTPException(404, { message: "Workflow not found" });
202
+ }
166
203
  const run = await workflow.getWorkflowRunById(runId);
167
204
  if (!run) {
168
205
  throw new HTTPException(404, { message: "Workflow run not found" });
@@ -189,7 +226,10 @@ async function watchWorkflowHandler({
189
226
  if (!runId) {
190
227
  throw new HTTPException(400, { message: "runId required to watch workflow" });
191
228
  }
192
- const workflow = mastra.getWorkflow(workflowId);
229
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
230
+ if (!workflow) {
231
+ throw new HTTPException(404, { message: "Workflow not found" });
232
+ }
193
233
  const run = await workflow.getWorkflowRunById(runId);
194
234
  if (!run) {
195
235
  throw new HTTPException(404, { message: "Workflow run not found" });
@@ -223,7 +263,7 @@ async function watchWorkflowHandler({
223
263
  return handleError(error, "Error watching workflow");
224
264
  }
225
265
  }
226
- function streamWorkflowHandler({
266
+ async function streamWorkflowHandler({
227
267
  mastra,
228
268
  runtimeContext,
229
269
  workflowId,
@@ -237,7 +277,7 @@ function streamWorkflowHandler({
237
277
  if (!runId) {
238
278
  throw new HTTPException(400, { message: "runId required to resume workflow" });
239
279
  }
240
- const workflow = mastra.getWorkflow(workflowId);
280
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
241
281
  if (!workflow) {
242
282
  throw new HTTPException(404, { message: "Workflow not found" });
243
283
  }
@@ -268,7 +308,10 @@ async function resumeAsyncWorkflowHandler({
268
308
  if (!body.step) {
269
309
  throw new HTTPException(400, { message: "step required to resume workflow" });
270
310
  }
271
- const workflow = mastra.getWorkflow(workflowId);
311
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
312
+ if (!workflow) {
313
+ throw new HTTPException(404, { message: "Workflow not found" });
314
+ }
272
315
  const run = await workflow.getWorkflowRunById(runId);
273
316
  if (!run) {
274
317
  throw new HTTPException(404, { message: "Workflow run not found" });
@@ -301,7 +344,10 @@ async function resumeWorkflowHandler({
301
344
  if (!body.step) {
302
345
  throw new HTTPException(400, { message: "step required to resume workflow" });
303
346
  }
304
- const workflow = mastra.getWorkflow(workflowId);
347
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
348
+ if (!workflow) {
349
+ throw new HTTPException(404, { message: "Workflow not found" });
350
+ }
305
351
  const run = await workflow.getWorkflowRunById(runId);
306
352
  if (!run) {
307
353
  throw new HTTPException(404, { message: "Workflow run not found" });
@@ -330,7 +376,10 @@ async function getWorkflowRunsHandler({
330
376
  if (!workflowId) {
331
377
  throw new HTTPException(400, { message: "Workflow ID is required" });
332
378
  }
333
- const workflow = mastra.getWorkflow(workflowId);
379
+ const { workflow } = await getWorkflowsFromSystem({ mastra, workflowId });
380
+ if (!workflow) {
381
+ throw new HTTPException(404, { message: "Workflow not found" });
382
+ }
334
383
  const workflowRuns = await workflow.getWorkflowRuns({ fromDate, toDate, limit, offset, resourceId }) || {
335
384
  runs: [],
336
385
  total: 0
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkXUGQSVZ4_cjs = require('./chunk-XUGQSVZ4.cjs');
3
+ var chunkASKESBJW_cjs = require('./chunk-ASKESBJW.cjs');
4
4
  var chunk57CJTIPW_cjs = require('./chunk-57CJTIPW.cjs');
5
5
  var chunk64U3UDTH_cjs = require('./chunk-64U3UDTH.cjs');
6
6
  var chunkOCWPVYNI_cjs = require('./chunk-OCWPVYNI.cjs');
@@ -25,8 +25,8 @@ async function getToolsHandler({ tools }) {
25
25
  const tool = _tool;
26
26
  acc[id] = {
27
27
  ...tool,
28
- inputSchema: tool.inputSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(tool.inputSchema)) : void 0,
29
- outputSchema: tool.outputSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(tool.outputSchema)) : void 0
28
+ inputSchema: tool.inputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(tool.inputSchema)) : void 0,
29
+ outputSchema: tool.outputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(tool.outputSchema)) : void 0
30
30
  };
31
31
  return acc;
32
32
  },
@@ -45,8 +45,8 @@ async function getToolByIdHandler({ tools, toolId }) {
45
45
  }
46
46
  const serializedTool = {
47
47
  ...tool,
48
- inputSchema: tool.inputSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(tool.inputSchema)) : void 0,
49
- outputSchema: tool.outputSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(tool.outputSchema)) : void 0
48
+ inputSchema: tool.inputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(tool.inputSchema)) : void 0,
49
+ outputSchema: tool.outputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(tool.outputSchema)) : void 0
50
50
  };
51
51
  return serializedTool;
52
52
  } catch (error) {
@@ -1,4 +1,4 @@
1
- import { stringify, esm_default } from './chunk-WKWHYFX4.js';
1
+ import { stringify, esm_default } from './chunk-TGJMNUYJ.js';
2
2
  import { validateBody } from './chunk-H5PTF3Y4.js';
3
3
  import { handleError } from './chunk-M5ABIP7D.js';
4
4
  import { HTTPException } from './chunk-NYN7KFXL.js';
@@ -101,7 +101,16 @@ async function getAgentByIdHandler({
101
101
  return {
102
102
  ...acc,
103
103
  [key]: {
104
- name: workflow.name
104
+ name: workflow.name,
105
+ steps: Object.entries(workflow.steps).reduce((acc2, [key2, step]) => {
106
+ return {
107
+ ...acc2,
108
+ [key2]: {
109
+ id: step.id,
110
+ description: step.description
111
+ }
112
+ };
113
+ }, {})
105
114
  }
106
115
  };
107
116
  }, {});
@@ -764,7 +764,7 @@ SuperJSON.registerCustom = SuperJSON.defaultInstance.registerCustom.bind(SuperJS
764
764
  SuperJSON.allowErrorProps = SuperJSON.defaultInstance.allowErrorProps.bind(SuperJSON.defaultInstance);
765
765
  var stringify = SuperJSON.stringify;
766
766
 
767
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/Options.js
767
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/Options.js
768
768
  var ignoreOverride = Symbol("Let zodToJsonSchema decide on which parser to use");
769
769
  var defaultOptions = {
770
770
  name: void 0,
@@ -797,7 +797,7 @@ var getDefaultOptions = (options) => typeof options === "string" ? {
797
797
  ...options
798
798
  };
799
799
 
800
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/Refs.js
800
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/Refs.js
801
801
  var getRefs = (options) => {
802
802
  const _options = getDefaultOptions(options);
803
803
  const currentPath = _options.name !== void 0 ? [..._options.basePath, _options.definitionPath, _options.name] : _options.basePath;
@@ -817,7 +817,7 @@ var getRefs = (options) => {
817
817
  };
818
818
  };
819
819
 
820
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/errorMessages.js
820
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/errorMessages.js
821
821
  function addErrorMessage(res, key, errorMessage, refs) {
822
822
  if (!refs?.errorMessages)
823
823
  return;
@@ -833,7 +833,7 @@ function setResponseValueAndErrors(res, key, value, errorMessage, refs) {
833
833
  addErrorMessage(res, key, errorMessage, refs);
834
834
  }
835
835
 
836
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/any.js
836
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/any.js
837
837
  function parseAnyDef() {
838
838
  return {};
839
839
  }
@@ -860,7 +860,7 @@ function parseArrayDef(def, refs) {
860
860
  return res;
861
861
  }
862
862
 
863
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js
863
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js
864
864
  function parseBigintDef(def, refs) {
865
865
  const res = {
866
866
  type: "integer",
@@ -906,24 +906,24 @@ function parseBigintDef(def, refs) {
906
906
  return res;
907
907
  }
908
908
 
909
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js
909
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js
910
910
  function parseBooleanDef() {
911
911
  return {
912
912
  type: "boolean"
913
913
  };
914
914
  }
915
915
 
916
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js
916
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js
917
917
  function parseBrandedDef(_def, refs) {
918
918
  return parseDef(_def.type._def, refs);
919
919
  }
920
920
 
921
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js
921
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js
922
922
  var parseCatchDef = (def, refs) => {
923
923
  return parseDef(def.innerType._def, refs);
924
924
  };
925
925
 
926
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/date.js
926
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/date.js
927
927
  function parseDateDef(def, refs, overrideDateStrategy) {
928
928
  const strategy = overrideDateStrategy ?? refs.dateStrategy;
929
929
  if (Array.isArray(strategy)) {
@@ -982,7 +982,7 @@ var integerDateParser = (def, refs) => {
982
982
  return res;
983
983
  };
984
984
 
985
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/default.js
985
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/default.js
986
986
  function parseDefaultDef(_def, refs) {
987
987
  return {
988
988
  ...parseDef(_def.innerType._def, refs),
@@ -990,12 +990,12 @@ function parseDefaultDef(_def, refs) {
990
990
  };
991
991
  }
992
992
 
993
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js
993
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js
994
994
  function parseEffectsDef(_def, refs) {
995
995
  return refs.effectStrategy === "input" ? parseDef(_def.schema._def, refs) : {};
996
996
  }
997
997
 
998
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js
998
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js
999
999
  function parseEnumDef(def) {
1000
1000
  return {
1001
1001
  type: "string",
@@ -1003,7 +1003,7 @@ function parseEnumDef(def) {
1003
1003
  };
1004
1004
  }
1005
1005
 
1006
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js
1006
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js
1007
1007
  var isJsonSchema7AllOfType = (type) => {
1008
1008
  if ("type" in type && type.type === "string")
1009
1009
  return false;
@@ -1045,7 +1045,7 @@ function parseIntersectionDef(def, refs) {
1045
1045
  } : void 0;
1046
1046
  }
1047
1047
 
1048
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js
1048
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js
1049
1049
  function parseLiteralDef(def, refs) {
1050
1050
  const parsedType = typeof def.value;
1051
1051
  if (parsedType !== "bigint" && parsedType !== "number" && parsedType !== "boolean" && parsedType !== "string") {
@@ -1065,7 +1065,7 @@ function parseLiteralDef(def, refs) {
1065
1065
  };
1066
1066
  }
1067
1067
 
1068
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/string.js
1068
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/string.js
1069
1069
  var emojiRegex = void 0;
1070
1070
  var zodPatterns = {
1071
1071
  /**
@@ -1377,7 +1377,7 @@ function stringifyRegExpWithFlags(regex, refs) {
1377
1377
  return pattern;
1378
1378
  }
1379
1379
 
1380
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/record.js
1380
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/record.js
1381
1381
  function parseRecordDef(def, refs) {
1382
1382
  if (refs.target === "openAi") {
1383
1383
  console.warn("Warning: OpenAI may not support records in schemas! Try an array of key-value pairs instead.");
@@ -1429,7 +1429,7 @@ function parseRecordDef(def, refs) {
1429
1429
  return schema;
1430
1430
  }
1431
1431
 
1432
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/map.js
1432
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/map.js
1433
1433
  function parseMapDef(def, refs) {
1434
1434
  if (refs.mapStrategy === "record") {
1435
1435
  return parseRecordDef(def, refs);
@@ -1454,7 +1454,7 @@ function parseMapDef(def, refs) {
1454
1454
  };
1455
1455
  }
1456
1456
 
1457
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js
1457
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js
1458
1458
  function parseNativeEnumDef(def) {
1459
1459
  const object = def.values;
1460
1460
  const actualKeys = Object.keys(def.values).filter((key) => {
@@ -1468,14 +1468,14 @@ function parseNativeEnumDef(def) {
1468
1468
  };
1469
1469
  }
1470
1470
 
1471
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/never.js
1471
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/never.js
1472
1472
  function parseNeverDef() {
1473
1473
  return {
1474
1474
  not: {}
1475
1475
  };
1476
1476
  }
1477
1477
 
1478
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/null.js
1478
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/null.js
1479
1479
  function parseNullDef(refs) {
1480
1480
  return refs.target === "openApi3" ? {
1481
1481
  enum: ["null"],
@@ -1485,7 +1485,7 @@ function parseNullDef(refs) {
1485
1485
  };
1486
1486
  }
1487
1487
 
1488
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/union.js
1488
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/union.js
1489
1489
  var primitiveMappings = {
1490
1490
  ZodString: "string",
1491
1491
  ZodNumber: "number",
@@ -1553,7 +1553,7 @@ var asAnyOf = (def, refs) => {
1553
1553
  return anyOf.length ? { anyOf } : void 0;
1554
1554
  };
1555
1555
 
1556
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js
1556
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js
1557
1557
  function parseNullableDef(def, refs) {
1558
1558
  if (["ZodString", "ZodNumber", "ZodBigInt", "ZodBoolean", "ZodNull"].includes(def.innerType._def.typeName) && (!def.innerType._def.checks || !def.innerType._def.checks.length)) {
1559
1559
  if (refs.target === "openApi3") {
@@ -1585,7 +1585,7 @@ function parseNullableDef(def, refs) {
1585
1585
  return base && { anyOf: [base, { type: "null" }] };
1586
1586
  }
1587
1587
 
1588
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/number.js
1588
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/number.js
1589
1589
  function parseNumberDef(def, refs) {
1590
1590
  const res = {
1591
1591
  type: "number"
@@ -1702,7 +1702,7 @@ function safeIsOptional(schema) {
1702
1702
  }
1703
1703
  }
1704
1704
 
1705
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js
1705
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js
1706
1706
  var parseOptionalDef = (def, refs) => {
1707
1707
  if (refs.currentPath.toString() === refs.propertyPath?.toString()) {
1708
1708
  return parseDef(def.innerType._def, refs);
@@ -1721,7 +1721,7 @@ var parseOptionalDef = (def, refs) => {
1721
1721
  } : {};
1722
1722
  };
1723
1723
 
1724
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js
1724
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js
1725
1725
  var parsePipelineDef = (def, refs) => {
1726
1726
  if (refs.pipeStrategy === "input") {
1727
1727
  return parseDef(def.in._def, refs);
@@ -1741,12 +1741,12 @@ var parsePipelineDef = (def, refs) => {
1741
1741
  };
1742
1742
  };
1743
1743
 
1744
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js
1744
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js
1745
1745
  function parsePromiseDef(def, refs) {
1746
1746
  return parseDef(def.type._def, refs);
1747
1747
  }
1748
1748
 
1749
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/set.js
1749
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/set.js
1750
1750
  function parseSetDef(def, refs) {
1751
1751
  const items = parseDef(def.valueType._def, {
1752
1752
  ...refs,
@@ -1766,7 +1766,7 @@ function parseSetDef(def, refs) {
1766
1766
  return schema;
1767
1767
  }
1768
1768
 
1769
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js
1769
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js
1770
1770
  function parseTupleDef(def, refs) {
1771
1771
  if (def.rest) {
1772
1772
  return {
@@ -1794,24 +1794,24 @@ function parseTupleDef(def, refs) {
1794
1794
  }
1795
1795
  }
1796
1796
 
1797
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js
1797
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js
1798
1798
  function parseUndefinedDef() {
1799
1799
  return {
1800
1800
  not: {}
1801
1801
  };
1802
1802
  }
1803
1803
 
1804
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js
1804
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js
1805
1805
  function parseUnknownDef() {
1806
1806
  return {};
1807
1807
  }
1808
1808
 
1809
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js
1809
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js
1810
1810
  var parseReadonlyDef = (def, refs) => {
1811
1811
  return parseDef(def.innerType._def, refs);
1812
1812
  };
1813
1813
 
1814
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/selectParser.js
1814
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/selectParser.js
1815
1815
  var selectParser = (def, typeName, refs) => {
1816
1816
  switch (typeName) {
1817
1817
  case ZodFirstPartyTypeKind.ZodString:
@@ -1887,7 +1887,7 @@ var selectParser = (def, typeName, refs) => {
1887
1887
  }
1888
1888
  };
1889
1889
 
1890
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/parseDef.js
1890
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parseDef.js
1891
1891
  function parseDef(def, refs, forceResolution = false) {
1892
1892
  const seenItem = refs.seen.get(def);
1893
1893
  if (refs.override) {
@@ -1951,7 +1951,7 @@ var addMeta = (def, refs, jsonSchema) => {
1951
1951
  return jsonSchema;
1952
1952
  };
1953
1953
 
1954
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js
1954
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js
1955
1955
  var zodToJsonSchema = (schema, options) => {
1956
1956
  const refs = getRefs(options);
1957
1957
  const definitions = typeof options === "object" && options.definitions ? Object.entries(options.definitions).reduce((acc, [name2, schema2]) => ({
@@ -1995,7 +1995,7 @@ var zodToJsonSchema = (schema, options) => {
1995
1995
  return combined;
1996
1996
  };
1997
1997
 
1998
- // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.56/node_modules/zod-to-json-schema/dist/esm/index.js
1998
+ // ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/index.js
1999
1999
  var esm_default = zodToJsonSchema;
2000
2000
 
2001
2001
  export { esm_default, stringify };
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkXUGQSVZ4_cjs = require('./chunk-XUGQSVZ4.cjs');
3
+ var chunkASKESBJW_cjs = require('./chunk-ASKESBJW.cjs');
4
4
  var chunk64U3UDTH_cjs = require('./chunk-64U3UDTH.cjs');
5
5
  var chunkOCWPVYNI_cjs = require('./chunk-OCWPVYNI.cjs');
6
6
  var chunk75ZPJI57_cjs = require('./chunk-75ZPJI57.cjs');
@@ -31,15 +31,15 @@ async function getLegacyWorkflowsHandler({ mastra }) {
31
31
  serializedStepGraph: workflow.serializedStepGraph,
32
32
  serializedStepSubscriberGraph: workflow.serializedStepSubscriberGraph,
33
33
  name: workflow.name,
34
- triggerSchema: workflow.triggerSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(workflow.triggerSchema)) : void 0,
34
+ triggerSchema: workflow.triggerSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(workflow.triggerSchema)) : void 0,
35
35
  steps: Object.entries(workflow.steps).reduce((acc2, [key2, step]) => {
36
36
  const _step = step;
37
37
  acc2[key2] = {
38
38
  id: _step.id,
39
39
  description: _step.description,
40
40
  workflowId: _step.workflowId,
41
- inputSchema: _step.inputSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(_step.inputSchema)) : void 0,
42
- outputSchema: _step.outputSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(_step.outputSchema)) : void 0
41
+ inputSchema: _step.inputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(_step.inputSchema)) : void 0,
42
+ outputSchema: _step.outputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(_step.outputSchema)) : void 0
43
43
  };
44
44
  return acc2;
45
45
  }, {})
@@ -66,15 +66,15 @@ async function getLegacyWorkflowByIdHandler({ mastra, workflowId }) {
66
66
  serializedStepGraph: workflow.serializedStepGraph,
67
67
  serializedStepSubscriberGraph: workflow.serializedStepSubscriberGraph,
68
68
  name: workflow.name,
69
- triggerSchema: workflow.triggerSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(workflow.triggerSchema)) : void 0,
69
+ triggerSchema: workflow.triggerSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(workflow.triggerSchema)) : void 0,
70
70
  steps: Object.entries(workflow.steps).reduce((acc, [key, step]) => {
71
71
  const _step = step;
72
72
  acc[key] = {
73
73
  id: _step.id,
74
74
  description: _step.description,
75
75
  workflowId: _step.workflowId,
76
- inputSchema: _step.inputSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(_step.inputSchema)) : void 0,
77
- outputSchema: _step.outputSchema ? chunkXUGQSVZ4_cjs.stringify(chunkXUGQSVZ4_cjs.esm_default(_step.outputSchema)) : void 0
76
+ inputSchema: _step.inputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(_step.inputSchema)) : void 0,
77
+ outputSchema: _step.outputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(_step.outputSchema)) : void 0
78
78
  };
79
79
  return acc;
80
80
  }, {})
@@ -1,30 +1,30 @@
1
1
  'use strict';
2
2
 
3
- var chunkP77X4SV2_cjs = require('../../chunk-P77X4SV2.cjs');
3
+ var chunk42YJ2YVD_cjs = require('../../chunk-42YJ2YVD.cjs');
4
4
 
5
5
 
6
6
 
7
7
  Object.defineProperty(exports, "generateHandler", {
8
8
  enumerable: true,
9
- get: function () { return chunkP77X4SV2_cjs.generateHandler; }
9
+ get: function () { return chunk42YJ2YVD_cjs.generateHandler; }
10
10
  });
11
11
  Object.defineProperty(exports, "getAgentByIdHandler", {
12
12
  enumerable: true,
13
- get: function () { return chunkP77X4SV2_cjs.getAgentByIdHandler; }
13
+ get: function () { return chunk42YJ2YVD_cjs.getAgentByIdHandler; }
14
14
  });
15
15
  Object.defineProperty(exports, "getAgentsHandler", {
16
16
  enumerable: true,
17
- get: function () { return chunkP77X4SV2_cjs.getAgentsHandler; }
17
+ get: function () { return chunk42YJ2YVD_cjs.getAgentsHandler; }
18
18
  });
19
19
  Object.defineProperty(exports, "getEvalsByAgentIdHandler", {
20
20
  enumerable: true,
21
- get: function () { return chunkP77X4SV2_cjs.getEvalsByAgentIdHandler; }
21
+ get: function () { return chunk42YJ2YVD_cjs.getEvalsByAgentIdHandler; }
22
22
  });
23
23
  Object.defineProperty(exports, "getLiveEvalsByAgentIdHandler", {
24
24
  enumerable: true,
25
- get: function () { return chunkP77X4SV2_cjs.getLiveEvalsByAgentIdHandler; }
25
+ get: function () { return chunk42YJ2YVD_cjs.getLiveEvalsByAgentIdHandler; }
26
26
  });
27
27
  Object.defineProperty(exports, "streamGenerateHandler", {
28
28
  enumerable: true,
29
- get: function () { return chunkP77X4SV2_cjs.streamGenerateHandler; }
29
+ get: function () { return chunk42YJ2YVD_cjs.streamGenerateHandler; }
30
30
  });
@@ -1 +1 @@
1
- export { generateHandler, getAgentByIdHandler, getAgentsHandler, getEvalsByAgentIdHandler, getLiveEvalsByAgentIdHandler, streamGenerateHandler } from '../../chunk-6MQO3273.js';
1
+ export { generateHandler, getAgentByIdHandler, getAgentsHandler, getEvalsByAgentIdHandler, getLiveEvalsByAgentIdHandler, streamGenerateHandler } from '../../chunk-O2YAAFY3.js';
@@ -1,46 +1,46 @@
1
1
  'use strict';
2
2
 
3
- var chunkUZ7FJ66C_cjs = require('../../chunk-UZ7FJ66C.cjs');
3
+ var chunkWE32JG64_cjs = require('../../chunk-WE32JG64.cjs');
4
4
 
5
5
 
6
6
 
7
7
  Object.defineProperty(exports, "createLegacyWorkflowRunHandler", {
8
8
  enumerable: true,
9
- get: function () { return chunkUZ7FJ66C_cjs.createLegacyWorkflowRunHandler; }
9
+ get: function () { return chunkWE32JG64_cjs.createLegacyWorkflowRunHandler; }
10
10
  });
11
11
  Object.defineProperty(exports, "getLegacyWorkflowByIdHandler", {
12
12
  enumerable: true,
13
- get: function () { return chunkUZ7FJ66C_cjs.getLegacyWorkflowByIdHandler; }
13
+ get: function () { return chunkWE32JG64_cjs.getLegacyWorkflowByIdHandler; }
14
14
  });
15
15
  Object.defineProperty(exports, "getLegacyWorkflowRunHandler", {
16
16
  enumerable: true,
17
- get: function () { return chunkUZ7FJ66C_cjs.getLegacyWorkflowRunHandler; }
17
+ get: function () { return chunkWE32JG64_cjs.getLegacyWorkflowRunHandler; }
18
18
  });
19
19
  Object.defineProperty(exports, "getLegacyWorkflowRunsHandler", {
20
20
  enumerable: true,
21
- get: function () { return chunkUZ7FJ66C_cjs.getLegacyWorkflowRunsHandler; }
21
+ get: function () { return chunkWE32JG64_cjs.getLegacyWorkflowRunsHandler; }
22
22
  });
23
23
  Object.defineProperty(exports, "getLegacyWorkflowsHandler", {
24
24
  enumerable: true,
25
- get: function () { return chunkUZ7FJ66C_cjs.getLegacyWorkflowsHandler; }
25
+ get: function () { return chunkWE32JG64_cjs.getLegacyWorkflowsHandler; }
26
26
  });
27
27
  Object.defineProperty(exports, "resumeAsyncLegacyWorkflowHandler", {
28
28
  enumerable: true,
29
- get: function () { return chunkUZ7FJ66C_cjs.resumeAsyncLegacyWorkflowHandler; }
29
+ get: function () { return chunkWE32JG64_cjs.resumeAsyncLegacyWorkflowHandler; }
30
30
  });
31
31
  Object.defineProperty(exports, "resumeLegacyWorkflowHandler", {
32
32
  enumerable: true,
33
- get: function () { return chunkUZ7FJ66C_cjs.resumeLegacyWorkflowHandler; }
33
+ get: function () { return chunkWE32JG64_cjs.resumeLegacyWorkflowHandler; }
34
34
  });
35
35
  Object.defineProperty(exports, "startAsyncLegacyWorkflowHandler", {
36
36
  enumerable: true,
37
- get: function () { return chunkUZ7FJ66C_cjs.startAsyncLegacyWorkflowHandler; }
37
+ get: function () { return chunkWE32JG64_cjs.startAsyncLegacyWorkflowHandler; }
38
38
  });
39
39
  Object.defineProperty(exports, "startLegacyWorkflowRunHandler", {
40
40
  enumerable: true,
41
- get: function () { return chunkUZ7FJ66C_cjs.startLegacyWorkflowRunHandler; }
41
+ get: function () { return chunkWE32JG64_cjs.startLegacyWorkflowRunHandler; }
42
42
  });
43
43
  Object.defineProperty(exports, "watchLegacyWorkflowHandler", {
44
44
  enumerable: true,
45
- get: function () { return chunkUZ7FJ66C_cjs.watchLegacyWorkflowHandler; }
45
+ get: function () { return chunkWE32JG64_cjs.watchLegacyWorkflowHandler; }
46
46
  });
@@ -1 +1 @@
1
- export { createLegacyWorkflowRunHandler, getLegacyWorkflowByIdHandler, getLegacyWorkflowRunHandler, getLegacyWorkflowRunsHandler, getLegacyWorkflowsHandler, resumeAsyncLegacyWorkflowHandler, resumeLegacyWorkflowHandler, startAsyncLegacyWorkflowHandler, startLegacyWorkflowRunHandler, watchLegacyWorkflowHandler } from '../../chunk-TEZOEGR4.js';
1
+ export { createLegacyWorkflowRunHandler, getLegacyWorkflowByIdHandler, getLegacyWorkflowRunHandler, getLegacyWorkflowRunsHandler, getLegacyWorkflowsHandler, resumeAsyncLegacyWorkflowHandler, resumeLegacyWorkflowHandler, startAsyncLegacyWorkflowHandler, startLegacyWorkflowRunHandler, watchLegacyWorkflowHandler } from '../../chunk-CLYX4KLH.js';