Skip to content

Commit 9eb773c

Browse files
committed
Fix build issues
1 parent 2c1b01e commit 9eb773c

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/pipedream/__init__.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
ComponentStash,
1414
ConfigurableProp,
1515
ConfigurablePropAlert,
16-
ConfigurablePropAlertAlertType,
16+
ConfigurablePropAlertType,
1717
ConfigurablePropAny,
1818
ConfigurablePropApp,
1919
ConfigurablePropBoolean,
@@ -24,9 +24,7 @@
2424
ConfigurablePropStringArray,
2525
ConfigurePropOpts,
2626
ConfigurePropResponse,
27-
ConnectTokenCreateOpts,
28-
ConnectTokenResponse,
29-
CreateBrowserClientOpts,
27+
ConnectToken,
3028
CreateOAuthTokenResponse,
3129
CreateTokenResponse,
3230
DeleteTriggerOpts,
@@ -51,12 +49,14 @@
5149
PageInfo,
5250
ProjectEnvironment,
5351
ProjectInfoResponse,
54-
ProjectInfoResponseAppsItem,
52+
ProjectInfoResponseApp,
5553
PropOption,
5654
ProxyResponse,
5755
ReloadPropsOpts,
5856
ReloadPropsResponse,
5957
RunActionResponse,
58+
RunActionOptsStashId,
59+
StashId,
6060
StartConnectOpts,
6161
ValidateTokenParams,
6262
ValidateTokenResponse,
@@ -95,7 +95,7 @@
9595
"ComponentStash",
9696
"ConfigurableProp",
9797
"ConfigurablePropAlert",
98-
"ConfigurablePropAlertAlertType",
98+
"ConfigurablePropAlertType",
9999
"ConfigurablePropAny",
100100
"ConfigurablePropApp",
101101
"ConfigurablePropBoolean",
@@ -106,9 +106,7 @@
106106
"ConfigurablePropStringArray",
107107
"ConfigurePropOpts",
108108
"ConfigurePropResponse",
109-
"ConnectTokenCreateOpts",
110-
"ConnectTokenResponse",
111-
"CreateBrowserClientOpts",
109+
"ConnectToken",
112110
"CreateOAuthTokenResponse",
113111
"CreateTokenResponse",
114112
"DeleteTriggerOpts",
@@ -135,12 +133,14 @@
135133
"PipedreamEnvironment",
136134
"ProjectEnvironment",
137135
"ProjectInfoResponse",
138-
"ProjectInfoResponseAppsItem",
136+
"ProjectInfoResponseApp",
139137
"PropOption",
140138
"ProxyResponse",
141139
"ReloadPropsOpts",
142140
"ReloadPropsResponse",
143141
"RunActionResponse",
142+
"RunActionOptsStashId",
143+
"StashId",
144144
"StartConnectOpts",
145145
"ValidateTokenParams",
146146
"ValidateTokenResponse",

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

0 commit comments

Comments
 (0)