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 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 (IntegratorSettingsRequest);
50
+ rpc getIntegratorSettings(IntegratorSettingsRequest) returns (IntegratorSettingsResponse);
51
51
  }
52
52
 
53
53
  message PingRequest { string ping = 1; }
@@ -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.IntegratorSettingsRequest,
922
+ responseType: game_pb.IntegratorSettingsResponse,
912
923
  requestSerialize: serialize_game_IntegratorSettingsRequest,
913
924
  requestDeserialize: deserialize_game_IntegratorSettingsRequest,
914
- responseSerialize: serialize_game_IntegratorSettingsRequest,
915
- responseDeserialize: deserialize_game_IntegratorSettingsRequest,
925
+ responseSerialize: serialize_game_IntegratorSettingsResponse,
926
+ responseDeserialize: deserialize_game_IntegratorSettingsResponse,
916
927
  },
917
928
  };
918
929
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {