Skip to content

Commit bdf6b7b

Browse files
feat(api): manual updates
1 parent c2827c1 commit bdf6b7b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.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-ddb6c0a84147708d59fcd0095cc100e98906043ba2cb3c30e5d90b85b2e50743.yml
3-
openapi_spec_hash: c33639bfc0cdef8e4e1c771694b2839b
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/miru-ml%2Fmiru-agent-d2a734ee7df8f6d5557e579a712316d224331ac3f4ca56f5c737f245e4e7d5b9.yml
3+
openapi_spec_hash: 3b21ce013e0686deddeb65da29fefdd8
44
config_hash: a36330a3b27b8375298d0677e6ac4aa9

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-
"""Health"""
53+
"""Get 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-
"""Version"""
72+
"""Get 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-
"""Health"""
112+
"""Get 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-
"""Version"""
131+
"""Get 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"""
53+
"""Get 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"""
72+
"""Sync the device"""
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"""
112+
"""Get 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"""
131+
"""Sync the device"""
132132
return await self._post(
133133
"/device/sync",
134134
options=make_request_options(

src/miru_agent_sdk/types/device_retrieve_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ class DeviceRetrieveResponse(BaseModel):
1313
"""ID of the device"""
1414

1515
last_connected_at: datetime
16-
"""Timestamp of the last successful connection event with the MQTT broker."""
16+
"""Timestamp of the last successful connection event with the backend."""
1717

1818
last_disconnected_at: datetime
19-
"""Timestamp of the last successful disconnection event with the MQTT broker."""
19+
"""Timestamp of the last successful disconnection event with the backend."""
2020

2121
last_synced_at: datetime
2222
"""Timestamp of when the device was last synced"""

0 commit comments

Comments
 (0)