Skip to content

Commit c02af8e

Browse files
committed
SDK regeneration
1 parent e5396a6 commit c02af8e

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

src/pipedream/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
ListAppsResponse,
5151
PageInfo,
5252
ProjectEnvironment,
53+
ProjectId,
5354
ProjectInfoResponse,
5455
ProjectInfoResponseAppsItem,
5556
PropOption,
@@ -133,6 +134,7 @@
133134
"Pipedream",
134135
"PipedreamEnvironment",
135136
"ProjectEnvironment",
137+
"ProjectId",
136138
"ProjectInfoResponse",
137139
"ProjectInfoResponseAppsItem",
138140
"PropOption",

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: 1 addition & 1 deletion
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

src/pipedream/types/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
from .list_apps_response import ListAppsResponse
5050
from .page_info import PageInfo
5151
from .project_environment import ProjectEnvironment
52+
from .project_id import ProjectId
5253
from .project_info_response import ProjectInfoResponse
5354
from .project_info_response_apps_item import ProjectInfoResponseAppsItem
5455
from .prop_option import PropOption
@@ -108,6 +109,7 @@
108109
"ListAppsResponse",
109110
"PageInfo",
110111
"ProjectEnvironment",
112+
"ProjectId",
111113
"ProjectInfoResponse",
112114
"ProjectInfoResponseAppsItem",
113115
"PropOption",

src/pipedream/types/project_id.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This file was auto-generated by Fern from our API Definition.
2+
3+
ProjectId = str

0 commit comments

Comments
 (0)