@@ -282,6 +282,7 @@ def deploy(
282282 external_user_id : str ,
283283 configured_props : typing .Optional [ConfiguredProps ] = OMIT ,
284284 dynamic_props_id : typing .Optional [str ] = OMIT ,
285+ workflow_id : typing .Optional [str ] = OMIT ,
285286 webhook_url : typing .Optional [str ] = OMIT ,
286287 request_options : typing .Optional [RequestOptions ] = None ,
287288 ) -> DeployTriggerResponseData :
@@ -301,6 +302,9 @@ def deploy(
301302 dynamic_props_id : typing.Optional[str]
302303 The ID for dynamic props
303304
305+ workflow_id : typing.Optional[str]
306+ Optional ID of a workflow to receive trigger events
307+
304308 webhook_url : typing.Optional[str]
305309 Optional webhook URL to receive trigger events
306310
@@ -332,6 +336,7 @@ def deploy(
332336 external_user_id = external_user_id ,
333337 configured_props = configured_props ,
334338 dynamic_props_id = dynamic_props_id ,
339+ workflow_id = workflow_id ,
335340 webhook_url = webhook_url ,
336341 request_options = request_options ,
337342 )
@@ -639,6 +644,7 @@ async def deploy(
639644 external_user_id : str ,
640645 configured_props : typing .Optional [ConfiguredProps ] = OMIT ,
641646 dynamic_props_id : typing .Optional [str ] = OMIT ,
647+ workflow_id : typing .Optional [str ] = OMIT ,
642648 webhook_url : typing .Optional [str ] = OMIT ,
643649 request_options : typing .Optional [RequestOptions ] = None ,
644650 ) -> DeployTriggerResponseData :
@@ -658,6 +664,9 @@ async def deploy(
658664 dynamic_props_id : typing.Optional[str]
659665 The ID for dynamic props
660666
667+ workflow_id : typing.Optional[str]
668+ Optional ID of a workflow to receive trigger events
669+
661670 webhook_url : typing.Optional[str]
662671 Optional webhook URL to receive trigger events
663672
@@ -697,6 +706,7 @@ async def main() -> None:
697706 external_user_id = external_user_id ,
698707 configured_props = configured_props ,
699708 dynamic_props_id = dynamic_props_id ,
709+ workflow_id = workflow_id ,
700710 webhook_url = webhook_url ,
701711 request_options = request_options ,
702712 )
0 commit comments