@mastra/deployer 1.56.0 → 1.57.0-alpha.1
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 +18 -0
- package/dist/build/index.cjs +1 -1
- package/dist/build/index.js +1 -1
- package/dist/{build-Bxe1XG7G.cjs → build-C3NTU5IS.cjs} +8 -8
- package/dist/{build-Bxe1XG7G.cjs.map → build-C3NTU5IS.cjs.map} +1 -1
- package/dist/{build-DWq3ipm9.js → build-DCvdjuKW.js} +8 -8
- package/dist/{build-DWq3ipm9.js.map → build-DCvdjuKW.js.map} +1 -1
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/server/index.cjs +4 -0
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.js +4 -0
- package/dist/server/index.js.map +1 -1
- package/package.json +6 -6
package/dist/server/index.js
CHANGED
|
@@ -2848,6 +2848,10 @@ var MastraServer$1 = class extends MastraServer {
|
|
|
2848
2848
|
}
|
|
2849
2849
|
registerContextMiddleware() {
|
|
2850
2850
|
this.app.use("*", this.createContextMiddleware());
|
|
2851
|
+
this.app.use("*", async (c, next) => {
|
|
2852
|
+
await next();
|
|
2853
|
+
this.warnIfUnregisteredChannelWebhook(c.req.path, c.req.method, c.res.status);
|
|
2854
|
+
});
|
|
2851
2855
|
}
|
|
2852
2856
|
registerAuthMiddleware() {}
|
|
2853
2857
|
registerHttpLoggingMiddleware() {
|