Skip to content

🌿 Fern Regeneration -- August 16, 2025 #76

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 16, 2025
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
20 changes: 0 additions & 20 deletions src/pipedream/actions/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ def configure_prop(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
page: typing.Optional[float] = OMIT,
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
query: typing.Optional[str] = OMIT,
Expand All @@ -156,9 +155,6 @@ def configure_prop(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

page : typing.Optional[float]
Page number for paginated results

Expand Down Expand Up @@ -199,7 +195,6 @@ def configure_prop(
blocking=blocking,
configured_props=configured_props,
dynamic_props_id=dynamic_props_id,
async_handle=async_handle,
page=page,
prev_context=prev_context,
query=query,
Expand All @@ -215,7 +210,6 @@ def reload_props(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> ReloadPropsResponse:
"""
Expand All @@ -236,9 +230,6 @@ def reload_props(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

request_options : typing.Optional[RequestOptions]
Request-specific configuration.

Expand Down Expand Up @@ -268,7 +259,6 @@ def reload_props(
blocking=blocking,
configured_props=configured_props,
dynamic_props_id=dynamic_props_id,
async_handle=async_handle,
request_options=request_options,
)
return _response.data
Expand Down Expand Up @@ -466,7 +456,6 @@ async def configure_prop(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
page: typing.Optional[float] = OMIT,
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
query: typing.Optional[str] = OMIT,
Expand All @@ -493,9 +482,6 @@ async def configure_prop(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

page : typing.Optional[float]
Page number for paginated results

Expand Down Expand Up @@ -544,7 +530,6 @@ async def main() -> None:
blocking=blocking,
configured_props=configured_props,
dynamic_props_id=dynamic_props_id,
async_handle=async_handle,
page=page,
prev_context=prev_context,
query=query,
Expand All @@ -560,7 +545,6 @@ async def reload_props(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> ReloadPropsResponse:
"""
Expand All @@ -581,9 +565,6 @@ async def reload_props(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

request_options : typing.Optional[RequestOptions]
Request-specific configuration.

Expand Down Expand Up @@ -621,7 +602,6 @@ async def main() -> None:
blocking=blocking,
configured_props=configured_props,
dynamic_props_id=dynamic_props_id,
async_handle=async_handle,
request_options=request_options,
)
return _response.data
Expand Down
20 changes: 0 additions & 20 deletions src/pipedream/actions/raw_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ def configure_prop(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
page: typing.Optional[float] = OMIT,
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
query: typing.Optional[str] = OMIT,
Expand All @@ -180,9 +179,6 @@ def configure_prop(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

page : typing.Optional[float]
Page number for paginated results

Expand Down Expand Up @@ -210,7 +206,6 @@ def configure_prop(
"blocking": blocking,
"configured_props": configured_props,
"dynamic_props_id": dynamic_props_id,
"async_handle": async_handle,
"page": page,
"prev_context": prev_context,
"query": query,
Expand Down Expand Up @@ -244,7 +239,6 @@ def reload_props(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[ReloadPropsResponse]:
"""
Expand All @@ -265,9 +259,6 @@ def reload_props(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

request_options : typing.Optional[RequestOptions]
Request-specific configuration.

Expand All @@ -285,7 +276,6 @@ def reload_props(
"blocking": blocking,
"configured_props": configured_props,
"dynamic_props_id": dynamic_props_id,
"async_handle": async_handle,
},
headers={
"content-type": "application/json",
Expand Down Expand Up @@ -510,7 +500,6 @@ async def configure_prop(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
page: typing.Optional[float] = OMIT,
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
query: typing.Optional[str] = OMIT,
Expand All @@ -537,9 +526,6 @@ async def configure_prop(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

page : typing.Optional[float]
Page number for paginated results

Expand Down Expand Up @@ -567,7 +553,6 @@ async def configure_prop(
"blocking": blocking,
"configured_props": configured_props,
"dynamic_props_id": dynamic_props_id,
"async_handle": async_handle,
"page": page,
"prev_context": prev_context,
"query": query,
Expand Down Expand Up @@ -601,7 +586,6 @@ async def reload_props(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncHttpResponse[ReloadPropsResponse]:
"""
Expand All @@ -622,9 +606,6 @@ async def reload_props(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

request_options : typing.Optional[RequestOptions]
Request-specific configuration.

Expand All @@ -642,7 +623,6 @@ async def reload_props(
"blocking": blocking,
"configured_props": configured_props,
"dynamic_props_id": dynamic_props_id,
"async_handle": async_handle,
},
headers={
"content-type": "application/json",
Expand Down
20 changes: 0 additions & 20 deletions src/pipedream/components/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ def configure_prop(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
page: typing.Optional[float] = OMIT,
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
query: typing.Optional[str] = OMIT,
Expand All @@ -154,9 +153,6 @@ def configure_prop(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

page : typing.Optional[float]
Page number for paginated results

Expand Down Expand Up @@ -197,7 +193,6 @@ def configure_prop(
blocking=blocking,
configured_props=configured_props,
dynamic_props_id=dynamic_props_id,
async_handle=async_handle,
page=page,
prev_context=prev_context,
query=query,
Expand All @@ -213,7 +208,6 @@ def reload_props(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> ReloadPropsResponse:
"""
Expand All @@ -234,9 +228,6 @@ def reload_props(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

request_options : typing.Optional[RequestOptions]
Request-specific configuration.

Expand Down Expand Up @@ -266,7 +257,6 @@ def reload_props(
blocking=blocking,
configured_props=configured_props,
dynamic_props_id=dynamic_props_id,
async_handle=async_handle,
request_options=request_options,
)
return _response.data
Expand Down Expand Up @@ -404,7 +394,6 @@ async def configure_prop(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
page: typing.Optional[float] = OMIT,
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
query: typing.Optional[str] = OMIT,
Expand All @@ -431,9 +420,6 @@ async def configure_prop(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

page : typing.Optional[float]
Page number for paginated results

Expand Down Expand Up @@ -482,7 +468,6 @@ async def main() -> None:
blocking=blocking,
configured_props=configured_props,
dynamic_props_id=dynamic_props_id,
async_handle=async_handle,
page=page,
prev_context=prev_context,
query=query,
Expand All @@ -498,7 +483,6 @@ async def reload_props(
blocking: typing.Optional[bool] = OMIT,
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
dynamic_props_id: typing.Optional[str] = OMIT,
async_handle: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> ReloadPropsResponse:
"""
Expand All @@ -519,9 +503,6 @@ async def reload_props(
dynamic_props_id : typing.Optional[str]
The ID for dynamic props

async_handle : typing.Optional[str]
Handle for async operations

request_options : typing.Optional[RequestOptions]
Request-specific configuration.

Expand Down Expand Up @@ -559,7 +540,6 @@ async def main() -> None:
blocking=blocking,
configured_props=configured_props,
dynamic_props_id=dynamic_props_id,
async_handle=async_handle,
request_options=request_options,
)
return _response.data
Loading