Skip to content

Commit 9ba43ef

Browse files
committed
SDK regeneration
1 parent cfe4b1b commit 9ba43ef

File tree

19 files changed

+191
-432
lines changed

19 files changed

+191
-432
lines changed

README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,10 @@ from pipedream import Pipedream
2525
client = Pipedream(
2626
project_id="YOUR_PROJECT_ID",
2727
project_environment="YOUR_PROJECT_ENVIRONMENT",
28-
client_id="YOUR_CLIENT_ID",
29-
client_secret="YOUR_CLIENT_SECRET",
28+
access_token="YOUR_ACCESS_TOKEN",
3029
)
3130
client.accounts.create(
3231
app_slug="app_slug",
33-
cfmap_json="cfmap_json",
34-
connect_token="connect_token",
3532
)
3633
```
3734

@@ -47,16 +44,13 @@ from pipedream import AsyncPipedream
4744
client = AsyncPipedream(
4845
project_id="YOUR_PROJECT_ID",
4946
project_environment="YOUR_PROJECT_ENVIRONMENT",
50-
client_id="YOUR_CLIENT_ID",
51-
client_secret="YOUR_CLIENT_SECRET",
47+
access_token="YOUR_ACCESS_TOKEN",
5248
)
5349

5450

5551
async def main() -> None:
5652
await client.accounts.create(
5753
app_slug="app_slug",
58-
cfmap_json="cfmap_json",
59-
connect_token="connect_token",
6054
)
6155

6256

@@ -88,8 +82,7 @@ from pipedream import Pipedream
8882
client = Pipedream(
8983
project_id="YOUR_PROJECT_ID",
9084
project_environment="YOUR_PROJECT_ENVIRONMENT",
91-
client_id="YOUR_CLIENT_ID",
92-
client_secret="YOUR_CLIENT_SECRET",
85+
access_token="YOUR_ACCESS_TOKEN",
9386
)
9487
response = client.apps.list()
9588
for item in response:

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 = []

0 commit comments

Comments
 (0)