-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsessions.ts
497 lines (394 loc) · 11.5 KB
/
sessions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import { isRequestOptions } from '../../core';
import * as Core from '../../core';
import * as DownloadsAPI from './downloads';
import { Downloads } from './downloads';
import * as LogsAPI from './logs';
import { LogListResponse, Logs, SessionLog } from './logs';
import * as RecordingAPI from './recording';
import { Recording, RecordingRetrieveResponse, SessionRecording } from './recording';
import * as UploadsAPI from './uploads';
import { UploadCreateParams, UploadCreateResponse, Uploads } from './uploads';
export class Sessions extends APIResource {
downloads: DownloadsAPI.Downloads = new DownloadsAPI.Downloads(this._client);
logs: LogsAPI.Logs = new LogsAPI.Logs(this._client);
recording: RecordingAPI.Recording = new RecordingAPI.Recording(this._client);
uploads: UploadsAPI.Uploads = new UploadsAPI.Uploads(this._client);
/**
* Create a Session
*/
create(body: SessionCreateParams, options?: Core.RequestOptions): Core.APIPromise<SessionCreateResponse> {
return this._client.post('/v1/sessions', { body, ...options });
}
/**
* Session
*/
retrieve(id: string, options?: Core.RequestOptions): Core.APIPromise<Session> {
return this._client.get(`/v1/sessions/${id}`, options);
}
/**
* Update Session
*/
update(id: string, body: SessionUpdateParams, options?: Core.RequestOptions): Core.APIPromise<Session> {
return this._client.post(`/v1/sessions/${id}`, { body, ...options });
}
/**
* List Sessions
*/
list(query?: SessionListParams, options?: Core.RequestOptions): Core.APIPromise<SessionListResponse>;
list(options?: Core.RequestOptions): Core.APIPromise<SessionListResponse>;
list(
query: SessionListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SessionListResponse> {
if (isRequestOptions(query)) {
return this.list({}, query);
}
return this._client.get('/v1/sessions', { query, ...options });
}
/**
* Session Live URLs
*/
debug(id: string, options?: Core.RequestOptions): Core.APIPromise<SessionLiveURLs> {
return this._client.get(`/v1/sessions/${id}/debug`, options);
}
}
export interface Session {
id: string;
createdAt: string;
expiresAt: string;
/**
* Indicates if the Session was created to be kept alive upon disconnections
*/
keepAlive: boolean;
/**
* The Project ID linked to the Session.
*/
projectId: string;
/**
* Bytes used via the [Proxy](/features/stealth-mode#proxies-and-residential-ips)
*/
proxyBytes: number;
/**
* The region where the Session is running.
*/
region: 'us-west-2' | 'us-east-1' | 'eu-central-1' | 'ap-southeast-1';
startedAt: string;
status: 'RUNNING' | 'ERROR' | 'TIMED_OUT' | 'COMPLETED';
updatedAt: string;
/**
* CPU used by the Session
*/
avgCpuUsage?: number;
/**
* Optional. The Context linked to the Session.
*/
contextId?: string;
endedAt?: string;
/**
* Memory used by the Session
*/
memoryUsage?: number;
/**
* Arbitrary user metadata to attach to the session. To learn more about user
* metadata, see [User Metadata](/features/sessions#user-metadata).
*/
userMetadata?: Record<string, unknown>;
}
export interface SessionLiveURLs {
debuggerFullscreenUrl: string;
debuggerUrl: string;
pages: Array<SessionLiveURLs.Page>;
wsUrl: string;
}
export namespace SessionLiveURLs {
export interface Page {
id: string;
debuggerFullscreenUrl: string;
debuggerUrl: string;
faviconUrl: string;
title: string;
url: string;
}
}
export interface SessionCreateResponse {
id: string;
/**
* WebSocket URL to connect to the Session.
*/
connectUrl: string;
createdAt: string;
expiresAt: string;
/**
* Indicates if the Session was created to be kept alive upon disconnections
*/
keepAlive: boolean;
/**
* The Project ID linked to the Session.
*/
projectId: string;
/**
* Bytes used via the [Proxy](/features/stealth-mode#proxies-and-residential-ips)
*/
proxyBytes: number;
/**
* The region where the Session is running.
*/
region: 'us-west-2' | 'us-east-1' | 'eu-central-1' | 'ap-southeast-1';
/**
* HTTP URL to connect to the Session.
*/
seleniumRemoteUrl: string;
/**
* Signing key to use when connecting to the Session via HTTP.
*/
signingKey: string;
startedAt: string;
status: 'RUNNING' | 'ERROR' | 'TIMED_OUT' | 'COMPLETED';
updatedAt: string;
/**
* CPU used by the Session
*/
avgCpuUsage?: number;
/**
* Optional. The Context linked to the Session.
*/
contextId?: string;
endedAt?: string;
/**
* Memory used by the Session
*/
memoryUsage?: number;
/**
* Arbitrary user metadata to attach to the session. To learn more about user
* metadata, see [User Metadata](/features/sessions#user-metadata).
*/
userMetadata?: Record<string, unknown>;
}
export type SessionListResponse = Array<Session>;
export interface SessionCreateParams {
/**
* The Project ID. Can be found in
* [Settings](https://www.browserbase.com/settings).
*/
projectId: string;
browserSettings?: SessionCreateParams.BrowserSettings;
/**
* The uploaded Extension ID. See
* [Upload Extension](/reference/api/upload-an-extension).
*/
extensionId?: string;
/**
* Set to true to keep the session alive even after disconnections. This is
* available on the Startup plan only.
*/
keepAlive?: boolean;
/**
* Proxy configuration. Can be true for default proxy, or an array of proxy
* configurations.
*/
proxies?:
| boolean
| Array<SessionCreateParams.BrowserbaseProxyConfig | SessionCreateParams.ExternalProxyConfig>;
/**
* The region where the Session should run.
*/
region?: 'us-west-2' | 'us-east-1' | 'eu-central-1' | 'ap-southeast-1';
/**
* Duration in seconds after which the session will automatically end. Defaults to
* the Project's `defaultTimeout`.
*/
timeout?: number;
/**
* Arbitrary user metadata to attach to the session. To learn more about user
* metadata, see [User Metadata](/features/sessions#user-metadata).
*/
userMetadata?: Record<string, unknown>;
}
export namespace SessionCreateParams {
export interface BrowserSettings {
/**
* Advanced Browser Stealth Mode
*/
advancedStealth?: boolean;
/**
* Enable or disable ad blocking in the browser. Defaults to `false`.
*/
blockAds?: boolean;
context?: BrowserSettings.Context;
/**
* The uploaded Extension ID. See
* [Upload Extension](/reference/api/upload-an-extension).
*/
extensionId?: string;
/**
* See usage examples
* [in the Stealth Mode page](/features/stealth-mode#fingerprinting).
*/
fingerprint?: BrowserSettings.Fingerprint;
/**
* Enable or disable session logging. Defaults to `true`.
*/
logSession?: boolean;
/**
* Enable or disable session recording. Defaults to `true`.
*/
recordSession?: boolean;
/**
* Enable or disable captcha solving in the browser. Defaults to `true`.
*/
solveCaptchas?: boolean;
viewport?: BrowserSettings.Viewport;
}
export namespace BrowserSettings {
export interface Context {
/**
* The Context ID.
*/
id: string;
/**
* Whether or not to persist the context after browsing. Defaults to `false`.
*/
persist?: boolean;
}
/**
* See usage examples
* [in the Stealth Mode page](/features/stealth-mode#fingerprinting).
*/
export interface Fingerprint {
browsers?: Array<'chrome' | 'edge' | 'firefox' | 'safari'>;
devices?: Array<'desktop' | 'mobile'>;
httpVersion?: 1 | 2;
/**
* Full list of locales is available
* [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language).
*/
locales?: Array<string>;
/**
* Note: `operatingSystems` set to `ios` or `android` requires `devices` to include
* `"mobile"`.
*/
operatingSystems?: Array<'android' | 'ios' | 'linux' | 'macos' | 'windows'>;
screen?: Fingerprint.Screen;
}
export namespace Fingerprint {
export interface Screen {
maxHeight?: number;
maxWidth?: number;
minHeight?: number;
minWidth?: number;
}
}
export interface Viewport {
height?: number;
width?: number;
}
}
export interface BrowserbaseProxyConfig {
/**
* Type of proxy. Always use 'browserbase' for the Browserbase managed proxy
* network.
*/
type: 'browserbase';
/**
* Domain pattern for which this proxy should be used. If omitted, defaults to all
* domains. Optional.
*/
domainPattern?: string;
/**
* Configuration for geolocation
*/
geolocation?: BrowserbaseProxyConfig.Geolocation;
}
export namespace BrowserbaseProxyConfig {
/**
* Configuration for geolocation
*/
export interface Geolocation {
/**
* Country code in ISO 3166-1 alpha-2 format
*/
country: string;
/**
* Name of the city. Use spaces for multi-word city names. Optional.
*/
city?: string;
/**
* US state code (2 characters). Must also specify US as the country. Optional.
*/
state?: string;
}
}
export interface ExternalProxyConfig {
/**
* Server URL for external proxy. Required.
*/
server: string;
/**
* Type of proxy. Always 'external' for this config.
*/
type: 'external';
/**
* Domain pattern for which this proxy should be used. If omitted, defaults to all
* domains. Optional.
*/
domainPattern?: string;
/**
* Password for external proxy authentication. Optional.
*/
password?: string;
/**
* Username for external proxy authentication. Optional.
*/
username?: string;
}
}
export interface SessionUpdateParams {
/**
* The Project ID. Can be found in
* [Settings](https://www.browserbase.com/settings).
*/
projectId: string;
/**
* Set to `REQUEST_RELEASE` to request that the session complete. Use before
* session's timeout to avoid additional charges.
*/
status: 'REQUEST_RELEASE';
}
export interface SessionListParams {
/**
* Query sessions by user metadata. See
* [Querying Sessions by User Metadata](/features/sessions#querying-sessions-by-user-metadata)
* for the schema of this query.
*/
q?: string;
status?: 'RUNNING' | 'ERROR' | 'TIMED_OUT' | 'COMPLETED';
}
Sessions.Downloads = Downloads;
Sessions.Logs = Logs;
Sessions.Recording = Recording;
Sessions.Uploads = Uploads;
export declare namespace Sessions {
export {
type Session as Session,
type SessionLiveURLs as SessionLiveURLs,
type SessionCreateResponse as SessionCreateResponse,
type SessionListResponse as SessionListResponse,
type SessionCreateParams as SessionCreateParams,
type SessionUpdateParams as SessionUpdateParams,
type SessionListParams as SessionListParams,
};
export { Downloads as Downloads };
export { Logs as Logs, type SessionLog as SessionLog, type LogListResponse as LogListResponse };
export {
Recording as Recording,
type SessionRecording as SessionRecording,
type RecordingRetrieveResponse as RecordingRetrieveResponse,
};
export {
Uploads as Uploads,
type UploadCreateResponse as UploadCreateResponse,
type UploadCreateParams as UploadCreateParams,
};
}