protobuf-platform 1.2.339 → 1.2.340
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 +52 -1
- package/package.json +1 -1
package/game/game.proto
CHANGED
|
@@ -913,6 +913,7 @@ message SEOInstanceResponse {
|
|
|
913
913
|
repeated SEOAttribute attributes = 1;
|
|
914
914
|
optional string full_description = 2;
|
|
915
915
|
repeated SEOInstanceRelation relations = 3;
|
|
916
|
+
optional GameImages images = 4;
|
|
916
917
|
}
|
|
917
918
|
//Segmentation
|
|
918
919
|
message SegmentedUserRequest {
|
package/game/game_pb.js
CHANGED
|
@@ -38304,7 +38304,8 @@ proto.game.SEOInstanceResponse.toObject = function(includeInstance, msg) {
|
|
|
38304
38304
|
proto.game.SEOAttribute.toObject, includeInstance),
|
|
38305
38305
|
fullDescription: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
38306
38306
|
relationsList: jspb.Message.toObjectList(msg.getRelationsList(),
|
|
38307
|
-
proto.game.SEOInstanceRelation.toObject, includeInstance)
|
|
38307
|
+
proto.game.SEOInstanceRelation.toObject, includeInstance),
|
|
38308
|
+
images: (f = msg.getImages()) && proto.game.GameImages.toObject(includeInstance, f)
|
|
38308
38309
|
};
|
|
38309
38310
|
|
|
38310
38311
|
if (includeInstance) {
|
|
@@ -38355,6 +38356,11 @@ proto.game.SEOInstanceResponse.deserializeBinaryFromReader = function(msg, reade
|
|
|
38355
38356
|
reader.readMessage(value,proto.game.SEOInstanceRelation.deserializeBinaryFromReader);
|
|
38356
38357
|
msg.addRelations(value);
|
|
38357
38358
|
break;
|
|
38359
|
+
case 4:
|
|
38360
|
+
var value = new proto.game.GameImages;
|
|
38361
|
+
reader.readMessage(value,proto.game.GameImages.deserializeBinaryFromReader);
|
|
38362
|
+
msg.setImages(value);
|
|
38363
|
+
break;
|
|
38358
38364
|
default:
|
|
38359
38365
|
reader.skipField();
|
|
38360
38366
|
break;
|
|
@@ -38407,6 +38413,14 @@ proto.game.SEOInstanceResponse.serializeBinaryToWriter = function(message, write
|
|
|
38407
38413
|
proto.game.SEOInstanceRelation.serializeBinaryToWriter
|
|
38408
38414
|
);
|
|
38409
38415
|
}
|
|
38416
|
+
f = message.getImages();
|
|
38417
|
+
if (f != null) {
|
|
38418
|
+
writer.writeMessage(
|
|
38419
|
+
4,
|
|
38420
|
+
f,
|
|
38421
|
+
proto.game.GameImages.serializeBinaryToWriter
|
|
38422
|
+
);
|
|
38423
|
+
}
|
|
38410
38424
|
};
|
|
38411
38425
|
|
|
38412
38426
|
|
|
@@ -38522,6 +38536,43 @@ proto.game.SEOInstanceResponse.prototype.clearRelationsList = function() {
|
|
|
38522
38536
|
};
|
|
38523
38537
|
|
|
38524
38538
|
|
|
38539
|
+
/**
|
|
38540
|
+
* optional GameImages images = 4;
|
|
38541
|
+
* @return {?proto.game.GameImages}
|
|
38542
|
+
*/
|
|
38543
|
+
proto.game.SEOInstanceResponse.prototype.getImages = function() {
|
|
38544
|
+
return /** @type{?proto.game.GameImages} */ (
|
|
38545
|
+
jspb.Message.getWrapperField(this, proto.game.GameImages, 4));
|
|
38546
|
+
};
|
|
38547
|
+
|
|
38548
|
+
|
|
38549
|
+
/**
|
|
38550
|
+
* @param {?proto.game.GameImages|undefined} value
|
|
38551
|
+
* @return {!proto.game.SEOInstanceResponse} returns this
|
|
38552
|
+
*/
|
|
38553
|
+
proto.game.SEOInstanceResponse.prototype.setImages = function(value) {
|
|
38554
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
38555
|
+
};
|
|
38556
|
+
|
|
38557
|
+
|
|
38558
|
+
/**
|
|
38559
|
+
* Clears the message field making it undefined.
|
|
38560
|
+
* @return {!proto.game.SEOInstanceResponse} returns this
|
|
38561
|
+
*/
|
|
38562
|
+
proto.game.SEOInstanceResponse.prototype.clearImages = function() {
|
|
38563
|
+
return this.setImages(undefined);
|
|
38564
|
+
};
|
|
38565
|
+
|
|
38566
|
+
|
|
38567
|
+
/**
|
|
38568
|
+
* Returns whether this field is set.
|
|
38569
|
+
* @return {boolean}
|
|
38570
|
+
*/
|
|
38571
|
+
proto.game.SEOInstanceResponse.prototype.hasImages = function() {
|
|
38572
|
+
return jspb.Message.getField(this, 4) != null;
|
|
38573
|
+
};
|
|
38574
|
+
|
|
38575
|
+
|
|
38525
38576
|
|
|
38526
38577
|
/**
|
|
38527
38578
|
* List of repeated fields within this message type.
|