@@ -389,6 +389,11 @@ export interface BrowserCreateResponse {
389389 */
390390 kiosk_mode ?: boolean ;
391391
392+ /**
393+ * Human-readable name of the browser session, if one was set at creation.
394+ */
395+ name ?: string ;
396+
392397 /**
393398 * Browser pool this session was acquired from, if any.
394399 */
@@ -510,6 +515,11 @@ export interface BrowserRetrieveResponse {
510515 */
511516 kiosk_mode ?: boolean ;
512517
518+ /**
519+ * Human-readable name of the browser session, if one was set at creation.
520+ */
521+ name ?: string ;
522+
513523 /**
514524 * Browser pool this session was acquired from, if any.
515525 */
@@ -631,6 +641,11 @@ export interface BrowserUpdateResponse {
631641 */
632642 kiosk_mode ?: boolean ;
633643
644+ /**
645+ * Human-readable name of the browser session, if one was set at creation.
646+ */
647+ name ?: string ;
648+
634649 /**
635650 * Browser pool this session was acquired from, if any.
636651 */
@@ -752,6 +767,11 @@ export interface BrowserListResponse {
752767 */
753768 kiosk_mode ?: boolean ;
754769
770+ /**
771+ * Human-readable name of the browser session, if one was set at creation.
772+ */
773+ name ?: string ;
774+
755775 /**
756776 * Browser pool this session was acquired from, if any.
757777 */
@@ -865,6 +885,13 @@ export interface BrowserCreateParams {
865885 */
866886 kiosk_mode ?: boolean ;
867887
888+ /**
889+ * Optional human-readable name for the browser session, used to find it later in
890+ * the dashboard. Must be unique among active sessions within the project. Set at
891+ * creation time only.
892+ */
893+ name ?: string ;
894+
868895 /**
869896 * Profile selection for the browser session. Provide either id or name. If
870897 * specified, the matching profile will be loaded into the browser session.
@@ -1040,7 +1067,7 @@ export interface BrowserListParams extends OffsetPaginationParams {
10401067 include_deleted ?: boolean ;
10411068
10421069 /**
1043- * Search browsers by session ID, profile ID, proxy ID, or pool name.
1070+ * Search browsers by name, session ID, profile ID, proxy ID, or pool name.
10441071 */
10451072 query ?: string ;
10461073
0 commit comments