@mastra/inngest 0.0.0-declaration-maps-20250730004430 → 0.0.0-declaration-maps-20250730185206

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,9 +1,21 @@
1
1
  # @mastra/inngest
2
2
 
3
- ## 0.0.0-declaration-maps-20250730004430
3
+ ## 0.0.0-declaration-maps-20250730185206
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 7257912: dependencies updates:
8
+ - Updated dependency [`inngest@^3.40.1` ↗︎](https://www.npmjs.com/package/inngest/v/3.40.1) (from `^3.40.0`, in `dependencies`)
9
+ - Updated dependencies [33dcb07]
10
+ - Updated dependencies [d30b1a0]
11
+ - Updated dependencies [bff87f7]
12
+ - @mastra/core@0.0.0-declaration-maps-20250730185206
13
+
14
+ ## 0.11.7
15
+
16
+ ### Patch Changes
17
+
18
+ - f42c4c2: update peer deps for packages to latest core range
7
19
  - Updated dependencies [510e2c8]
8
20
  - Updated dependencies [2f72fb2]
9
21
  - Updated dependencies [27cc97a]
@@ -27,7 +39,14 @@
27
39
  - Updated dependencies [b8efbb9]
28
40
  - Updated dependencies [71466e7]
29
41
  - Updated dependencies [0c99fbe]
30
- - @mastra/core@0.0.0-declaration-maps-20250730004430
42
+ - @mastra/core@0.12.0
43
+
44
+ ## 0.11.7-alpha.0
45
+
46
+ ### Patch Changes
47
+
48
+ - f42c4c2: update peer deps for packages to latest core range
49
+ - @mastra/core@0.12.0-alpha.5
31
50
 
32
51
  ## 0.11.6
33
52
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/inngest",
3
- "version": "0.0.0-declaration-maps-20250730004430",
3
+ "version": "0.0.0-declaration-maps-20250730185206",
4
4
  "description": "Mastra Inngest integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@inngest/realtime": "^0.3.1",
23
23
  "@opentelemetry/api": "^1.9.0",
24
- "inngest": "^3.40.0",
24
+ "inngest": "^3.40.1",
25
25
  "zod": "^3.25.67"
26
26
  },
27
27
  "devDependencies": {
@@ -38,13 +38,13 @@
38
38
  "tsup": "^8.5.0",
39
39
  "typescript": "^5.8.3",
40
40
  "vitest": "^3.2.4",
41
- "@internal/lint": "0.0.0-declaration-maps-20250730004430",
42
- "@mastra/core": "0.0.0-declaration-maps-20250730004430",
43
- "@mastra/libsql": "0.0.0-declaration-maps-20250730004430",
44
- "@mastra/deployer": "0.0.0-declaration-maps-20250730004430"
41
+ "@internal/lint": "0.0.0-declaration-maps-20250730185206",
42
+ "@mastra/libsql": "0.0.0-declaration-maps-20250730185206",
43
+ "@mastra/core": "0.0.0-declaration-maps-20250730185206",
44
+ "@mastra/deployer": "0.0.0-declaration-maps-20250730185206"
45
45
  },
46
46
  "peerDependencies": {
47
- "@mastra/core": "0.0.0-declaration-maps-20250730004430"
47
+ "@mastra/core": "0.0.0-declaration-maps-20250730185206"
48
48
  },
49
49
  "scripts": {
50
50
  "build": "tsup --silent --config tsup.config.ts",
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "extends": "../../tsconfig.node.json",
3
- "include": ["src/**/*"],
3
+ "include": ["src/**/*", "tsup.config.ts"],
4
4
  "exclude": ["node_modules", "**/*.test.ts"]
5
5
  }
package/tsup.config.ts CHANGED
@@ -1,9 +1,6 @@
1
1
  import { spawn } from 'child_process';
2
2
  import { promisify } from 'util';
3
3
  import { defineConfig } from 'tsup';
4
- import type { Options } from 'tsup';
5
-
6
- type Plugin = NonNullable<Options['plugins']>[number];
7
4
 
8
5
  const exec = promisify(spawn);
9
6