@@ -57,7 +57,7 @@ def get_connection(
57
57
"x-revert-t-id" : x_revert_t_id ,
58
58
}
59
59
),
60
- timeout = 60 ,
60
+ timeout = None ,
61
61
)
62
62
if 200 <= _response .status_code < 300 :
63
63
return pydantic .parse_obj_as (GetConnectionResponse , _response .json ()) # type: ignore
@@ -97,7 +97,7 @@ def delete_connection(
97
97
"x-revert-t-id" : x_revert_t_id ,
98
98
}
99
99
),
100
- timeout = 60 ,
100
+ timeout = None ,
101
101
)
102
102
if 200 <= _response .status_code < 300 :
103
103
return pydantic .parse_obj_as (DeleteConnectionResponse , _response .json ()) # type: ignore
@@ -134,7 +134,7 @@ def get_all_connections(
134
134
"x-api-version" : x_api_version ,
135
135
}
136
136
),
137
- timeout = 60 ,
137
+ timeout = None ,
138
138
)
139
139
if 200 <= _response .status_code < 300 :
140
140
return pydantic .parse_obj_as (GetAllConnectionResponse , _response .json ()) # type: ignore
@@ -182,7 +182,7 @@ def create_webhook(
182
182
"x-revert-t-id" : x_revert_t_id ,
183
183
}
184
184
),
185
- timeout = 60 ,
185
+ timeout = None ,
186
186
)
187
187
if 200 <= _response .status_code < 300 :
188
188
return pydantic .parse_obj_as (CreateConnectionWebhookResponse , _response .json ()) # type: ignore
@@ -222,7 +222,7 @@ def get_webhook(
222
222
"x-revert-t-id" : x_revert_t_id ,
223
223
}
224
224
),
225
- timeout = 60 ,
225
+ timeout = None ,
226
226
)
227
227
if 200 <= _response .status_code < 300 :
228
228
return pydantic .parse_obj_as (GetConnectionWebhookResponse , _response .json ()) # type: ignore
@@ -262,7 +262,7 @@ def delete_webhook(
262
262
"x-revert-t-id" : x_revert_t_id ,
263
263
}
264
264
),
265
- timeout = 60 ,
265
+ timeout = None ,
266
266
)
267
267
if 200 <= _response .status_code < 300 :
268
268
return pydantic .parse_obj_as (DeleteConnectionWebhookResponse , _response .json ()) # type: ignore
@@ -307,7 +307,7 @@ async def get_connection(
307
307
"x-revert-t-id" : x_revert_t_id ,
308
308
}
309
309
),
310
- timeout = 60 ,
310
+ timeout = None ,
311
311
)
312
312
if 200 <= _response .status_code < 300 :
313
313
return pydantic .parse_obj_as (GetConnectionResponse , _response .json ()) # type: ignore
@@ -347,7 +347,7 @@ async def delete_connection(
347
347
"x-revert-t-id" : x_revert_t_id ,
348
348
}
349
349
),
350
- timeout = 60 ,
350
+ timeout = None ,
351
351
)
352
352
if 200 <= _response .status_code < 300 :
353
353
return pydantic .parse_obj_as (DeleteConnectionResponse , _response .json ()) # type: ignore
@@ -384,7 +384,7 @@ async def get_all_connections(
384
384
"x-api-version" : x_api_version ,
385
385
}
386
386
),
387
- timeout = 60 ,
387
+ timeout = None ,
388
388
)
389
389
if 200 <= _response .status_code < 300 :
390
390
return pydantic .parse_obj_as (GetAllConnectionResponse , _response .json ()) # type: ignore
@@ -432,7 +432,7 @@ async def create_webhook(
432
432
"x-revert-t-id" : x_revert_t_id ,
433
433
}
434
434
),
435
- timeout = 60 ,
435
+ timeout = None ,
436
436
)
437
437
if 200 <= _response .status_code < 300 :
438
438
return pydantic .parse_obj_as (CreateConnectionWebhookResponse , _response .json ()) # type: ignore
@@ -472,7 +472,7 @@ async def get_webhook(
472
472
"x-revert-t-id" : x_revert_t_id ,
473
473
}
474
474
),
475
- timeout = 60 ,
475
+ timeout = None ,
476
476
)
477
477
if 200 <= _response .status_code < 300 :
478
478
return pydantic .parse_obj_as (GetConnectionWebhookResponse , _response .json ()) # type: ignore
@@ -512,7 +512,7 @@ async def delete_webhook(
512
512
"x-revert-t-id" : x_revert_t_id ,
513
513
}
514
514
),
515
- timeout = 60 ,
515
+ timeout = None ,
516
516
)
517
517
if 200 <= _response .status_code < 300 :
518
518
return pydantic .parse_obj_as (DeleteConnectionWebhookResponse , _response .json ()) # type: ignore
0 commit comments