Skip to content

Commit da0c5e2

Browse files
committed
SDK regeneration
1 parent cfe4b1b commit da0c5e2

File tree

18 files changed

+152
-359
lines changed

18 files changed

+152
-359
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ 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+
token="YOUR_TOKEN",
3029
)
3130
client.accounts.create(
3231
app_slug="app_slug",
@@ -47,8 +46,7 @@ from pipedream import AsyncPipedream
4746
client = AsyncPipedream(
4847
project_id="YOUR_PROJECT_ID",
4948
project_environment="YOUR_PROJECT_ENVIRONMENT",
50-
client_id="YOUR_CLIENT_ID",
51-
client_secret="YOUR_CLIENT_SECRET",
49+
token="YOUR_TOKEN",
5250
)
5351

5452

@@ -88,8 +86,7 @@ from pipedream import Pipedream
8886
client = Pipedream(
8987
project_id="YOUR_PROJECT_ID",
9088
project_environment="YOUR_PROJECT_ENVIRONMENT",
91-
client_id="YOUR_CLIENT_ID",
92-
client_secret="YOUR_CLIENT_SECRET",
89+
token="YOUR_TOKEN",
9390
)
9491
response = client.apps.list()
9592
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)