protobuf-platform 1.0.81 → 1.0.82
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 +14 -3
- package/package.json +1 -1
package/game/game.proto
CHANGED
@@ -47,7 +47,7 @@ service Game {
|
|
47
47
|
rpc initDemoGameSession(InitDemoGameSessionRequest) returns (InitGameSessionResponse);
|
48
48
|
//Vendor
|
49
49
|
rpc processedVendorActionCallback(VendorActionRequest) returns (VendorActionResponse);
|
50
|
-
rpc getIntegratorSettings(IntegratorSettingsRequest) returns (
|
50
|
+
rpc getIntegratorSettings(IntegratorSettingsRequest) returns (IntegratorSettingsResponse);
|
51
51
|
}
|
52
52
|
|
53
53
|
message PingRequest { string ping = 1; }
|
package/game/game_grpc_pb.js
CHANGED
@@ -279,6 +279,17 @@ function deserialize_game_IntegratorSettingsRequest(buffer_arg) {
|
|
279
279
|
return game_pb.IntegratorSettingsRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
280
280
|
}
|
281
281
|
|
282
|
+
function serialize_game_IntegratorSettingsResponse(arg) {
|
283
|
+
if (!(arg instanceof game_pb.IntegratorSettingsResponse)) {
|
284
|
+
throw new Error('Expected argument of type game.IntegratorSettingsResponse');
|
285
|
+
}
|
286
|
+
return Buffer.from(arg.serializeBinary());
|
287
|
+
}
|
288
|
+
|
289
|
+
function deserialize_game_IntegratorSettingsResponse(buffer_arg) {
|
290
|
+
return game_pb.IntegratorSettingsResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
291
|
+
}
|
292
|
+
|
282
293
|
function serialize_game_PaginationRequest(arg) {
|
283
294
|
if (!(arg instanceof game_pb.PaginationRequest)) {
|
284
295
|
throw new Error('Expected argument of type game.PaginationRequest');
|
@@ -908,11 +919,11 @@ processedVendorActionCallback: {
|
|
908
919
|
requestStream: false,
|
909
920
|
responseStream: false,
|
910
921
|
requestType: game_pb.IntegratorSettingsRequest,
|
911
|
-
responseType: game_pb.
|
922
|
+
responseType: game_pb.IntegratorSettingsResponse,
|
912
923
|
requestSerialize: serialize_game_IntegratorSettingsRequest,
|
913
924
|
requestDeserialize: deserialize_game_IntegratorSettingsRequest,
|
914
|
-
responseSerialize:
|
915
|
-
responseDeserialize:
|
925
|
+
responseSerialize: serialize_game_IntegratorSettingsResponse,
|
926
|
+
responseDeserialize: deserialize_game_IntegratorSettingsResponse,
|
916
927
|
},
|
917
928
|
};
|
918
929
|
|