10
10
from ..core .pagination import AsyncPager , BaseHttpResponse , SyncPager
11
11
from ..core .pydantic_utilities import parse_obj_as
12
12
from ..core .request_options import RequestOptions
13
- from ..core .serialization import convert_and_respect_annotation_metadata
14
13
from ..types .component import Component
15
14
from ..types .configure_prop_response import ConfigurePropResponse
16
15
from ..types .get_component_response import GetComponentResponse
17
16
from ..types .get_components_response import GetComponentsResponse
18
17
from ..types .reload_props_response import ReloadPropsResponse
19
- from ..types .run_action_opts_stash_id import RunActionOptsStashId
20
18
from ..types .run_action_response import RunActionResponse
21
19
22
20
# this is used as the default value for optional parameters
@@ -324,7 +322,6 @@ def run(
324
322
async_handle : typing .Optional [str ] = None ,
325
323
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
326
324
dynamic_props_id : typing .Optional [str ] = OMIT ,
327
- stash_id : typing .Optional [RunActionOptsStashId ] = OMIT ,
328
325
request_options : typing .Optional [RequestOptions ] = None ,
329
326
) -> HttpResponse [RunActionResponse ]:
330
327
"""
@@ -344,8 +341,6 @@ def run(
344
341
dynamic_props_id : typing.Optional[str]
345
342
The ID for dynamic props
346
343
347
- stash_id : typing.Optional[RunActionOptsStashId]
348
-
349
344
request_options : typing.Optional[RequestOptions]
350
345
Request-specific configuration.
351
346
@@ -362,9 +357,6 @@ def run(
362
357
"external_user_id" : external_user_id ,
363
358
"configured_props" : configured_props ,
364
359
"dynamic_props_id" : dynamic_props_id ,
365
- "stash_id" : convert_and_respect_annotation_metadata (
366
- object_ = stash_id , annotation = RunActionOptsStashId , direction = "write"
367
- ),
368
360
},
369
361
headers = {
370
362
"content-type" : "application/json" ,
@@ -693,7 +685,6 @@ async def run(
693
685
async_handle : typing .Optional [str ] = None ,
694
686
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
695
687
dynamic_props_id : typing .Optional [str ] = OMIT ,
696
- stash_id : typing .Optional [RunActionOptsStashId ] = OMIT ,
697
688
request_options : typing .Optional [RequestOptions ] = None ,
698
689
) -> AsyncHttpResponse [RunActionResponse ]:
699
690
"""
@@ -713,8 +704,6 @@ async def run(
713
704
dynamic_props_id : typing.Optional[str]
714
705
The ID for dynamic props
715
706
716
- stash_id : typing.Optional[RunActionOptsStashId]
717
-
718
707
request_options : typing.Optional[RequestOptions]
719
708
Request-specific configuration.
720
709
@@ -731,9 +720,6 @@ async def run(
731
720
"external_user_id" : external_user_id ,
732
721
"configured_props" : configured_props ,
733
722
"dynamic_props_id" : dynamic_props_id ,
734
- "stash_id" : convert_and_respect_annotation_metadata (
735
- object_ = stash_id , annotation = RunActionOptsStashId , direction = "write"
736
- ),
737
723
},
738
724
headers = {
739
725
"content-type" : "application/json" ,
0 commit comments