@@ -85,7 +85,7 @@ def __init__(
8585 ** kwargs ,
8686 )
8787
88- def get (self , * , timeout : Timeout = 'short ' ) -> Actor | None :
88+ def get (self , * , timeout : Timeout = 'long ' ) -> Actor | None :
8989 """Retrieve the Actor.
9090
9191 https://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor
@@ -129,7 +129,7 @@ def update(
129129 pricing_infos : list [dict [str , Any ]] | None = None ,
130130 actor_permission_level : ActorPermissionLevel | None = None ,
131131 tagged_builds : dict [str , None | dict [str , str ]] | None = None ,
132- timeout : Timeout = 'short ' ,
132+ timeout : Timeout = 'long ' ,
133133 ) -> Actor :
134134 """Update the Actor with the specified fields.
135135
@@ -209,7 +209,7 @@ def update(
209209 result = self ._update (timeout = timeout , ** actor_fields .model_dump (by_alias = True , exclude_none = True ))
210210 return ActorResponse .model_validate (result ).data
211211
212- def delete (self , * , timeout : Timeout = 'short ' ) -> None :
212+ def delete (self , * , timeout : Timeout = 'long ' ) -> None :
213213 """Delete the Actor.
214214
215215 https://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor
@@ -233,7 +233,7 @@ def start(
233233 force_permission_level : ActorPermissionLevel | None = None ,
234234 wait_for_finish : int | None = None ,
235235 webhooks : list [dict ] | None = None ,
236- timeout : Timeout = 'short ' ,
236+ timeout : Timeout = 'long ' ,
237237 ) -> Run :
238238 """Start the Actor and immediately return the Run object.
239239
@@ -310,7 +310,7 @@ def call(
310310 force_permission_level : ActorPermissionLevel | None = None ,
311311 wait_duration : timedelta | None = None ,
312312 logger : Logger | None | Literal ['default' ] = 'default' ,
313- timeout : Timeout = 'short ' ,
313+ timeout : Timeout = 'long ' ,
314314 ) -> Run | None :
315315 """Start the Actor and wait for it to finish before returning the Run object.
316316
@@ -386,7 +386,7 @@ def build(
386386 tag : str | None = None ,
387387 use_cache : bool | None = None ,
388388 wait_for_finish : int | None = None ,
389- timeout : Timeout = 'short ' ,
389+ timeout : Timeout = 'long ' ,
390390 ) -> Build :
391391 """Build the Actor.
392392
@@ -444,7 +444,7 @@ def default_build(
444444 self ,
445445 * ,
446446 wait_for_finish : int | None = None ,
447- timeout : Timeout = 'short ' ,
447+ timeout : Timeout = 'long ' ,
448448 ) -> BuildClient :
449449 """Retrieve Actor's default build.
450450
@@ -533,7 +533,7 @@ def validate_input(
533533 * ,
534534 build_tag : str | None = None ,
535535 content_type : str | None = None ,
536- timeout : Timeout = 'medium ' ,
536+ timeout : Timeout = 'long ' ,
537537 ) -> bool :
538538 """Validate an input for the Actor that defines an input schema.
539539
@@ -581,7 +581,7 @@ def __init__(
581581 ** kwargs ,
582582 )
583583
584- async def get (self , * , timeout : Timeout = 'short ' ) -> Actor | None :
584+ async def get (self , * , timeout : Timeout = 'long ' ) -> Actor | None :
585585 """Retrieve the Actor.
586586
587587 https://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor
@@ -625,7 +625,7 @@ async def update(
625625 pricing_infos : list [dict [str , Any ]] | None = None ,
626626 actor_permission_level : ActorPermissionLevel | None = None ,
627627 tagged_builds : dict [str , None | dict [str , str ]] | None = None ,
628- timeout : Timeout = 'short ' ,
628+ timeout : Timeout = 'long ' ,
629629 ) -> Actor :
630630 """Update the Actor with the specified fields.
631631
@@ -705,7 +705,7 @@ async def update(
705705 result = await self ._update (timeout = timeout , ** actor_fields .model_dump (by_alias = True , exclude_none = True ))
706706 return ActorResponse .model_validate (result ).data
707707
708- async def delete (self , * , timeout : Timeout = 'short ' ) -> None :
708+ async def delete (self , * , timeout : Timeout = 'long ' ) -> None :
709709 """Delete the Actor.
710710
711711 https://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor
@@ -729,7 +729,7 @@ async def start(
729729 force_permission_level : ActorPermissionLevel | None = None ,
730730 wait_for_finish : int | None = None ,
731731 webhooks : list [dict ] | None = None ,
732- timeout : Timeout = 'short ' ,
732+ timeout : Timeout = 'long ' ,
733733 ) -> Run :
734734 """Start the Actor and immediately return the Run object.
735735
@@ -806,7 +806,7 @@ async def call(
806806 force_permission_level : ActorPermissionLevel | None = None ,
807807 wait_duration : timedelta | None = None ,
808808 logger : Logger | None | Literal ['default' ] = 'default' ,
809- timeout : Timeout = 'short ' ,
809+ timeout : Timeout = 'long ' ,
810810 ) -> Run | None :
811811 """Start the Actor and wait for it to finish before returning the Run object.
812812
@@ -886,7 +886,7 @@ async def build(
886886 tag : str | None = None ,
887887 use_cache : bool | None = None ,
888888 wait_for_finish : int | None = None ,
889- timeout : Timeout = 'short ' ,
889+ timeout : Timeout = 'long ' ,
890890 ) -> Build :
891891 """Build the Actor.
892892
@@ -944,7 +944,7 @@ async def default_build(
944944 self ,
945945 * ,
946946 wait_for_finish : int | None = None ,
947- timeout : Timeout = 'short ' ,
947+ timeout : Timeout = 'long ' ,
948948 ) -> BuildClientAsync :
949949 """Retrieve Actor's default build.
950950
@@ -1033,7 +1033,7 @@ async def validate_input(
10331033 * ,
10341034 build_tag : str | None = None ,
10351035 content_type : str | None = None ,
1036- timeout : Timeout = 'medium ' ,
1036+ timeout : Timeout = 'long ' ,
10371037 ) -> bool :
10381038 """Validate an input for the Actor that defines an input schema.
10391039
0 commit comments