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 +1 -1
- package/game/game_grpc_pb.js +2 -2
- package/package.json +1 -1
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
|
39
|
+
rpc searchGamesByCollections(SearchGamesIntoCollectionsRequest) returns (GameItemsResponse);
|
40
40
|
}
|
41
41
|
|
42
42
|
message PingRequest { string ping = 1; }
|
package/game/game_grpc_pb.js
CHANGED
@@ -693,8 +693,8 @@ parseGames: {
|
|
693
693
|
responseSerialize: serialize_game_GameItemsResponse,
|
694
694
|
responseDeserialize: deserialize_game_GameItemsResponse,
|
695
695
|
},
|
696
|
-
|
697
|
-
path: '/game.Game/
|
696
|
+
searchGamesByCollections: {
|
697
|
+
path: '/game.Game/searchGamesByCollections',
|
698
698
|
requestStream: false,
|
699
699
|
responseStream: false,
|
700
700
|
requestType: game_pb.SearchGamesIntoCollectionsRequest,
|