@mastra/server 0.10.5 → 0.10.6-alpha.1
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/dist/_tsup-dts-rollup.d.cts +17 -13
- package/dist/_tsup-dts-rollup.d.ts +17 -13
- package/dist/{chunk-HYP7B2TL.js → chunk-2HXKRRNS.js} +1 -1
- package/dist/{chunk-JEWNMAYQ.cjs → chunk-42YJ2YVD.cjs} +5 -5
- package/dist/{chunk-XUGQSVZ4.cjs → chunk-ASKESBJW.cjs} +35 -35
- package/dist/{chunk-TEZOEGR4.js → chunk-CLYX4KLH.js} +1 -1
- package/dist/{chunk-JKF6PRPU.cjs → chunk-FRXZL32L.cjs} +143 -29
- package/dist/{chunk-7IBZ4L35.js → chunk-JKTNRUKY.js} +131 -18
- package/dist/{chunk-TJO277H7.cjs → chunk-NGURCFEJ.cjs} +5 -5
- package/dist/{chunk-6F2H7Y45.js → chunk-O2YAAFY3.js} +1 -1
- package/dist/{chunk-WKWHYFX4.js → chunk-TGJMNUYJ.js} +35 -35
- package/dist/{chunk-UZ7FJ66C.cjs → chunk-WE32JG64.cjs} +7 -7
- package/dist/server/handlers/agents.cjs +7 -7
- package/dist/server/handlers/agents.js +1 -1
- package/dist/server/handlers/legacyWorkflows.cjs +11 -11
- package/dist/server/handlers/legacyWorkflows.js +1 -1
- package/dist/server/handlers/tools.cjs +5 -5
- package/dist/server/handlers/tools.js +1 -1
- package/dist/server/handlers/workflows.cjs +16 -12
- package/dist/server/handlers/workflows.d.cts +1 -0
- package/dist/server/handlers/workflows.d.ts +1 -0
- package/dist/server/handlers/workflows.js +1 -1
- package/dist/server/handlers.cjs +8 -8
- package/dist/server/handlers.js +4 -4
- package/package.json +5 -6
|
@@ -40,6 +40,7 @@ import type { TaskStatus } from '@mastra/core/a2a';
|
|
|
40
40
|
import type { ToolAction } from '@mastra/core/tools';
|
|
41
41
|
import { UIMessage } from 'ai';
|
|
42
42
|
import type { VercelTool } from '@mastra/core/tools';
|
|
43
|
+
import type { WatchEvent } from '@mastra/core/workflows';
|
|
43
44
|
import type { Workflow } from '@mastra/core/workflows';
|
|
44
45
|
import { WorkflowContext as WorkflowContext_2 } from '@mastra/core/workflows/legacy';
|
|
45
46
|
import { WorkflowResult } from '@mastra/core/workflows';
|
|
@@ -159,7 +160,7 @@ export declare function generateHandler({ mastra, runtimeContext, agentId, body,
|
|
|
159
160
|
resourceid?: string;
|
|
160
161
|
runtimeContext?: Record<string, unknown>;
|
|
161
162
|
};
|
|
162
|
-
}): Promise<GenerateTextResult<any,
|
|
163
|
+
}): Promise<GenerateTextResult<any, unknown>>;
|
|
163
164
|
|
|
164
165
|
export declare function generateHandler_alias_1({ mastra, runtimeContext, networkId, body, }: NetworkContext & {
|
|
165
166
|
runtimeContext: RuntimeContext;
|
|
@@ -362,6 +363,8 @@ export declare function getWorkflowByIdHandler({ mastra, workflowId }: WorkflowC
|
|
|
362
363
|
|
|
363
364
|
export declare function getWorkflowRunByIdHandler({ mastra, workflowId, runId, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'>): Promise<ReturnType<Workflow['getWorkflowRunById']>>;
|
|
364
365
|
|
|
366
|
+
export declare function getWorkflowRunExecutionResultHandler({ mastra, workflowId, runId, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'>): Promise<WatchEvent['payload']['workflowState']>;
|
|
367
|
+
|
|
365
368
|
export declare function getWorkflowRunsHandler({ mastra, workflowId, fromDate, toDate, limit, offset, resourceId, }: WorkflowContext_3 & {
|
|
366
369
|
fromDate?: Date;
|
|
367
370
|
toDate?: Date;
|
|
@@ -598,12 +601,12 @@ export declare function resumeAsyncLegacyWorkflowHandler({ mastra, workflowId, r
|
|
|
598
601
|
runtimeContext: RuntimeContext;
|
|
599
602
|
}): Promise<Omit<LegacyWorkflowRunResult<any, LegacyStep<string, any, any, StepExecutionContext<any, WorkflowContext_2<any, LegacyStep<string, any, any, any>[], Record<string, any>>>>[], any>, "runId"> | undefined>;
|
|
600
603
|
|
|
601
|
-
export declare function resumeAsyncWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext, }: WorkflowContext_3 & {
|
|
604
|
+
export declare function resumeAsyncWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext: payloadRuntimeContext, }: WorkflowContext_3 & {
|
|
602
605
|
body: {
|
|
603
606
|
step: string | string[];
|
|
604
607
|
resumeData?: unknown;
|
|
605
608
|
};
|
|
606
|
-
runtimeContext?:
|
|
609
|
+
runtimeContext?: Record<string, any>;
|
|
607
610
|
}): Promise<WorkflowResult<ZodType<any, ZodTypeDef, any>, Step<string, any, any, any, any, any>[]>>;
|
|
608
611
|
|
|
609
612
|
export declare function resumeLegacyWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext, }: WorkflowContext & {
|
|
@@ -616,12 +619,12 @@ export declare function resumeLegacyWorkflowHandler({ mastra, workflowId, runId,
|
|
|
616
619
|
message: string;
|
|
617
620
|
}>;
|
|
618
621
|
|
|
619
|
-
export declare function resumeWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext, }: WorkflowContext_3 & {
|
|
622
|
+
export declare function resumeWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext: payloadRuntimeContext, }: WorkflowContext_3 & {
|
|
620
623
|
body: {
|
|
621
624
|
step: string | string[];
|
|
622
625
|
resumeData?: unknown;
|
|
623
626
|
};
|
|
624
|
-
runtimeContext?:
|
|
627
|
+
runtimeContext?: Record<string, any>;
|
|
625
628
|
}): Promise<{
|
|
626
629
|
message: string;
|
|
627
630
|
}>;
|
|
@@ -648,9 +651,9 @@ export declare function startAsyncLegacyWorkflowHandler({ mastra, runtimeContext
|
|
|
648
651
|
runtimeContext: RuntimeContext;
|
|
649
652
|
}): Promise<LegacyWorkflowRunResult<any, LegacyStep<string, any, any, StepExecutionContext<any, WorkflowContext_2<any, LegacyStep<string, any, any, any>[], Record<string, any>>>>[], any>>;
|
|
650
653
|
|
|
651
|
-
export declare function startAsyncWorkflowHandler({ mastra, runtimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
654
|
+
export declare function startAsyncWorkflowHandler({ mastra, runtimeContext: payloadRuntimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
652
655
|
inputData?: unknown;
|
|
653
|
-
runtimeContext?:
|
|
656
|
+
runtimeContext?: Record<string, any>;
|
|
654
657
|
}): Promise<WorkflowResult<ZodType<any, ZodTypeDef, any>, Step<string, any, any, any, any, any>[]>>;
|
|
655
658
|
|
|
656
659
|
export declare function startLegacyWorkflowRunHandler({ mastra, runtimeContext, workflowId, runId, triggerData, }: Pick<WorkflowContext, 'mastra' | 'workflowId' | 'runId'> & {
|
|
@@ -660,9 +663,9 @@ export declare function startLegacyWorkflowRunHandler({ mastra, runtimeContext,
|
|
|
660
663
|
message: string;
|
|
661
664
|
}>;
|
|
662
665
|
|
|
663
|
-
export declare function startWorkflowRunHandler({ mastra, runtimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
666
|
+
export declare function startWorkflowRunHandler({ mastra, runtimeContext: payloadRuntimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
664
667
|
inputData?: unknown;
|
|
665
|
-
runtimeContext?:
|
|
668
|
+
runtimeContext?: Record<string, any>;
|
|
666
669
|
}): Promise<{
|
|
667
670
|
message: string;
|
|
668
671
|
}>;
|
|
@@ -706,13 +709,13 @@ export declare function streamGenerateHandler_alias_1({ mastra, networkId, body,
|
|
|
706
709
|
} & Parameters<AgentNetwork['stream']>[1];
|
|
707
710
|
}): Promise<Response>;
|
|
708
711
|
|
|
709
|
-
export declare function streamWorkflowHandler({ mastra, runtimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
712
|
+
export declare function streamWorkflowHandler({ mastra, runtimeContext: payloadRuntimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
710
713
|
inputData?: unknown;
|
|
711
|
-
runtimeContext?:
|
|
712
|
-
}): {
|
|
714
|
+
runtimeContext?: Record<string, any>;
|
|
715
|
+
}): Promise<{
|
|
713
716
|
stream: globalThis.ReadableStream<StreamEvent>;
|
|
714
717
|
getWorkflowState: () => Promise<WorkflowResult<ZodType<any, ZodTypeDef, any>, Step<string, any, any, any, any, any>[]>>;
|
|
715
|
-
}
|
|
718
|
+
}>;
|
|
716
719
|
|
|
717
720
|
declare type SuccessStatusCode = 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 226;
|
|
718
721
|
|
|
@@ -846,6 +849,7 @@ export declare namespace workflows {
|
|
|
846
849
|
getWorkflowsHandler,
|
|
847
850
|
getWorkflowByIdHandler,
|
|
848
851
|
getWorkflowRunByIdHandler,
|
|
852
|
+
getWorkflowRunExecutionResultHandler,
|
|
849
853
|
createWorkflowRunHandler,
|
|
850
854
|
startAsyncWorkflowHandler,
|
|
851
855
|
startWorkflowRunHandler,
|
|
@@ -40,6 +40,7 @@ import type { TaskStatus } from '@mastra/core/a2a';
|
|
|
40
40
|
import type { ToolAction } from '@mastra/core/tools';
|
|
41
41
|
import { UIMessage } from 'ai';
|
|
42
42
|
import type { VercelTool } from '@mastra/core/tools';
|
|
43
|
+
import type { WatchEvent } from '@mastra/core/workflows';
|
|
43
44
|
import type { Workflow } from '@mastra/core/workflows';
|
|
44
45
|
import { WorkflowContext as WorkflowContext_2 } from '@mastra/core/workflows/legacy';
|
|
45
46
|
import { WorkflowResult } from '@mastra/core/workflows';
|
|
@@ -159,7 +160,7 @@ export declare function generateHandler({ mastra, runtimeContext, agentId, body,
|
|
|
159
160
|
resourceid?: string;
|
|
160
161
|
runtimeContext?: Record<string, unknown>;
|
|
161
162
|
};
|
|
162
|
-
}): Promise<GenerateTextResult<any,
|
|
163
|
+
}): Promise<GenerateTextResult<any, unknown>>;
|
|
163
164
|
|
|
164
165
|
export declare function generateHandler_alias_1({ mastra, runtimeContext, networkId, body, }: NetworkContext & {
|
|
165
166
|
runtimeContext: RuntimeContext;
|
|
@@ -362,6 +363,8 @@ export declare function getWorkflowByIdHandler({ mastra, workflowId }: WorkflowC
|
|
|
362
363
|
|
|
363
364
|
export declare function getWorkflowRunByIdHandler({ mastra, workflowId, runId, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'>): Promise<ReturnType<Workflow['getWorkflowRunById']>>;
|
|
364
365
|
|
|
366
|
+
export declare function getWorkflowRunExecutionResultHandler({ mastra, workflowId, runId, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'>): Promise<WatchEvent['payload']['workflowState']>;
|
|
367
|
+
|
|
365
368
|
export declare function getWorkflowRunsHandler({ mastra, workflowId, fromDate, toDate, limit, offset, resourceId, }: WorkflowContext_3 & {
|
|
366
369
|
fromDate?: Date;
|
|
367
370
|
toDate?: Date;
|
|
@@ -598,12 +601,12 @@ export declare function resumeAsyncLegacyWorkflowHandler({ mastra, workflowId, r
|
|
|
598
601
|
runtimeContext: RuntimeContext;
|
|
599
602
|
}): Promise<Omit<LegacyWorkflowRunResult<any, LegacyStep<string, any, any, StepExecutionContext<any, WorkflowContext_2<any, LegacyStep<string, any, any, any>[], Record<string, any>>>>[], any>, "runId"> | undefined>;
|
|
600
603
|
|
|
601
|
-
export declare function resumeAsyncWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext, }: WorkflowContext_3 & {
|
|
604
|
+
export declare function resumeAsyncWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext: payloadRuntimeContext, }: WorkflowContext_3 & {
|
|
602
605
|
body: {
|
|
603
606
|
step: string | string[];
|
|
604
607
|
resumeData?: unknown;
|
|
605
608
|
};
|
|
606
|
-
runtimeContext?:
|
|
609
|
+
runtimeContext?: Record<string, any>;
|
|
607
610
|
}): Promise<WorkflowResult<ZodType<any, ZodTypeDef, any>, Step<string, any, any, any, any, any>[]>>;
|
|
608
611
|
|
|
609
612
|
export declare function resumeLegacyWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext, }: WorkflowContext & {
|
|
@@ -616,12 +619,12 @@ export declare function resumeLegacyWorkflowHandler({ mastra, workflowId, runId,
|
|
|
616
619
|
message: string;
|
|
617
620
|
}>;
|
|
618
621
|
|
|
619
|
-
export declare function resumeWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext, }: WorkflowContext_3 & {
|
|
622
|
+
export declare function resumeWorkflowHandler({ mastra, workflowId, runId, body, runtimeContext: payloadRuntimeContext, }: WorkflowContext_3 & {
|
|
620
623
|
body: {
|
|
621
624
|
step: string | string[];
|
|
622
625
|
resumeData?: unknown;
|
|
623
626
|
};
|
|
624
|
-
runtimeContext?:
|
|
627
|
+
runtimeContext?: Record<string, any>;
|
|
625
628
|
}): Promise<{
|
|
626
629
|
message: string;
|
|
627
630
|
}>;
|
|
@@ -648,9 +651,9 @@ export declare function startAsyncLegacyWorkflowHandler({ mastra, runtimeContext
|
|
|
648
651
|
runtimeContext: RuntimeContext;
|
|
649
652
|
}): Promise<LegacyWorkflowRunResult<any, LegacyStep<string, any, any, StepExecutionContext<any, WorkflowContext_2<any, LegacyStep<string, any, any, any>[], Record<string, any>>>>[], any>>;
|
|
650
653
|
|
|
651
|
-
export declare function startAsyncWorkflowHandler({ mastra, runtimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
654
|
+
export declare function startAsyncWorkflowHandler({ mastra, runtimeContext: payloadRuntimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
652
655
|
inputData?: unknown;
|
|
653
|
-
runtimeContext?:
|
|
656
|
+
runtimeContext?: Record<string, any>;
|
|
654
657
|
}): Promise<WorkflowResult<ZodType<any, ZodTypeDef, any>, Step<string, any, any, any, any, any>[]>>;
|
|
655
658
|
|
|
656
659
|
export declare function startLegacyWorkflowRunHandler({ mastra, runtimeContext, workflowId, runId, triggerData, }: Pick<WorkflowContext, 'mastra' | 'workflowId' | 'runId'> & {
|
|
@@ -660,9 +663,9 @@ export declare function startLegacyWorkflowRunHandler({ mastra, runtimeContext,
|
|
|
660
663
|
message: string;
|
|
661
664
|
}>;
|
|
662
665
|
|
|
663
|
-
export declare function startWorkflowRunHandler({ mastra, runtimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
666
|
+
export declare function startWorkflowRunHandler({ mastra, runtimeContext: payloadRuntimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
664
667
|
inputData?: unknown;
|
|
665
|
-
runtimeContext?:
|
|
668
|
+
runtimeContext?: Record<string, any>;
|
|
666
669
|
}): Promise<{
|
|
667
670
|
message: string;
|
|
668
671
|
}>;
|
|
@@ -706,13 +709,13 @@ export declare function streamGenerateHandler_alias_1({ mastra, networkId, body,
|
|
|
706
709
|
} & Parameters<AgentNetwork['stream']>[1];
|
|
707
710
|
}): Promise<Response>;
|
|
708
711
|
|
|
709
|
-
export declare function streamWorkflowHandler({ mastra, runtimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
712
|
+
export declare function streamWorkflowHandler({ mastra, runtimeContext: payloadRuntimeContext, workflowId, runId, inputData, }: Pick<WorkflowContext_3, 'mastra' | 'workflowId' | 'runId'> & {
|
|
710
713
|
inputData?: unknown;
|
|
711
|
-
runtimeContext?:
|
|
712
|
-
}): {
|
|
714
|
+
runtimeContext?: Record<string, any>;
|
|
715
|
+
}): Promise<{
|
|
713
716
|
stream: globalThis.ReadableStream<StreamEvent>;
|
|
714
717
|
getWorkflowState: () => Promise<WorkflowResult<ZodType<any, ZodTypeDef, any>, Step<string, any, any, any, any, any>[]>>;
|
|
715
|
-
}
|
|
718
|
+
}>;
|
|
716
719
|
|
|
717
720
|
declare type SuccessStatusCode = 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 226;
|
|
718
721
|
|
|
@@ -846,6 +849,7 @@ export declare namespace workflows {
|
|
|
846
849
|
getWorkflowsHandler,
|
|
847
850
|
getWorkflowByIdHandler,
|
|
848
851
|
getWorkflowRunByIdHandler,
|
|
852
|
+
getWorkflowRunExecutionResultHandler,
|
|
849
853
|
createWorkflowRunHandler,
|
|
850
854
|
startAsyncWorkflowHandler,
|
|
851
855
|
startWorkflowRunHandler,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { stringify, esm_default } from './chunk-
|
|
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';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
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');
|
|
@@ -29,8 +29,8 @@ async function getAgentsHandler({ mastra, runtimeContext }) {
|
|
|
29
29
|
const _tool = tool;
|
|
30
30
|
acc[key] = {
|
|
31
31
|
..._tool,
|
|
32
|
-
inputSchema: _tool.inputSchema ?
|
|
33
|
-
outputSchema: _tool.outputSchema ?
|
|
32
|
+
inputSchema: _tool.inputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(_tool.inputSchema)) : void 0,
|
|
33
|
+
outputSchema: _tool.outputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(_tool.outputSchema)) : void 0
|
|
34
34
|
};
|
|
35
35
|
return acc;
|
|
36
36
|
}, {});
|
|
@@ -89,8 +89,8 @@ async function getAgentByIdHandler({
|
|
|
89
89
|
const _tool = tool;
|
|
90
90
|
acc[key] = {
|
|
91
91
|
..._tool,
|
|
92
|
-
inputSchema: _tool.inputSchema ?
|
|
93
|
-
outputSchema: _tool.outputSchema ?
|
|
92
|
+
inputSchema: _tool.inputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(_tool.inputSchema)) : void 0,
|
|
93
|
+
outputSchema: _tool.outputSchema ? chunkASKESBJW_cjs.stringify(chunkASKESBJW_cjs.esm_default(_tool.outputSchema)) : void 0
|
|
94
94
|
};
|
|
95
95
|
return acc;
|
|
96
96
|
}, {});
|
|
@@ -766,7 +766,7 @@ SuperJSON.registerCustom = SuperJSON.defaultInstance.registerCustom.bind(SuperJS
|
|
|
766
766
|
SuperJSON.allowErrorProps = SuperJSON.defaultInstance.allowErrorProps.bind(SuperJSON.defaultInstance);
|
|
767
767
|
var stringify = SuperJSON.stringify;
|
|
768
768
|
|
|
769
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
769
|
+
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/Options.js
|
|
770
770
|
var ignoreOverride = Symbol("Let zodToJsonSchema decide on which parser to use");
|
|
771
771
|
var defaultOptions = {
|
|
772
772
|
name: void 0,
|
|
@@ -799,7 +799,7 @@ var getDefaultOptions = (options) => typeof options === "string" ? {
|
|
|
799
799
|
...options
|
|
800
800
|
};
|
|
801
801
|
|
|
802
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
802
|
+
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/Refs.js
|
|
803
803
|
var getRefs = (options) => {
|
|
804
804
|
const _options = getDefaultOptions(options);
|
|
805
805
|
const currentPath = _options.name !== void 0 ? [..._options.basePath, _options.definitionPath, _options.name] : _options.basePath;
|
|
@@ -819,7 +819,7 @@ var getRefs = (options) => {
|
|
|
819
819
|
};
|
|
820
820
|
};
|
|
821
821
|
|
|
822
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
822
|
+
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/errorMessages.js
|
|
823
823
|
function addErrorMessage(res, key, errorMessage, refs) {
|
|
824
824
|
if (!refs?.errorMessages)
|
|
825
825
|
return;
|
|
@@ -835,7 +835,7 @@ function setResponseValueAndErrors(res, key, value, errorMessage, refs) {
|
|
|
835
835
|
addErrorMessage(res, key, errorMessage, refs);
|
|
836
836
|
}
|
|
837
837
|
|
|
838
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
838
|
+
// ../../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
|
|
839
839
|
function parseAnyDef() {
|
|
840
840
|
return {};
|
|
841
841
|
}
|
|
@@ -862,7 +862,7 @@ function parseArrayDef(def, refs) {
|
|
|
862
862
|
return res;
|
|
863
863
|
}
|
|
864
864
|
|
|
865
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
865
|
+
// ../../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
|
|
866
866
|
function parseBigintDef(def, refs) {
|
|
867
867
|
const res = {
|
|
868
868
|
type: "integer",
|
|
@@ -908,24 +908,24 @@ function parseBigintDef(def, refs) {
|
|
|
908
908
|
return res;
|
|
909
909
|
}
|
|
910
910
|
|
|
911
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
911
|
+
// ../../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
|
|
912
912
|
function parseBooleanDef() {
|
|
913
913
|
return {
|
|
914
914
|
type: "boolean"
|
|
915
915
|
};
|
|
916
916
|
}
|
|
917
917
|
|
|
918
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
918
|
+
// ../../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
|
|
919
919
|
function parseBrandedDef(_def, refs) {
|
|
920
920
|
return parseDef(_def.type._def, refs);
|
|
921
921
|
}
|
|
922
922
|
|
|
923
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
923
|
+
// ../../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
|
|
924
924
|
var parseCatchDef = (def, refs) => {
|
|
925
925
|
return parseDef(def.innerType._def, refs);
|
|
926
926
|
};
|
|
927
927
|
|
|
928
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
928
|
+
// ../../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
|
|
929
929
|
function parseDateDef(def, refs, overrideDateStrategy) {
|
|
930
930
|
const strategy = overrideDateStrategy ?? refs.dateStrategy;
|
|
931
931
|
if (Array.isArray(strategy)) {
|
|
@@ -984,7 +984,7 @@ var integerDateParser = (def, refs) => {
|
|
|
984
984
|
return res;
|
|
985
985
|
};
|
|
986
986
|
|
|
987
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
987
|
+
// ../../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
|
|
988
988
|
function parseDefaultDef(_def, refs) {
|
|
989
989
|
return {
|
|
990
990
|
...parseDef(_def.innerType._def, refs),
|
|
@@ -992,12 +992,12 @@ function parseDefaultDef(_def, refs) {
|
|
|
992
992
|
};
|
|
993
993
|
}
|
|
994
994
|
|
|
995
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
995
|
+
// ../../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
|
|
996
996
|
function parseEffectsDef(_def, refs) {
|
|
997
997
|
return refs.effectStrategy === "input" ? parseDef(_def.schema._def, refs) : {};
|
|
998
998
|
}
|
|
999
999
|
|
|
1000
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1000
|
+
// ../../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
|
|
1001
1001
|
function parseEnumDef(def) {
|
|
1002
1002
|
return {
|
|
1003
1003
|
type: "string",
|
|
@@ -1005,7 +1005,7 @@ function parseEnumDef(def) {
|
|
|
1005
1005
|
};
|
|
1006
1006
|
}
|
|
1007
1007
|
|
|
1008
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1008
|
+
// ../../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
|
|
1009
1009
|
var isJsonSchema7AllOfType = (type) => {
|
|
1010
1010
|
if ("type" in type && type.type === "string")
|
|
1011
1011
|
return false;
|
|
@@ -1047,7 +1047,7 @@ function parseIntersectionDef(def, refs) {
|
|
|
1047
1047
|
} : void 0;
|
|
1048
1048
|
}
|
|
1049
1049
|
|
|
1050
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1050
|
+
// ../../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
|
|
1051
1051
|
function parseLiteralDef(def, refs) {
|
|
1052
1052
|
const parsedType = typeof def.value;
|
|
1053
1053
|
if (parsedType !== "bigint" && parsedType !== "number" && parsedType !== "boolean" && parsedType !== "string") {
|
|
@@ -1067,7 +1067,7 @@ function parseLiteralDef(def, refs) {
|
|
|
1067
1067
|
};
|
|
1068
1068
|
}
|
|
1069
1069
|
|
|
1070
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1070
|
+
// ../../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
|
|
1071
1071
|
var emojiRegex = void 0;
|
|
1072
1072
|
var zodPatterns = {
|
|
1073
1073
|
/**
|
|
@@ -1379,7 +1379,7 @@ function stringifyRegExpWithFlags(regex, refs) {
|
|
|
1379
1379
|
return pattern;
|
|
1380
1380
|
}
|
|
1381
1381
|
|
|
1382
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1382
|
+
// ../../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
|
|
1383
1383
|
function parseRecordDef(def, refs) {
|
|
1384
1384
|
if (refs.target === "openAi") {
|
|
1385
1385
|
console.warn("Warning: OpenAI may not support records in schemas! Try an array of key-value pairs instead.");
|
|
@@ -1431,7 +1431,7 @@ function parseRecordDef(def, refs) {
|
|
|
1431
1431
|
return schema;
|
|
1432
1432
|
}
|
|
1433
1433
|
|
|
1434
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1434
|
+
// ../../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
|
|
1435
1435
|
function parseMapDef(def, refs) {
|
|
1436
1436
|
if (refs.mapStrategy === "record") {
|
|
1437
1437
|
return parseRecordDef(def, refs);
|
|
@@ -1456,7 +1456,7 @@ function parseMapDef(def, refs) {
|
|
|
1456
1456
|
};
|
|
1457
1457
|
}
|
|
1458
1458
|
|
|
1459
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1459
|
+
// ../../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
|
|
1460
1460
|
function parseNativeEnumDef(def) {
|
|
1461
1461
|
const object = def.values;
|
|
1462
1462
|
const actualKeys = Object.keys(def.values).filter((key) => {
|
|
@@ -1470,14 +1470,14 @@ function parseNativeEnumDef(def) {
|
|
|
1470
1470
|
};
|
|
1471
1471
|
}
|
|
1472
1472
|
|
|
1473
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1473
|
+
// ../../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
|
|
1474
1474
|
function parseNeverDef() {
|
|
1475
1475
|
return {
|
|
1476
1476
|
not: {}
|
|
1477
1477
|
};
|
|
1478
1478
|
}
|
|
1479
1479
|
|
|
1480
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1480
|
+
// ../../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
|
|
1481
1481
|
function parseNullDef(refs) {
|
|
1482
1482
|
return refs.target === "openApi3" ? {
|
|
1483
1483
|
enum: ["null"],
|
|
@@ -1487,7 +1487,7 @@ function parseNullDef(refs) {
|
|
|
1487
1487
|
};
|
|
1488
1488
|
}
|
|
1489
1489
|
|
|
1490
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1490
|
+
// ../../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
|
|
1491
1491
|
var primitiveMappings = {
|
|
1492
1492
|
ZodString: "string",
|
|
1493
1493
|
ZodNumber: "number",
|
|
@@ -1555,7 +1555,7 @@ var asAnyOf = (def, refs) => {
|
|
|
1555
1555
|
return anyOf.length ? { anyOf } : void 0;
|
|
1556
1556
|
};
|
|
1557
1557
|
|
|
1558
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1558
|
+
// ../../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
|
|
1559
1559
|
function parseNullableDef(def, refs) {
|
|
1560
1560
|
if (["ZodString", "ZodNumber", "ZodBigInt", "ZodBoolean", "ZodNull"].includes(def.innerType._def.typeName) && (!def.innerType._def.checks || !def.innerType._def.checks.length)) {
|
|
1561
1561
|
if (refs.target === "openApi3") {
|
|
@@ -1587,7 +1587,7 @@ function parseNullableDef(def, refs) {
|
|
|
1587
1587
|
return base && { anyOf: [base, { type: "null" }] };
|
|
1588
1588
|
}
|
|
1589
1589
|
|
|
1590
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1590
|
+
// ../../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
|
|
1591
1591
|
function parseNumberDef(def, refs) {
|
|
1592
1592
|
const res = {
|
|
1593
1593
|
type: "number"
|
|
@@ -1704,7 +1704,7 @@ function safeIsOptional(schema) {
|
|
|
1704
1704
|
}
|
|
1705
1705
|
}
|
|
1706
1706
|
|
|
1707
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1707
|
+
// ../../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
|
|
1708
1708
|
var parseOptionalDef = (def, refs) => {
|
|
1709
1709
|
if (refs.currentPath.toString() === refs.propertyPath?.toString()) {
|
|
1710
1710
|
return parseDef(def.innerType._def, refs);
|
|
@@ -1723,7 +1723,7 @@ var parseOptionalDef = (def, refs) => {
|
|
|
1723
1723
|
} : {};
|
|
1724
1724
|
};
|
|
1725
1725
|
|
|
1726
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1726
|
+
// ../../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
|
|
1727
1727
|
var parsePipelineDef = (def, refs) => {
|
|
1728
1728
|
if (refs.pipeStrategy === "input") {
|
|
1729
1729
|
return parseDef(def.in._def, refs);
|
|
@@ -1743,12 +1743,12 @@ var parsePipelineDef = (def, refs) => {
|
|
|
1743
1743
|
};
|
|
1744
1744
|
};
|
|
1745
1745
|
|
|
1746
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1746
|
+
// ../../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
|
|
1747
1747
|
function parsePromiseDef(def, refs) {
|
|
1748
1748
|
return parseDef(def.type._def, refs);
|
|
1749
1749
|
}
|
|
1750
1750
|
|
|
1751
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1751
|
+
// ../../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
|
|
1752
1752
|
function parseSetDef(def, refs) {
|
|
1753
1753
|
const items = parseDef(def.valueType._def, {
|
|
1754
1754
|
...refs,
|
|
@@ -1768,7 +1768,7 @@ function parseSetDef(def, refs) {
|
|
|
1768
1768
|
return schema;
|
|
1769
1769
|
}
|
|
1770
1770
|
|
|
1771
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1771
|
+
// ../../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
|
|
1772
1772
|
function parseTupleDef(def, refs) {
|
|
1773
1773
|
if (def.rest) {
|
|
1774
1774
|
return {
|
|
@@ -1796,24 +1796,24 @@ function parseTupleDef(def, refs) {
|
|
|
1796
1796
|
}
|
|
1797
1797
|
}
|
|
1798
1798
|
|
|
1799
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1799
|
+
// ../../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
|
|
1800
1800
|
function parseUndefinedDef() {
|
|
1801
1801
|
return {
|
|
1802
1802
|
not: {}
|
|
1803
1803
|
};
|
|
1804
1804
|
}
|
|
1805
1805
|
|
|
1806
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1806
|
+
// ../../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
|
|
1807
1807
|
function parseUnknownDef() {
|
|
1808
1808
|
return {};
|
|
1809
1809
|
}
|
|
1810
1810
|
|
|
1811
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1811
|
+
// ../../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
|
|
1812
1812
|
var parseReadonlyDef = (def, refs) => {
|
|
1813
1813
|
return parseDef(def.innerType._def, refs);
|
|
1814
1814
|
};
|
|
1815
1815
|
|
|
1816
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1816
|
+
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/selectParser.js
|
|
1817
1817
|
var selectParser = (def, typeName, refs) => {
|
|
1818
1818
|
switch (typeName) {
|
|
1819
1819
|
case zod.ZodFirstPartyTypeKind.ZodString:
|
|
@@ -1889,7 +1889,7 @@ var selectParser = (def, typeName, refs) => {
|
|
|
1889
1889
|
}
|
|
1890
1890
|
};
|
|
1891
1891
|
|
|
1892
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1892
|
+
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/parseDef.js
|
|
1893
1893
|
function parseDef(def, refs, forceResolution = false) {
|
|
1894
1894
|
const seenItem = refs.seen.get(def);
|
|
1895
1895
|
if (refs.override) {
|
|
@@ -1953,7 +1953,7 @@ var addMeta = (def, refs, jsonSchema) => {
|
|
|
1953
1953
|
return jsonSchema;
|
|
1954
1954
|
};
|
|
1955
1955
|
|
|
1956
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
1956
|
+
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js
|
|
1957
1957
|
var zodToJsonSchema = (schema, options) => {
|
|
1958
1958
|
const refs = getRefs(options);
|
|
1959
1959
|
const definitions = typeof options === "object" && options.definitions ? Object.entries(options.definitions).reduce((acc, [name2, schema2]) => ({
|
|
@@ -1997,7 +1997,7 @@ var zodToJsonSchema = (schema, options) => {
|
|
|
1997
1997
|
return combined;
|
|
1998
1998
|
};
|
|
1999
1999
|
|
|
2000
|
-
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.
|
|
2000
|
+
// ../../node_modules/.pnpm/zod-to-json-schema@3.24.5_zod@3.25.57/node_modules/zod-to-json-schema/dist/esm/index.js
|
|
2001
2001
|
var esm_default = zodToJsonSchema;
|
|
2002
2002
|
|
|
2003
2003
|
exports.esm_default = esm_default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { stringify, esm_default } from './chunk-
|
|
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';
|