@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.
- package/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +10 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
- package/src/index.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/inngest@0.10.2-alpha.
|
|
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
|
[34mCLI[39m Building entry: src/index.ts
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
7
|
[34mCLI[39m tsup v8.4.0
|
|
8
8
|
[34mTSC[39m Build start
|
|
9
|
-
[32mTSC[39m ⚡️ Build success in
|
|
9
|
+
[32mTSC[39m ⚡️ Build success in 7362ms
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
11
|
[34mCLI[39m Target: es2022
|
|
12
12
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
13
13
|
[36mWriting package typings: /home/runner/work/mastra/mastra/workflows/inngest/dist/_tsup-dts-rollup.d.ts[39m
|
|
14
14
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
15
15
|
[36mWriting package typings: /home/runner/work/mastra/mastra/workflows/inngest/dist/_tsup-dts-rollup.d.cts[39m
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 6361ms
|
|
17
17
|
[34mCLI[39m Cleaning output folder
|
|
18
18
|
[34mESM[39m Build start
|
|
19
19
|
[34mCJS[39m Build start
|
|
20
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m22.
|
|
21
|
-
[32mCJS[39m ⚡️ Build success in
|
|
22
|
-
[32mESM[39m [1mdist/index.js [22m[32m22.
|
|
23
|
-
[32mESM[39m ⚡️ Build success in
|
|
20
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m22.68 KB[39m
|
|
21
|
+
[32mCJS[39m ⚡️ Build success in 207ms
|
|
22
|
+
[32mESM[39m [1mdist/index.js [22m[32m22.54 KB[39m
|
|
23
|
+
[32mESM[39m ⚡️ 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.
|
|
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.
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
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
|
},
|