protobuf-platform 1.0.79 → 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; }
@@ -242,6 +243,8 @@ message ProviderStatusResponse {
242
243
  //Games Common
243
244
  message ParseGamesRequest { string vendor = 1; }
244
245
  message ParseGamesResponse { string data = 1; }
246
+ message IntegratorSettingsRequest { string route = 1; }
247
+ message IntegratorSettingsResponse { string data = 1; }
245
248
  //Game CRUD
246
249
  message GameItem {
247
250
  optional int32 id = 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/game/game_pb.js CHANGED
@@ -55,6 +55,8 @@ goog.exportSymbol('proto.game.GetTagRequest', null, global);
55
55
  goog.exportSymbol('proto.game.InitDemoGameSessionRequest', null, global);
56
56
  goog.exportSymbol('proto.game.InitGameSessionRequest', null, global);
57
57
  goog.exportSymbol('proto.game.InitGameSessionResponse', null, global);
58
+ goog.exportSymbol('proto.game.IntegratorSettingsRequest', null, global);
59
+ goog.exportSymbol('proto.game.IntegratorSettingsResponse', null, global);
58
60
  goog.exportSymbol('proto.game.PaginationRequest', null, global);
59
61
  goog.exportSymbol('proto.game.ParseGamesRequest', null, global);
60
62
  goog.exportSymbol('proto.game.ParseGamesResponse', null, global);
@@ -878,6 +880,48 @@ if (goog.DEBUG && !COMPILED) {
878
880
  */
879
881
  proto.game.ParseGamesResponse.displayName = 'proto.game.ParseGamesResponse';
880
882
  }
883
+ /**
884
+ * Generated by JsPbCodeGenerator.
885
+ * @param {Array=} opt_data Optional initial data array, typically from a
886
+ * server response, or constructed directly in Javascript. The array is used
887
+ * in place and becomes part of the constructed object. It is not cloned.
888
+ * If no data is provided, the constructed object will be empty, but still
889
+ * valid.
890
+ * @extends {jspb.Message}
891
+ * @constructor
892
+ */
893
+ proto.game.IntegratorSettingsRequest = function(opt_data) {
894
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
895
+ };
896
+ goog.inherits(proto.game.IntegratorSettingsRequest, jspb.Message);
897
+ if (goog.DEBUG && !COMPILED) {
898
+ /**
899
+ * @public
900
+ * @override
901
+ */
902
+ proto.game.IntegratorSettingsRequest.displayName = 'proto.game.IntegratorSettingsRequest';
903
+ }
904
+ /**
905
+ * Generated by JsPbCodeGenerator.
906
+ * @param {Array=} opt_data Optional initial data array, typically from a
907
+ * server response, or constructed directly in Javascript. The array is used
908
+ * in place and becomes part of the constructed object. It is not cloned.
909
+ * If no data is provided, the constructed object will be empty, but still
910
+ * valid.
911
+ * @extends {jspb.Message}
912
+ * @constructor
913
+ */
914
+ proto.game.IntegratorSettingsResponse = function(opt_data) {
915
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
916
+ };
917
+ goog.inherits(proto.game.IntegratorSettingsResponse, jspb.Message);
918
+ if (goog.DEBUG && !COMPILED) {
919
+ /**
920
+ * @public
921
+ * @override
922
+ */
923
+ proto.game.IntegratorSettingsResponse.displayName = 'proto.game.IntegratorSettingsResponse';
924
+ }
881
925
  /**
882
926
  * Generated by JsPbCodeGenerator.
883
927
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -10041,6 +10085,266 @@ proto.game.ParseGamesResponse.prototype.setData = function(value) {
10041
10085
 
10042
10086
 
10043
10087
 
10088
+ if (jspb.Message.GENERATE_TO_OBJECT) {
10089
+ /**
10090
+ * Creates an object representation of this proto.
10091
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
10092
+ * Optional fields that are not set will be set to undefined.
10093
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
10094
+ * For the list of reserved names please see:
10095
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
10096
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
10097
+ * JSPB instance for transitional soy proto support:
10098
+ * http://goto/soy-param-migration
10099
+ * @return {!Object}
10100
+ */
10101
+ proto.game.IntegratorSettingsRequest.prototype.toObject = function(opt_includeInstance) {
10102
+ return proto.game.IntegratorSettingsRequest.toObject(opt_includeInstance, this);
10103
+ };
10104
+
10105
+
10106
+ /**
10107
+ * Static version of the {@see toObject} method.
10108
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
10109
+ * the JSPB instance for transitional soy proto support:
10110
+ * http://goto/soy-param-migration
10111
+ * @param {!proto.game.IntegratorSettingsRequest} msg The msg instance to transform.
10112
+ * @return {!Object}
10113
+ * @suppress {unusedLocalVariables} f is only used for nested messages
10114
+ */
10115
+ proto.game.IntegratorSettingsRequest.toObject = function(includeInstance, msg) {
10116
+ var f, obj = {
10117
+ route: jspb.Message.getFieldWithDefault(msg, 1, "")
10118
+ };
10119
+
10120
+ if (includeInstance) {
10121
+ obj.$jspbMessageInstance = msg;
10122
+ }
10123
+ return obj;
10124
+ };
10125
+ }
10126
+
10127
+
10128
+ /**
10129
+ * Deserializes binary data (in protobuf wire format).
10130
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
10131
+ * @return {!proto.game.IntegratorSettingsRequest}
10132
+ */
10133
+ proto.game.IntegratorSettingsRequest.deserializeBinary = function(bytes) {
10134
+ var reader = new jspb.BinaryReader(bytes);
10135
+ var msg = new proto.game.IntegratorSettingsRequest;
10136
+ return proto.game.IntegratorSettingsRequest.deserializeBinaryFromReader(msg, reader);
10137
+ };
10138
+
10139
+
10140
+ /**
10141
+ * Deserializes binary data (in protobuf wire format) from the
10142
+ * given reader into the given message object.
10143
+ * @param {!proto.game.IntegratorSettingsRequest} msg The message object to deserialize into.
10144
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
10145
+ * @return {!proto.game.IntegratorSettingsRequest}
10146
+ */
10147
+ proto.game.IntegratorSettingsRequest.deserializeBinaryFromReader = function(msg, reader) {
10148
+ while (reader.nextField()) {
10149
+ if (reader.isEndGroup()) {
10150
+ break;
10151
+ }
10152
+ var field = reader.getFieldNumber();
10153
+ switch (field) {
10154
+ case 1:
10155
+ var value = /** @type {string} */ (reader.readString());
10156
+ msg.setRoute(value);
10157
+ break;
10158
+ default:
10159
+ reader.skipField();
10160
+ break;
10161
+ }
10162
+ }
10163
+ return msg;
10164
+ };
10165
+
10166
+
10167
+ /**
10168
+ * Serializes the message to binary data (in protobuf wire format).
10169
+ * @return {!Uint8Array}
10170
+ */
10171
+ proto.game.IntegratorSettingsRequest.prototype.serializeBinary = function() {
10172
+ var writer = new jspb.BinaryWriter();
10173
+ proto.game.IntegratorSettingsRequest.serializeBinaryToWriter(this, writer);
10174
+ return writer.getResultBuffer();
10175
+ };
10176
+
10177
+
10178
+ /**
10179
+ * Serializes the given message to binary data (in protobuf wire
10180
+ * format), writing to the given BinaryWriter.
10181
+ * @param {!proto.game.IntegratorSettingsRequest} message
10182
+ * @param {!jspb.BinaryWriter} writer
10183
+ * @suppress {unusedLocalVariables} f is only used for nested messages
10184
+ */
10185
+ proto.game.IntegratorSettingsRequest.serializeBinaryToWriter = function(message, writer) {
10186
+ var f = undefined;
10187
+ f = message.getRoute();
10188
+ if (f.length > 0) {
10189
+ writer.writeString(
10190
+ 1,
10191
+ f
10192
+ );
10193
+ }
10194
+ };
10195
+
10196
+
10197
+ /**
10198
+ * optional string route = 1;
10199
+ * @return {string}
10200
+ */
10201
+ proto.game.IntegratorSettingsRequest.prototype.getRoute = function() {
10202
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
10203
+ };
10204
+
10205
+
10206
+ /**
10207
+ * @param {string} value
10208
+ * @return {!proto.game.IntegratorSettingsRequest} returns this
10209
+ */
10210
+ proto.game.IntegratorSettingsRequest.prototype.setRoute = function(value) {
10211
+ return jspb.Message.setProto3StringField(this, 1, value);
10212
+ };
10213
+
10214
+
10215
+
10216
+
10217
+
10218
+ if (jspb.Message.GENERATE_TO_OBJECT) {
10219
+ /**
10220
+ * Creates an object representation of this proto.
10221
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
10222
+ * Optional fields that are not set will be set to undefined.
10223
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
10224
+ * For the list of reserved names please see:
10225
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
10226
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
10227
+ * JSPB instance for transitional soy proto support:
10228
+ * http://goto/soy-param-migration
10229
+ * @return {!Object}
10230
+ */
10231
+ proto.game.IntegratorSettingsResponse.prototype.toObject = function(opt_includeInstance) {
10232
+ return proto.game.IntegratorSettingsResponse.toObject(opt_includeInstance, this);
10233
+ };
10234
+
10235
+
10236
+ /**
10237
+ * Static version of the {@see toObject} method.
10238
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
10239
+ * the JSPB instance for transitional soy proto support:
10240
+ * http://goto/soy-param-migration
10241
+ * @param {!proto.game.IntegratorSettingsResponse} msg The msg instance to transform.
10242
+ * @return {!Object}
10243
+ * @suppress {unusedLocalVariables} f is only used for nested messages
10244
+ */
10245
+ proto.game.IntegratorSettingsResponse.toObject = function(includeInstance, msg) {
10246
+ var f, obj = {
10247
+ data: jspb.Message.getFieldWithDefault(msg, 1, "")
10248
+ };
10249
+
10250
+ if (includeInstance) {
10251
+ obj.$jspbMessageInstance = msg;
10252
+ }
10253
+ return obj;
10254
+ };
10255
+ }
10256
+
10257
+
10258
+ /**
10259
+ * Deserializes binary data (in protobuf wire format).
10260
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
10261
+ * @return {!proto.game.IntegratorSettingsResponse}
10262
+ */
10263
+ proto.game.IntegratorSettingsResponse.deserializeBinary = function(bytes) {
10264
+ var reader = new jspb.BinaryReader(bytes);
10265
+ var msg = new proto.game.IntegratorSettingsResponse;
10266
+ return proto.game.IntegratorSettingsResponse.deserializeBinaryFromReader(msg, reader);
10267
+ };
10268
+
10269
+
10270
+ /**
10271
+ * Deserializes binary data (in protobuf wire format) from the
10272
+ * given reader into the given message object.
10273
+ * @param {!proto.game.IntegratorSettingsResponse} msg The message object to deserialize into.
10274
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
10275
+ * @return {!proto.game.IntegratorSettingsResponse}
10276
+ */
10277
+ proto.game.IntegratorSettingsResponse.deserializeBinaryFromReader = function(msg, reader) {
10278
+ while (reader.nextField()) {
10279
+ if (reader.isEndGroup()) {
10280
+ break;
10281
+ }
10282
+ var field = reader.getFieldNumber();
10283
+ switch (field) {
10284
+ case 1:
10285
+ var value = /** @type {string} */ (reader.readString());
10286
+ msg.setData(value);
10287
+ break;
10288
+ default:
10289
+ reader.skipField();
10290
+ break;
10291
+ }
10292
+ }
10293
+ return msg;
10294
+ };
10295
+
10296
+
10297
+ /**
10298
+ * Serializes the message to binary data (in protobuf wire format).
10299
+ * @return {!Uint8Array}
10300
+ */
10301
+ proto.game.IntegratorSettingsResponse.prototype.serializeBinary = function() {
10302
+ var writer = new jspb.BinaryWriter();
10303
+ proto.game.IntegratorSettingsResponse.serializeBinaryToWriter(this, writer);
10304
+ return writer.getResultBuffer();
10305
+ };
10306
+
10307
+
10308
+ /**
10309
+ * Serializes the given message to binary data (in protobuf wire
10310
+ * format), writing to the given BinaryWriter.
10311
+ * @param {!proto.game.IntegratorSettingsResponse} message
10312
+ * @param {!jspb.BinaryWriter} writer
10313
+ * @suppress {unusedLocalVariables} f is only used for nested messages
10314
+ */
10315
+ proto.game.IntegratorSettingsResponse.serializeBinaryToWriter = function(message, writer) {
10316
+ var f = undefined;
10317
+ f = message.getData();
10318
+ if (f.length > 0) {
10319
+ writer.writeString(
10320
+ 1,
10321
+ f
10322
+ );
10323
+ }
10324
+ };
10325
+
10326
+
10327
+ /**
10328
+ * optional string data = 1;
10329
+ * @return {string}
10330
+ */
10331
+ proto.game.IntegratorSettingsResponse.prototype.getData = function() {
10332
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
10333
+ };
10334
+
10335
+
10336
+ /**
10337
+ * @param {string} value
10338
+ * @return {!proto.game.IntegratorSettingsResponse} returns this
10339
+ */
10340
+ proto.game.IntegratorSettingsResponse.prototype.setData = function(value) {
10341
+ return jspb.Message.setProto3StringField(this, 1, value);
10342
+ };
10343
+
10344
+
10345
+
10346
+
10347
+
10044
10348
  if (jspb.Message.GENERATE_TO_OBJECT) {
10045
10349
  /**
10046
10350
  * Creates an object representation of this proto.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.0.79",
3
+ "version": "1.0.81",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {