diff --git a/pyproject.toml b/pyproject.toml index b569920..42da7c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ dynamic = ["version"] [tool.poetry] name = "pipedream" -version = "1.1.5" +version = "1.1.6" description = "" readme = "README.md" authors = [] diff --git a/src/pipedream/client.py b/src/pipedream/client.py index 4713964..ac9ea45 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 AsyncOAuthTokenProvider, OAuthTokenProvider diff --git a/src/pipedream/core/client_wrapper.py b/src/pipedream/core/client_wrapper.py index dab687b..f739b92 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.1.5", + "User-Agent": "pipedream/1.1.6", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "pipedream", - "X-Fern-SDK-Version": "1.1.5", + "X-Fern-SDK-Version": "1.1.6", **(self.get_custom_headers() or {}), } if self._project_environment is not None: diff --git a/src/pipedream/environment.py b/src/pipedream/environment.py index cbafba5..d13d293 100644 --- a/src/pipedream/environment.py +++ b/src/pipedream/environment.py @@ -4,6 +4,4 @@ class PipedreamEnvironment(enum.Enum): - CANARY = "https://api2.pipedream.com" - DEV = "https://api.${DEV_NAMESPACE}.gkes.pipedream.net" PROD = "https://api.pipedream.com"