@mastra/inngest 0.10.2-alpha.2 → 0.10.2-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,23 +1,23 @@
1
1
 
2
- > @mastra/inngest@0.10.2-alpha.2 build /home/runner/work/mastra/mastra/workflows/inngest
2
+ > @mastra/inngest@0.10.2-alpha.3 build /home/runner/work/mastra/mastra/workflows/inngest
3
3
  > tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
4
4
 
5
5
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.4.0
8
8
  TSC Build start
9
- TSC ⚡️ Build success in 7766ms
9
+ TSC ⚡️ Build success in 7362ms
10
10
  DTS Build start
11
11
  CLI Target: es2022
12
12
  Analysis will use the bundled TypeScript version 5.8.3
13
13
  Writing package typings: /home/runner/work/mastra/mastra/workflows/inngest/dist/_tsup-dts-rollup.d.ts
14
14
  Analysis will use the bundled TypeScript version 5.8.3
15
15
  Writing package typings: /home/runner/work/mastra/mastra/workflows/inngest/dist/_tsup-dts-rollup.d.cts
16
- DTS ⚡️ Build success in 5836ms
16
+ DTS ⚡️ Build success in 6361ms
17
17
  CLI Cleaning output folder
18
18
  ESM Build start
19
19
  CJS Build start
20
- CJS dist/index.cjs 22.66 KB
21
- CJS ⚡️ Build success in 310ms
22
- ESM dist/index.js 22.51 KB
23
- ESM ⚡️ Build success in 311ms
20
+ CJS dist/index.cjs 22.68 KB
21
+ CJS ⚡️ Build success in 207ms
22
+ ESM dist/index.js 22.54 KB
23
+ ESM ⚡️ Build success in 306ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @mastra/inngest
2
2
 
3
+ ## 0.10.2-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 1ee6894: inngest production url fix
8
+ - Updated dependencies [1b5fc55]
9
+ - Updated dependencies [add596e]
10
+ - Updated dependencies [ecebbeb]
11
+ - @mastra/core@0.10.2-alpha.5
12
+
3
13
  ## 0.10.2-alpha.2
4
14
 
5
15
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -33,7 +33,7 @@ var InngestRun = class extends workflows.Run {
33
33
  this.#mastra = params.mastra;
34
34
  }
35
35
  async getRuns(eventId) {
36
- const response = await fetch(`${this.inngest.apiBaseUrl}/v1/events/${eventId}/runs`, {
36
+ const response = await fetch(`${this.inngest.apiBaseUrl ?? "https://api.inngest.com"}/v1/events/${eventId}/runs`, {
37
37
  headers: {
38
38
  Authorization: `Bearer ${process.env.INNGEST_SIGNING_KEY}`
39
39
  }
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ var InngestRun = class extends Run {
31
31
  this.#mastra = params.mastra;
32
32
  }
33
33
  async getRuns(eventId) {
34
- const response = await fetch(`${this.inngest.apiBaseUrl}/v1/events/${eventId}/runs`, {
34
+ const response = await fetch(`${this.inngest.apiBaseUrl ?? "https://api.inngest.com"}/v1/events/${eventId}/runs`, {
35
35
  headers: {
36
36
  Authorization: `Bearer ${process.env.INNGEST_SIGNING_KEY}`
37
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/inngest",
3
- "version": "0.10.2-alpha.2",
3
+ "version": "0.10.2-alpha.3",
4
4
  "description": "Mastra Inngest integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -37,9 +37,9 @@
37
37
  "tsup": "^8.4.0",
38
38
  "typescript": "^5.8.2",
39
39
  "vitest": "^2.1.9",
40
- "@mastra/deployer": "0.10.2-alpha.4",
41
- "@mastra/core": "0.10.2-alpha.4",
42
- "@internal/lint": "0.0.7"
40
+ "@mastra/deployer": "0.10.2-alpha.5",
41
+ "@internal/lint": "0.0.7",
42
+ "@mastra/core": "0.10.2-alpha.5"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@mastra/core": "^0.10.0-alpha.0"
package/src/index.ts CHANGED
@@ -68,7 +68,7 @@ export class InngestRun<
68
68
  }
69
69
 
70
70
  async getRuns(eventId: string) {
71
- const response = await fetch(`${this.inngest.apiBaseUrl}/v1/events/${eventId}/runs`, {
71
+ const response = await fetch(`${this.inngest.apiBaseUrl ?? 'https://api.inngest.com'}/v1/events/${eventId}/runs`, {
72
72
  headers: {
73
73
  Authorization: `Bearer ${process.env.INNGEST_SIGNING_KEY}`,
74
74
  },