diff --git a/pyproject.toml b/pyproject.toml index 2e2f349..30a012f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ dynamic = ["version"] [tool.poetry] name = "pipedream" -version = "1.1.2" +version = "1.1.3" description = "" readme = "README.md" authors = [] diff --git a/src/pipedream/apps/client.py b/src/pipedream/apps/client.py index 9ee5c91..1d56cbf 100644 --- a/src/pipedream/apps/client.py +++ b/src/pipedream/apps/client.py @@ -70,13 +70,13 @@ def list( Only return apps in these categories has_components : typing.Optional[bool] - Filter to apps that have components (actions or triggers) + Only return apps that have components (actions or triggers) has_actions : typing.Optional[bool] - Filter to apps that have actions + Only return apps that have actions has_triggers : typing.Optional[bool] - Filter to apps that have triggers + Only return apps that have triggers request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -219,13 +219,13 @@ async def list( Only return apps in these categories has_components : typing.Optional[bool] - Filter to apps that have components (actions or triggers) + Only return apps that have components (actions or triggers) has_actions : typing.Optional[bool] - Filter to apps that have actions + Only return apps that have actions has_triggers : typing.Optional[bool] - Filter to apps that have triggers + Only return apps that have triggers request_options : typing.Optional[RequestOptions] Request-specific configuration. diff --git a/src/pipedream/apps/raw_client.py b/src/pipedream/apps/raw_client.py index f52dc52..d04aa42 100644 --- a/src/pipedream/apps/raw_client.py +++ b/src/pipedream/apps/raw_client.py @@ -63,13 +63,13 @@ def list( Only return apps in these categories has_components : typing.Optional[bool] - Filter to apps that have components (actions or triggers) + Only return apps that have components (actions or triggers) has_actions : typing.Optional[bool] - Filter to apps that have actions + Only return apps that have actions has_triggers : typing.Optional[bool] - Filter to apps that have triggers + Only return apps that have triggers request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -216,13 +216,13 @@ async def list( Only return apps in these categories has_components : typing.Optional[bool] - Filter to apps that have components (actions or triggers) + Only return apps that have components (actions or triggers) has_actions : typing.Optional[bool] - Filter to apps that have actions + Only return apps that have actions has_triggers : typing.Optional[bool] - Filter to apps that have triggers + Only return apps that have triggers request_options : typing.Optional[RequestOptions] Request-specific configuration. diff --git a/src/pipedream/core/client_wrapper.py b/src/pipedream/core/client_wrapper.py index 62d209b..b1967dd 100644 --- a/src/pipedream/core/client_wrapper.py +++ b/src/pipedream/core/client_wrapper.py @@ -27,10 +27,10 @@ def __init__( def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { - "User-Agent": "pipedream/1.1.2", + "User-Agent": "pipedream/1.1.3", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "pipedream", - "X-Fern-SDK-Version": "1.1.2", + "X-Fern-SDK-Version": "1.1.3", **(self.get_custom_headers() or {}), } if self._project_environment is not None: diff --git a/src/pipedream/types/configure_prop_response.py b/src/pipedream/types/configure_prop_response.py index 7bb1134..54ad6c5 100644 --- a/src/pipedream/types/configure_prop_response.py +++ b/src/pipedream/types/configure_prop_response.py @@ -3,7 +3,9 @@ import typing import pydantic +import typing_extensions from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from ..core.serialization import FieldMetadata from .configure_prop_options import ConfigurePropOptions from .observation import Observation @@ -14,7 +16,9 @@ class ConfigurePropResponse(UniversalBaseModel): """ options: typing.Optional[ConfigurePropOptions] = None - string_options: typing.Optional[typing.List[str]] = pydantic.Field(default=None) + string_options: typing_extensions.Annotated[ + typing.Optional[typing.List[str]], FieldMetadata(alias="stringOptions") + ] = pydantic.Field(default=None) """ Available options for the configured prop """