Skip to content

Commit c1c2afd

Browse files
authored
Merge pull request #7 from miruml/release-please--branches--main--changes--next
release: 0.2.1
2 parents 0f09213 + 88dc68a commit c1c2afd

File tree

11 files changed

+32
-24
lines changed

11 files changed

+32
-24
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.0"
2+
".": "0.2.1"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 4
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/miru-ml%2Fmiru-agent-d2a734ee7df8f6d5557e579a712316d224331ac3f4ca56f5c737f245e4e7d5b9.yml
3-
openapi_spec_hash: 3b21ce013e0686deddeb65da29fefdd8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/miru-ml%2Fmiru-agent-ffae0a34ce97de595b13ef4f245379ab41e318b2abd8c1e4683bf34b4dd0d2c1.yml
3+
openapi_spec_hash: 62914cbb512ac0083489f7b281c77671
44
config_hash: a36330a3b27b8375298d0677e6ac4aa9

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.2.1 (2025-09-21)
4+
5+
Full Changelog: [v0.2.0...v0.2.1](https://github.com/miruml/python-agent-sdk/compare/v0.2.0...v0.2.1)
6+
7+
### Chores
8+
9+
* **api:** update route + struct descriptions ([49c2e88](https://github.com/miruml/python-agent-sdk/commit/49c2e88e03ca3d4ed176cf11d0d5ac46129ae2e4))
10+
311
## 0.2.0 (2025-09-21)
412

513
Full Changelog: [v0.1.0...v0.2.0](https://github.com/miruml/python-agent-sdk/compare/v0.1.0...v0.2.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "miru_agent_sdk"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "The official Python library for the miru API"
55
dynamic = ["readme"]
66
license = "MIT"

src/miru_agent_sdk/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "miru_agent_sdk"
4-
__version__ = "0.2.0" # x-release-please-version
4+
__version__ = "0.2.1" # x-release-please-version

src/miru_agent_sdk/resources/agent.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def health(
5050
extra_body: Body | None = None,
5151
timeout: float | httpx.Timeout | None | NotGiven = not_given,
5252
) -> AgentHealthResponse:
53-
"""Get the health of the agent"""
53+
"""Retrieve the health of the agent."""
5454
return self._get(
5555
"/health",
5656
options=make_request_options(
@@ -69,7 +69,7 @@ def version(
6969
extra_body: Body | None = None,
7070
timeout: float | httpx.Timeout | None | NotGiven = not_given,
7171
) -> AgentVersionResponse:
72-
"""Get the version of the agent"""
72+
"""Retrieve the version of the agent."""
7373
return self._get(
7474
"/version",
7575
options=make_request_options(
@@ -109,7 +109,7 @@ async def health(
109109
extra_body: Body | None = None,
110110
timeout: float | httpx.Timeout | None | NotGiven = not_given,
111111
) -> AgentHealthResponse:
112-
"""Get the health of the agent"""
112+
"""Retrieve the health of the agent."""
113113
return await self._get(
114114
"/health",
115115
options=make_request_options(
@@ -128,7 +128,7 @@ async def version(
128128
extra_body: Body | None = None,
129129
timeout: float | httpx.Timeout | None | NotGiven = not_given,
130130
) -> AgentVersionResponse:
131-
"""Get the version of the agent"""
131+
"""Retrieve the version of the agent."""
132132
return await self._get(
133133
"/version",
134134
options=make_request_options(

src/miru_agent_sdk/resources/device.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def retrieve(
5050
extra_body: Body | None = None,
5151
timeout: float | httpx.Timeout | None | NotGiven = not_given,
5252
) -> DeviceRetrieveResponse:
53-
"""Get the device"""
53+
"""Retrieve the device."""
5454
return self._get(
5555
"/device",
5656
options=make_request_options(
@@ -69,7 +69,7 @@ def sync(
6969
extra_body: Body | None = None,
7070
timeout: float | httpx.Timeout | None | NotGiven = not_given,
7171
) -> DeviceSyncResponse:
72-
"""Sync the device"""
72+
"""Manually force a device sync with the edits made in the dashboard."""
7373
return self._post(
7474
"/device/sync",
7575
options=make_request_options(
@@ -109,7 +109,7 @@ async def retrieve(
109109
extra_body: Body | None = None,
110110
timeout: float | httpx.Timeout | None | NotGiven = not_given,
111111
) -> DeviceRetrieveResponse:
112-
"""Get the device"""
112+
"""Retrieve the device."""
113113
return await self._get(
114114
"/device",
115115
options=make_request_options(
@@ -128,7 +128,7 @@ async def sync(
128128
extra_body: Body | None = None,
129129
timeout: float | httpx.Timeout | None | NotGiven = not_given,
130130
) -> DeviceSyncResponse:
131-
"""Sync the device"""
131+
"""Manually force a device sync with the edits made in the dashboard."""
132132
return await self._post(
133133
"/device/sync",
134134
options=make_request_options(

src/miru_agent_sdk/types/agent_health_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
class AgentHealthResponse(BaseModel):
99
status: str
10-
"""The status of the agent"""
10+
"""The status of the agent."""

src/miru_agent_sdk/types/agent_version_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class AgentVersionResponse(BaseModel):
99
commit: str
10-
"""The commit hash of the agent"""
10+
"""The commit hash of the agent."""
1111

1212
version: str
13-
"""The version of the agent"""
13+
"""The version of the agent."""

src/miru_agent_sdk/types/device_retrieve_response.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class DeviceRetrieveResponse(BaseModel):
1212
id: str
13-
"""ID of the device"""
13+
"""ID of the device."""
1414

1515
last_connected_at: datetime
1616
"""Timestamp of the last successful connection event with the backend."""
@@ -19,15 +19,15 @@ class DeviceRetrieveResponse(BaseModel):
1919
"""Timestamp of the last successful disconnection event with the backend."""
2020

2121
last_synced_at: datetime
22-
"""Timestamp of when the device was last synced"""
22+
"""Timestamp of when the device was last synced."""
2323

2424
name: str
25-
"""Name of the device"""
25+
"""Name of the device."""
2626

2727
object: Literal["device"]
2828

2929
status: Literal["online", "offline"]
30-
"""The status of the device
30+
"""The status of the device.
3131
3232
- Online: The miru agent is connected
3333
- Offline: The miru agent is disconnected (e.g. network issues, device is

0 commit comments

Comments
 (0)