protobuf-platform 1.0.111 → 1.0.112

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": "protobuf-platform",
3
- "version": "1.0.111",
3
+ "version": "1.0.112",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/user/user.proto CHANGED
@@ -21,7 +21,7 @@ service User {
21
21
  rpc deleteSingleSegment(GetSegmentRequest) returns (SegmentStatusResponse);
22
22
  rpc readListSegments(PaginationRequest) returns (SegmentItemsResponse);
23
23
  rpc addUsersIntoSegments(GetSegmentRequest) returns (SegmentStatusResponse);
24
- rpc removeUsersIntoSegments(GetSegmentRequest) returns (SegmentStatusResponse);
24
+ rpc removeUsersFromSegments(GetSegmentRequest) returns (SegmentStatusResponse);
25
25
  }
26
26
 
27
27
  message PingRequest { string ping = 1; }
@@ -373,8 +373,8 @@ createSingleSegment: {
373
373
  responseSerialize: serialize_user_SegmentStatusResponse,
374
374
  responseDeserialize: deserialize_user_SegmentStatusResponse,
375
375
  },
376
- removeUsersIntoSegments: {
377
- path: '/user.User/removeUsersIntoSegments',
376
+ removeUsersFromSegments: {
377
+ path: '/user.User/removeUsersFromSegments',
378
378
  requestStream: false,
379
379
  responseStream: false,
380
380
  requestType: user_pb.GetSegmentRequest,