@@ -130,7 +130,12 @@ export interface BrowserCreateResponse {
130130 cdp_ws_url : string ;
131131
132132 /**
133- * Indicates whether the browser session is headless.
133+ * When the browser session was created.
134+ */
135+ created_at : string ;
136+
137+ /**
138+ * Whether the browser session is running in headless mode.
134139 */
135140 headless : boolean ;
136141
@@ -140,7 +145,7 @@ export interface BrowserCreateResponse {
140145 session_id : string ;
141146
142147 /**
143- * Indicates whether the browser session is stealth.
148+ * Whether the browser session is running in stealth mode .
144149 */
145150 stealth : boolean ;
146151
@@ -168,7 +173,12 @@ export interface BrowserRetrieveResponse {
168173 cdp_ws_url : string ;
169174
170175 /**
171- * Indicates whether the browser session is headless.
176+ * When the browser session was created.
177+ */
178+ created_at : string ;
179+
180+ /**
181+ * Whether the browser session is running in headless mode.
172182 */
173183 headless : boolean ;
174184
@@ -178,7 +188,7 @@ export interface BrowserRetrieveResponse {
178188 session_id : string ;
179189
180190 /**
181- * Indicates whether the browser session is stealth.
191+ * Whether the browser session is running in stealth mode .
182192 */
183193 stealth : boolean ;
184194
@@ -209,7 +219,12 @@ export namespace BrowserListResponse {
209219 cdp_ws_url : string ;
210220
211221 /**
212- * Indicates whether the browser session is headless.
222+ * When the browser session was created.
223+ */
224+ created_at : string ;
225+
226+ /**
227+ * Whether the browser session is running in headless mode.
213228 */
214229 headless : boolean ;
215230
@@ -219,7 +234,7 @@ export namespace BrowserListResponse {
219234 session_id : string ;
220235
221236 /**
222- * Indicates whether the browser session is stealth.
237+ * Whether the browser session is running in stealth mode .
223238 */
224239 stealth : boolean ;
225240
0 commit comments