@mastra/deployer-vercel 0.1.23 → 0.1.24-alpha.0

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/dist/index.cjs CHANGED
@@ -160,6 +160,10 @@ const app = await createHonoServer(mastra);
160
160
 
161
161
  export const GET = handle(app);
162
162
  export const POST = handle(app);
163
+ export const PUT = handle(app);
164
+ export const DELETE = handle(app);
165
+ export const OPTIONS = handle(app);
166
+ export const HEAD = handle(app);
163
167
  `;
164
168
  }
165
169
  writeVercelJSON(outputDirectory, files = ["./*"]) {
package/dist/index.js CHANGED
@@ -135,6 +135,10 @@ const app = await createHonoServer(mastra);
135
135
 
136
136
  export const GET = handle(app);
137
137
  export const POST = handle(app);
138
+ export const PUT = handle(app);
139
+ export const DELETE = handle(app);
140
+ export const OPTIONS = handle(app);
141
+ export const HEAD = handle(app);
138
142
  `;
139
143
  }
140
144
  writeVercelJSON(outputDirectory, files = ["./*"]) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer-vercel",
3
- "version": "0.1.23",
3
+ "version": "0.1.24-alpha.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -27,8 +27,8 @@
27
27
  "dependencies": {
28
28
  "@rollup/plugin-virtual": "^3.0.2",
29
29
  "fs-extra": "^11.3.0",
30
- "@mastra/deployer": "^0.3.4",
31
- "@mastra/core": "^0.9.4"
30
+ "@mastra/core": "^0.9.5-alpha.0",
31
+ "@mastra/deployer": "^0.3.5-alpha.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@microsoft/api-extractor": "^7.52.5",