@@ -44,6 +44,14 @@ def test_method_create_with_all_params(self, client: Arcade) -> None:
4444 "retry" : 0 ,
4545 "timeout" : 1 ,
4646 "uri" : "uri" ,
47+ "headers" : {"foo" : "string" },
48+ "oauth2" : {
49+ "authorization_url" : "authorization_url" ,
50+ "client_id" : "client_id" ,
51+ "client_secret" : "client_secret" ,
52+ "external_id" : "external_id" ,
53+ },
54+ "secrets" : {"foo" : "string" },
4755 },
4856 type = "type" ,
4957 )
@@ -92,7 +100,14 @@ def test_method_update_with_all_params(self, client: Arcade) -> None:
92100 "uri" : "uri" ,
93101 },
94102 mcp = {
103+ "headers" : {"foo" : "string" },
104+ "oauth2" : {
105+ "authorization_url" : "authorization_url" ,
106+ "client_id" : "client_id" ,
107+ "client_secret" : "client_secret" ,
108+ },
95109 "retry" : 0 ,
110+ "secrets" : {"foo" : "string" },
96111 "timeout" : 1 ,
97112 "uri" : "uri" ,
98113 },
@@ -352,6 +367,14 @@ async def test_method_create_with_all_params(self, async_client: AsyncArcade) ->
352367 "retry" : 0 ,
353368 "timeout" : 1 ,
354369 "uri" : "uri" ,
370+ "headers" : {"foo" : "string" },
371+ "oauth2" : {
372+ "authorization_url" : "authorization_url" ,
373+ "client_id" : "client_id" ,
374+ "client_secret" : "client_secret" ,
375+ "external_id" : "external_id" ,
376+ },
377+ "secrets" : {"foo" : "string" },
355378 },
356379 type = "type" ,
357380 )
@@ -400,7 +423,14 @@ async def test_method_update_with_all_params(self, async_client: AsyncArcade) ->
400423 "uri" : "uri" ,
401424 },
402425 mcp = {
426+ "headers" : {"foo" : "string" },
427+ "oauth2" : {
428+ "authorization_url" : "authorization_url" ,
429+ "client_id" : "client_id" ,
430+ "client_secret" : "client_secret" ,
431+ },
403432 "retry" : 0 ,
433+ "secrets" : {"foo" : "string" },
404434 "timeout" : 1 ,
405435 "uri" : "uri" ,
406436 },
0 commit comments