protobuf-platform 1.0.63 → 1.0.64

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
@@ -36,7 +36,7 @@ service Game {
36
36
  rpc updateSingleGame(stream GameRequest) returns (GameResponse);
37
37
  rpc deleteSingleGame(GetGameRequest) returns (GameStatusResponse);
38
38
  rpc readListGames(PaginationRequest) returns (GameItemsResponse);
39
- rpc searchGamesIntoCollections(SearchGamesIntoCollectionsRequest) returns (GameItemsResponse);
39
+ rpc searchGamesByCollections(SearchGamesIntoCollectionsRequest) returns (GameItemsResponse);
40
40
  }
41
41
 
42
42
  message PingRequest { string ping = 1; }
@@ -693,8 +693,8 @@ parseGames: {
693
693
  responseSerialize: serialize_game_GameItemsResponse,
694
694
  responseDeserialize: deserialize_game_GameItemsResponse,
695
695
  },
696
- searchGamesIntoCollections: {
697
- path: '/game.Game/searchGamesIntoCollections',
696
+ searchGamesByCollections: {
697
+ path: '/game.Game/searchGamesByCollections',
698
698
  requestStream: false,
699
699
  responseStream: false,
700
700
  requestType: game_pb.SearchGamesIntoCollectionsRequest,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.0.63",
3
+ "version": "1.0.64",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {