@@ -227,7 +227,7 @@ def run(self, app="", action="", org_id="", category="", skip_workflow=True, aut
227227 return connect (app = app , action = action , org_id = org_id , category = category , skip_workflow = skip_workflow , auth_id = auth_id , authentication_id = authentication_id , fields = fields , params = params , ** kwargs )
228228
229229
230- def connect (self , app = "" , action = "" , org_id = "" , category = "" , skip_workflow = True , auth_id = "" , authentication_id = "" , fields = [], params = {}, ** kwargs ):
230+ def connect (self , app = "" , action = "" , org_id = "" , category = "" , skip_workflow = True , auth_id = "" , authentication_id = "" , fields = [], params = {}, skip_authentication = False , ** kwargs ):
231231 if self .standalone :
232232 standalone = Standalone ()
233233 return standalone .connect (app = app , action = action , org_id = org_id , category = category , skip_workflow = skip_workflow , auth_id = auth_id , authentication_id = authentication_id , fields = fields , params = params , ** kwargs )
@@ -277,6 +277,9 @@ def connect(self, app="", action="", org_id="", category="", skip_workflow=True,
277277
278278 if authentication_id :
279279 requestdata ["authentication_id" ] = authentication_id
280+
281+ if skip_authentication :
282+ requestdata ["skip_authentication" ] = skip_authentication
280283
281284 if self .config ["execution_id" ]:
282285 if "?" in parsedurl :
0 commit comments