@volontariapp/contracts-nest 3.0.6 → 3.0.7-snap-a2c2e02
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/CHANGELOG.md +6 -0
- package/dist/post/post.command.d.ts +4 -0
- package/dist/post/post.command.d.ts.map +1 -1
- package/dist/post/post.responses.d.ts +3 -0
- package/dist/post/post.responses.d.ts.map +1 -1
- package/dist/post/post.services.d.ts +4 -2
- package/dist/post/post.services.d.ts.map +1 -1
- package/dist/post/post.services.js +1 -1
- package/dist/post/post.services.js.map +1 -1
- package/dist/social/social.command.d.ts +44 -8
- package/dist/social/social.command.d.ts.map +1 -1
- package/dist/social/social.query.d.ts +36 -6
- package/dist/social/social.query.d.ts.map +1 -1
- package/dist/social/social.responses.d.ts +64 -0
- package/dist/social/social.responses.d.ts.map +1 -1
- package/dist/social/social.services.d.ts +47 -3
- package/dist/social/social.services.d.ts.map +1 -1
- package/dist/social/social.services.js +38 -6
- package/dist/social/social.services.js.map +1 -1
- package/dist/user/user.command.d.ts +14 -2
- package/dist/user/user.command.d.ts.map +1 -1
- package/dist/user/user.query.d.ts +3 -1
- package/dist/user/user.query.d.ts.map +1 -1
- package/dist/user/user.responses.d.ts +9 -2
- package/dist/user/user.responses.d.ts.map +1 -1
- package/dist/user/user.services.d.ts +10 -4
- package/dist/user/user.services.d.ts.map +1 -1
- package/dist/user/user.services.js +26 -23
- package/dist/user/user.services.js.map +1 -1
- package/package.json +1 -1
- package/proto/volontariapp/post/post.command.proto +5 -0
- package/proto/volontariapp/post/post.responses.proto +4 -0
- package/proto/volontariapp/post/post.services.proto +1 -0
- package/proto/volontariapp/social/social.command.proto +56 -8
- package/proto/volontariapp/social/social.query.proto +46 -6
- package/proto/volontariapp/social/social.responses.proto +52 -0
- package/proto/volontariapp/social/social.services.proto +22 -0
- package/proto/volontariapp/user/user.command.proto +15 -1
- package/proto/volontariapp/user/user.query.proto +3 -0
- package/proto/volontariapp/user/user.responses.proto +10 -0
- package/proto/volontariapp/user/user.services.proto +3 -0
|
@@ -9,21 +9,37 @@ message GetSocialUserQuery {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
message GetMyFollowsQuery {
|
|
12
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message GetMyFollowersQuery {
|
|
16
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
message GetMyBlocksQuery {
|
|
20
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
message GetWhoBlockedMeQuery {
|
|
24
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
message AdminGetMyFollowsQuery {
|
|
12
28
|
string user_id = 1;
|
|
13
29
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
14
30
|
}
|
|
15
31
|
|
|
16
|
-
message
|
|
32
|
+
message AdminGetMyFollowersQuery {
|
|
17
33
|
string user_id = 1;
|
|
18
34
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
19
35
|
}
|
|
20
36
|
|
|
21
|
-
message
|
|
37
|
+
message AdminGetMyBlocksQuery {
|
|
22
38
|
string user_id = 1;
|
|
23
39
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
24
40
|
}
|
|
25
41
|
|
|
26
|
-
message
|
|
42
|
+
message AdminGetWhoBlockedMeQuery {
|
|
27
43
|
string user_id = 1;
|
|
28
44
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
29
45
|
}
|
|
@@ -33,16 +49,28 @@ message GetSocialPostQuery {
|
|
|
33
49
|
}
|
|
34
50
|
|
|
35
51
|
message GetUserPostsQuery {
|
|
52
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
message GetFeedQuery {
|
|
56
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
message AdminGetUserPostsQuery {
|
|
36
60
|
string user_id = 1;
|
|
37
61
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
38
62
|
}
|
|
39
63
|
|
|
40
|
-
message
|
|
64
|
+
message AdminGetFeedQuery {
|
|
41
65
|
string user_id = 1;
|
|
42
66
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
43
67
|
}
|
|
44
68
|
|
|
45
69
|
message GetUserLikesQuery {
|
|
70
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message AdminGetUserLikesQuery {
|
|
46
74
|
string user_id = 1;
|
|
47
75
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
48
76
|
}
|
|
@@ -53,16 +81,28 @@ message GetPostLikersQuery {
|
|
|
53
81
|
}
|
|
54
82
|
|
|
55
83
|
message GetUserEventQuery {
|
|
84
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
message GetUserParticipateEventQuery {
|
|
88
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message GetUserWishEventQuery {
|
|
92
|
+
volontariapp.common.PaginationRequest pagination = 1;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
message AdminGetUserEventQuery {
|
|
56
96
|
string user_id = 1;
|
|
57
97
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
58
98
|
}
|
|
59
99
|
|
|
60
|
-
message
|
|
100
|
+
message AdminGetUserParticipateEventQuery {
|
|
61
101
|
string user_id = 1;
|
|
62
102
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
63
103
|
}
|
|
64
104
|
|
|
65
|
-
message
|
|
105
|
+
message AdminGetUserWishEventQuery {
|
|
66
106
|
string user_id = 1;
|
|
67
107
|
volontariapp.common.PaginationRequest pagination = 2;
|
|
68
108
|
}
|
|
@@ -11,31 +11,53 @@ message GetUserNodeResponse {
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
message PostFollowUserResponse {}
|
|
14
|
+
message AdminPostFollowUserResponse {}
|
|
14
15
|
message DeleteFollowUserResponse {}
|
|
16
|
+
message AdminDeleteFollowUserResponse {}
|
|
15
17
|
message PostBlockUserResponse {}
|
|
18
|
+
message AdminPostBlockUserResponse {}
|
|
16
19
|
message DeleteBlockUserResponse {}
|
|
20
|
+
message AdminDeleteBlockUserResponse {}
|
|
17
21
|
|
|
18
22
|
message GetMyFollowsResponse {
|
|
19
23
|
repeated string ids = 1;
|
|
20
24
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
21
25
|
}
|
|
26
|
+
message AdminGetMyFollowsResponse {
|
|
27
|
+
repeated string ids = 1;
|
|
28
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
29
|
+
}
|
|
22
30
|
message GetMyFollowersResponse {
|
|
23
31
|
repeated string ids = 1;
|
|
24
32
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
25
33
|
}
|
|
34
|
+
message AdminGetMyFollowersResponse {
|
|
35
|
+
repeated string ids = 1;
|
|
36
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
37
|
+
}
|
|
26
38
|
message GetMyBlocksResponse {
|
|
27
39
|
repeated string ids = 1;
|
|
28
40
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
29
41
|
}
|
|
42
|
+
message AdminGetMyBlocksResponse {
|
|
43
|
+
repeated string ids = 1;
|
|
44
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
45
|
+
}
|
|
30
46
|
message GetWhoBlockedMeResponse {
|
|
31
47
|
repeated string ids = 1;
|
|
32
48
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
33
49
|
}
|
|
50
|
+
message AdminGetWhoBlockedMeResponse {
|
|
51
|
+
repeated string ids = 1;
|
|
52
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
53
|
+
}
|
|
34
54
|
|
|
35
55
|
message CreatePostNodeResponse {}
|
|
36
56
|
message DeletePostNodeResponse {}
|
|
37
57
|
message PostUserOwnResponse {}
|
|
58
|
+
message AdminPostUserOwnResponse {}
|
|
38
59
|
message DeleteUserOwnResponse {}
|
|
60
|
+
message AdminDeleteUserOwnResponse {}
|
|
39
61
|
|
|
40
62
|
message GetPostNodeResponse {
|
|
41
63
|
bool exists = 1;
|
|
@@ -44,18 +66,32 @@ message GetUserPostsResponse {
|
|
|
44
66
|
repeated string ids = 1;
|
|
45
67
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
46
68
|
}
|
|
69
|
+
message AdminGetUserPostsResponse {
|
|
70
|
+
repeated string ids = 1;
|
|
71
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
72
|
+
}
|
|
47
73
|
message GetFeedResponse {
|
|
48
74
|
repeated string ids = 1;
|
|
49
75
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
50
76
|
}
|
|
77
|
+
message AdminGetFeedResponse {
|
|
78
|
+
repeated string ids = 1;
|
|
79
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
80
|
+
}
|
|
51
81
|
|
|
52
82
|
message PostLikePostResponse {}
|
|
83
|
+
message AdminPostLikePostResponse {}
|
|
53
84
|
message DeleteLikePostResponse {}
|
|
85
|
+
message AdminDeleteLikePostResponse {}
|
|
54
86
|
|
|
55
87
|
message GetUserLikesResponse {
|
|
56
88
|
repeated string ids = 1;
|
|
57
89
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
58
90
|
}
|
|
91
|
+
message AdminGetUserLikesResponse {
|
|
92
|
+
repeated string ids = 1;
|
|
93
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
94
|
+
}
|
|
59
95
|
message GetPostLikersResponse {
|
|
60
96
|
repeated string ids = 1;
|
|
61
97
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
@@ -66,22 +102,38 @@ message DeleteEventNodeResponse {}
|
|
|
66
102
|
message PostUserEventResponse {}
|
|
67
103
|
message DeleteUserEventResponse {}
|
|
68
104
|
message PostUserParticipateEventResponse {}
|
|
105
|
+
message AdminPostUserParticipateEventResponse {}
|
|
69
106
|
message DeleteUserParticipateEventResponse {}
|
|
107
|
+
message AdminDeleteUserParticipateEventResponse {}
|
|
70
108
|
message PostUserWishEventResponse {}
|
|
109
|
+
message AdminPostUserWishEventResponse {}
|
|
71
110
|
message DeleteUserWishEventResponse {}
|
|
111
|
+
message AdminDeleteUserWishEventResponse {}
|
|
72
112
|
|
|
73
113
|
message GetUserEventResponse {
|
|
74
114
|
repeated string ids = 1;
|
|
75
115
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
76
116
|
}
|
|
117
|
+
message AdminGetUserEventResponse {
|
|
118
|
+
repeated string ids = 1;
|
|
119
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
120
|
+
}
|
|
77
121
|
message GetUserParticipateEventResponse {
|
|
78
122
|
repeated string ids = 1;
|
|
79
123
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
80
124
|
}
|
|
125
|
+
message AdminGetUserParticipateEventResponse {
|
|
126
|
+
repeated string ids = 1;
|
|
127
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
128
|
+
}
|
|
81
129
|
message GetUserWishEventResponse {
|
|
82
130
|
repeated string ids = 1;
|
|
83
131
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
84
132
|
}
|
|
133
|
+
message AdminGetUserWishEventResponse {
|
|
134
|
+
repeated string ids = 1;
|
|
135
|
+
volontariapp.common.PaginationResponse pagination = 2;
|
|
136
|
+
}
|
|
85
137
|
message GetEventParticipantsResponse {
|
|
86
138
|
repeated string ids = 1;
|
|
87
139
|
volontariapp.common.PaginationResponse pagination = 2;
|
|
@@ -20,6 +20,10 @@ service RelationshipCommandService {
|
|
|
20
20
|
rpc DeleteFollowUser(DeleteFollowUserCommand) returns (DeleteFollowUserResponse);
|
|
21
21
|
rpc PostBlockUser(PostBlockUserCommand) returns (PostBlockUserResponse);
|
|
22
22
|
rpc DeleteBlockUser(DeleteBlockUserCommand) returns (DeleteBlockUserResponse);
|
|
23
|
+
rpc AdminPostFollowUser(AdminPostFollowUserCommand) returns (AdminPostFollowUserResponse);
|
|
24
|
+
rpc AdminDeleteFollowUser(AdminDeleteFollowUserCommand) returns (AdminDeleteFollowUserResponse);
|
|
25
|
+
rpc AdminPostBlockUser(AdminPostBlockUserCommand) returns (AdminPostBlockUserResponse);
|
|
26
|
+
rpc AdminDeleteBlockUser(AdminDeleteBlockUserCommand) returns (AdminDeleteBlockUserResponse);
|
|
23
27
|
}
|
|
24
28
|
|
|
25
29
|
service RelationshipQueryService {
|
|
@@ -27,6 +31,10 @@ service RelationshipQueryService {
|
|
|
27
31
|
rpc GetMyFollowers(GetMyFollowersQuery) returns (GetMyFollowersResponse);
|
|
28
32
|
rpc GetMyBlocks(GetMyBlocksQuery) returns (GetMyBlocksResponse);
|
|
29
33
|
rpc GetWhoBlockedMe(GetWhoBlockedMeQuery) returns (GetWhoBlockedMeResponse);
|
|
34
|
+
rpc AdminGetMyFollows(AdminGetMyFollowsQuery) returns (AdminGetMyFollowsResponse);
|
|
35
|
+
rpc AdminGetMyFollowers(AdminGetMyFollowersQuery) returns (AdminGetMyFollowersResponse);
|
|
36
|
+
rpc AdminGetMyBlocks(AdminGetMyBlocksQuery) returns (AdminGetMyBlocksResponse);
|
|
37
|
+
rpc AdminGetWhoBlockedMe(AdminGetWhoBlockedMeQuery) returns (AdminGetWhoBlockedMeResponse);
|
|
30
38
|
}
|
|
31
39
|
|
|
32
40
|
service PublicationCommandService {
|
|
@@ -34,22 +42,29 @@ service PublicationCommandService {
|
|
|
34
42
|
rpc DeletePostNode(DeleteSocialPostCommand) returns (DeletePostNodeResponse);
|
|
35
43
|
rpc PostUserOwn(PostUserOwnCommand) returns (PostUserOwnResponse);
|
|
36
44
|
rpc DeleteUserOwn(DeleteUserOwnCommand) returns (DeleteUserOwnResponse);
|
|
45
|
+
rpc AdminPostUserOwn(AdminPostUserOwnCommand) returns (AdminPostUserOwnResponse);
|
|
46
|
+
rpc AdminDeleteUserOwn(AdminDeleteUserOwnCommand) returns (AdminDeleteUserOwnResponse);
|
|
37
47
|
}
|
|
38
48
|
|
|
39
49
|
service PublicationQueryService {
|
|
40
50
|
rpc GetPostNode(GetSocialPostQuery) returns (GetPostNodeResponse);
|
|
41
51
|
rpc GetUserPosts(GetUserPostsQuery) returns (GetUserPostsResponse);
|
|
42
52
|
rpc GetFeed(GetFeedQuery) returns (GetFeedResponse);
|
|
53
|
+
rpc AdminGetUserPosts(AdminGetUserPostsQuery) returns (AdminGetUserPostsResponse);
|
|
54
|
+
rpc AdminGetFeed(AdminGetFeedQuery) returns (AdminGetFeedResponse);
|
|
43
55
|
}
|
|
44
56
|
|
|
45
57
|
service InteractionCommandService {
|
|
46
58
|
rpc PostLikePost(PostLikePostCommand) returns (PostLikePostResponse);
|
|
47
59
|
rpc DeleteLikePost(DeleteLikePostCommand) returns (DeleteLikePostResponse);
|
|
60
|
+
rpc AdminPostLikePost(AdminPostLikePostCommand) returns (AdminPostLikePostResponse);
|
|
61
|
+
rpc AdminDeleteLikePost(AdminDeleteLikePostCommand) returns (AdminDeleteLikePostResponse);
|
|
48
62
|
}
|
|
49
63
|
|
|
50
64
|
service InteractionQueryService {
|
|
51
65
|
rpc GetUserLikes(GetUserLikesQuery) returns (GetUserLikesResponse);
|
|
52
66
|
rpc GetPostLikers(GetPostLikersQuery) returns (GetPostLikersResponse);
|
|
67
|
+
rpc AdminGetUserLikes(AdminGetUserLikesQuery) returns (AdminGetUserLikesResponse);
|
|
53
68
|
}
|
|
54
69
|
|
|
55
70
|
service ParticipationCommandService {
|
|
@@ -61,6 +76,10 @@ service ParticipationCommandService {
|
|
|
61
76
|
rpc DeleteUserParticipateEvent(DeleteUserParticipateEventCommand) returns (DeleteUserParticipateEventResponse);
|
|
62
77
|
rpc PostUserWishEvent(PostUserWishEventCommand) returns (PostUserWishEventResponse);
|
|
63
78
|
rpc DeleteUserWishEvent(DeleteUserWishEventCommand) returns (DeleteUserWishEventResponse);
|
|
79
|
+
rpc AdminPostUserParticipateEvent(AdminPostUserParticipateEventCommand) returns (AdminPostUserParticipateEventResponse);
|
|
80
|
+
rpc AdminDeleteUserParticipateEvent(AdminDeleteUserParticipateEventCommand) returns (AdminDeleteUserParticipateEventResponse);
|
|
81
|
+
rpc AdminPostUserWishEvent(AdminPostUserWishEventCommand) returns (AdminPostUserWishEventResponse);
|
|
82
|
+
rpc AdminDeleteUserWishEvent(AdminDeleteUserWishEventCommand) returns (AdminDeleteUserWishEventResponse);
|
|
64
83
|
}
|
|
65
84
|
|
|
66
85
|
service ParticipationQueryService {
|
|
@@ -69,6 +88,9 @@ service ParticipationQueryService {
|
|
|
69
88
|
rpc GetUserParticipateEvent(GetUserParticipateEventQuery) returns (GetUserParticipateEventResponse);
|
|
70
89
|
rpc GetUserWishEvent(GetUserWishEventQuery) returns (GetUserWishEventResponse);
|
|
71
90
|
rpc GetEventParticipants(GetEventParticipantsQuery) returns (GetEventParticipantsResponse);
|
|
91
|
+
rpc AdminGetUserEvent(AdminGetUserEventQuery) returns (AdminGetUserEventResponse);
|
|
92
|
+
rpc AdminGetUserParticipateEvent(AdminGetUserParticipateEventQuery) returns (AdminGetUserParticipateEventResponse);
|
|
93
|
+
rpc AdminGetUserWishEvent(AdminGetUserWishEventQuery) returns (AdminGetUserWishEventResponse);
|
|
72
94
|
}
|
|
73
95
|
|
|
74
96
|
service EventPostLinkCommandService {
|
|
@@ -15,6 +15,20 @@ message SignUpCommand {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
message UpdateUserCommand {
|
|
18
|
+
optional string email = 1;
|
|
19
|
+
optional string previous_password = 2;
|
|
20
|
+
optional string new_password = 3;
|
|
21
|
+
optional string phone = 4;
|
|
22
|
+
optional string pseudo = 5;
|
|
23
|
+
optional string bio = 6;
|
|
24
|
+
optional string logo_path = 7;
|
|
25
|
+
optional OrganisationInfo organisation_info = 8;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
message DeleteUserCommand {
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message AdminUpdateUserCommand {
|
|
18
32
|
string user_id = 1;
|
|
19
33
|
optional string email = 2;
|
|
20
34
|
optional string previous_password = 3;
|
|
@@ -26,7 +40,7 @@ message UpdateUserCommand {
|
|
|
26
40
|
optional OrganisationInfo organisation_info = 9;
|
|
27
41
|
}
|
|
28
42
|
|
|
29
|
-
message
|
|
43
|
+
message AdminDeleteUserCommand {
|
|
30
44
|
string user_id = 1;
|
|
31
45
|
}
|
|
32
46
|
|
|
@@ -9,6 +9,10 @@ message UserResponse {
|
|
|
9
9
|
User user = 1;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
message AdminUserResponse {
|
|
13
|
+
User user = 1;
|
|
14
|
+
}
|
|
15
|
+
|
|
12
16
|
message SignUpResponse {
|
|
13
17
|
User user = 1;
|
|
14
18
|
AuthResponse auth = 2;
|
|
@@ -22,9 +26,15 @@ message ListUsersResponse {
|
|
|
22
26
|
message UpdateUserResponse {
|
|
23
27
|
}
|
|
24
28
|
|
|
29
|
+
message AdminUpdateUserResponse {
|
|
30
|
+
}
|
|
31
|
+
|
|
25
32
|
message DeleteUserResponse {
|
|
26
33
|
}
|
|
27
34
|
|
|
35
|
+
message AdminDeleteUserResponse {
|
|
36
|
+
}
|
|
37
|
+
|
|
28
38
|
message AuthResponse {
|
|
29
39
|
string access_token = 1;
|
|
30
40
|
string refresh_token = 2;
|
|
@@ -12,6 +12,9 @@ service UserService {
|
|
|
12
12
|
rpc SignUp (SignUpCommand) returns (SignUpResponse) {}
|
|
13
13
|
rpc UpdateUser (UpdateUserCommand) returns (UpdateUserResponse) {}
|
|
14
14
|
rpc DeleteUser (DeleteUserCommand) returns (DeleteUserResponse) {}
|
|
15
|
+
rpc AdminGetUser (AdminGetUserQuery) returns (AdminUserResponse) {}
|
|
16
|
+
rpc AdminUpdateUser (AdminUpdateUserCommand) returns (AdminUpdateUserResponse) {}
|
|
17
|
+
rpc AdminDeleteUser (AdminDeleteUserCommand) returns (AdminDeleteUserResponse) {}
|
|
15
18
|
rpc Login (LoginCommand) returns (LoginResponse) {}
|
|
16
19
|
rpc RefreshToken (RefreshTokenCommand) returns (RefreshTokenResponse) {}
|
|
17
20
|
rpc IncrementImpactScore (IncrementImpactScoreCommand) returns (IncrementImpactScoreResponse) {}
|