Skip to content

Commit 0e366a6

Browse files
feat: [CORE-1979] [apps/api] Regenerate OpenAPI spec to match current routes
1 parent 83d1f68 commit 0e366a6

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 21
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-3683b291883198719787c333144da6650b6c287db400e0b21f54797f6e986a24.yml
3-
openapi_spec_hash: 4da0b34a056487d20ed56a3b0b1c078e
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-16de8c0da31c4edcda2c2344f6bbad71aa803869b017bbfdd715afa309d113ba.yml
3+
openapi_spec_hash: 40adcceb64631c781311492ba14e8c8f
44
config_hash: cf04ecfb8dad5fbd8b85be25d6e9ec55

src/browserbase/types/session_create_params.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@ class BrowserSettings(TypedDict, total=False):
108108
See [Upload Extension](/reference/api/upload-an-extension).
109109
"""
110110

111+
ignore_certificate_errors: Annotated[bool, PropertyInfo(alias="ignoreCertificateErrors")]
112+
"""Enable or disable ignoring of certificate errors in the browser.
113+
114+
Defaults to `true`.
115+
"""
116+
111117
log_session: Annotated[bool, PropertyInfo(alias="logSession")]
112118
"""Enable or disable session logging. Defaults to `true`."""
113119

tests/api_resources/test_sessions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def test_method_create_with_all_params(self, client: Browserbase) -> None:
4141
"persist": True,
4242
},
4343
"extension_id": "extensionId",
44+
"ignore_certificate_errors": True,
4445
"log_session": True,
4546
"os": "windows",
4647
"record_session": True,
@@ -275,6 +276,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncBrowserbas
275276
"persist": True,
276277
},
277278
"extension_id": "extensionId",
279+
"ignore_certificate_errors": True,
278280
"log_session": True,
279281
"os": "windows",
280282
"record_session": True,

0 commit comments

Comments
 (0)