Skip to content

Commit b2b1164

Browse files
committed
Fix build issues
1 parent 65ed18e commit b2b1164

File tree

3 files changed

+34
-5
lines changed

3 files changed

+34
-5
lines changed

src/pipedream/__init__.py

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,29 @@
1212
Component,
1313
ComponentStash,
1414
ConfigurableProp,
15+
ConfigurablePropAirtableBaseId,
16+
ConfigurablePropAirtableFieldId,
17+
ConfigurablePropAirtableTableId,
18+
ConfigurablePropAirtableViewId,
1519
ConfigurablePropAlert,
1620
ConfigurablePropAlertType,
1721
ConfigurablePropAny,
1822
ConfigurablePropApp,
23+
ConfigurablePropApphook,
1924
ConfigurablePropBoolean,
25+
ConfigurablePropDb,
26+
ConfigurablePropDiscordChannelArray,
27+
ConfigurablePropDiscordChannel,
2028
ConfigurablePropDiscord,
29+
ConfigurablePropHttp,
30+
ConfigurablePropIntegerArray,
2131
ConfigurablePropInteger,
2232
ConfigurablePropObject,
33+
ConfigurablePropSqlAuth,
34+
ConfigurablePropSql,
2335
ConfigurablePropString,
2436
ConfigurablePropStringArray,
37+
ConfigurablePropTimer,
2538
ConfigurePropOpts,
2639
ConfigurePropResponse,
2740
ConnectToken,
@@ -58,7 +71,8 @@
5871
RunActionOptsStashId,
5972
StashId,
6073
StartConnectOpts,
61-
ValidateTokenParams,
74+
TimerCron,
75+
TimerInterval,
6276
ValidateTokenResponse,
6377
)
6478
from . import (
@@ -94,16 +108,29 @@
94108
"Component",
95109
"ComponentStash",
96110
"ConfigurableProp",
111+
"ConfigurablePropAirtableBaseId",
112+
"ConfigurablePropAirtableFieldId",
113+
"ConfigurablePropAirtableTableId",
114+
"ConfigurablePropAirtableViewId",
97115
"ConfigurablePropAlert",
98116
"ConfigurablePropAlertType",
99117
"ConfigurablePropAny",
100118
"ConfigurablePropApp",
119+
"ConfigurablePropApphook",
101120
"ConfigurablePropBoolean",
121+
"ConfigurablePropDb",
122+
"ConfigurablePropDiscordChannelArray",
123+
"ConfigurablePropDiscordChannel",
102124
"ConfigurablePropDiscord",
125+
"ConfigurablePropHttp",
126+
"ConfigurablePropIntegerArray",
103127
"ConfigurablePropInteger",
104128
"ConfigurablePropObject",
105-
"ConfigurablePropString",
129+
"ConfigurablePropSqlAuth",
130+
"ConfigurablePropSql",
106131
"ConfigurablePropStringArray",
132+
"ConfigurablePropString",
133+
"ConfigurablePropTimer",
107134
"ConfigurePropOpts",
108135
"ConfigurePropResponse",
109136
"ConnectToken",
@@ -134,6 +161,7 @@
134161
"ProjectEnvironment",
135162
"ProjectInfoResponse",
136163
"ProjectInfoResponseApp",
164+
"ProjectInfoResponse",
137165
"PropOption",
138166
"ProxyResponse",
139167
"ReloadPropsOpts",
@@ -142,7 +170,8 @@
142170
"RunActionOptsStashId",
143171
"StashId",
144172
"StartConnectOpts",
145-
"ValidateTokenParams",
173+
"TimerCron",
174+
"TimerInterval",
146175
"ValidateTokenResponse",
147176
"__version__",
148177
"accounts",

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)