protobuf-platform 1.2.395 → 1.2.397
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/cms/cms.proto +2 -0
- package/cms/cms_pb.js +98 -2
- package/game/game.proto +1 -0
- package/game/game_pb.js +49 -1
- package/package.json +1 -1
package/cms/cms.proto
CHANGED
|
@@ -487,6 +487,7 @@ message SetPageSeoAttributesRequest {
|
|
|
487
487
|
optional string h1 = 10;
|
|
488
488
|
optional string description = 11;
|
|
489
489
|
optional string full_description = 12;
|
|
490
|
+
optional string additional_description = 13;
|
|
490
491
|
}
|
|
491
492
|
message GetPageSeoAttributesRequest {
|
|
492
493
|
string geo = 1;
|
|
@@ -507,6 +508,7 @@ message PageSeoAttributesItem {
|
|
|
507
508
|
optional string h1 = 10;
|
|
508
509
|
optional string description = 11;
|
|
509
510
|
optional string full_description = 12;
|
|
511
|
+
optional string additional_description = 13;
|
|
510
512
|
}
|
|
511
513
|
message PageSeoAttributesResponse {
|
|
512
514
|
PageSeoAttributesItem data = 1;
|
package/cms/cms_pb.js
CHANGED
|
@@ -19563,7 +19563,8 @@ proto.cms.SetPageSeoAttributesRequest.toObject = function(includeInstance, msg)
|
|
|
19563
19563
|
twitterDescription: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
19564
19564
|
h1: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
19565
19565
|
description: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
19566
|
-
fullDescription: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
19566
|
+
fullDescription: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
19567
|
+
additionalDescription: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
19567
19568
|
};
|
|
19568
19569
|
|
|
19569
19570
|
if (includeInstance) {
|
|
@@ -19648,6 +19649,10 @@ proto.cms.SetPageSeoAttributesRequest.deserializeBinaryFromReader = function(msg
|
|
|
19648
19649
|
var value = /** @type {string} */ (reader.readString());
|
|
19649
19650
|
msg.setFullDescription(value);
|
|
19650
19651
|
break;
|
|
19652
|
+
case 13:
|
|
19653
|
+
var value = /** @type {string} */ (reader.readString());
|
|
19654
|
+
msg.setAdditionalDescription(value);
|
|
19655
|
+
break;
|
|
19651
19656
|
default:
|
|
19652
19657
|
reader.skipField();
|
|
19653
19658
|
break;
|
|
@@ -19761,6 +19766,13 @@ proto.cms.SetPageSeoAttributesRequest.serializeBinaryToWriter = function(message
|
|
|
19761
19766
|
f
|
|
19762
19767
|
);
|
|
19763
19768
|
}
|
|
19769
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
19770
|
+
if (f != null) {
|
|
19771
|
+
writer.writeString(
|
|
19772
|
+
13,
|
|
19773
|
+
f
|
|
19774
|
+
);
|
|
19775
|
+
}
|
|
19764
19776
|
};
|
|
19765
19777
|
|
|
19766
19778
|
|
|
@@ -20142,6 +20154,42 @@ proto.cms.SetPageSeoAttributesRequest.prototype.hasFullDescription = function()
|
|
|
20142
20154
|
};
|
|
20143
20155
|
|
|
20144
20156
|
|
|
20157
|
+
/**
|
|
20158
|
+
* optional string additional_description = 13;
|
|
20159
|
+
* @return {string}
|
|
20160
|
+
*/
|
|
20161
|
+
proto.cms.SetPageSeoAttributesRequest.prototype.getAdditionalDescription = function() {
|
|
20162
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
20163
|
+
};
|
|
20164
|
+
|
|
20165
|
+
|
|
20166
|
+
/**
|
|
20167
|
+
* @param {string} value
|
|
20168
|
+
* @return {!proto.cms.SetPageSeoAttributesRequest} returns this
|
|
20169
|
+
*/
|
|
20170
|
+
proto.cms.SetPageSeoAttributesRequest.prototype.setAdditionalDescription = function(value) {
|
|
20171
|
+
return jspb.Message.setField(this, 13, value);
|
|
20172
|
+
};
|
|
20173
|
+
|
|
20174
|
+
|
|
20175
|
+
/**
|
|
20176
|
+
* Clears the field making it undefined.
|
|
20177
|
+
* @return {!proto.cms.SetPageSeoAttributesRequest} returns this
|
|
20178
|
+
*/
|
|
20179
|
+
proto.cms.SetPageSeoAttributesRequest.prototype.clearAdditionalDescription = function() {
|
|
20180
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
20181
|
+
};
|
|
20182
|
+
|
|
20183
|
+
|
|
20184
|
+
/**
|
|
20185
|
+
* Returns whether this field is set.
|
|
20186
|
+
* @return {boolean}
|
|
20187
|
+
*/
|
|
20188
|
+
proto.cms.SetPageSeoAttributesRequest.prototype.hasAdditionalDescription = function() {
|
|
20189
|
+
return jspb.Message.getField(this, 13) != null;
|
|
20190
|
+
};
|
|
20191
|
+
|
|
20192
|
+
|
|
20145
20193
|
|
|
20146
20194
|
|
|
20147
20195
|
|
|
@@ -20441,7 +20489,8 @@ proto.cms.PageSeoAttributesItem.toObject = function(includeInstance, msg) {
|
|
|
20441
20489
|
twitterDescription: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
20442
20490
|
h1: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
20443
20491
|
description: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
20444
|
-
fullDescription: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
20492
|
+
fullDescription: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
20493
|
+
additionalDescription: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
20445
20494
|
};
|
|
20446
20495
|
|
|
20447
20496
|
if (includeInstance) {
|
|
@@ -20526,6 +20575,10 @@ proto.cms.PageSeoAttributesItem.deserializeBinaryFromReader = function(msg, read
|
|
|
20526
20575
|
var value = /** @type {string} */ (reader.readString());
|
|
20527
20576
|
msg.setFullDescription(value);
|
|
20528
20577
|
break;
|
|
20578
|
+
case 13:
|
|
20579
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20580
|
+
msg.setAdditionalDescription(value);
|
|
20581
|
+
break;
|
|
20529
20582
|
default:
|
|
20530
20583
|
reader.skipField();
|
|
20531
20584
|
break;
|
|
@@ -20639,6 +20692,13 @@ proto.cms.PageSeoAttributesItem.serializeBinaryToWriter = function(message, writ
|
|
|
20639
20692
|
f
|
|
20640
20693
|
);
|
|
20641
20694
|
}
|
|
20695
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
20696
|
+
if (f != null) {
|
|
20697
|
+
writer.writeString(
|
|
20698
|
+
13,
|
|
20699
|
+
f
|
|
20700
|
+
);
|
|
20701
|
+
}
|
|
20642
20702
|
};
|
|
20643
20703
|
|
|
20644
20704
|
|
|
@@ -21020,6 +21080,42 @@ proto.cms.PageSeoAttributesItem.prototype.hasFullDescription = function() {
|
|
|
21020
21080
|
};
|
|
21021
21081
|
|
|
21022
21082
|
|
|
21083
|
+
/**
|
|
21084
|
+
* optional string additional_description = 13;
|
|
21085
|
+
* @return {string}
|
|
21086
|
+
*/
|
|
21087
|
+
proto.cms.PageSeoAttributesItem.prototype.getAdditionalDescription = function() {
|
|
21088
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
21089
|
+
};
|
|
21090
|
+
|
|
21091
|
+
|
|
21092
|
+
/**
|
|
21093
|
+
* @param {string} value
|
|
21094
|
+
* @return {!proto.cms.PageSeoAttributesItem} returns this
|
|
21095
|
+
*/
|
|
21096
|
+
proto.cms.PageSeoAttributesItem.prototype.setAdditionalDescription = function(value) {
|
|
21097
|
+
return jspb.Message.setField(this, 13, value);
|
|
21098
|
+
};
|
|
21099
|
+
|
|
21100
|
+
|
|
21101
|
+
/**
|
|
21102
|
+
* Clears the field making it undefined.
|
|
21103
|
+
* @return {!proto.cms.PageSeoAttributesItem} returns this
|
|
21104
|
+
*/
|
|
21105
|
+
proto.cms.PageSeoAttributesItem.prototype.clearAdditionalDescription = function() {
|
|
21106
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
21107
|
+
};
|
|
21108
|
+
|
|
21109
|
+
|
|
21110
|
+
/**
|
|
21111
|
+
* Returns whether this field is set.
|
|
21112
|
+
* @return {boolean}
|
|
21113
|
+
*/
|
|
21114
|
+
proto.cms.PageSeoAttributesItem.prototype.hasAdditionalDescription = function() {
|
|
21115
|
+
return jspb.Message.getField(this, 13) != null;
|
|
21116
|
+
};
|
|
21117
|
+
|
|
21118
|
+
|
|
21023
21119
|
|
|
21024
21120
|
|
|
21025
21121
|
|
package/game/game.proto
CHANGED
|
@@ -755,6 +755,7 @@ message GameConfigCheckResponse {
|
|
|
755
755
|
bool has_lobby = 8;
|
|
756
756
|
repeated ActiveWageringUserBonus bonuses = 9;
|
|
757
757
|
repeated ActiveUserTournament tournaments = 10;
|
|
758
|
+
optional bool has_demo = 11;
|
|
758
759
|
}
|
|
759
760
|
message InitGameSessionResponse {
|
|
760
761
|
string game_url = 1;
|
package/game/game_pb.js
CHANGED
|
@@ -31671,7 +31671,8 @@ proto.game.GameConfigCheckResponse.toObject = function(includeInstance, msg) {
|
|
|
31671
31671
|
bonusesList: jspb.Message.toObjectList(msg.getBonusesList(),
|
|
31672
31672
|
proto.game.ActiveWageringUserBonus.toObject, includeInstance),
|
|
31673
31673
|
tournamentsList: jspb.Message.toObjectList(msg.getTournamentsList(),
|
|
31674
|
-
proto.game.ActiveUserTournament.toObject, includeInstance)
|
|
31674
|
+
proto.game.ActiveUserTournament.toObject, includeInstance),
|
|
31675
|
+
hasDemo: jspb.Message.getBooleanFieldWithDefault(msg, 11, false)
|
|
31675
31676
|
};
|
|
31676
31677
|
|
|
31677
31678
|
if (includeInstance) {
|
|
@@ -31750,6 +31751,10 @@ proto.game.GameConfigCheckResponse.deserializeBinaryFromReader = function(msg, r
|
|
|
31750
31751
|
reader.readMessage(value,proto.game.ActiveUserTournament.deserializeBinaryFromReader);
|
|
31751
31752
|
msg.addTournaments(value);
|
|
31752
31753
|
break;
|
|
31754
|
+
case 11:
|
|
31755
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
31756
|
+
msg.setHasDemo(value);
|
|
31757
|
+
break;
|
|
31753
31758
|
default:
|
|
31754
31759
|
reader.skipField();
|
|
31755
31760
|
break;
|
|
@@ -31851,6 +31856,13 @@ proto.game.GameConfigCheckResponse.serializeBinaryToWriter = function(message, w
|
|
|
31851
31856
|
proto.game.ActiveUserTournament.serializeBinaryToWriter
|
|
31852
31857
|
);
|
|
31853
31858
|
}
|
|
31859
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 11));
|
|
31860
|
+
if (f != null) {
|
|
31861
|
+
writer.writeBool(
|
|
31862
|
+
11,
|
|
31863
|
+
f
|
|
31864
|
+
);
|
|
31865
|
+
}
|
|
31854
31866
|
};
|
|
31855
31867
|
|
|
31856
31868
|
|
|
@@ -32074,6 +32086,42 @@ proto.game.GameConfigCheckResponse.prototype.clearTournamentsList = function() {
|
|
|
32074
32086
|
};
|
|
32075
32087
|
|
|
32076
32088
|
|
|
32089
|
+
/**
|
|
32090
|
+
* optional bool has_demo = 11;
|
|
32091
|
+
* @return {boolean}
|
|
32092
|
+
*/
|
|
32093
|
+
proto.game.GameConfigCheckResponse.prototype.getHasDemo = function() {
|
|
32094
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 11, false));
|
|
32095
|
+
};
|
|
32096
|
+
|
|
32097
|
+
|
|
32098
|
+
/**
|
|
32099
|
+
* @param {boolean} value
|
|
32100
|
+
* @return {!proto.game.GameConfigCheckResponse} returns this
|
|
32101
|
+
*/
|
|
32102
|
+
proto.game.GameConfigCheckResponse.prototype.setHasDemo = function(value) {
|
|
32103
|
+
return jspb.Message.setField(this, 11, value);
|
|
32104
|
+
};
|
|
32105
|
+
|
|
32106
|
+
|
|
32107
|
+
/**
|
|
32108
|
+
* Clears the field making it undefined.
|
|
32109
|
+
* @return {!proto.game.GameConfigCheckResponse} returns this
|
|
32110
|
+
*/
|
|
32111
|
+
proto.game.GameConfigCheckResponse.prototype.clearHasDemo = function() {
|
|
32112
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
32113
|
+
};
|
|
32114
|
+
|
|
32115
|
+
|
|
32116
|
+
/**
|
|
32117
|
+
* Returns whether this field is set.
|
|
32118
|
+
* @return {boolean}
|
|
32119
|
+
*/
|
|
32120
|
+
proto.game.GameConfigCheckResponse.prototype.hasHasDemo = function() {
|
|
32121
|
+
return jspb.Message.getField(this, 11) != null;
|
|
32122
|
+
};
|
|
32123
|
+
|
|
32124
|
+
|
|
32077
32125
|
|
|
32078
32126
|
|
|
32079
32127
|
|