@@ -329,6 +329,7 @@ def list(
329329 include_deleted : bool | Omit = omit ,
330330 limit : int | Omit = omit ,
331331 offset : int | Omit = omit ,
332+ query : str | Omit = omit ,
332333 status : Literal ["active" , "deleted" , "all" ] | Omit = omit ,
333334 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
334335 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -350,6 +351,8 @@ def list(
350351
351352 offset: Number of results to skip. Defaults to 0.
352353
354+ query: Search browsers by session ID, profile ID, or proxy ID.
355+
353356 status: Filter sessions by status. "active" returns only active sessions (default),
354357 "deleted" returns only soft-deleted sessions, "all" returns both.
355358
@@ -374,6 +377,7 @@ def list(
374377 "include_deleted" : include_deleted ,
375378 "limit" : limit ,
376379 "offset" : offset ,
380+ "query" : query ,
377381 "status" : status ,
378382 },
379383 browser_list_params .BrowserListParams ,
@@ -745,6 +749,7 @@ def list(
745749 include_deleted : bool | Omit = omit ,
746750 limit : int | Omit = omit ,
747751 offset : int | Omit = omit ,
752+ query : str | Omit = omit ,
748753 status : Literal ["active" , "deleted" , "all" ] | Omit = omit ,
749754 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
750755 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -766,6 +771,8 @@ def list(
766771
767772 offset: Number of results to skip. Defaults to 0.
768773
774+ query: Search browsers by session ID, profile ID, or proxy ID.
775+
769776 status: Filter sessions by status. "active" returns only active sessions (default),
770777 "deleted" returns only soft-deleted sessions, "all" returns both.
771778
@@ -790,6 +797,7 @@ def list(
790797 "include_deleted" : include_deleted ,
791798 "limit" : limit ,
792799 "offset" : offset ,
800+ "query" : query ,
793801 "status" : status ,
794802 },
795803 browser_list_params .BrowserListParams ,
0 commit comments