Skip to content
Merged
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
5 changes: 2 additions & 3 deletions apis/accounts/v1alpha1/account.proto
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,10 @@
}

// 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;

Check failure on line 56 in apis/accounts/v1alpha1/account.proto

View workflow job for this annotation

GitHub Actions / Buf

Field "1" on message "APIKeyDetails" changed name from "name" to "description".

Check failure on line 56 in apis/accounts/v1alpha1/account.proto

View workflow job for this annotation

GitHub Actions / Buf

Field "1" with name "description" on message "APIKeyDetails" changed option "json_name" from "name" to "description".
// The non-secret identifier embedded in the API key.
string public_identifier = 3;
string public_identifier = 2;

Check failure on line 58 in apis/accounts/v1alpha1/account.proto

View workflow job for this annotation

GitHub Actions / Buf

Field "2" on message "APIKeyDetails" changed name from "description" to "public_identifier".

Check failure on line 58 in apis/accounts/v1alpha1/account.proto

View workflow job for this annotation

GitHub Actions / Buf

Field "2" with name "public_identifier" on message "APIKeyDetails" changed option "json_name" from "description" to "publicIdentifier".
}

Check failure on line 59 in apis/accounts/v1alpha1/account.proto

View workflow job for this annotation

GitHub Actions / Buf

Previously present field "3" with name "public_identifier" on message "APIKeyDetails" was deleted without reserving the number "3".

Check failure on line 59 in apis/accounts/v1alpha1/account.proto

View workflow job for this annotation

GitHub Actions / Buf

Previously present field "3" with name "public_identifier" on message "APIKeyDetails" was deleted without reserving the name "public_identifier".

// JWTDetails describes the verified JWT without exposing the token or subject and session identifiers.
Expand Down
Loading