@mastra/deployer 0.10.7-alpha.1 → 0.10.7-alpha.3
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 +22 -1
- package/dist/_tsup-dts-rollup.d.ts +22 -1
- package/dist/server/index.cjs +601 -39
- package/dist/server/index.js +601 -39
- package/dist/templates/instrumentation-template.js +1 -0
- package/package.json +8 -8
|
@@ -284,6 +284,8 @@ export declare function generateHandler_alias_1(c: Context): Promise<Response>;
|
|
|
284
284
|
|
|
285
285
|
export declare function generateSystemPromptHandler(c: Context): Promise<Response>;
|
|
286
286
|
|
|
287
|
+
export declare function generateVNextNetworkHandler(c: Context): Promise<Response>;
|
|
288
|
+
|
|
287
289
|
export declare function getAgentByIdHandler(c: Context): Promise<Response & TypedResponse< {
|
|
288
290
|
name: any;
|
|
289
291
|
instructions: string;
|
|
@@ -329,7 +331,18 @@ outputModes?: string[] | null | undefined;
|
|
|
329
331
|
|
|
330
332
|
export declare function getAgentExecutionHandler(c: Context): Promise<Response>;
|
|
331
333
|
|
|
332
|
-
export declare function getAgentsHandler(c: Context): Promise<Response & TypedResponse<
|
|
334
|
+
export declare function getAgentsHandler(c: Context): Promise<Response & TypedResponse< {
|
|
335
|
+
[x: string]: {
|
|
336
|
+
name: any;
|
|
337
|
+
tools: any;
|
|
338
|
+
provider: string;
|
|
339
|
+
instructions: string;
|
|
340
|
+
workflows: {};
|
|
341
|
+
modelId: string;
|
|
342
|
+
defaultGenerateOptions: any;
|
|
343
|
+
defaultStreamOptions: any;
|
|
344
|
+
};
|
|
345
|
+
}, ContentfulStatusCode, "json">>;
|
|
333
346
|
|
|
334
347
|
declare function getBundlerOptions(entryFile: string, outputDir: string): Promise<Config['bundler'] | null>;
|
|
335
348
|
export { getBundlerOptions }
|
|
@@ -570,6 +583,10 @@ export declare function getToolsHandler(c: Context): Promise<Response>;
|
|
|
570
583
|
|
|
571
584
|
export declare const getVector: (c: Context, vectorName: string) => MastraVector;
|
|
572
585
|
|
|
586
|
+
export declare function getVNextNetworkByIdHandler(c: Context): Promise<Response>;
|
|
587
|
+
|
|
588
|
+
export declare function getVNextNetworksHandler(c: Context): Promise<Response>;
|
|
589
|
+
|
|
573
590
|
export declare function getWorkflowByIdHandler(c: Context): Promise<Response>;
|
|
574
591
|
|
|
575
592
|
export declare function getWorkflowRunByIdHandler(c: Context): Promise<Response>;
|
|
@@ -632,6 +649,8 @@ total_count: number;
|
|
|
632
649
|
*/
|
|
633
650
|
export declare const listMcpServerToolsHandler: (c: Context) => Promise<Response>;
|
|
634
651
|
|
|
652
|
+
export declare function loopVNextNetworkHandler(c: Context): Promise<Response>;
|
|
653
|
+
|
|
635
654
|
export declare const matchesOrIncludes: (values: string | string[], value: string) => boolean;
|
|
636
655
|
|
|
637
656
|
export declare function nodeModulesExtensionResolver(): Plugin;
|
|
@@ -742,6 +761,8 @@ export declare function streamGenerateHandler(c: Context): Promise<Response | un
|
|
|
742
761
|
|
|
743
762
|
export declare function streamGenerateHandler_alias_1(c: Context): Promise<Response | undefined>;
|
|
744
763
|
|
|
764
|
+
export declare function streamGenerateVNextNetworkHandler(c: Context): Promise<Response>;
|
|
765
|
+
|
|
745
766
|
export declare function streamWorkflowHandler(c: Context): Promise<Response>;
|
|
746
767
|
|
|
747
768
|
declare type TransitiveDependencyResult = {
|
|
@@ -284,6 +284,8 @@ export declare function generateHandler_alias_1(c: Context): Promise<Response>;
|
|
|
284
284
|
|
|
285
285
|
export declare function generateSystemPromptHandler(c: Context): Promise<Response>;
|
|
286
286
|
|
|
287
|
+
export declare function generateVNextNetworkHandler(c: Context): Promise<Response>;
|
|
288
|
+
|
|
287
289
|
export declare function getAgentByIdHandler(c: Context): Promise<Response & TypedResponse< {
|
|
288
290
|
name: any;
|
|
289
291
|
instructions: string;
|
|
@@ -329,7 +331,18 @@ outputModes?: string[] | null | undefined;
|
|
|
329
331
|
|
|
330
332
|
export declare function getAgentExecutionHandler(c: Context): Promise<Response>;
|
|
331
333
|
|
|
332
|
-
export declare function getAgentsHandler(c: Context): Promise<Response & TypedResponse<
|
|
334
|
+
export declare function getAgentsHandler(c: Context): Promise<Response & TypedResponse< {
|
|
335
|
+
[x: string]: {
|
|
336
|
+
name: any;
|
|
337
|
+
tools: any;
|
|
338
|
+
provider: string;
|
|
339
|
+
instructions: string;
|
|
340
|
+
workflows: {};
|
|
341
|
+
modelId: string;
|
|
342
|
+
defaultGenerateOptions: any;
|
|
343
|
+
defaultStreamOptions: any;
|
|
344
|
+
};
|
|
345
|
+
}, ContentfulStatusCode, "json">>;
|
|
333
346
|
|
|
334
347
|
declare function getBundlerOptions(entryFile: string, outputDir: string): Promise<Config['bundler'] | null>;
|
|
335
348
|
export { getBundlerOptions }
|
|
@@ -570,6 +583,10 @@ export declare function getToolsHandler(c: Context): Promise<Response>;
|
|
|
570
583
|
|
|
571
584
|
export declare const getVector: (c: Context, vectorName: string) => MastraVector;
|
|
572
585
|
|
|
586
|
+
export declare function getVNextNetworkByIdHandler(c: Context): Promise<Response>;
|
|
587
|
+
|
|
588
|
+
export declare function getVNextNetworksHandler(c: Context): Promise<Response>;
|
|
589
|
+
|
|
573
590
|
export declare function getWorkflowByIdHandler(c: Context): Promise<Response>;
|
|
574
591
|
|
|
575
592
|
export declare function getWorkflowRunByIdHandler(c: Context): Promise<Response>;
|
|
@@ -632,6 +649,8 @@ total_count: number;
|
|
|
632
649
|
*/
|
|
633
650
|
export declare const listMcpServerToolsHandler: (c: Context) => Promise<Response>;
|
|
634
651
|
|
|
652
|
+
export declare function loopVNextNetworkHandler(c: Context): Promise<Response>;
|
|
653
|
+
|
|
635
654
|
export declare const matchesOrIncludes: (values: string | string[], value: string) => boolean;
|
|
636
655
|
|
|
637
656
|
export declare function nodeModulesExtensionResolver(): Plugin;
|
|
@@ -742,6 +761,8 @@ export declare function streamGenerateHandler(c: Context): Promise<Response | un
|
|
|
742
761
|
|
|
743
762
|
export declare function streamGenerateHandler_alias_1(c: Context): Promise<Response | undefined>;
|
|
744
763
|
|
|
764
|
+
export declare function streamGenerateVNextNetworkHandler(c: Context): Promise<Response>;
|
|
765
|
+
|
|
745
766
|
export declare function streamWorkflowHandler(c: Context): Promise<Response>;
|
|
746
767
|
|
|
747
768
|
declare type TransitiveDependencyResult = {
|