@dcl/protocol 1.0.0-20755769326.commit-9334182 → 1.0.0-21441285601.commit-d8a2d5b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-20755769326.commit-9334182",
3
+ "version": "1.0.0-21441285601.commit-d8a2d5b",
4
4
  "description": "",
5
5
  "repository": "decentraland/protocol.git",
6
6
  "homepage": "https://github.com/decentraland/protocol#readme",
@@ -30,5 +30,5 @@
30
30
  "out-js",
31
31
  "public"
32
32
  ],
33
- "commit": "9334182b6d54ecef48e51a42a5764d36f4035842"
33
+ "commit": "d8a2d5b681d7a9799cbc0d1d92305452f74c9ea7"
34
34
  }
@@ -1,51 +0,0 @@
1
- syntax = "proto3";
2
- package decentraland.social_service.v3;
3
-
4
- import "decentraland/social_service/errors.proto";
5
-
6
- // Common types
7
- message User { string address = 1; }
8
-
9
- message Profile {
10
- string name = 1;
11
- bool has_claimed_name = 2;
12
- string profile_picture_url = 3;
13
- }
14
-
15
- message Friend {
16
- string address = 1;
17
- optional Profile profile = 2;
18
- }
19
-
20
- message Pagination {
21
- int32 limit = 1;
22
- int32 offset = 2;
23
- }
24
-
25
- message PaginatedResponse {
26
- int32 total = 1;
27
- int32 page = 2;
28
- }
29
-
30
- // Get mutual friends
31
- message GetMutualFriendsPayload {
32
- User user = 1;
33
- optional Pagination pagination = 2;
34
- }
35
-
36
- message GetMutualFriendsResponse {
37
- message Ok {
38
- repeated Friend friends = 1;
39
- PaginatedResponse pagination_data = 2;
40
- }
41
-
42
- oneof response {
43
- Ok ok = 1;
44
- InternalServerError internal_server_error = 2;
45
- InvalidRequest invalid_request = 3;
46
- }
47
- }
48
-
49
- service SocialService {
50
- rpc GetMutualFriends(GetMutualFriendsPayload) returns (GetMutualFriendsResponse) {}
51
- }