@@ -76,8 +76,9 @@ def create(
7676 session_context : session_create_params .SessionContext | NotGiven = NOT_GIVEN ,
7777 session_id : str | NotGiven = NOT_GIVEN ,
7878 solve_captcha : bool | NotGiven = NOT_GIVEN ,
79+ stealth_config : session_create_params .StealthConfig | NotGiven = NOT_GIVEN ,
7980 api_timeout : int | NotGiven = NOT_GIVEN ,
80- use_proxy : bool | NotGiven = NOT_GIVEN ,
81+ use_proxy : session_create_params . UseProxy | NotGiven = NOT_GIVEN ,
8182 user_agent : str | NotGiven = NOT_GIVEN ,
8283 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
8384 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -116,10 +117,12 @@ def create(
116117
117118 solve_captcha: Enable automatic captcha solving. Default is false.
118119
120+ stealth_config: Stealth configuration for the session
121+
119122 api_timeout: Session timeout duration in milliseconds. Default is 300000 (5 minutes).
120123
121- use_proxy: Enable Steel-provided residential proxy usage for the browser session. Default
122- is false, which routes requests through datacenter proxies.
124+ use_proxy: Proxy configuration for the session. Can be a boolean or array of proxy
125+ configurations
123126
124127 user_agent: Custom user agent string for the browser session
125128
@@ -146,6 +149,7 @@ def create(
146149 "session_context" : session_context ,
147150 "session_id" : session_id ,
148151 "solve_captcha" : solve_captcha ,
152+ "stealth_config" : stealth_config ,
149153 "api_timeout" : api_timeout ,
150154 "use_proxy" : use_proxy ,
151155 "user_agent" : user_agent ,
@@ -432,8 +436,9 @@ async def create(
432436 session_context : session_create_params .SessionContext | NotGiven = NOT_GIVEN ,
433437 session_id : str | NotGiven = NOT_GIVEN ,
434438 solve_captcha : bool | NotGiven = NOT_GIVEN ,
439+ stealth_config : session_create_params .StealthConfig | NotGiven = NOT_GIVEN ,
435440 api_timeout : int | NotGiven = NOT_GIVEN ,
436- use_proxy : bool | NotGiven = NOT_GIVEN ,
441+ use_proxy : session_create_params . UseProxy | NotGiven = NOT_GIVEN ,
437442 user_agent : str | NotGiven = NOT_GIVEN ,
438443 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
439444 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -472,10 +477,12 @@ async def create(
472477
473478 solve_captcha: Enable automatic captcha solving. Default is false.
474479
480+ stealth_config: Stealth configuration for the session
481+
475482 api_timeout: Session timeout duration in milliseconds. Default is 300000 (5 minutes).
476483
477- use_proxy: Enable Steel-provided residential proxy usage for the browser session. Default
478- is false, which routes requests through datacenter proxies.
484+ use_proxy: Proxy configuration for the session. Can be a boolean or array of proxy
485+ configurations
479486
480487 user_agent: Custom user agent string for the browser session
481488
@@ -502,6 +509,7 @@ async def create(
502509 "session_context" : session_context ,
503510 "session_id" : session_id ,
504511 "solve_captcha" : solve_captcha ,
512+ "stealth_config" : stealth_config ,
505513 "api_timeout" : api_timeout ,
506514 "use_proxy" : use_proxy ,
507515 "user_agent" : user_agent ,
0 commit comments