protobuf-platform 1.0.263 → 1.0.264
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_pb.js +49 -1
- package/package.json +1 -1
package/game/game.proto
CHANGED
package/game/game_pb.js
CHANGED
@@ -23112,7 +23112,8 @@ proto.game.SEOInstanceRequest.toObject = function(includeInstance, msg) {
|
|
23112
23112
|
instanceType: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
23113
23113
|
locale: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
23114
23114
|
attributesList: jspb.Message.toObjectList(msg.getAttributesList(),
|
23115
|
-
proto.game.SEOAttribute.toObject, includeInstance)
|
23115
|
+
proto.game.SEOAttribute.toObject, includeInstance),
|
23116
|
+
withMainInfo: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
23116
23117
|
};
|
23117
23118
|
|
23118
23119
|
if (includeInstance) {
|
@@ -23166,6 +23167,10 @@ proto.game.SEOInstanceRequest.deserializeBinaryFromReader = function(msg, reader
|
|
23166
23167
|
reader.readMessage(value,proto.game.SEOAttribute.deserializeBinaryFromReader);
|
23167
23168
|
msg.addAttributes(value);
|
23168
23169
|
break;
|
23170
|
+
case 5:
|
23171
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
23172
|
+
msg.setWithMainInfo(value);
|
23173
|
+
break;
|
23169
23174
|
default:
|
23170
23175
|
reader.skipField();
|
23171
23176
|
break;
|
@@ -23224,6 +23229,13 @@ proto.game.SEOInstanceRequest.serializeBinaryToWriter = function(message, writer
|
|
23224
23229
|
proto.game.SEOAttribute.serializeBinaryToWriter
|
23225
23230
|
);
|
23226
23231
|
}
|
23232
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 5));
|
23233
|
+
if (f != null) {
|
23234
|
+
writer.writeBool(
|
23235
|
+
5,
|
23236
|
+
f
|
23237
|
+
);
|
23238
|
+
}
|
23227
23239
|
};
|
23228
23240
|
|
23229
23241
|
|
@@ -23319,6 +23331,42 @@ proto.game.SEOInstanceRequest.prototype.clearAttributesList = function() {
|
|
23319
23331
|
};
|
23320
23332
|
|
23321
23333
|
|
23334
|
+
/**
|
23335
|
+
* optional bool with_main_info = 5;
|
23336
|
+
* @return {boolean}
|
23337
|
+
*/
|
23338
|
+
proto.game.SEOInstanceRequest.prototype.getWithMainInfo = function() {
|
23339
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
23340
|
+
};
|
23341
|
+
|
23342
|
+
|
23343
|
+
/**
|
23344
|
+
* @param {boolean} value
|
23345
|
+
* @return {!proto.game.SEOInstanceRequest} returns this
|
23346
|
+
*/
|
23347
|
+
proto.game.SEOInstanceRequest.prototype.setWithMainInfo = function(value) {
|
23348
|
+
return jspb.Message.setField(this, 5, value);
|
23349
|
+
};
|
23350
|
+
|
23351
|
+
|
23352
|
+
/**
|
23353
|
+
* Clears the field making it undefined.
|
23354
|
+
* @return {!proto.game.SEOInstanceRequest} returns this
|
23355
|
+
*/
|
23356
|
+
proto.game.SEOInstanceRequest.prototype.clearWithMainInfo = function() {
|
23357
|
+
return jspb.Message.setField(this, 5, undefined);
|
23358
|
+
};
|
23359
|
+
|
23360
|
+
|
23361
|
+
/**
|
23362
|
+
* Returns whether this field is set.
|
23363
|
+
* @return {boolean}
|
23364
|
+
*/
|
23365
|
+
proto.game.SEOInstanceRequest.prototype.hasWithMainInfo = function() {
|
23366
|
+
return jspb.Message.getField(this, 5) != null;
|
23367
|
+
};
|
23368
|
+
|
23369
|
+
|
23322
23370
|
|
23323
23371
|
/**
|
23324
23372
|
* List of repeated fields within this message type.
|