Skip to content

Commit a9e8e8d

Browse files
committed
SDK regeneration
1 parent cfe4b1b commit a9e8e8d

File tree

6 files changed

+88
-94
lines changed

6 files changed

+88
-94
lines changed

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/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import typing
55

66
import httpx
7-
from .types.project_environment import ProjectEnvironment
7+
from ._.types.project_environment import ProjectEnvironment
88
from .accounts.client import AccountsClient, AsyncAccountsClient
99
from .actions.client import ActionsClient, AsyncActionsClient
1010
from .app_categories.client import AppCategoriesClient, AsyncAppCategoriesClient

src/pipedream/core/client_wrapper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import typing
44

55
import httpx
6-
from ..types.project_environment import ProjectEnvironment
6+
from .._.types.project_environment import ProjectEnvironment
77
from .http_client import AsyncHttpClient, HttpClient
88

99

@@ -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:

src/pipedream/proxy/client.py

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
66
from ..core.request_options import RequestOptions
7+
from ..types.proxy_response import ProxyResponse
78
from .raw_client import AsyncRawProxyClient, RawProxyClient
89

910
# this is used as the default value for optional parameters
@@ -32,7 +33,7 @@ def get(
3233
external_user_id: str,
3334
account_id: str,
3435
request_options: typing.Optional[RequestOptions] = None,
35-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
36+
) -> ProxyResponse:
3637
"""
3738
Parameters
3839
----------
@@ -50,7 +51,7 @@ def get(
5051
5152
Returns
5253
-------
53-
typing.Dict[str, typing.Optional[typing.Any]]
54+
ProxyResponse
5455
proxy request successful
5556
5657
Examples
@@ -82,7 +83,7 @@ def post(
8283
account_id: str,
8384
request: typing.Dict[str, typing.Optional[typing.Any]],
8485
request_options: typing.Optional[RequestOptions] = None,
85-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
86+
) -> ProxyResponse:
8687
"""
8788
Parameters
8889
----------
@@ -102,7 +103,7 @@ def post(
102103
103104
Returns
104105
-------
105-
typing.Dict[str, typing.Optional[typing.Any]]
106+
ProxyResponse
106107
proxy request successful
107108
108109
Examples
@@ -139,7 +140,7 @@ def put(
139140
account_id: str,
140141
request: typing.Dict[str, typing.Optional[typing.Any]],
141142
request_options: typing.Optional[RequestOptions] = None,
142-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
143+
) -> ProxyResponse:
143144
"""
144145
Parameters
145146
----------
@@ -159,7 +160,7 @@ def put(
159160
160161
Returns
161162
-------
162-
typing.Dict[str, typing.Optional[typing.Any]]
163+
ProxyResponse
163164
proxy request successful
164165
165166
Examples
@@ -195,7 +196,7 @@ def delete(
195196
external_user_id: str,
196197
account_id: str,
197198
request_options: typing.Optional[RequestOptions] = None,
198-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
199+
) -> ProxyResponse:
199200
"""
200201
Parameters
201202
----------
@@ -213,7 +214,7 @@ def delete(
213214
214215
Returns
215216
-------
216-
typing.Dict[str, typing.Optional[typing.Any]]
217+
ProxyResponse
217218
proxy request successful
218219
219220
Examples
@@ -245,7 +246,7 @@ def patch(
245246
account_id: str,
246247
request: typing.Dict[str, typing.Optional[typing.Any]],
247248
request_options: typing.Optional[RequestOptions] = None,
248-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
249+
) -> ProxyResponse:
249250
"""
250251
Parameters
251252
----------
@@ -265,7 +266,7 @@ def patch(
265266
266267
Returns
267268
-------
268-
typing.Dict[str, typing.Optional[typing.Any]]
269+
ProxyResponse
269270
proxy request successful
270271
271272
Examples
@@ -317,7 +318,7 @@ async def get(
317318
external_user_id: str,
318319
account_id: str,
319320
request_options: typing.Optional[RequestOptions] = None,
320-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
321+
) -> ProxyResponse:
321322
"""
322323
Parameters
323324
----------
@@ -335,7 +336,7 @@ async def get(
335336
336337
Returns
337338
-------
338-
typing.Dict[str, typing.Optional[typing.Any]]
339+
ProxyResponse
339340
proxy request successful
340341
341342
Examples
@@ -375,7 +376,7 @@ async def post(
375376
account_id: str,
376377
request: typing.Dict[str, typing.Optional[typing.Any]],
377378
request_options: typing.Optional[RequestOptions] = None,
378-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
379+
) -> ProxyResponse:
379380
"""
380381
Parameters
381382
----------
@@ -395,7 +396,7 @@ async def post(
395396
396397
Returns
397398
-------
398-
typing.Dict[str, typing.Optional[typing.Any]]
399+
ProxyResponse
399400
proxy request successful
400401
401402
Examples
@@ -440,7 +441,7 @@ async def put(
440441
account_id: str,
441442
request: typing.Dict[str, typing.Optional[typing.Any]],
442443
request_options: typing.Optional[RequestOptions] = None,
443-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
444+
) -> ProxyResponse:
444445
"""
445446
Parameters
446447
----------
@@ -460,7 +461,7 @@ async def put(
460461
461462
Returns
462463
-------
463-
typing.Dict[str, typing.Optional[typing.Any]]
464+
ProxyResponse
464465
proxy request successful
465466
466467
Examples
@@ -504,7 +505,7 @@ async def delete(
504505
external_user_id: str,
505506
account_id: str,
506507
request_options: typing.Optional[RequestOptions] = None,
507-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
508+
) -> ProxyResponse:
508509
"""
509510
Parameters
510511
----------
@@ -522,7 +523,7 @@ async def delete(
522523
523524
Returns
524525
-------
525-
typing.Dict[str, typing.Optional[typing.Any]]
526+
ProxyResponse
526527
proxy request successful
527528
528529
Examples
@@ -562,7 +563,7 @@ async def patch(
562563
account_id: str,
563564
request: typing.Dict[str, typing.Optional[typing.Any]],
564565
request_options: typing.Optional[RequestOptions] = None,
565-
) -> typing.Dict[str, typing.Optional[typing.Any]]:
566+
) -> ProxyResponse:
566567
"""
567568
Parameters
568569
----------
@@ -582,7 +583,7 @@ async def patch(
582583
583584
Returns
584585
-------
585-
typing.Dict[str, typing.Optional[typing.Any]]
586+
ProxyResponse
586587
proxy request successful
587588
588589
Examples

0 commit comments

Comments
 (0)