Skip to content

Commit 1be828d

Browse files
feat(api): api update (#131)
1 parent c63a3bd commit 1be828d

File tree

6 files changed

+86
-13
lines changed

6 files changed

+86
-13
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 18
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-396a2b9092f645c5a9e46a1f3be8c2e45ca9ae079e1d39761eb0a73f56e24b15.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-a42637317cf43a3f4dacf3b88ac09b86e41d4dc44c51140aa92cef99b5d0c02a.yml

api.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,19 @@ Methods:
4545
Types:
4646

4747
```python
48-
from browserbase.types import Session, SessionLiveURLs, SessionCreateResponse, SessionListResponse
48+
from browserbase.types import (
49+
Session,
50+
SessionLiveURLs,
51+
SessionCreateResponse,
52+
SessionRetrieveResponse,
53+
SessionListResponse,
54+
)
4955
```
5056

5157
Methods:
5258

5359
- <code title="post /v1/sessions">client.sessions.<a href="./src/browserbase/resources/sessions/sessions.py">create</a>(\*\*<a href="src/browserbase/types/session_create_params.py">params</a>) -> <a href="./src/browserbase/types/session_create_response.py">SessionCreateResponse</a></code>
54-
- <code title="get /v1/sessions/{id}">client.sessions.<a href="./src/browserbase/resources/sessions/sessions.py">retrieve</a>(id) -> <a href="./src/browserbase/types/session.py">Session</a></code>
60+
- <code title="get /v1/sessions/{id}">client.sessions.<a href="./src/browserbase/resources/sessions/sessions.py">retrieve</a>(id) -> <a href="./src/browserbase/types/session_retrieve_response.py">SessionRetrieveResponse</a></code>
5561
- <code title="post /v1/sessions/{id}">client.sessions.<a href="./src/browserbase/resources/sessions/sessions.py">update</a>(id, \*\*<a href="src/browserbase/types/session_update_params.py">params</a>) -> <a href="./src/browserbase/types/session.py">Session</a></code>
5662
- <code title="get /v1/sessions">client.sessions.<a href="./src/browserbase/resources/sessions/sessions.py">list</a>(\*\*<a href="src/browserbase/types/session_list_params.py">params</a>) -> <a href="./src/browserbase/types/session_list_response.py">SessionListResponse</a></code>
5763
- <code title="get /v1/sessions/{id}/debug">client.sessions.<a href="./src/browserbase/resources/sessions/sessions.py">debug</a>(id) -> <a href="./src/browserbase/types/session_live_urls.py">SessionLiveURLs</a></code>

src/browserbase/resources/sessions/sessions.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
from ...types.session_live_urls import SessionLiveURLs
5959
from ...types.session_list_response import SessionListResponse
6060
from ...types.session_create_response import SessionCreateResponse
61+
from ...types.session_retrieve_response import SessionRetrieveResponse
6162

6263
__all__ = ["SessionsResource", "AsyncSessionsResource"]
6364

@@ -180,7 +181,7 @@ def retrieve(
180181
extra_query: Query | None = None,
181182
extra_body: Body | None = None,
182183
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
183-
) -> Session:
184+
) -> SessionRetrieveResponse:
184185
"""
185186
Session
186187
@@ -200,7 +201,7 @@ def retrieve(
200201
options=make_request_options(
201202
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
202203
),
203-
cast_to=Session,
204+
cast_to=SessionRetrieveResponse,
204205
)
205206

206207
def update(
@@ -451,7 +452,7 @@ async def retrieve(
451452
extra_query: Query | None = None,
452453
extra_body: Body | None = None,
453454
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
454-
) -> Session:
455+
) -> SessionRetrieveResponse:
455456
"""
456457
Session
457458
@@ -471,7 +472,7 @@ async def retrieve(
471472
options=make_request_options(
472473
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
473474
),
474-
cast_to=Session,
475+
cast_to=SessionRetrieveResponse,
475476
)
476477

477478
async def update(

src/browserbase/types/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@
1818
from .context_update_response import ContextUpdateResponse as ContextUpdateResponse
1919
from .extension_create_params import ExtensionCreateParams as ExtensionCreateParams
2020
from .session_create_response import SessionCreateResponse as SessionCreateResponse
21+
from .session_retrieve_response import SessionRetrieveResponse as SessionRetrieveResponse
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing import Dict, Optional
4+
from datetime import datetime
5+
from typing_extensions import Literal
6+
7+
from pydantic import Field as FieldInfo
8+
9+
from .._models import BaseModel
10+
11+
__all__ = ["SessionRetrieveResponse"]
12+
13+
14+
class SessionRetrieveResponse(BaseModel):
15+
id: str
16+
17+
created_at: datetime = FieldInfo(alias="createdAt")
18+
19+
expires_at: datetime = FieldInfo(alias="expiresAt")
20+
21+
keep_alive: bool = FieldInfo(alias="keepAlive")
22+
"""Indicates if the Session was created to be kept alive upon disconnections"""
23+
24+
project_id: str = FieldInfo(alias="projectId")
25+
"""The Project ID linked to the Session."""
26+
27+
proxy_bytes: int = FieldInfo(alias="proxyBytes")
28+
"""Bytes used via the [Proxy](/features/stealth-mode#proxies-and-residential-ips)"""
29+
30+
region: Literal["us-west-2", "us-east-1", "eu-central-1", "ap-southeast-1"]
31+
"""The region where the Session is running."""
32+
33+
started_at: datetime = FieldInfo(alias="startedAt")
34+
35+
status: Literal["RUNNING", "ERROR", "TIMED_OUT", "COMPLETED"]
36+
37+
updated_at: datetime = FieldInfo(alias="updatedAt")
38+
39+
avg_cpu_usage: Optional[int] = FieldInfo(alias="avgCpuUsage", default=None)
40+
"""CPU used by the Session"""
41+
42+
connect_url: Optional[str] = FieldInfo(alias="connectUrl", default=None)
43+
"""WebSocket URL to connect to the Session."""
44+
45+
context_id: Optional[str] = FieldInfo(alias="contextId", default=None)
46+
"""Optional. The Context linked to the Session."""
47+
48+
ended_at: Optional[datetime] = FieldInfo(alias="endedAt", default=None)
49+
50+
memory_usage: Optional[int] = FieldInfo(alias="memoryUsage", default=None)
51+
"""Memory used by the Session"""
52+
53+
selenium_remote_url: Optional[str] = FieldInfo(alias="seleniumRemoteUrl", default=None)
54+
"""HTTP URL to connect to the Session."""
55+
56+
signing_key: Optional[str] = FieldInfo(alias="signingKey", default=None)
57+
"""Signing key to use when connecting to the Session via HTTP."""
58+
59+
user_metadata: Optional[Dict[str, object]] = FieldInfo(alias="userMetadata", default=None)
60+
"""Arbitrary user metadata to attach to the session.
61+
62+
To learn more about user metadata, see
63+
[User Metadata](/features/sessions#user-metadata).
64+
"""

tests/api_resources/test_sessions.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
SessionLiveURLs,
1515
SessionListResponse,
1616
SessionCreateResponse,
17+
SessionRetrieveResponse,
1718
)
1819

1920
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
@@ -100,7 +101,7 @@ def test_method_retrieve(self, client: Browserbase) -> None:
100101
session = client.sessions.retrieve(
101102
"id",
102103
)
103-
assert_matches_type(Session, session, path=["response"])
104+
assert_matches_type(SessionRetrieveResponse, session, path=["response"])
104105

105106
@parametrize
106107
def test_raw_response_retrieve(self, client: Browserbase) -> None:
@@ -111,7 +112,7 @@ def test_raw_response_retrieve(self, client: Browserbase) -> None:
111112
assert response.is_closed is True
112113
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
113114
session = response.parse()
114-
assert_matches_type(Session, session, path=["response"])
115+
assert_matches_type(SessionRetrieveResponse, session, path=["response"])
115116

116117
@parametrize
117118
def test_streaming_response_retrieve(self, client: Browserbase) -> None:
@@ -122,7 +123,7 @@ def test_streaming_response_retrieve(self, client: Browserbase) -> None:
122123
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
123124

124125
session = response.parse()
125-
assert_matches_type(Session, session, path=["response"])
126+
assert_matches_type(SessionRetrieveResponse, session, path=["response"])
126127

127128
assert cast(Any, response.is_closed) is True
128129

@@ -332,7 +333,7 @@ async def test_method_retrieve(self, async_client: AsyncBrowserbase) -> None:
332333
session = await async_client.sessions.retrieve(
333334
"id",
334335
)
335-
assert_matches_type(Session, session, path=["response"])
336+
assert_matches_type(SessionRetrieveResponse, session, path=["response"])
336337

337338
@parametrize
338339
async def test_raw_response_retrieve(self, async_client: AsyncBrowserbase) -> None:
@@ -343,7 +344,7 @@ async def test_raw_response_retrieve(self, async_client: AsyncBrowserbase) -> No
343344
assert response.is_closed is True
344345
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
345346
session = await response.parse()
346-
assert_matches_type(Session, session, path=["response"])
347+
assert_matches_type(SessionRetrieveResponse, session, path=["response"])
347348

348349
@parametrize
349350
async def test_streaming_response_retrieve(self, async_client: AsyncBrowserbase) -> None:
@@ -354,7 +355,7 @@ async def test_streaming_response_retrieve(self, async_client: AsyncBrowserbase)
354355
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
355356

356357
session = await response.parse()
357-
assert_matches_type(Session, session, path=["response"])
358+
assert_matches_type(SessionRetrieveResponse, session, path=["response"])
358359

359360
assert cast(Any, response.is_closed) is True
360361

0 commit comments

Comments
 (0)