protobuf-platform 1.0.95 → 1.0.96

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/game/game.proto CHANGED
@@ -52,6 +52,7 @@ service Game {
52
52
  //Cross Services
53
53
  rpc getGamesByUuids(GamesUuids) returns (GamePoorItemsResponse);
54
54
  rpc getGameScopesByIds(ScopeRequest) returns (ScopeResponse);
55
+ rpc getCounterScopes(ScopeRequest) returns (ScopeResponse);
55
56
  }
56
57
 
57
58
  message PingRequest { string ping = 1; }
@@ -1025,6 +1025,17 @@ getGamesByUuids: {
1025
1025
  responseSerialize: serialize_game_ScopeResponse,
1026
1026
  responseDeserialize: deserialize_game_ScopeResponse,
1027
1027
  },
1028
+ getCounterScopes: {
1029
+ path: '/game.Game/getCounterScopes',
1030
+ requestStream: false,
1031
+ responseStream: false,
1032
+ requestType: game_pb.ScopeRequest,
1033
+ responseType: game_pb.ScopeResponse,
1034
+ requestSerialize: serialize_game_ScopeRequest,
1035
+ requestDeserialize: deserialize_game_ScopeRequest,
1036
+ responseSerialize: serialize_game_ScopeResponse,
1037
+ responseDeserialize: deserialize_game_ScopeResponse,
1038
+ },
1028
1039
  };
1029
1040
 
1030
1041
  exports.GameClient = grpc.makeGenericClientConstructor(GameService);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {