From b49c2297a516d0c298813792a4d9d7d36703bea3 Mon Sep 17 00:00:00 2001 From: Michal Skrivanek Date: Fri, 3 Oct 2025 15:53:59 +0200 Subject: [PATCH] add "description" and "methods_description" fields to GetReport store custom Driver and its methods description in each DriverInstanceReport to display in jmp shell CLI. --- proto/jumpstarter/v1/jumpstarter.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/jumpstarter/v1/jumpstarter.proto b/proto/jumpstarter/v1/jumpstarter.proto index ee40225..d72369d 100644 --- a/proto/jumpstarter/v1/jumpstarter.proto +++ b/proto/jumpstarter/v1/jumpstarter.proto @@ -67,6 +67,8 @@ message DriverInstanceReport { string uuid = 1; // a unique id within the exporter optional string parent_uuid = 2; // optional, if device has a parent device map labels = 3; + optional string description = 4; // optional custom driver description for CLI + map methods_description = 5; // method name -> help text for CLI } message RegisterResponse {