@@ -222,6 +222,21 @@ export interface BrowserPersistence {
222222 id : string ;
223223}
224224
225+ /**
226+ * Browser pool this session was acquired from, if any.
227+ */
228+ export interface BrowserPoolRef {
229+ /**
230+ * Browser pool ID
231+ */
232+ id : string ;
233+
234+ /**
235+ * Browser pool name, if set
236+ */
237+ name ?: string ;
238+ }
239+
225240/**
226241 * Browser profile metadata.
227242 */
@@ -310,6 +325,11 @@ export interface BrowserCreateResponse {
310325 */
311326 persistence ?: BrowserPersistence ;
312327
328+ /**
329+ * Browser pool this session was acquired from, if any.
330+ */
331+ pool ?: BrowserPoolRef ;
332+
313333 /**
314334 * Browser profile metadata.
315335 */
@@ -391,6 +411,11 @@ export interface BrowserRetrieveResponse {
391411 */
392412 persistence ?: BrowserPersistence ;
393413
414+ /**
415+ * Browser pool this session was acquired from, if any.
416+ */
417+ pool ?: BrowserPoolRef ;
418+
394419 /**
395420 * Browser profile metadata.
396421 */
@@ -472,6 +497,11 @@ export interface BrowserUpdateResponse {
472497 */
473498 persistence ?: BrowserPersistence ;
474499
500+ /**
501+ * Browser pool this session was acquired from, if any.
502+ */
503+ pool ?: BrowserPoolRef ;
504+
475505 /**
476506 * Browser profile metadata.
477507 */
@@ -553,6 +583,11 @@ export interface BrowserListResponse {
553583 */
554584 persistence ?: BrowserPersistence ;
555585
586+ /**
587+ * Browser pool this session was acquired from, if any.
588+ */
589+ pool ?: BrowserPoolRef ;
590+
556591 /**
557592 * Browser profile metadata.
558593 */
@@ -736,6 +771,7 @@ Browsers.Playwright = Playwright;
736771export declare namespace Browsers {
737772 export {
738773 type BrowserPersistence as BrowserPersistence ,
774+ type BrowserPoolRef as BrowserPoolRef ,
739775 type Profile as Profile ,
740776 type BrowserCreateResponse as BrowserCreateResponse ,
741777 type BrowserRetrieveResponse as BrowserRetrieveResponse ,
0 commit comments