protobuf-platform 1.2.39 → 1.2.40
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/bet/bet.proto +1 -0
- package/bet/bet_grpc_pb.js +11 -0
- package/package.json +1 -1
package/bet/bet.proto
CHANGED
@@ -19,6 +19,7 @@ service Bet {
|
|
19
19
|
rpc axiomProcessBet(AxiomProcessBetRequest) returns (AxiomBetStatusResponse);
|
20
20
|
//Games aggregation
|
21
21
|
rpc getWinRates(PaginationRequest) returns (WinRatesResponse);
|
22
|
+
rpc getLastWins(PaginationRequest) returns (WinRatesResponse);
|
22
23
|
}
|
23
24
|
|
24
25
|
message PingRequest { string ping = 1; }
|
package/bet/bet_grpc_pb.js
CHANGED
@@ -320,6 +320,17 @@ getWinRates: {
|
|
320
320
|
responseSerialize: serialize_bet_WinRatesResponse,
|
321
321
|
responseDeserialize: deserialize_bet_WinRatesResponse,
|
322
322
|
},
|
323
|
+
getLastWins: {
|
324
|
+
path: '/bet.Bet/getLastWins',
|
325
|
+
requestStream: false,
|
326
|
+
responseStream: false,
|
327
|
+
requestType: bet_pb.PaginationRequest,
|
328
|
+
responseType: bet_pb.WinRatesResponse,
|
329
|
+
requestSerialize: serialize_bet_PaginationRequest,
|
330
|
+
requestDeserialize: deserialize_bet_PaginationRequest,
|
331
|
+
responseSerialize: serialize_bet_WinRatesResponse,
|
332
|
+
responseDeserialize: deserialize_bet_WinRatesResponse,
|
333
|
+
},
|
323
334
|
};
|
324
335
|
|
325
336
|
exports.BetClient = grpc.makeGenericClientConstructor(BetService, 'Bet');
|