diff --git a/src/pipedream/actions/client.py b/src/pipedream/actions/client.py index 918877e..0ae8ede 100644 --- a/src/pipedream/actions/client.py +++ b/src/pipedream/actions/client.py @@ -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, @@ -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 @@ -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, @@ -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: """ @@ -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. @@ -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 @@ -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, @@ -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 @@ -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, @@ -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: """ @@ -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. @@ -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 diff --git a/src/pipedream/actions/raw_client.py b/src/pipedream/actions/raw_client.py index b668b84..e1ac042 100644 --- a/src/pipedream/actions/raw_client.py +++ b/src/pipedream/actions/raw_client.py @@ -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, @@ -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 @@ -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, @@ -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]: """ @@ -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. @@ -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", @@ -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, @@ -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 @@ -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, @@ -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]: """ @@ -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. @@ -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", diff --git a/src/pipedream/components/client.py b/src/pipedream/components/client.py index 44113e4..d2cb872 100644 --- a/src/pipedream/components/client.py +++ b/src/pipedream/components/client.py @@ -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, @@ -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 @@ -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, @@ -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: """ @@ -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. @@ -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 @@ -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, @@ -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 @@ -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, @@ -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: """ @@ -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. @@ -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 diff --git a/src/pipedream/components/raw_client.py b/src/pipedream/components/raw_client.py index 24eed3b..99d2ff0 100644 --- a/src/pipedream/components/raw_client.py +++ b/src/pipedream/components/raw_client.py @@ -150,7 +150,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, @@ -177,9 +176,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 @@ -207,7 +203,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, @@ -241,7 +236,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]: """ @@ -262,9 +256,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. @@ -282,7 +273,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", @@ -439,7 +429,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, @@ -466,9 +455,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 @@ -496,7 +482,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, @@ -530,7 +515,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]: """ @@ -551,9 +535,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. @@ -571,7 +552,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", diff --git a/src/pipedream/triggers/client.py b/src/pipedream/triggers/client.py index 90e114d..21d61cc 100644 --- a/src/pipedream/triggers/client.py +++ b/src/pipedream/triggers/client.py @@ -128,7 +128,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, @@ -155,9 +154,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 @@ -198,7 +194,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, @@ -214,7 +209,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: """ @@ -235,9 +229,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. @@ -267,7 +258,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 @@ -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, @@ -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 @@ -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, @@ -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: """ @@ -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. @@ -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 diff --git a/src/pipedream/triggers/raw_client.py b/src/pipedream/triggers/raw_client.py index 8e4b0c6..a946288 100644 --- a/src/pipedream/triggers/raw_client.py +++ b/src/pipedream/triggers/raw_client.py @@ -152,7 +152,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, @@ -179,9 +178,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 @@ -209,7 +205,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, @@ -243,7 +238,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]: """ @@ -264,9 +258,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. @@ -284,7 +275,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", @@ -509,7 +499,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, @@ -536,9 +525,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 @@ -566,7 +552,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, @@ -600,7 +585,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]: """ @@ -621,9 +605,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. @@ -641,7 +622,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", diff --git a/src/pipedream/types/account.py b/src/pipedream/types/account.py index ce024d3..7d1dd3f 100644 --- a/src/pipedream/types/account.py +++ b/src/pipedream/types/account.py @@ -13,7 +13,7 @@ class Account(UniversalBaseModel): End user account data, returned from the API. """ - id: typing.Optional[str] = pydantic.Field(default=None) + id: str = pydantic.Field() """ The unique ID of the account. """ diff --git a/src/pipedream/types/configure_prop_opts.py b/src/pipedream/types/configure_prop_opts.py index 5811a46..f24a4e0 100644 --- a/src/pipedream/types/configure_prop_opts.py +++ b/src/pipedream/types/configure_prop_opts.py @@ -41,11 +41,6 @@ class ConfigurePropOpts(UniversalBaseModel): The ID for dynamic props """ - async_handle: typing.Optional[str] = pydantic.Field(default=None) - """ - Handle for async operations - """ - page: typing.Optional[float] = pydantic.Field(default=None) """ Page number for paginated results diff --git a/src/pipedream/types/configure_prop_response.py b/src/pipedream/types/configure_prop_response.py index 6ed721f..c2423d9 100644 --- a/src/pipedream/types/configure_prop_response.py +++ b/src/pipedream/types/configure_prop_response.py @@ -27,11 +27,6 @@ class ConfigurePropResponse(UniversalBaseModel): Any logs produced during the configuration of the prop """ - async_handle: typing.Optional[str] = pydantic.Field(default=None) - """ - Handle for async operations - """ - context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None) """ New context after configuring the prop diff --git a/src/pipedream/types/reload_props_opts.py b/src/pipedream/types/reload_props_opts.py index 409e0fa..909833f 100644 --- a/src/pipedream/types/reload_props_opts.py +++ b/src/pipedream/types/reload_props_opts.py @@ -36,11 +36,6 @@ class ReloadPropsOpts(UniversalBaseModel): The ID for dynamic props """ - async_handle: typing.Optional[str] = pydantic.Field(default=None) - """ - Handle for async operations - """ - if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 else: