File tree Expand file tree Collapse file tree 2 files changed +29
-15
lines changed Expand file tree Collapse file tree 2 files changed +29
-15
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 18
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-825ce446567db7e2dcda332131368fcaf1986bae2eff640205b4e1f7b582aaa4 .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-208ded3468d1fbad85834462bced46e59d6cff963b347f9ba69c0b4fabe483c0 .yml
Original file line number Diff line number Diff line change @@ -62,47 +62,61 @@ export class Sessions extends APIResource {
62
62
export interface Session {
63
63
id : string ;
64
64
65
- createdAt : string ;
65
+ created_at : string ;
66
66
67
- expiresAt : string ;
67
+ expires_at : string ;
68
68
69
69
/**
70
70
* Indicates if the Session was created to be kept alive upon disconnections
71
71
*/
72
- keepAlive : boolean ;
72
+ keep_alive : boolean ;
73
73
74
74
/**
75
75
* The Project ID linked to the Session.
76
76
*/
77
- projectId : string ;
77
+ project_id : string ;
78
78
79
- /**
80
- * Bytes used via the [Proxy](/features/stealth-mode#proxies-and-residential-ips)
81
- */
82
- proxyBytes : number ;
79
+ region : string ;
83
80
84
- startedAt : string ;
81
+ started_at : string ;
85
82
86
83
status : 'RUNNING' | 'ERROR' | 'TIMED_OUT' | 'COMPLETED' ;
87
84
88
- updatedAt : string ;
85
+ updated_at : string ;
89
86
90
87
/**
91
88
* CPU used by the Session
92
89
*/
93
- avgCpuUsage ?: number ;
90
+ avg_cpu_usage ?: number ;
91
+
92
+ connectUrl ?: string ;
94
93
95
94
/**
96
95
* Optional. The Context linked to the Session.
97
96
*/
98
- contextId ?: string ;
97
+ context_id ?: string ;
98
+
99
+ ended_at ?: string ;
99
100
100
- endedAt ?: string ;
101
+ is_idle ?: boolean ;
101
102
102
103
/**
103
104
* Memory used by the Session
104
105
*/
105
- memoryUsage ?: number ;
106
+ memory_usage ?: number ;
107
+
108
+ /**
109
+ * Bytes used via the [Proxy](/features/stealth-mode#proxies-and-residential-ips)
110
+ */
111
+ proxy_bytes ?: number ;
112
+
113
+ seleniumRemoteUrl ?: string ;
114
+
115
+ signingKey ?: string ;
116
+
117
+ viewport_height ?: number ;
118
+
119
+ viewport_width ?: number ;
106
120
}
107
121
108
122
export interface SessionLiveURLs {
You can’t perform that action at this time.
0 commit comments