File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "pipedream"
3
3
4
4
[tool .poetry ]
5
5
name = " pipedream"
6
- version = " 1.0.6 "
6
+ version = " 1.0.7 "
7
7
description = " "
8
8
readme = " README.md"
9
9
authors = []
Original file line number Diff line number Diff line change 6
6
import typing
7
7
8
8
import httpx
9
- from .types .project_environment import ProjectEnvironment
9
+ from ._ . types .project_environment import ProjectEnvironment
10
10
from .core .api_error import ApiError
11
11
from .core .client_wrapper import AsyncClientWrapper , SyncClientWrapper
12
12
from .core .oauth_token_provider import OAuthTokenProvider
Original file line number Diff line number Diff line change 3
3
import typing
4
4
5
5
import httpx
6
- from ..types .project_environment import ProjectEnvironment
6
+ from .._ . types .project_environment import ProjectEnvironment
7
7
from .http_client import AsyncHttpClient , HttpClient
8
8
9
9
@@ -27,10 +27,10 @@ def __init__(
27
27
28
28
def get_headers (self ) -> typing .Dict [str , str ]:
29
29
headers : typing .Dict [str , str ] = {
30
- "User-Agent" : "pipedream/1.0.6 " ,
30
+ "User-Agent" : "pipedream/1.0.7 " ,
31
31
"X-Fern-Language" : "Python" ,
32
32
"X-Fern-SDK-Name" : "pipedream" ,
33
- "X-Fern-SDK-Version" : "1.0.6 " ,
33
+ "X-Fern-SDK-Version" : "1.0.7 " ,
34
34
** (self .get_custom_headers () or {}),
35
35
}
36
36
if self ._project_environment is not None :
Original file line number Diff line number Diff line change 9
9
"$.airtable.tableId" ,
10
10
"$.airtable.viewId" ,
11
11
"$.discord.channel" ,
12
+ "$.discord.channel[]" ,
12
13
"$.interface.apphook" ,
13
14
"$.interface.http" ,
14
15
"$.interface.timer" ,
21
22
"dir" ,
22
23
"http_request" ,
23
24
"integer" ,
25
+ "integer[]" ,
24
26
"object" ,
25
27
"sql" ,
26
28
"string" ,
29
+ "string[]" ,
27
30
],
28
31
typing .Any ,
29
32
]
You can’t perform that action at this time.
0 commit comments