@mastra/inngest 0.0.0-ai-v5-20250801192614 → 0.0.0-ai-v5-20250813235735

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @mastra/inngest
2
2
 
3
- ## 0.0.0-ai-v5-20250801192614
3
+ ## 0.0.0-ai-v5-20250813235735
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,10 +9,42 @@
9
9
  ### Patch Changes
10
10
 
11
11
  - Updated dependencies [66858d4]
12
+ - Updated dependencies [c30bca8]
13
+ - @mastra/core@0.0.0-ai-v5-20250813235735
14
+
15
+ ## 0.11.9
16
+
17
+ ### Patch Changes
18
+
19
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
20
+ - Updated dependencies [cb36de0]
21
+ - Updated dependencies [d0496e6]
22
+ - Updated dependencies [a82b851]
23
+ - Updated dependencies [ea0c5f2]
24
+ - Updated dependencies [41a0a0e]
25
+ - Updated dependencies [2871020]
12
26
  - Updated dependencies [94f4812]
13
27
  - Updated dependencies [e202b82]
14
28
  - Updated dependencies [e00f6a0]
15
- - @mastra/core@0.0.0-ai-v5-20250801192614
29
+ - Updated dependencies [4a406ec]
30
+ - Updated dependencies [b0e43c1]
31
+ - Updated dependencies [5d377e5]
32
+ - Updated dependencies [1fb812e]
33
+ - Updated dependencies [35c5798]
34
+ - @mastra/core@0.13.0
35
+
36
+ ## 0.11.9-alpha.0
37
+
38
+ ### Patch Changes
39
+
40
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
41
+ - Updated dependencies [cb36de0]
42
+ - Updated dependencies [a82b851]
43
+ - Updated dependencies [41a0a0e]
44
+ - Updated dependencies [2871020]
45
+ - Updated dependencies [4a406ec]
46
+ - Updated dependencies [5d377e5]
47
+ - @mastra/core@0.13.0-alpha.2
16
48
 
17
49
  ## 0.11.8
18
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/inngest",
3
- "version": "0.0.0-ai-v5-20250801192614",
3
+ "version": "0.0.0-ai-v5-20250813235735",
4
4
  "description": "Mastra Inngest integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -12,7 +12,7 @@
12
12
  "default": "./dist/index.js"
13
13
  },
14
14
  "require": {
15
- "types": "./dist/index.d.cts",
15
+ "types": "./dist/index.d.ts",
16
16
  "default": "./dist/index.cjs"
17
17
  }
18
18
  },
@@ -34,17 +34,18 @@
34
34
  "eslint": "^9.30.1",
35
35
  "execa": "^9.6.0",
36
36
  "get-port": "7.1.0",
37
- "hono": "^4.8.9",
37
+ "hono": "^4.8.12",
38
38
  "tsup": "^8.5.0",
39
39
  "typescript": "^5.8.3",
40
40
  "vitest": "^3.2.4",
41
- "@internal/lint": "0.0.0-ai-v5-20250801192614",
42
- "@mastra/libsql": "0.0.0-ai-v5-20250801192614",
43
- "@mastra/core": "0.0.0-ai-v5-20250801192614",
44
- "@mastra/deployer": "0.0.0-ai-v5-20250801192614"
41
+ "@mastra/core": "0.0.0-ai-v5-20250813235735",
42
+ "@mastra/libsql": "0.0.0-ai-v5-20250813235735",
43
+ "@internal/lint": "0.0.0-ai-v5-20250813235735",
44
+ "@mastra/deployer": "0.0.0-ai-v5-20250813235735",
45
+ "@internal/types-builder": "0.0.0-ai-v5-20250813235735"
45
46
  },
46
47
  "peerDependencies": {
47
- "@mastra/core": "0.0.0-ai-v5-20250801192614"
48
+ "@mastra/core": "0.0.0-ai-v5-20250813235735"
48
49
  },
49
50
  "scripts": {
50
51
  "build": "tsup --silent --config tsup.config.ts",
package/tsup.config.ts CHANGED
@@ -1,9 +1,6 @@
1
- import { spawn } from 'child_process';
2
- import { promisify } from 'util';
1
+ import { generateTypes } from '@internal/types-builder';
3
2
  import { defineConfig } from 'tsup';
4
3
 
5
- const exec = promisify(spawn);
6
-
7
4
  export default defineConfig({
8
5
  entry: ['src/index.ts'],
9
6
  format: ['esm', 'cjs'],
@@ -15,8 +12,6 @@ export default defineConfig({
15
12
  },
16
13
  sourcemap: true,
17
14
  onSuccess: async () => {
18
- await exec('pnpm', ['tsc', '-p', 'tsconfig.build.json'], {
19
- stdio: 'inherit',
20
- });
15
+ await generateTypes(process.cwd());
21
16
  },
22
17
  });