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.52.0"
".": "0.53.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-2417f3ff96b2f0934e6ee5cafd072e111515712cebb58eff3690bda46b9e04d8.yml
openapi_spec_hash: 15877c256d01485dacbb4e348d79845d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-8805efc665011161897e5c4c326dc44090ae55471a36bef8d63d17fec4e289f1.yml
openapi_spec_hash: 4d348158fc0b5daa3f55d831301859e4
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.53.0 (2025-07-30)

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

### Features

* **api:** api update ([1854faf](https://github.com/runloopai/api-client-python/commit/1854faf3e7a0a63b136d7fceaf03352afe9181a7))

## 0.52.0 (2025-07-30)

Full Changelog: [v0.51.0...v0.52.0](https://github.com/runloopai/api-client-python/compare/v0.51.0...v0.52.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.52.0"
version = "0.53.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.52.0" # x-release-please-version
__version__ = "0.53.0" # x-release-please-version
6 changes: 1 addition & 5 deletions src/runloop_api_client/types/blueprint_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from typing import Dict, List, Optional
from typing_extensions import Literal

from pydantic import Field as FieldInfo

from .._models import BaseModel
from .blueprint_build_parameters import BlueprintBuildParameters

Expand Down Expand Up @@ -64,9 +62,7 @@ class BlueprintView(BaseModel):
base_blueprint_id: Optional[str] = None
"""The ID of the base Blueprint."""

containerized_services: Optional[List[ContainerizedService]] = FieldInfo(
alias="containerizedServices", default=None
)
containerized_services: Optional[List[ContainerizedService]] = None
"""List of ContainerizedServices available in the Blueprint.

Services can be explicitly started when creating a Devbox.
Expand Down