Skip to content

Commit

Permalink
feat(proxy): add mapping to put requests
Browse files Browse the repository at this point in the history
  • Loading branch information
drochetti committed Jul 22, 2024
1 parent a87e660 commit d3115cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libs/proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fal-ai/serverless-proxy",
"version": "0.7.4",
"version": "0.7.5",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions libs/proxy/src/nextjs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,5 @@ export const route = {
handler: routeHandler,
GET: routeHandler,
POST: routeHandler,
PUT: routeHandler,
};
1 change: 1 addition & 0 deletions libs/proxy/src/svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,6 @@ export const createRequestHandler = ({
requestHandler: handler,
GET: handler,
POST: handler,
PUT: handler,
};
};

0 comments on commit d3115cc

Please sign in to comment.