Skip to content

Commit 5aa6f56

Browse files
Fix typo in ConfigurePropResponse (#266)
The correct name for the "string options" field is `stringOptions` instead of `string_options`. --------- Co-authored-by: Jay Vercellone <[email protected]>
1 parent 2b51b50 commit 5aa6f56

File tree

5 files changed

+20
-16
lines changed

5 files changed

+20
-16
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "pipedream"
7-
version = "1.1.2"
7+
version = "1.1.3"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/pipedream/apps/client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ def list(
7070
Only return apps in these categories
7171
7272
has_components : typing.Optional[bool]
73-
Filter to apps that have components (actions or triggers)
73+
Only return apps that have components (actions or triggers)
7474
7575
has_actions : typing.Optional[bool]
76-
Filter to apps that have actions
76+
Only return apps that have actions
7777
7878
has_triggers : typing.Optional[bool]
79-
Filter to apps that have triggers
79+
Only return apps that have triggers
8080
8181
request_options : typing.Optional[RequestOptions]
8282
Request-specific configuration.
@@ -219,13 +219,13 @@ async def list(
219219
Only return apps in these categories
220220
221221
has_components : typing.Optional[bool]
222-
Filter to apps that have components (actions or triggers)
222+
Only return apps that have components (actions or triggers)
223223
224224
has_actions : typing.Optional[bool]
225-
Filter to apps that have actions
225+
Only return apps that have actions
226226
227227
has_triggers : typing.Optional[bool]
228-
Filter to apps that have triggers
228+
Only return apps that have triggers
229229
230230
request_options : typing.Optional[RequestOptions]
231231
Request-specific configuration.

src/pipedream/apps/raw_client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ def list(
6363
Only return apps in these categories
6464
6565
has_components : typing.Optional[bool]
66-
Filter to apps that have components (actions or triggers)
66+
Only return apps that have components (actions or triggers)
6767
6868
has_actions : typing.Optional[bool]
69-
Filter to apps that have actions
69+
Only return apps that have actions
7070
7171
has_triggers : typing.Optional[bool]
72-
Filter to apps that have triggers
72+
Only return apps that have triggers
7373
7474
request_options : typing.Optional[RequestOptions]
7575
Request-specific configuration.
@@ -216,13 +216,13 @@ async def list(
216216
Only return apps in these categories
217217
218218
has_components : typing.Optional[bool]
219-
Filter to apps that have components (actions or triggers)
219+
Only return apps that have components (actions or triggers)
220220
221221
has_actions : typing.Optional[bool]
222-
Filter to apps that have actions
222+
Only return apps that have actions
223223
224224
has_triggers : typing.Optional[bool]
225-
Filter to apps that have triggers
225+
Only return apps that have triggers
226226
227227
request_options : typing.Optional[RequestOptions]
228228
Request-specific configuration.

src/pipedream/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ def __init__(
2727

2828
def get_headers(self) -> typing.Dict[str, str]:
2929
headers: typing.Dict[str, str] = {
30-
"User-Agent": "pipedream/1.1.2",
30+
"User-Agent": "pipedream/1.1.3",
3131
"X-Fern-Language": "Python",
3232
"X-Fern-SDK-Name": "pipedream",
33-
"X-Fern-SDK-Version": "1.1.2",
33+
"X-Fern-SDK-Version": "1.1.3",
3434
**(self.get_custom_headers() or {}),
3535
}
3636
if self._project_environment is not None:

src/pipedream/types/configure_prop_response.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
import typing
44

55
import pydantic
6+
import typing_extensions
67
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
8+
from ..core.serialization import FieldMetadata
79
from .configure_prop_options import ConfigurePropOptions
810
from .observation import Observation
911

@@ -14,7 +16,9 @@ class ConfigurePropResponse(UniversalBaseModel):
1416
"""
1517

1618
options: typing.Optional[ConfigurePropOptions] = None
17-
string_options: typing.Optional[typing.List[str]] = pydantic.Field(default=None)
19+
string_options: typing_extensions.Annotated[
20+
typing.Optional[typing.List[str]], FieldMetadata(alias="stringOptions")
21+
] = pydantic.Field(default=None)
1822
"""
1923
Available options for the configured prop
2024
"""

0 commit comments

Comments
 (0)