Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.49.0"
".": "0.50.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 92
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-b3ce005070de130c689c5e82a0decb0515feedc16f6aed5b68a620c0e2c33c99.yml
openapi_spec_hash: a6d282538829a82c412ed65565d33c9c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-963f8c488e668763300b08860aef9dd85b72c32069ca20e0c36795e86d2938b1.yml
openapi_spec_hash: 65c50f6ab92fd7bf7d108be411923a7a
config_hash: 60681f589a9e641fdb7f19af2021a033
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.50.0 (2025-07-15)

Full Changelog: [v0.49.0...v0.50.0](https://github.com/runloopai/api-client-python/compare/v0.49.0...v0.50.0)

### Features

* **api:** api update ([3ebaf54](https://github.com/runloopai/api-client-python/commit/3ebaf5400d977cf4eed3c254235aecb44e5b6836))

## 0.49.0 (2025-07-15)

Full Changelog: [v0.48.2...v0.49.0](https://github.com/runloopai/api-client-python/compare/v0.48.2...v0.49.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "runloop_api_client"
version = "0.49.0"
version = "0.50.0"
description = "The official Python library for the runloop API"
dynamic = ["readme"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/runloop_api_client/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "runloop_api_client"
__version__ = "0.49.0" # x-release-please-version
__version__ = "0.50.0" # x-release-please-version
15 changes: 12 additions & 3 deletions src/runloop_api_client/types/shared/launch_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,22 @@ class LaunchParameters(BaseModel):
"""

custom_cpu_cores: Optional[int] = None
"""custom resource size, number of cpu cores, must be multiple of 2."""
"""custom resource size, number of cpu cores, must be multiple of 2.

Min is 1, max is 16.
"""

custom_disk_size: Optional[int] = None
"""custom disk size, number in Gi, must be a multiple of 2."""
"""custom disk size, number in GiB, must be a multiple of 2.

Min is 2GiB, max is 64GiB.
"""

custom_gb_memory: Optional[int] = None
"""custom memory size, number in Gi, must be a multiple of 2."""
"""custom memory size, number in GiB, must be a multiple of 2.

Min is 2GiB, max is 64GiB.
"""

keep_alive_time_seconds: Optional[int] = None
"""Time in seconds after which Devbox will automatically shutdown.
Expand Down
15 changes: 12 additions & 3 deletions src/runloop_api_client/types/shared_params/launch_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,22 @@ class LaunchParameters(TypedDict, total=False):
"""

custom_cpu_cores: Optional[int]
"""custom resource size, number of cpu cores, must be multiple of 2."""
"""custom resource size, number of cpu cores, must be multiple of 2.

Min is 1, max is 16.
"""

custom_disk_size: Optional[int]
"""custom disk size, number in Gi, must be a multiple of 2."""
"""custom disk size, number in GiB, must be a multiple of 2.

Min is 2GiB, max is 64GiB.
"""

custom_gb_memory: Optional[int]
"""custom memory size, number in Gi, must be a multiple of 2."""
"""custom memory size, number in GiB, must be a multiple of 2.

Min is 2GiB, max is 64GiB.
"""

keep_alive_time_seconds: Optional[int]
"""Time in seconds after which Devbox will automatically shutdown.
Expand Down