File tree Expand file tree Collapse file tree 5 files changed +62
-1
lines changed Expand file tree Collapse file tree 5 files changed +62
-1
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-0d0ad7d4de2fa0b930b8d72fe6539ab248c7ed684b2e12b327b3bc0a466f9cde .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-b37d85811d1ccbd73a7884f22792503aa7e3103d378c97c84028b8b3b79acddc .yml
Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ export interface Context {
32
32
33
33
createdAt : string ;
34
34
35
+ /**
36
+ * The Project ID linked to the uploaded Context.
37
+ */
38
+ projectId : string ;
39
+
35
40
updatedAt : string ;
36
41
}
37
42
Original file line number Diff line number Diff line change @@ -35,6 +35,13 @@ export interface Extension {
35
35
36
36
createdAt : string ;
37
37
38
+ fileName : string ;
39
+
40
+ /**
41
+ * The Project ID linked to the uploaded Extension.
42
+ */
43
+ projectId : string ;
44
+
38
45
updatedAt : string ;
39
46
}
40
47
Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ export interface Project {
32
32
33
33
createdAt : string ;
34
34
35
+ defaultTimeout : number ;
36
+
37
+ name : string ;
38
+
39
+ ownerId : string ;
40
+
35
41
updatedAt : string ;
36
42
}
37
43
Original file line number Diff line number Diff line change @@ -64,7 +64,50 @@ export interface Session {
64
64
65
65
createdAt : string ;
66
66
67
+ expiresAt : string ;
68
+
69
+ /**
70
+ * Indicates if the Session was created to be kept alive upon disconnections
71
+ */
72
+ keepAlive : boolean ;
73
+
74
+ /**
75
+ * The Project ID linked to the Session.
76
+ */
77
+ projectId : string ;
78
+
79
+ /**
80
+ * Bytes used via the [Proxy](/features/stealth-mode#proxies-and-residential-ips)
81
+ */
82
+ proxyBytes : number ;
83
+
84
+ /**
85
+ * The region where the Session is running.
86
+ */
87
+ region : 'us-west-2' | 'us-east-1' | 'eu-central-1' | 'ap-southeast-1' ;
88
+
89
+ startedAt : string ;
90
+
91
+ status : 'RUNNING' | 'ERROR' | 'TIMED_OUT' | 'COMPLETED' ;
92
+
67
93
updatedAt : string ;
94
+
95
+ /**
96
+ * CPU used by the Session
97
+ */
98
+ avgCpuUsage ?: number ;
99
+
100
+ /**
101
+ * Optional. The Context linked to the Session.
102
+ */
103
+ contextId ?: string ;
104
+
105
+ endedAt ?: string ;
106
+
107
+ /**
108
+ * Memory used by the Session
109
+ */
110
+ memoryUsage ?: number ;
68
111
}
69
112
70
113
export interface SessionLiveURLs {
You can’t perform that action at this time.
0 commit comments