protobuf-platform 1.0.158 → 1.0.159
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 -1
- package/game/game_pb.js +13 -13
- package/package.json +1 -1
package/game/game.proto
CHANGED
package/game/game_pb.js
CHANGED
@@ -14904,7 +14904,7 @@ proto.game.GameGeo.prototype.toObject = function(opt_includeInstance) {
|
|
14904
14904
|
proto.game.GameGeo.toObject = function(includeInstance, msg) {
|
14905
14905
|
var f, obj = {
|
14906
14906
|
geo: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
14907
|
-
|
14907
|
+
isAccepted: jspb.Message.getBooleanFieldWithDefault(msg, 2, false)
|
14908
14908
|
};
|
14909
14909
|
|
14910
14910
|
if (includeInstance) {
|
@@ -14946,8 +14946,8 @@ proto.game.GameGeo.deserializeBinaryFromReader = function(msg, reader) {
|
|
14946
14946
|
msg.setGeo(value);
|
14947
14947
|
break;
|
14948
14948
|
case 2:
|
14949
|
-
var value = /** @type {
|
14950
|
-
msg.
|
14949
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
14950
|
+
msg.setIsAccepted(value);
|
14951
14951
|
break;
|
14952
14952
|
default:
|
14953
14953
|
reader.skipField();
|
@@ -14985,9 +14985,9 @@ proto.game.GameGeo.serializeBinaryToWriter = function(message, writer) {
|
|
14985
14985
|
f
|
14986
14986
|
);
|
14987
14987
|
}
|
14988
|
-
f = message.
|
14989
|
-
if (f
|
14990
|
-
writer.
|
14988
|
+
f = message.getIsAccepted();
|
14989
|
+
if (f) {
|
14990
|
+
writer.writeBool(
|
14991
14991
|
2,
|
14992
14992
|
f
|
14993
14993
|
);
|
@@ -15014,20 +15014,20 @@ proto.game.GameGeo.prototype.setGeo = function(value) {
|
|
15014
15014
|
|
15015
15015
|
|
15016
15016
|
/**
|
15017
|
-
* optional
|
15018
|
-
* @return {
|
15017
|
+
* optional bool is_accepted = 2;
|
15018
|
+
* @return {boolean}
|
15019
15019
|
*/
|
15020
|
-
proto.game.GameGeo.prototype.
|
15021
|
-
return /** @type {
|
15020
|
+
proto.game.GameGeo.prototype.getIsAccepted = function() {
|
15021
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 2, false));
|
15022
15022
|
};
|
15023
15023
|
|
15024
15024
|
|
15025
15025
|
/**
|
15026
|
-
* @param {
|
15026
|
+
* @param {boolean} value
|
15027
15027
|
* @return {!proto.game.GameGeo} returns this
|
15028
15028
|
*/
|
15029
|
-
proto.game.GameGeo.prototype.
|
15030
|
-
return jspb.Message.
|
15029
|
+
proto.game.GameGeo.prototype.setIsAccepted = function(value) {
|
15030
|
+
return jspb.Message.setProto3BooleanField(this, 2, value);
|
15031
15031
|
};
|
15032
15032
|
|
15033
15033
|
|