We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab1113 commit 76a8ff7Copy full SHA for 76a8ff7
packages/sdk/CHANGELOG.md
@@ -2,6 +2,12 @@
2
3
# Changelog
4
5
+## [1.3.3] - 2025-02-5
6
+
7
+### Changed
8
9
+- Add makeProxyRequest function to BaseClient
10
11
## [1.3.2] - 2025-02-3
12
13
### Changed
packages/sdk/package.json
@@ -1,7 +1,7 @@
1
{
"name": "@pipedream/sdk",
"type": "module",
- "version": "1.3.2",
+ "version": "1.3.3",
"description": "Pipedream SDK",
"main": "./dist/server.js",
"module": "./dist/server.js",
packages/sdk/src/server/index.ts
@@ -124,7 +124,7 @@ export type ProxyTargetApiOpts = {
124
/**
125
* http method for the request
126
*/
127
- method: string;
+ method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
128
129
* http headers for the request
130
0 commit comments