@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.
@@ -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() {