Skip to content

Commit 1d2234d

Browse files
Fix the Proxy logic (#35)
* Remove the response parsing logic since it's free-form * Take over the Proxy clients so that they expose a nicer interface --------- Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Co-authored-by: Jay Vercellone <[email protected]>
1 parent cfe4b1b commit 1d2234d

File tree

6 files changed

+370
-194
lines changed

6 files changed

+370
-194
lines changed

.fernignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
LICENSE
66

77
src/pipedream/pipedream.py
8+
src/pipedream/proxy/client.py

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pipedream"
33

44
[tool.poetry]
55
name = "pipedream"
6-
version = "0.3.2"
6+
version = "0.3.3"
77
description = ""
88
readme = "README.md"
99
authors = []

src/pipedream/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ def __init__(
2727

2828
def get_headers(self) -> typing.Dict[str, str]:
2929
headers: typing.Dict[str, str] = {
30-
"User-Agent": "pipedream/0.3.2",
30+
"User-Agent": "pipedream/0.3.3",
3131
"X-Fern-Language": "Python",
3232
"X-Fern-SDK-Name": "pipedream",
33-
"X-Fern-SDK-Version": "0.3.2",
33+
"X-Fern-SDK-Version": "0.3.3",
3434
**(self.get_custom_headers() or {}),
3535
}
3636
if self._project_environment is not None:

0 commit comments

Comments
 (0)