@dbx-tools/appkit-mastra 0.1.35 → 0.1.37

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/package.json CHANGED
@@ -9,13 +9,13 @@
9
9
  }
10
10
  },
11
11
  "name": "@dbx-tools/appkit-mastra",
12
- "version": "0.1.35",
12
+ "version": "0.1.37",
13
13
  "dependencies": {
14
14
  "@databricks/sdk-experimental": "^0.17",
15
- "@dbx-tools/appkit-mastra-shared": "0.1.35",
16
- "@dbx-tools/genie": "0.1.35",
17
- "@dbx-tools/genie-shared": "0.1.35",
18
- "@dbx-tools/shared": "0.1.35",
15
+ "@dbx-tools/appkit-mastra-shared": "0.1.37",
16
+ "@dbx-tools/genie": "0.1.37",
17
+ "@dbx-tools/genie-shared": "0.1.37",
18
+ "@dbx-tools/shared": "0.1.37",
19
19
  "@mastra/ai-sdk": "^1",
20
20
  "@mastra/core": "^1",
21
21
  "@mastra/express": "^1",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "module": "index.ts",
36
36
  "peerDependencies": {
37
- "@databricks/appkit": "^0.35",
37
+ "@databricks/appkit": "^0.41",
38
38
  "express": "^5"
39
39
  },
40
40
  "type": "module",
package/src/plugin.ts CHANGED
@@ -337,7 +337,7 @@ export class MastraPlugin extends Plugin<MastraPluginConfig> {
337
337
  router.get("/suggestions", handleSuggestions);
338
338
  router.get("/suggestions/:agentId", handleSuggestions);
339
339
 
340
- router.use("", (req, res, next) => {
340
+ router.use((req, res, next) => {
341
341
  if (!this.mastraApp) return res.status(503).end();
342
342
  return this.userScopedSelf(req).mastraApp!(req, res, next);
343
343
  });