Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "pipedream"
version = "1.1.2"
version = "1.1.3"
description = ""
readme = "README.md"
authors = []
Expand Down
12 changes: 6 additions & 6 deletions src/pipedream/apps/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
12 changes: 6 additions & 6 deletions src/pipedream/apps/raw_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/pipedream/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 5 additions & 1 deletion src/pipedream/types/configure_prop_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
"""
Expand Down