From 2b4cba1a15d78f4e3b81db06c67b4f5872d84529 Mon Sep 17 00:00:00 2001 From: Cedric Cordenier Date: Wed, 3 Sep 2025 13:30:14 +0100 Subject: [PATCH] [PRIV-169] Add GetPublicKeyRequest/Response --- pkg/capabilities/actions/vault/vault.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkg/capabilities/actions/vault/vault.go b/pkg/capabilities/actions/vault/vault.go index 17bd575fe..59a4f1731 100644 --- a/pkg/capabilities/actions/vault/vault.go +++ b/pkg/capabilities/actions/vault/vault.go @@ -2,7 +2,13 @@ package vault const ( - CapabilityID = "vault@1.0.0" + CapabilityID = "vault@1.0.0" // Deprecated - use the types in core instead. MethodGetSecrets = "vault.secrets.get" ) + +type GetPublicKeyRequest struct{} + +type GetPublicKeyResponse struct { + PublicKey string `json:"publicKey"` +}