From c787eba20eefc0b0eaa1893462d3f8da23b453fe Mon Sep 17 00:00:00 2001 From: Gustavo Henrique Santos Souza de Miranda Date: Fri, 5 Dec 2025 21:48:46 -0300 Subject: [PATCH] Fix field name casing in UpdateArtistResponse proto message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change field name from 'Artist' to 'artist' to follow protobuf naming conventions, which require lowercase field names with underscores for word separation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- src/main/proto/artist.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/proto/artist.proto b/src/main/proto/artist.proto index 254e7f7..1f68272 100644 --- a/src/main/proto/artist.proto +++ b/src/main/proto/artist.proto @@ -40,7 +40,7 @@ message UpdateArtistRequest { } message UpdateArtistResponse { - Artist Artist = 1; + Artist artist = 1; } message DeleteArtistRequest {