Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
862cd7e
chore(internal): update client tests (#121)
stainless-app[bot] Feb 13, 2025
c8b2cd7
fix: asyncify on non-asyncio runtimes (#123)
stainless-app[bot] Feb 14, 2025
0678102
chore(internal): codegen related update (#124)
stainless-app[bot] Feb 19, 2025
6cdee1b
feat(client): allow passing `NotGiven` for body (#125)
stainless-app[bot] Feb 21, 2025
eaf577b
chore(internal): fix devcontainers setup (#126)
stainless-app[bot] Feb 22, 2025
5236106
chore(internal): properly set __pydantic_private__ (#127)
stainless-app[bot] Feb 26, 2025
5e2932f
docs: update URLs from stainlessapi.com to stainless.com (#128)
stainless-app[bot] Feb 28, 2025
b2201f1
chore(docs): update client docstring (#129)
stainless-app[bot] Feb 28, 2025
c63a3bd
chore(internal): remove unused http client options forwarding (#130)
stainless-app[bot] Mar 4, 2025
1be828d
feat(api): api update (#131)
stainless-app[bot] Mar 10, 2025
3248d7e
chore(internal): codegen related update (#132)
stainless-app[bot] Mar 12, 2025
2a08d98
feat(api): api update (#133)
stainless-app[bot] Mar 12, 2025
2206050
chore(internal): remove extra empty newlines (#134)
stainless-app[bot] Mar 14, 2025
9aeac01
chore(internal): bump rye to 0.44.0 (#136)
stainless-app[bot] Mar 15, 2025
d9e09e3
fix(types): handle more discriminated union shapes (#137)
stainless-app[bot] Mar 15, 2025
173fdde
fix(ci): ensure pip is always available (#138)
stainless-app[bot] Mar 17, 2025
bd66d56
fix(ci): remove publishing patch (#139)
stainless-app[bot] Mar 17, 2025
5846086
codegen metadata
stainless-app[bot] Mar 20, 2025
134049e
feat(api): api update (#140)
stainless-app[bot] Mar 20, 2025
145e5cb
feat(api): api update (#141)
stainless-app[bot] Mar 21, 2025
0157632
chore: fix typos (#142)
stainless-app[bot] Mar 27, 2025
edf2a8e
codegen metadata
stainless-app[bot] Mar 27, 2025
d55e411
feat(api): api update (#143)
stainless-app[bot] Apr 1, 2025
2b055d7
chore(internal): remove trailing character (#145)
stainless-app[bot] Apr 4, 2025
2d46582
chore(internal): slight transform perf improvement (#147)
stainless-app[bot] Apr 9, 2025
c40603c
chore: slight wording improvement in README (#148)
stainless-app[bot] Apr 9, 2025
4494839
chore(internal): expand CI branch coverage
stainless-app[bot] Apr 10, 2025
1bd4d8b
chore(internal): reduce CI branch coverage
stainless-app[bot] Apr 10, 2025
5cc6c58
fix(perf): skip traversing types for NotGiven values
stainless-app[bot] Apr 12, 2025
042f048
fix(perf): optimize some hot paths
stainless-app[bot] Apr 12, 2025
0f0e110
chore(internal): update pyright settings
stainless-app[bot] Apr 15, 2025
47df6f5
chore(client): minor internal fixes
stainless-app[bot] Apr 15, 2025
9b569fe
release: 1.3.0
stainless-app[bot] Apr 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(api): api update (#143)
  • Loading branch information
stainless-app[bot] committed Apr 1, 2025
commit d55e4118972d7badbe09a2dd46257d2e66822b85
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 18
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-ad8e080c2347b3f28d64f49cf02c2ab4a69b7bf289fd7eb018c955d8915bb990.yml
openapi_spec_hash: b3aea10135a89597634d62f1ef418839
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-45328621800082e652c9b2f34b176b89ebba3af423ea9f4fed91a359cf4e0ae4.yml
openapi_spec_hash: c20658b49312b14d158ce5c88f34ee34
config_hash: 74882e23a455dece33e43a27e67f0fbb
8 changes: 4 additions & 4 deletions src/browserbase/resources/sessions/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ def create(
extension_id: The uploaded Extension ID. See
[Upload Extension](/reference/api/upload-an-extension).

keep_alive: Set to true to keep the session alive even after disconnections. This is
available on the Startup plan only.
keep_alive: Set to true to keep the session alive even after disconnections. Available on
the Hobby Plan and above.

proxies: Proxy configuration. Can be true for default proxy, or an array of proxy
configurations.
Expand Down Expand Up @@ -399,8 +399,8 @@ async def create(
extension_id: The uploaded Extension ID. See
[Upload Extension](/reference/api/upload-an-extension).

keep_alive: Set to true to keep the session alive even after disconnections. This is
available on the Startup plan only.
keep_alive: Set to true to keep the session alive even after disconnections. Available on
the Hobby Plan and above.

proxies: Proxy configuration. Can be true for default proxy, or an array of proxy
configurations.
Expand Down
2 changes: 1 addition & 1 deletion src/browserbase/types/session_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SessionCreateParams(TypedDict, total=False):
keep_alive: Annotated[bool, PropertyInfo(alias="keepAlive")]
"""Set to true to keep the session alive even after disconnections.

This is available on the Startup plan only.
Available on the Hobby Plan and above.
"""

proxies: Union[bool, Iterable[ProxiesUnionMember1]]
Expand Down
Loading