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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Generated client code
clients/typescript/generated/
clients/python/generated/
clients/python/src/ros2_medkit_client/_generated

# Node
node_modules/
Expand Down
2 changes: 1 addition & 1 deletion SPEC_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.6.0
2 changes: 1 addition & 1 deletion clients/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "ros2-medkit-client"
version = "0.5.0"
version = "0.6.0"
description = "Async Python client for the ros2_medkit gateway"
license = "Apache-2.0"
requires-python = ">=3.11"
Expand Down
33 changes: 33 additions & 0 deletions clients/python/src/ros2_medkit_client/api/lifecycle.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright 2026 bburda
# SPDX-License-Identifier: Apache-2.0
"""Lifecycle API - read and transition entity lifecycle status."""

from ros2_medkit_client._generated.api.lifecycle import (
get_apps_status,
get_components_status,
put_apps_status_force_restart,
put_apps_status_force_shutdown,
put_apps_status_restart,
put_apps_status_shutdown,
put_apps_status_start,
put_components_status_force_restart,
put_components_status_force_shutdown,
put_components_status_restart,
put_components_status_shutdown,
put_components_status_start,
)

__all__ = [
"get_apps_status",
"get_components_status",
"put_apps_status_force_restart",
"put_apps_status_force_shutdown",
"put_apps_status_restart",
"put_apps_status_shutdown",
"put_apps_status_start",
"put_components_status_force_restart",
"put_components_status_force_shutdown",
"put_components_status_restart",
"put_components_status_shutdown",
"put_components_status_start",
]
2 changes: 1 addition & 1 deletion clients/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@selfpatch/ros2-medkit-client-ts",
"version": "0.5.0",
"version": "0.6.0",
"description": "Type-safe TypeScript client for the ros2_medkit gateway",
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading
Loading