protobuf-platform 1.0.152 → 1.0.153
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 -0
- package/game/game_grpc_pb.js +11 -0
- package/package.json +1 -1
package/game/game.proto
CHANGED
@@ -69,6 +69,7 @@ service Game {
|
|
69
69
|
rpc addGamesIntoWagerList(WagerListGamesRequest) returns (GameStatusResponse);
|
70
70
|
rpc removeGamesFromWagerList(WagerListGamesRequest) returns (GameStatusResponse);
|
71
71
|
rpc fetchGamesFromWagerList(PaginationRequest) returns (GameItemsResponse);
|
72
|
+
rpc notProcessedGamesInWagerList(PaginationRequest) returns (GameItemsResponse);
|
72
73
|
}
|
73
74
|
|
74
75
|
message PingRequest { string ping = 1; }
|
package/game/game_grpc_pb.js
CHANGED
@@ -1324,6 +1324,17 @@ readSingleWagerList: {
|
|
1324
1324
|
responseSerialize: serialize_game_GameItemsResponse,
|
1325
1325
|
responseDeserialize: deserialize_game_GameItemsResponse,
|
1326
1326
|
},
|
1327
|
+
notProcessedGamesInWagerList: {
|
1328
|
+
path: '/game.Game/notProcessedGamesInWagerList',
|
1329
|
+
requestStream: false,
|
1330
|
+
responseStream: false,
|
1331
|
+
requestType: game_pb.PaginationRequest,
|
1332
|
+
responseType: game_pb.GameItemsResponse,
|
1333
|
+
requestSerialize: serialize_game_PaginationRequest,
|
1334
|
+
requestDeserialize: deserialize_game_PaginationRequest,
|
1335
|
+
responseSerialize: serialize_game_GameItemsResponse,
|
1336
|
+
responseDeserialize: deserialize_game_GameItemsResponse,
|
1337
|
+
},
|
1327
1338
|
};
|
1328
1339
|
|
1329
1340
|
exports.GameClient = grpc.makeGenericClientConstructor(GameService);
|