@mastra/deployer 0.0.1-alpha.4 → 0.0.1-alpha.6
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 +15 -0
- package/dist/deployer.cjs.development.js +4 -6
- package/dist/deployer.cjs.development.js.map +1 -1
- package/dist/deployer.cjs.production.min.js +1 -1
- package/dist/deployer.cjs.production.min.js.map +1 -1
- package/dist/deployer.esm.js +4 -6
- package/dist/deployer.esm.js.map +1 -1
- package/dist/server/handlers/workflows.d.ts.map +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +4 -3
- package/package.json +2 -2
- package/src/server/handlers/workflows.ts +3 -1
- package/src/server/index.ts +0 -1
- package/src/server/openapi.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 0.0.1-alpha.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 291fe57: mastra openapi, swagger ui, dynamic servers
|
|
8
|
+
- 1a41fbf: Fix playground workflow triggerData on execution
|
|
9
|
+
|
|
10
|
+
## 0.0.1-alpha.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [0be7181]
|
|
15
|
+
- Updated dependencies [0be7181]
|
|
16
|
+
- @mastra/core@0.1.27-alpha.68
|
|
17
|
+
|
|
3
18
|
## 0.0.1-alpha.4
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -2575,7 +2575,9 @@ function _executeWorkflowHandler() {
|
|
|
2575
2575
|
case 6:
|
|
2576
2576
|
body = _context3.sent;
|
|
2577
2577
|
_context3.next = 9;
|
|
2578
|
-
return workflow.execute(
|
|
2578
|
+
return workflow.execute({
|
|
2579
|
+
triggerData: body
|
|
2580
|
+
});
|
|
2579
2581
|
case 9:
|
|
2580
2582
|
result = _context3.sent;
|
|
2581
2583
|
return _context3.abrupt("return", c.json(result));
|
|
@@ -3285,11 +3287,7 @@ function _createHonoServer() {
|
|
|
3285
3287
|
title: 'Mastra API',
|
|
3286
3288
|
version: '1.0.0',
|
|
3287
3289
|
description: 'Mastra API'
|
|
3288
|
-
}
|
|
3289
|
-
servers: [{
|
|
3290
|
-
url: "http://localhost:" + (process.env.PORT || 4111),
|
|
3291
|
-
description: 'Mastra Server'
|
|
3292
|
-
}]
|
|
3290
|
+
}
|
|
3293
3291
|
}
|
|
3294
3292
|
}));
|
|
3295
3293
|
app.get('/swagger-ui', swaggerUi.swaggerUI({
|