@mastra/deployer 0.1.2 → 0.1.3-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,29 +1,29 @@
1
1
 
2
- > @mastra/deployer@0.1.2 build /home/runner/work/mastra/mastra/packages/deployer
2
+ > @mastra/deployer@0.1.3-alpha.0 build /home/runner/work/mastra/mastra/packages/deployer
3
3
  > tsup src/index.ts src/build/index.ts src/server/index.ts src/build/bundler.ts src/build/analyze.ts src/bundler/index.ts --format esm --clean --experimental-dts --treeshake --publicDir
4
4
 
5
5
  CLI Building entry: src/index.ts, src/build/analyze.ts, src/build/bundler.ts, src/build/index.ts, src/bundler/index.ts, src/server/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.3.6
8
8
  TSC Build start
9
- TSC ⚡️ Build success in 14691ms
9
+ TSC ⚡️ Build success in 18665ms
10
10
  DTS Build start
11
11
  CLI Target: es2022
12
12
  Analysis will use the bundled TypeScript version 5.7.3
13
13
  Writing package typings: /home/runner/work/mastra/mastra/packages/deployer/dist/_tsup-dts-rollup.d.ts
14
- DTS ⚡️ Build success in 3836ms
14
+ DTS ⚡️ Build success in 9323ms
15
15
  CLI Cleaning output folder
16
16
  ESM Build start
17
+ ESM dist/index.js 3.72 KB
17
18
  ESM dist/build/analyze.js 85.00 B
18
- ESM dist/bundler/index.js 172.00 B
19
19
  ESM dist/build/bundler.js 102.00 B
20
20
  ESM dist/build/index.js 383.00 B
21
+ ESM dist/chunk-2S4LOARP.js 7.41 KB
22
+ ESM dist/bundler/index.js 172.00 B
21
23
  ESM dist/chunk-S6JYNXAW.js 4.40 KB
22
- ESM dist/index.js 3.72 KB
23
24
  ESM dist/chunk-AXS5WSIK.js 8.23 KB
24
- ESM dist/chunk-2S4LOARP.js 7.41 KB
25
25
  ESM dist/chunk-KXS4XYEJ.js 7.20 KB
26
26
  ESM dist/chunk-YNXJO2XU.js 2.08 KB
27
27
  ESM dist/chunk-Z3IHWUWI.js 8.13 KB
28
- ESM dist/server/index.js 147.40 KB
29
- ESM ⚡️ Build success in 503ms
28
+ ESM dist/server/index.js 147.44 KB
29
+ ESM ⚡️ Build success in 3082ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.1.3-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 5297264: Fix build errors by changing contracts
8
+ - Updated dependencies [2fc618f]
9
+ - @mastra/core@0.4.0-alpha.0
10
+
3
11
  ## 0.1.2
4
12
 
5
13
  ### Patch Changes
@@ -3289,7 +3289,8 @@ async function getTelemetryHandler(c2) {
3289
3289
  const mastra = c2.get("mastra");
3290
3290
  const telemetry = mastra.telemetry;
3291
3291
  const storage = mastra.storage;
3292
- const { name, scope, page, perPage, attribute } = c2.req.query();
3292
+ const { name, scope, page, perPage } = c2.req.query();
3293
+ const attribute = c2.req.queries("attribute");
3293
3294
  if (!telemetry) {
3294
3295
  throw new HTTPException(400, { message: "Telemetry is not initialized" });
3295
3296
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer",
3
- "version": "0.1.2",
3
+ "version": "0.1.3-alpha.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -52,7 +52,7 @@
52
52
  "rollup-plugin-esbuild": "^6.1.1",
53
53
  "rollup-plugin-node-externals": "^8.0.0",
54
54
  "zod": "^3.24.1",
55
- "@mastra/core": "^0.3.0"
55
+ "@mastra/core": "^0.4.0-alpha.0"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@hono/node-server": "^1.13.7",
@@ -12,7 +12,8 @@ export async function getTelemetryHandler(c: Context) {
12
12
  const telemetry: Telemetry = mastra.telemetry;
13
13
  const storage: MastraStorage = mastra.storage;
14
14
 
15
- const { name, scope, page, perPage, attribute } = c.req.query();
15
+ const { name, scope, page, perPage } = c.req.query();
16
+ const attribute = c.req.queries('attribute');
16
17
 
17
18
  if (!telemetry) {
18
19
  throw new HTTPException(400, { message: 'Telemetry is not initialized' });