protobuf-platform 1.0.80 → 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 -0
- package/game/game_grpc_pb.js +33 -0
- package/package.json +1 -1
package/game/game.proto
CHANGED
@@ -47,6 +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 (IntegratorSettingsResponse);
|
50
51
|
}
|
51
52
|
|
52
53
|
message PingRequest { string ping = 1; }
|
package/game/game_grpc_pb.js
CHANGED
@@ -268,6 +268,28 @@ function deserialize_game_InitGameSessionResponse(buffer_arg) {
|
|
268
268
|
return game_pb.InitGameSessionResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
269
269
|
}
|
270
270
|
|
271
|
+
function serialize_game_IntegratorSettingsRequest(arg) {
|
272
|
+
if (!(arg instanceof game_pb.IntegratorSettingsRequest)) {
|
273
|
+
throw new Error('Expected argument of type game.IntegratorSettingsRequest');
|
274
|
+
}
|
275
|
+
return Buffer.from(arg.serializeBinary());
|
276
|
+
}
|
277
|
+
|
278
|
+
function deserialize_game_IntegratorSettingsRequest(buffer_arg) {
|
279
|
+
return game_pb.IntegratorSettingsRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
280
|
+
}
|
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
|
+
|
271
293
|
function serialize_game_PaginationRequest(arg) {
|
272
294
|
if (!(arg instanceof game_pb.PaginationRequest)) {
|
273
295
|
throw new Error('Expected argument of type game.PaginationRequest');
|
@@ -892,6 +914,17 @@ processedVendorActionCallback: {
|
|
892
914
|
responseSerialize: serialize_game_VendorActionResponse,
|
893
915
|
responseDeserialize: deserialize_game_VendorActionResponse,
|
894
916
|
},
|
917
|
+
getIntegratorSettings: {
|
918
|
+
path: '/game.Game/getIntegratorSettings',
|
919
|
+
requestStream: false,
|
920
|
+
responseStream: false,
|
921
|
+
requestType: game_pb.IntegratorSettingsRequest,
|
922
|
+
responseType: game_pb.IntegratorSettingsResponse,
|
923
|
+
requestSerialize: serialize_game_IntegratorSettingsRequest,
|
924
|
+
requestDeserialize: deserialize_game_IntegratorSettingsRequest,
|
925
|
+
responseSerialize: serialize_game_IntegratorSettingsResponse,
|
926
|
+
responseDeserialize: deserialize_game_IntegratorSettingsResponse,
|
927
|
+
},
|
895
928
|
};
|
896
929
|
|
897
930
|
exports.GameClient = grpc.makeGenericClientConstructor(GameService);
|