Skip to content

Commit 11f39b2

Browse files
SDK regeneration
1 parent 5aa6f56 commit 11f39b2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1584
-680
lines changed

.fern/metadata.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
2-
"cliVersion": "3.5.0",
2+
"cliVersion": "3.65.1",
33
"generatorName": "fernapi/fern-python-sdk",
4-
"generatorVersion": "4.45.0",
4+
"generatorVersion": "4.54.4",
55
"generatorConfig": {
66
"client": {
77
"class_name": "Client",
88
"filename": "client.py",
99
"exported_class_name": "Pipedream",
1010
"exported_filename": "pipedream.py"
1111
}
12-
}
12+
},
13+
"sdkVersion": "1.1.4"
1314
}

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ from pipedream import Pipedream
4040

4141
client = Pipedream(
4242
project_id="YOUR_PROJECT_ID",
43-
project_environment="YOUR_PROJECT_ENVIRONMENT",
44-
client_id="YOUR_CLIENT_ID",
45-
client_secret="YOUR_CLIENT_SECRET",
4643
)
4744
client.actions.run(
4845
id="id",
@@ -61,9 +58,6 @@ from pipedream import AsyncPipedream
6158

6259
client = AsyncPipedream(
6360
project_id="YOUR_PROJECT_ID",
64-
project_environment="YOUR_PROJECT_ENVIRONMENT",
65-
client_id="YOUR_CLIENT_ID",
66-
client_secret="YOUR_CLIENT_SECRET",
6761
)
6862

6963

@@ -101,9 +95,6 @@ from pipedream import Pipedream
10195

10296
client = Pipedream(
10397
project_id="YOUR_PROJECT_ID",
104-
project_environment="YOUR_PROJECT_ENVIRONMENT",
105-
client_id="YOUR_CLIENT_ID",
106-
client_secret="YOUR_CLIENT_SECRET",
10798
)
10899
response = client.apps.list(
109100
after="after",
@@ -165,6 +156,7 @@ client = Pipedream(
165156
)
166157
response = client.actions.with_raw_response.run(...)
167158
print(response.headers) # access the response headers
159+
print(response.status_code) # access the response status code
168160
print(response.data) # access the underlying object
169161
pager = client.apps.list(...)
170162
print(pager.response) # access the typed response for the first page

poetry.lock

Lines changed: 54 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "pipedream"
7-
version = "1.1.3"
7+
version = "1.1.4"
88
description = ""
99
readme = "README.md"
1010
authors = []
@@ -19,6 +19,9 @@ classifiers = [
1919
"Programming Language :: Python :: 3.10",
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
24+
"Programming Language :: Python :: 3.15",
2225
"Operating System :: OS Independent",
2326
"Operating System :: POSIX",
2427
"Operating System :: MacOS",

0 commit comments

Comments
 (0)