Skip to content

Commit 4eaa3ae

Browse files
feat: Return proxy ID in browsers response
1 parent 3ac7f38 commit 4eaa3ae

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

.eslintcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"/home/tempuser-i9hupy/run/codegen-output/kernel/kernel-typescript/src/version.ts":"1"},{"size":60,"mtime":1759174164452}]
1+
[{"/home/tempuser-rxv3c3/run/codegen-output/kernel/kernel-typescript/src/resources/browsers/browsers.ts":"1"},{"size":12035,"mtime":1759276353459}]

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 51
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-a3d897b2f8f50d61df2555cbe888dfd2479a8a3faf9d9e2292cfdad3131485c5.yml
3-
openapi_spec_hash: 6adc963fd957cd9f96bb16e62bdaed58
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-d0090ff3ef876c554e7a1281d5cbe1666cf68aebfc60e05cb7f4302ee377b372.yml
3+
openapi_spec_hash: 33fef541c420a28125f18cd1efc0d585
44
config_hash: 49c2ff978aaa5ccb4ce324a72f116010

src/resources/browsers/browsers.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,11 @@ export interface BrowserCreateResponse {
222222
* Browser profile metadata.
223223
*/
224224
profile?: Profile;
225+
226+
/**
227+
* ID of the proxy associated with this browser session, if any.
228+
*/
229+
proxy_id?: string;
225230
}
226231

227232
export interface BrowserRetrieveResponse {
@@ -270,6 +275,11 @@ export interface BrowserRetrieveResponse {
270275
* Browser profile metadata.
271276
*/
272277
profile?: Profile;
278+
279+
/**
280+
* ID of the proxy associated with this browser session, if any.
281+
*/
282+
proxy_id?: string;
273283
}
274284

275285
export type BrowserListResponse = Array<BrowserListResponse.BrowserListResponseItem>;
@@ -321,6 +331,11 @@ export namespace BrowserListResponse {
321331
* Browser profile metadata.
322332
*/
323333
profile?: BrowsersAPI.Profile;
334+
335+
/**
336+
* ID of the proxy associated with this browser session, if any.
337+
*/
338+
proxy_id?: string;
324339
}
325340
}
326341

0 commit comments

Comments
 (0)