protobuf-platform 1.1.12 → 1.1.13

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
  rpc updateGamesInBunch(GamesBunchRequest) returns (GameStatusResponse);
53
53
  rpc addGamesIntoTournament(TournamentGamesRequest) returns (GameStatusResponse);
54
54
  rpc removeGamesFromTournament(TournamentGamesRequest) returns (GameStatusResponse);
55
+ rpc fetchGamesFromTournament(TournamentGamesRequest) returns (GameItemsResponse);
55
56
  //Vendor
56
57
  rpc processedVendorActionCallback(VendorActionRequest) returns (VendorActionResponse);
57
58
  rpc getIntegratorSettings(IntegratorSettingsRequest) returns (IntegratorSettingsResponse);
@@ -1353,6 +1353,17 @@ parseGames: {
1353
1353
  responseSerialize: serialize_game_GameStatusResponse,
1354
1354
  responseDeserialize: deserialize_game_GameStatusResponse,
1355
1355
  },
1356
+ fetchGamesFromTournament: {
1357
+ path: '/game.Game/fetchGamesFromTournament',
1358
+ requestStream: false,
1359
+ responseStream: false,
1360
+ requestType: game_pb.TournamentGamesRequest,
1361
+ responseType: game_pb.GameItemsResponse,
1362
+ requestSerialize: serialize_game_TournamentGamesRequest,
1363
+ requestDeserialize: deserialize_game_TournamentGamesRequest,
1364
+ responseSerialize: serialize_game_GameItemsResponse,
1365
+ responseDeserialize: deserialize_game_GameItemsResponse,
1366
+ },
1356
1367
  // Vendor
1357
1368
  processedVendorActionCallback: {
1358
1369
  path: '/game.Game/processedVendorActionCallback',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {