protobuf-platform 1.2.36 → 1.2.37
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 +1 -1
- package/user/user.proto +1 -0
- package/user/user_grpc_pb.js +11 -0
package/package.json
CHANGED
package/user/user.proto
CHANGED
@@ -18,6 +18,7 @@ service User {
|
|
18
18
|
rpc updateUserPassword(UserPasswordRequest) returns (UserStatusResponse);
|
19
19
|
rpc setUserSelfExclusion(UserRequest) returns (UserStatusResponse);
|
20
20
|
rpc updateUserBalanceAfterAction(UserActionRequest) returns (UserActionResponse);
|
21
|
+
rpc readListPoorUsers(PaginationRequest) returns (UsersResponse);
|
21
22
|
//Segments
|
22
23
|
rpc createSingleSegment(SegmentRequest) returns (SegmentResponse);
|
23
24
|
rpc readSingleSegment(GetSegmentRequest) returns (SegmentResponse);
|
package/user/user_grpc_pb.js
CHANGED
@@ -713,6 +713,17 @@ readListUsers: {
|
|
713
713
|
responseSerialize: serialize_user_UserActionResponse,
|
714
714
|
responseDeserialize: deserialize_user_UserActionResponse,
|
715
715
|
},
|
716
|
+
readListPoorUsers: {
|
717
|
+
path: '/user.User/readListPoorUsers',
|
718
|
+
requestStream: false,
|
719
|
+
responseStream: false,
|
720
|
+
requestType: user_pb.PaginationRequest,
|
721
|
+
responseType: user_pb.UsersResponse,
|
722
|
+
requestSerialize: serialize_user_PaginationRequest,
|
723
|
+
requestDeserialize: deserialize_user_PaginationRequest,
|
724
|
+
responseSerialize: serialize_user_UsersResponse,
|
725
|
+
responseDeserialize: deserialize_user_UsersResponse,
|
726
|
+
},
|
716
727
|
// Segments
|
717
728
|
createSingleSegment: {
|
718
729
|
path: '/user.User/createSingleSegment',
|