From 6a271232b617db81ff9f51dfa4a80bf68ea79d3f Mon Sep 17 00:00:00 2001 From: Kevin Szuchet Date: Thu, 16 Jan 2025 15:24:45 -0300 Subject: [PATCH] fix: Avoid duplication in the definition names --- proto/decentraland/social_service/v1/social_service.proto | 2 +- proto/decentraland/social_service/v2/social_service.proto | 2 +- proto/decentraland/social_service/v3/social_service.proto | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/decentraland/social_service/v1/social_service.proto b/proto/decentraland/social_service/v1/social_service.proto index 2a0cf2ab..8aca9728 100644 --- a/proto/decentraland/social_service/v1/social_service.proto +++ b/proto/decentraland/social_service/v1/social_service.proto @@ -143,7 +143,7 @@ message SubscribeFriendshipEventsUpdatesResponse { } // @deprecated, only available for old explorer compatibility -service FriendshipsService { +service SocialServiceV1 { // Get the list of friends for the authenticated user rpc GetFriends(Payload) returns (stream UsersResponse) {} diff --git a/proto/decentraland/social_service/v2/social_service.proto b/proto/decentraland/social_service/v2/social_service.proto index cf9cbd5b..2d1c9bad 100644 --- a/proto/decentraland/social_service/v2/social_service.proto +++ b/proto/decentraland/social_service/v2/social_service.proto @@ -89,7 +89,7 @@ message FriendshipUpdate { } // @deprecated, used for initial migration without Matrix -service SocialService { +service SocialServiceV2 { // Get the list of friends for the authenticated user rpc GetFriends(google.protobuf.Empty) returns (stream UsersResponse) {} diff --git a/proto/decentraland/social_service/v3/social_service.proto b/proto/decentraland/social_service/v3/social_service.proto index 167b0fde..14ea9c47 100644 --- a/proto/decentraland/social_service/v3/social_service.proto +++ b/proto/decentraland/social_service/v3/social_service.proto @@ -134,7 +134,7 @@ message GetFriendshipStatusResponse { } } -service SocialService { +service SocialServiceV3 { // Get the list of friends for the authenticated user rpc GetFriends(GetFriendsPayload) returns (PaginatedUsersResponse) {}