Skip to content

Commit f38e029

Browse files
feat(api): api update
1 parent 82c38c4 commit f38e029

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.stats.yml

Lines changed: 2 additions & 2 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-219341ea9864a23d33fbb51843fd6f762f41ec8be5154bd963bfceff0bc30bb1.yml
3-
openapi_spec_hash: 43fdb5f9ab7c52a17206c881128afb45
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-86464130af6afb678b92cd7a412035fa95d0f806eb35d5cfc1902c0d417c44ca.yml
3+
openapi_spec_hash: 9df21af9ca1497c2a481936ba585290d
44
config_hash: b3ca4ec5b02e5333af51ebc2e9fdef1b

src/browserbase/types/session_create_params.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ class BrowserSettingsContext(TypedDict, total=False):
7474

7575

7676
class BrowserSettingsFingerprintScreen(TypedDict, total=False):
77-
max_height: Required[Annotated[int, PropertyInfo(alias="maxHeight")]]
77+
max_height: Annotated[int, PropertyInfo(alias="maxHeight")]
7878

79-
max_width: Required[Annotated[int, PropertyInfo(alias="maxWidth")]]
79+
max_width: Annotated[int, PropertyInfo(alias="maxWidth")]
8080

81-
min_height: Required[Annotated[int, PropertyInfo(alias="minHeight")]]
81+
min_height: Annotated[int, PropertyInfo(alias="minHeight")]
8282

83-
min_width: Required[Annotated[int, PropertyInfo(alias="minWidth")]]
83+
min_width: Annotated[int, PropertyInfo(alias="minWidth")]
8484

8585

8686
class BrowserSettingsFingerprint(TypedDict, total=False):
@@ -135,6 +135,10 @@ class BrowserSettings(TypedDict, total=False):
135135
"""
136136

137137
fingerprint: BrowserSettingsFingerprint
138+
"""
139+
See usage examples
140+
[on the Stealth Mode page](/features/stealth-mode#fingerprinting)
141+
"""
138142

139143
log_session: Annotated[bool, PropertyInfo(alias="logSession")]
140144
"""Enable or disable session logging. Defaults to `true`."""

0 commit comments

Comments
 (0)