diff --git a/pyproject.toml b/pyproject.toml index 6a115d7..6f60434 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "pipedream" [tool.poetry] name = "pipedream" -version = "1.0.6" +version = "1.0.7" description = "" readme = "README.md" authors = [] diff --git a/src/pipedream/client.py b/src/pipedream/client.py index 7fbf529..0c2fbdd 100644 --- a/src/pipedream/client.py +++ b/src/pipedream/client.py @@ -6,7 +6,7 @@ import typing import httpx -from .types.project_environment import ProjectEnvironment +from ._.types.project_environment import ProjectEnvironment from .core.api_error import ApiError from .core.client_wrapper import AsyncClientWrapper, SyncClientWrapper from .core.oauth_token_provider import OAuthTokenProvider diff --git a/src/pipedream/core/client_wrapper.py b/src/pipedream/core/client_wrapper.py index ceedd88..834c9b6 100644 --- a/src/pipedream/core/client_wrapper.py +++ b/src/pipedream/core/client_wrapper.py @@ -3,7 +3,7 @@ import typing import httpx -from ..types.project_environment import ProjectEnvironment +from .._.types.project_environment import ProjectEnvironment from .http_client import AsyncHttpClient, HttpClient @@ -27,10 +27,10 @@ def __init__( def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { - "User-Agent": "pipedream/1.0.6", + "User-Agent": "pipedream/1.0.7", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "pipedream", - "X-Fern-SDK-Version": "1.0.6", + "X-Fern-SDK-Version": "1.0.7", **(self.get_custom_headers() or {}), } if self._project_environment is not None: diff --git a/src/pipedream/types/configurable_prop_type.py b/src/pipedream/types/configurable_prop_type.py index f87ec6d..408276a 100644 --- a/src/pipedream/types/configurable_prop_type.py +++ b/src/pipedream/types/configurable_prop_type.py @@ -9,6 +9,7 @@ "$.airtable.tableId", "$.airtable.viewId", "$.discord.channel", + "$.discord.channel[]", "$.interface.apphook", "$.interface.http", "$.interface.timer", @@ -21,9 +22,11 @@ "dir", "http_request", "integer", + "integer[]", "object", "sql", "string", + "string[]", ], typing.Any, ]