@mastra/deployer 0.13.0-alpha.1 → 0.13.0-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.
@@ -1,5 +1,5 @@
1
1
  import { type InputOptions, type OutputOptions } from 'rollup';
2
- import type { analyzeBundle } from './analyze';
2
+ import type { analyzeBundle } from './analyze.js';
3
3
  export declare function getInputOptions(entryFile: string, analyzedBundleInfo: Awaited<ReturnType<typeof analyzeBundle>>, platform: 'node' | 'browser', env?: Record<string, string>, { sourcemap }?: {
4
4
  sourcemap?: boolean;
5
5
  }): Promise<InputOptions>;
@@ -1,9 +1,9 @@
1
- export { createBundler, getInputOptions as getBundlerInputOptions } from './bundler';
2
- export { createWatcher, getInputOptions as getWatcherInputOptions } from './watcher';
3
- export { analyzeBundle } from './analyze';
4
- export { FileService } from '../services/fs';
5
- export { Deps } from '../services/deps';
6
- export { writeTelemetryConfig } from './telemetry';
7
- export { getServerOptions } from './serverOptions';
8
- export { getBundlerOptions } from './bundlerOptions';
1
+ export { createBundler, getInputOptions as getBundlerInputOptions } from './bundler.js';
2
+ export { createWatcher, getInputOptions as getWatcherInputOptions } from './watcher.js';
3
+ export { analyzeBundle } from './analyze.js';
4
+ export { FileService } from '../services/fs.js';
5
+ export { Deps } from '../services/deps.js';
6
+ export { writeTelemetryConfig } from './telemetry.js';
7
+ export { getServerOptions } from './serverOptions.js';
8
+ export { getBundlerOptions } from './bundlerOptions.js';
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { MastraBundler } from '@mastra/core/bundler';
2
2
  import type { InputOptions, OutputOptions } from 'rollup';
3
- import { analyzeBundle } from '../build/analyze';
3
+ import { analyzeBundle } from '../build/analyze.js';
4
4
  export declare abstract class Bundler extends MastraBundler {
5
5
  protected analyzeOutputDir: string;
6
6
  protected outputDir: string;
@@ -1,5 +1,5 @@
1
1
  import type { IDeployer } from '@mastra/core/deployer';
2
- import { Bundler } from '../bundler';
2
+ import { Bundler } from '../bundler/index.js';
3
3
  import { DepsService } from '../services/deps.js';
4
4
  export declare abstract class Deployer extends Bundler implements IDeployer {
5
5
  deps: DepsService;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from './deploy';
2
- export * from './server/types';
3
- export { Deps, FileService } from './build';
4
- export { getDeployer } from './build/deployer';
1
+ export * from './deploy/index.js';
2
+ export * from './server/types.js';
3
+ export { Deps, FileService } from './build/index.js';
4
+ export { getDeployer } from './build/deployer.js';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { Hono } from 'hono';
2
- import type { BodyLimitOptions } from '../../../types';
2
+ import type { BodyLimitOptions } from '../../../types.js';
3
3
  export declare function agentsRouter(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
4
4
  export declare function agentsRouterDev(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
5
5
  //# sourceMappingURL=router.d.ts.map
@@ -1,4 +1,4 @@
1
1
  import { Hono } from 'hono';
2
- import type { BodyLimitOptions } from '../../../types';
2
+ import type { BodyLimitOptions } from '../../../types.js';
3
3
  export declare function mcpRouter(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
4
4
  //# sourceMappingURL=router.d.ts.map
@@ -1,4 +1,4 @@
1
1
  import { Hono } from 'hono';
2
- import type { BodyLimitOptions } from '../../../types';
2
+ import type { BodyLimitOptions } from '../../../types.js';
3
3
  export declare function memoryRoutes(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
4
4
  //# sourceMappingURL=router.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { Hono } from 'hono';
2
- import type { BodyLimitOptions } from '../../../types';
2
+ import type { BodyLimitOptions } from '../../../types.js';
3
3
  export declare function vNextNetworksRouter(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
4
4
  export declare function networksRouter(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
5
5
  //# sourceMappingURL=router.d.ts.map
@@ -1,4 +1,4 @@
1
1
  import { Hono } from 'hono';
2
- import type { BodyLimitOptions } from '../../../types';
2
+ import type { BodyLimitOptions } from '../../../types.js';
3
3
  export declare function scoresRouter(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
4
4
  //# sourceMappingURL=router.d.ts.map
@@ -1,4 +1,4 @@
1
1
  import { Hono } from 'hono';
2
- import type { BodyLimitOptions } from '../../../types';
2
+ import type { BodyLimitOptions } from '../../../types.js';
3
3
  export declare function toolsRouter(bodyLimitOptions: BodyLimitOptions, tools: Record<string, any>): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
4
4
  //# sourceMappingURL=router.d.ts.map
@@ -1,4 +1,4 @@
1
1
  import { Hono } from 'hono';
2
- import type { BodyLimitOptions } from '../../../types';
2
+ import type { BodyLimitOptions } from '../../../types.js';
3
3
  export declare function vectorRouter(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
4
4
  //# sourceMappingURL=router.d.ts.map
@@ -1,4 +1,4 @@
1
1
  import { Hono } from 'hono';
2
- import type { BodyLimitOptions } from '../../../types';
2
+ import type { BodyLimitOptions } from '../../../types.js';
3
3
  export declare function workflowsRouter(bodyLimitOptions: BodyLimitOptions): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
4
4
  //# sourceMappingURL=router.d.ts.map
@@ -781,7 +781,7 @@ var middleware = (options) => async (c2) => {
781
781
  );
782
782
  };
783
783
 
784
- // ../../node_modules/.pnpm/hono-openapi@0.4.8_hono@4.8.9_openapi-types@12.1.3_zod@3.25.76/node_modules/hono-openapi/utils.js
784
+ // ../../node_modules/.pnpm/hono-openapi@0.4.8_hono@4.8.12_openapi-types@12.1.3_zod@3.25.76/node_modules/hono-openapi/utils.js
785
785
  var e = Symbol("openapi");
786
786
  var n = ["GET", "PUT", "POST", "DELETE", "OPTIONS", "HEAD", "PATCH", "TRACE"];
787
787
  var s2 = (e2) => e2.charAt(0).toUpperCase() + e2.slice(1);