@@ -130,7 +130,12 @@ export interface BrowserCreateResponse {
130
130
cdp_ws_url : string ;
131
131
132
132
/**
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.
134
139
*/
135
140
headless : boolean ;
136
141
@@ -140,7 +145,7 @@ export interface BrowserCreateResponse {
140
145
session_id : string ;
141
146
142
147
/**
143
- * Indicates whether the browser session is stealth.
148
+ * Whether the browser session is running in stealth mode .
144
149
*/
145
150
stealth : boolean ;
146
151
@@ -168,7 +173,12 @@ export interface BrowserRetrieveResponse {
168
173
cdp_ws_url : string ;
169
174
170
175
/**
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.
172
182
*/
173
183
headless : boolean ;
174
184
@@ -178,7 +188,7 @@ export interface BrowserRetrieveResponse {
178
188
session_id : string ;
179
189
180
190
/**
181
- * Indicates whether the browser session is stealth.
191
+ * Whether the browser session is running in stealth mode .
182
192
*/
183
193
stealth : boolean ;
184
194
@@ -209,7 +219,12 @@ export namespace BrowserListResponse {
209
219
cdp_ws_url : string ;
210
220
211
221
/**
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.
213
228
*/
214
229
headless : boolean ;
215
230
@@ -219,7 +234,7 @@ export namespace BrowserListResponse {
219
234
session_id : string ;
220
235
221
236
/**
222
- * Indicates whether the browser session is stealth.
237
+ * Whether the browser session is running in stealth mode .
223
238
*/
224
239
stealth : boolean ;
225
240
0 commit comments