From bdbca5a6035239bcf3019cd4b43b875ea321dc70 Mon Sep 17 00:00:00 2001 From: Lukas Bindreiter Date: Thu, 23 Jul 2026 11:02:54 +0200 Subject: [PATCH] Remove non-existent api key name --- apis/accounts/v1alpha1/account.proto | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apis/accounts/v1alpha1/account.proto b/apis/accounts/v1alpha1/account.proto index 509b42f..3b14169 100644 --- a/apis/accounts/v1alpha1/account.proto +++ b/apis/accounts/v1alpha1/account.proto @@ -53,10 +53,9 @@ message AuthenticationMethod { // APIKeyDetails describes the API key used for the request without exposing its secret or internal identifier. message APIKeyDetails { - string name = 1; - string description = 2; + string description = 1; // The non-secret identifier embedded in the API key. - string public_identifier = 3; + string public_identifier = 2; } // JWTDetails describes the verified JWT without exposing the token or subject and session identifiers.