@mastra/deployer 0.2.5-alpha.3 → 0.2.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 +10 -0
- package/dist/_tsup-dts-rollup.d.ts +10 -0
- package/dist/server/index.cjs +245 -103
- package/dist/server/index.js +245 -103
- package/dist/templates/instrumentation-template.js +2 -13
- package/package.json +2 -2
|
@@ -378,6 +378,16 @@ export declare function startAsyncWorkflowHandler(c: Context): Promise<Response>
|
|
|
378
378
|
|
|
379
379
|
export declare function startWorkflowRunHandler(c: Context): Promise<Response>;
|
|
380
380
|
|
|
381
|
+
export declare function storeTelemetryHandler(c: Context): Promise<(Response & TypedResponse< {
|
|
382
|
+
status: string;
|
|
383
|
+
message: string;
|
|
384
|
+
traceCount: any;
|
|
385
|
+
}, 200, "json">) | (Response & TypedResponse< {
|
|
386
|
+
[x: string]: any;
|
|
387
|
+
status: string;
|
|
388
|
+
message: string;
|
|
389
|
+
}, 500, "json">)>;
|
|
390
|
+
|
|
381
391
|
export declare function streamGenerateHandler(c: Context): Promise<Response | undefined>;
|
|
382
392
|
|
|
383
393
|
export declare function streamGenerateHandler_alias_1(c: Context): Promise<Response | undefined>;
|
|
@@ -378,6 +378,16 @@ export declare function startAsyncWorkflowHandler(c: Context): Promise<Response>
|
|
|
378
378
|
|
|
379
379
|
export declare function startWorkflowRunHandler(c: Context): Promise<Response>;
|
|
380
380
|
|
|
381
|
+
export declare function storeTelemetryHandler(c: Context): Promise<(Response & TypedResponse< {
|
|
382
|
+
status: string;
|
|
383
|
+
message: string;
|
|
384
|
+
traceCount: any;
|
|
385
|
+
}, 200, "json">) | (Response & TypedResponse< {
|
|
386
|
+
[x: string]: any;
|
|
387
|
+
status: string;
|
|
388
|
+
message: string;
|
|
389
|
+
}, 500, "json">)>;
|
|
390
|
+
|
|
381
391
|
export declare function streamGenerateHandler(c: Context): Promise<Response | undefined>;
|
|
382
392
|
|
|
383
393
|
export declare function streamGenerateHandler_alias_1(c: Context): Promise<Response | undefined>;
|