Skip to content

Commit 76a8ff7

Browse files
committed
PR feedback
1 parent 9ab1113 commit 76a8ff7

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

packages/sdk/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# Changelog
44

5+
## [1.3.3] - 2025-02-5
6+
7+
### Changed
8+
9+
- Add makeProxyRequest function to BaseClient
10+
511
## [1.3.2] - 2025-02-3
612

713
### Changed

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pipedream/sdk",
33
"type": "module",
4-
"version": "1.3.2",
4+
"version": "1.3.3",
55
"description": "Pipedream SDK",
66
"main": "./dist/server.js",
77
"module": "./dist/server.js",

packages/sdk/src/server/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export type ProxyTargetApiOpts = {
124124
/**
125125
* http method for the request
126126
*/
127-
method: string;
127+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
128128
/**
129129
* http headers for the request
130130
*/

0 commit comments

Comments
 (0)