protobuf-platform 1.0.80 → 1.0.81

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
@@ -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 (IntegratorSettingsRequest);
50
51
  }
51
52
 
52
53
  message PingRequest { string ping = 1; }
@@ -268,6 +268,17 @@ 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
+
271
282
  function serialize_game_PaginationRequest(arg) {
272
283
  if (!(arg instanceof game_pb.PaginationRequest)) {
273
284
  throw new Error('Expected argument of type game.PaginationRequest');
@@ -892,6 +903,17 @@ processedVendorActionCallback: {
892
903
  responseSerialize: serialize_game_VendorActionResponse,
893
904
  responseDeserialize: deserialize_game_VendorActionResponse,
894
905
  },
906
+ getIntegratorSettings: {
907
+ path: '/game.Game/getIntegratorSettings',
908
+ requestStream: false,
909
+ responseStream: false,
910
+ requestType: game_pb.IntegratorSettingsRequest,
911
+ responseType: game_pb.IntegratorSettingsRequest,
912
+ requestSerialize: serialize_game_IntegratorSettingsRequest,
913
+ requestDeserialize: deserialize_game_IntegratorSettingsRequest,
914
+ responseSerialize: serialize_game_IntegratorSettingsRequest,
915
+ responseDeserialize: deserialize_game_IntegratorSettingsRequest,
916
+ },
895
917
  };
896
918
 
897
919
  exports.GameClient = grpc.makeGenericClientConstructor(GameService);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.0.80",
3
+ "version": "1.0.81",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {