Skip to content

Commit 5893fc6

Browse files
feat(api): manual updates
1 parent 4e5429e commit 5893fc6

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 18
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-be7a4aeebb1605262935b4b3ab446a95b1fad8a7d18098943dd548c8a486ef13.yml
3-
openapi_spec_hash: 1c950a109f80140711e7ae2cf87fddad
4-
config_hash: b3ca4ec5b02e5333af51ebc2e9fdef1b
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-a9ab6f9017f7645722d220eb8172516a7a5400e86542c28fc7e121adcd1f344f.yml
3+
openapi_spec_hash: e29347aba2697d4efa3dce7794810dbd
4+
config_hash: ec077c0d8cde29588ca4ff30d49575a4

src/browserbase/types/session_create_params.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ class BrowserSettings(TypedDict, total=False):
141141
[on the Stealth Mode page](/features/stealth-mode#fingerprinting)
142142
"""
143143

144+
headful: bool
145+
"""[NOT IN DOCS] Enable or disable headful mode. Defaults to `false`."""
146+
144147
log_session: Annotated[bool, PropertyInfo(alias="logSession")]
145148
"""Enable or disable session logging. Defaults to `true`."""
146149

tests/api_resources/test_sessions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def test_method_create_with_all_params(self, client: Browserbase) -> None:
5757
"min_width": 0,
5858
},
5959
},
60+
"headful": True,
6061
"log_session": True,
6162
"os": "windows",
6263
"record_session": True,
@@ -304,6 +305,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncBrowserbas
304305
"min_width": 0,
305306
},
306307
},
308+
"headful": True,
307309
"log_session": True,
308310
"os": "windows",
309311
"record_session": True,

0 commit comments

Comments
 (0)