protobuf-platform 1.2.633 → 1.2.635
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 +1 -0
- package/cms/cms_pb.js +49 -1
- package/game/game.proto +8 -0
- package/game/game_grpc_pb.js +22 -0
- package/game/game_pb.js +291 -3
- package/package.json +1 -1
package/cms/cms.proto
CHANGED
package/cms/cms_pb.js
CHANGED
|
@@ -18195,7 +18195,8 @@ proto.cms.GetPageRequest.toObject = function(includeInstance, msg) {
|
|
|
18195
18195
|
slug: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
18196
18196
|
geo: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
18197
18197
|
locale: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
18198
|
-
domain: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
18198
|
+
domain: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
18199
|
+
finalGeo: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
18199
18200
|
};
|
|
18200
18201
|
|
|
18201
18202
|
if (includeInstance) {
|
|
@@ -18252,6 +18253,10 @@ proto.cms.GetPageRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
18252
18253
|
var value = /** @type {string} */ (reader.readString());
|
|
18253
18254
|
msg.setDomain(value);
|
|
18254
18255
|
break;
|
|
18256
|
+
case 6:
|
|
18257
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18258
|
+
msg.setFinalGeo(value);
|
|
18259
|
+
break;
|
|
18255
18260
|
default:
|
|
18256
18261
|
reader.skipField();
|
|
18257
18262
|
break;
|
|
@@ -18316,6 +18321,13 @@ proto.cms.GetPageRequest.serializeBinaryToWriter = function(message, writer) {
|
|
|
18316
18321
|
f
|
|
18317
18322
|
);
|
|
18318
18323
|
}
|
|
18324
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
18325
|
+
if (f != null) {
|
|
18326
|
+
writer.writeString(
|
|
18327
|
+
6,
|
|
18328
|
+
f
|
|
18329
|
+
);
|
|
18330
|
+
}
|
|
18319
18331
|
};
|
|
18320
18332
|
|
|
18321
18333
|
|
|
@@ -18499,6 +18511,42 @@ proto.cms.GetPageRequest.prototype.hasDomain = function() {
|
|
|
18499
18511
|
};
|
|
18500
18512
|
|
|
18501
18513
|
|
|
18514
|
+
/**
|
|
18515
|
+
* optional string final_geo = 6;
|
|
18516
|
+
* @return {string}
|
|
18517
|
+
*/
|
|
18518
|
+
proto.cms.GetPageRequest.prototype.getFinalGeo = function() {
|
|
18519
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
18520
|
+
};
|
|
18521
|
+
|
|
18522
|
+
|
|
18523
|
+
/**
|
|
18524
|
+
* @param {string} value
|
|
18525
|
+
* @return {!proto.cms.GetPageRequest} returns this
|
|
18526
|
+
*/
|
|
18527
|
+
proto.cms.GetPageRequest.prototype.setFinalGeo = function(value) {
|
|
18528
|
+
return jspb.Message.setField(this, 6, value);
|
|
18529
|
+
};
|
|
18530
|
+
|
|
18531
|
+
|
|
18532
|
+
/**
|
|
18533
|
+
* Clears the field making it undefined.
|
|
18534
|
+
* @return {!proto.cms.GetPageRequest} returns this
|
|
18535
|
+
*/
|
|
18536
|
+
proto.cms.GetPageRequest.prototype.clearFinalGeo = function() {
|
|
18537
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
18538
|
+
};
|
|
18539
|
+
|
|
18540
|
+
|
|
18541
|
+
/**
|
|
18542
|
+
* Returns whether this field is set.
|
|
18543
|
+
* @return {boolean}
|
|
18544
|
+
*/
|
|
18545
|
+
proto.cms.GetPageRequest.prototype.hasFinalGeo = function() {
|
|
18546
|
+
return jspb.Message.getField(this, 6) != null;
|
|
18547
|
+
};
|
|
18548
|
+
|
|
18549
|
+
|
|
18502
18550
|
|
|
18503
18551
|
|
|
18504
18552
|
|
package/game/game.proto
CHANGED
|
@@ -10,6 +10,8 @@ service Game {
|
|
|
10
10
|
rpc readListMultiScopes(MultiScopeListRequest) returns (MultiScopeItemsResponse);
|
|
11
11
|
rpc setMultiScopeItems(MultiScopeSetItemsRequest) returns (MultiScopeStatusResponse);
|
|
12
12
|
rpc readMultiScopeItems(GetMultiScopeRequest) returns (MultiScopeCompositionResponse);
|
|
13
|
+
rpc getMultiScopeTranslation(GameEntityTranslationRequest) returns (GameEntityTranslationResponse);
|
|
14
|
+
rpc setMultiScopeTranslation(GameEntityTranslationRequest) returns (MultiScopeStatusResponse);
|
|
13
15
|
//Tech
|
|
14
16
|
rpc checkConnection(PingRequest) returns (PongResponse);
|
|
15
17
|
//Common
|
|
@@ -888,6 +890,7 @@ message GetGameConfigCheckRequest {
|
|
|
888
890
|
string provider_slug = 1;
|
|
889
891
|
string game_slug = 2;
|
|
890
892
|
int32 user_id = 3;
|
|
893
|
+
optional string locale = 4;
|
|
891
894
|
}
|
|
892
895
|
message ActiveUserTournament {
|
|
893
896
|
int32 tournament_id = 1;
|
|
@@ -901,6 +904,10 @@ message ActiveUserTournament {
|
|
|
901
904
|
optional uint64 finished_in_milliseconds = 9;
|
|
902
905
|
optional uint32 max_members_count = 10;
|
|
903
906
|
optional uint32 current_members_count = 11;
|
|
907
|
+
optional string image_small = 12;
|
|
908
|
+
optional string image_small_cdn = 13;
|
|
909
|
+
optional string portrait_image = 14;
|
|
910
|
+
optional string portrait_image_cdn = 15;
|
|
904
911
|
}
|
|
905
912
|
message ActiveWageringUserBonus {
|
|
906
913
|
int32 user_bonus_id = 1;
|
|
@@ -1029,6 +1036,7 @@ message MultiScopeRequest {
|
|
|
1029
1036
|
}
|
|
1030
1037
|
message GetMultiScopeRequest {
|
|
1031
1038
|
int32 id = 1;
|
|
1039
|
+
optional string locale = 2;
|
|
1032
1040
|
}
|
|
1033
1041
|
message MultiScopeListRequest {
|
|
1034
1042
|
int32 limit = 1;
|
package/game/game_grpc_pb.js
CHANGED
|
@@ -1645,6 +1645,28 @@ var GameService = exports.GameService = {
|
|
|
1645
1645
|
responseSerialize: serialize_game_MultiScopeCompositionResponse,
|
|
1646
1646
|
responseDeserialize: deserialize_game_MultiScopeCompositionResponse,
|
|
1647
1647
|
},
|
|
1648
|
+
getMultiScopeTranslation: {
|
|
1649
|
+
path: '/game.Game/getMultiScopeTranslation',
|
|
1650
|
+
requestStream: false,
|
|
1651
|
+
responseStream: false,
|
|
1652
|
+
requestType: game_pb.GameEntityTranslationRequest,
|
|
1653
|
+
responseType: game_pb.GameEntityTranslationResponse,
|
|
1654
|
+
requestSerialize: serialize_game_GameEntityTranslationRequest,
|
|
1655
|
+
requestDeserialize: deserialize_game_GameEntityTranslationRequest,
|
|
1656
|
+
responseSerialize: serialize_game_GameEntityTranslationResponse,
|
|
1657
|
+
responseDeserialize: deserialize_game_GameEntityTranslationResponse,
|
|
1658
|
+
},
|
|
1659
|
+
setMultiScopeTranslation: {
|
|
1660
|
+
path: '/game.Game/setMultiScopeTranslation',
|
|
1661
|
+
requestStream: false,
|
|
1662
|
+
responseStream: false,
|
|
1663
|
+
requestType: game_pb.GameEntityTranslationRequest,
|
|
1664
|
+
responseType: game_pb.MultiScopeStatusResponse,
|
|
1665
|
+
requestSerialize: serialize_game_GameEntityTranslationRequest,
|
|
1666
|
+
requestDeserialize: deserialize_game_GameEntityTranslationRequest,
|
|
1667
|
+
responseSerialize: serialize_game_MultiScopeStatusResponse,
|
|
1668
|
+
responseDeserialize: deserialize_game_MultiScopeStatusResponse,
|
|
1669
|
+
},
|
|
1648
1670
|
// Tech
|
|
1649
1671
|
checkConnection: {
|
|
1650
1672
|
path: '/game.Game/checkConnection',
|
package/game/game_pb.js
CHANGED
|
@@ -37418,7 +37418,8 @@ proto.game.GetGameConfigCheckRequest.toObject = function(includeInstance, msg) {
|
|
|
37418
37418
|
var f, obj = {
|
|
37419
37419
|
providerSlug: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
37420
37420
|
gameSlug: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
37421
|
-
userId: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
|
37421
|
+
userId: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
37422
|
+
locale: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
37422
37423
|
};
|
|
37423
37424
|
|
|
37424
37425
|
if (includeInstance) {
|
|
@@ -37467,6 +37468,10 @@ proto.game.GetGameConfigCheckRequest.deserializeBinaryFromReader = function(msg,
|
|
|
37467
37468
|
var value = /** @type {number} */ (reader.readInt32());
|
|
37468
37469
|
msg.setUserId(value);
|
|
37469
37470
|
break;
|
|
37471
|
+
case 4:
|
|
37472
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37473
|
+
msg.setLocale(value);
|
|
37474
|
+
break;
|
|
37470
37475
|
default:
|
|
37471
37476
|
reader.skipField();
|
|
37472
37477
|
break;
|
|
@@ -37517,6 +37522,13 @@ proto.game.GetGameConfigCheckRequest.serializeBinaryToWriter = function(message,
|
|
|
37517
37522
|
f
|
|
37518
37523
|
);
|
|
37519
37524
|
}
|
|
37525
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
37526
|
+
if (f != null) {
|
|
37527
|
+
writer.writeString(
|
|
37528
|
+
4,
|
|
37529
|
+
f
|
|
37530
|
+
);
|
|
37531
|
+
}
|
|
37520
37532
|
};
|
|
37521
37533
|
|
|
37522
37534
|
|
|
@@ -37574,6 +37586,42 @@ proto.game.GetGameConfigCheckRequest.prototype.setUserId = function(value) {
|
|
|
37574
37586
|
};
|
|
37575
37587
|
|
|
37576
37588
|
|
|
37589
|
+
/**
|
|
37590
|
+
* optional string locale = 4;
|
|
37591
|
+
* @return {string}
|
|
37592
|
+
*/
|
|
37593
|
+
proto.game.GetGameConfigCheckRequest.prototype.getLocale = function() {
|
|
37594
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
37595
|
+
};
|
|
37596
|
+
|
|
37597
|
+
|
|
37598
|
+
/**
|
|
37599
|
+
* @param {string} value
|
|
37600
|
+
* @return {!proto.game.GetGameConfigCheckRequest} returns this
|
|
37601
|
+
*/
|
|
37602
|
+
proto.game.GetGameConfigCheckRequest.prototype.setLocale = function(value) {
|
|
37603
|
+
return jspb.Message.setField(this, 4, value);
|
|
37604
|
+
};
|
|
37605
|
+
|
|
37606
|
+
|
|
37607
|
+
/**
|
|
37608
|
+
* Clears the field making it undefined.
|
|
37609
|
+
* @return {!proto.game.GetGameConfigCheckRequest} returns this
|
|
37610
|
+
*/
|
|
37611
|
+
proto.game.GetGameConfigCheckRequest.prototype.clearLocale = function() {
|
|
37612
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
37613
|
+
};
|
|
37614
|
+
|
|
37615
|
+
|
|
37616
|
+
/**
|
|
37617
|
+
* Returns whether this field is set.
|
|
37618
|
+
* @return {boolean}
|
|
37619
|
+
*/
|
|
37620
|
+
proto.game.GetGameConfigCheckRequest.prototype.hasLocale = function() {
|
|
37621
|
+
return jspb.Message.getField(this, 4) != null;
|
|
37622
|
+
};
|
|
37623
|
+
|
|
37624
|
+
|
|
37577
37625
|
|
|
37578
37626
|
|
|
37579
37627
|
|
|
@@ -37616,7 +37664,11 @@ proto.game.ActiveUserTournament.toObject = function(includeInstance, msg) {
|
|
|
37616
37664
|
userStatus: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
37617
37665
|
finishedInMilliseconds: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
37618
37666
|
maxMembersCount: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
37619
|
-
currentMembersCount: jspb.Message.getFieldWithDefault(msg, 11, 0)
|
|
37667
|
+
currentMembersCount: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
|
37668
|
+
imageSmall: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
37669
|
+
imageSmallCdn: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
37670
|
+
portraitImage: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
37671
|
+
portraitImageCdn: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
37620
37672
|
};
|
|
37621
37673
|
|
|
37622
37674
|
if (includeInstance) {
|
|
@@ -37697,6 +37749,22 @@ proto.game.ActiveUserTournament.deserializeBinaryFromReader = function(msg, read
|
|
|
37697
37749
|
var value = /** @type {number} */ (reader.readUint32());
|
|
37698
37750
|
msg.setCurrentMembersCount(value);
|
|
37699
37751
|
break;
|
|
37752
|
+
case 12:
|
|
37753
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37754
|
+
msg.setImageSmall(value);
|
|
37755
|
+
break;
|
|
37756
|
+
case 13:
|
|
37757
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37758
|
+
msg.setImageSmallCdn(value);
|
|
37759
|
+
break;
|
|
37760
|
+
case 14:
|
|
37761
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37762
|
+
msg.setPortraitImage(value);
|
|
37763
|
+
break;
|
|
37764
|
+
case 15:
|
|
37765
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37766
|
+
msg.setPortraitImageCdn(value);
|
|
37767
|
+
break;
|
|
37700
37768
|
default:
|
|
37701
37769
|
reader.skipField();
|
|
37702
37770
|
break;
|
|
@@ -37803,6 +37871,34 @@ proto.game.ActiveUserTournament.serializeBinaryToWriter = function(message, writ
|
|
|
37803
37871
|
f
|
|
37804
37872
|
);
|
|
37805
37873
|
}
|
|
37874
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
|
37875
|
+
if (f != null) {
|
|
37876
|
+
writer.writeString(
|
|
37877
|
+
12,
|
|
37878
|
+
f
|
|
37879
|
+
);
|
|
37880
|
+
}
|
|
37881
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
37882
|
+
if (f != null) {
|
|
37883
|
+
writer.writeString(
|
|
37884
|
+
13,
|
|
37885
|
+
f
|
|
37886
|
+
);
|
|
37887
|
+
}
|
|
37888
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
|
37889
|
+
if (f != null) {
|
|
37890
|
+
writer.writeString(
|
|
37891
|
+
14,
|
|
37892
|
+
f
|
|
37893
|
+
);
|
|
37894
|
+
}
|
|
37895
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 15));
|
|
37896
|
+
if (f != null) {
|
|
37897
|
+
writer.writeString(
|
|
37898
|
+
15,
|
|
37899
|
+
f
|
|
37900
|
+
);
|
|
37901
|
+
}
|
|
37806
37902
|
};
|
|
37807
37903
|
|
|
37808
37904
|
|
|
@@ -38166,6 +38262,150 @@ proto.game.ActiveUserTournament.prototype.hasCurrentMembersCount = function() {
|
|
|
38166
38262
|
};
|
|
38167
38263
|
|
|
38168
38264
|
|
|
38265
|
+
/**
|
|
38266
|
+
* optional string image_small = 12;
|
|
38267
|
+
* @return {string}
|
|
38268
|
+
*/
|
|
38269
|
+
proto.game.ActiveUserTournament.prototype.getImageSmall = function() {
|
|
38270
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
38271
|
+
};
|
|
38272
|
+
|
|
38273
|
+
|
|
38274
|
+
/**
|
|
38275
|
+
* @param {string} value
|
|
38276
|
+
* @return {!proto.game.ActiveUserTournament} returns this
|
|
38277
|
+
*/
|
|
38278
|
+
proto.game.ActiveUserTournament.prototype.setImageSmall = function(value) {
|
|
38279
|
+
return jspb.Message.setField(this, 12, value);
|
|
38280
|
+
};
|
|
38281
|
+
|
|
38282
|
+
|
|
38283
|
+
/**
|
|
38284
|
+
* Clears the field making it undefined.
|
|
38285
|
+
* @return {!proto.game.ActiveUserTournament} returns this
|
|
38286
|
+
*/
|
|
38287
|
+
proto.game.ActiveUserTournament.prototype.clearImageSmall = function() {
|
|
38288
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
38289
|
+
};
|
|
38290
|
+
|
|
38291
|
+
|
|
38292
|
+
/**
|
|
38293
|
+
* Returns whether this field is set.
|
|
38294
|
+
* @return {boolean}
|
|
38295
|
+
*/
|
|
38296
|
+
proto.game.ActiveUserTournament.prototype.hasImageSmall = function() {
|
|
38297
|
+
return jspb.Message.getField(this, 12) != null;
|
|
38298
|
+
};
|
|
38299
|
+
|
|
38300
|
+
|
|
38301
|
+
/**
|
|
38302
|
+
* optional string image_small_cdn = 13;
|
|
38303
|
+
* @return {string}
|
|
38304
|
+
*/
|
|
38305
|
+
proto.game.ActiveUserTournament.prototype.getImageSmallCdn = function() {
|
|
38306
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
38307
|
+
};
|
|
38308
|
+
|
|
38309
|
+
|
|
38310
|
+
/**
|
|
38311
|
+
* @param {string} value
|
|
38312
|
+
* @return {!proto.game.ActiveUserTournament} returns this
|
|
38313
|
+
*/
|
|
38314
|
+
proto.game.ActiveUserTournament.prototype.setImageSmallCdn = function(value) {
|
|
38315
|
+
return jspb.Message.setField(this, 13, value);
|
|
38316
|
+
};
|
|
38317
|
+
|
|
38318
|
+
|
|
38319
|
+
/**
|
|
38320
|
+
* Clears the field making it undefined.
|
|
38321
|
+
* @return {!proto.game.ActiveUserTournament} returns this
|
|
38322
|
+
*/
|
|
38323
|
+
proto.game.ActiveUserTournament.prototype.clearImageSmallCdn = function() {
|
|
38324
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
38325
|
+
};
|
|
38326
|
+
|
|
38327
|
+
|
|
38328
|
+
/**
|
|
38329
|
+
* Returns whether this field is set.
|
|
38330
|
+
* @return {boolean}
|
|
38331
|
+
*/
|
|
38332
|
+
proto.game.ActiveUserTournament.prototype.hasImageSmallCdn = function() {
|
|
38333
|
+
return jspb.Message.getField(this, 13) != null;
|
|
38334
|
+
};
|
|
38335
|
+
|
|
38336
|
+
|
|
38337
|
+
/**
|
|
38338
|
+
* optional string portrait_image = 14;
|
|
38339
|
+
* @return {string}
|
|
38340
|
+
*/
|
|
38341
|
+
proto.game.ActiveUserTournament.prototype.getPortraitImage = function() {
|
|
38342
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
|
38343
|
+
};
|
|
38344
|
+
|
|
38345
|
+
|
|
38346
|
+
/**
|
|
38347
|
+
* @param {string} value
|
|
38348
|
+
* @return {!proto.game.ActiveUserTournament} returns this
|
|
38349
|
+
*/
|
|
38350
|
+
proto.game.ActiveUserTournament.prototype.setPortraitImage = function(value) {
|
|
38351
|
+
return jspb.Message.setField(this, 14, value);
|
|
38352
|
+
};
|
|
38353
|
+
|
|
38354
|
+
|
|
38355
|
+
/**
|
|
38356
|
+
* Clears the field making it undefined.
|
|
38357
|
+
* @return {!proto.game.ActiveUserTournament} returns this
|
|
38358
|
+
*/
|
|
38359
|
+
proto.game.ActiveUserTournament.prototype.clearPortraitImage = function() {
|
|
38360
|
+
return jspb.Message.setField(this, 14, undefined);
|
|
38361
|
+
};
|
|
38362
|
+
|
|
38363
|
+
|
|
38364
|
+
/**
|
|
38365
|
+
* Returns whether this field is set.
|
|
38366
|
+
* @return {boolean}
|
|
38367
|
+
*/
|
|
38368
|
+
proto.game.ActiveUserTournament.prototype.hasPortraitImage = function() {
|
|
38369
|
+
return jspb.Message.getField(this, 14) != null;
|
|
38370
|
+
};
|
|
38371
|
+
|
|
38372
|
+
|
|
38373
|
+
/**
|
|
38374
|
+
* optional string portrait_image_cdn = 15;
|
|
38375
|
+
* @return {string}
|
|
38376
|
+
*/
|
|
38377
|
+
proto.game.ActiveUserTournament.prototype.getPortraitImageCdn = function() {
|
|
38378
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
38379
|
+
};
|
|
38380
|
+
|
|
38381
|
+
|
|
38382
|
+
/**
|
|
38383
|
+
* @param {string} value
|
|
38384
|
+
* @return {!proto.game.ActiveUserTournament} returns this
|
|
38385
|
+
*/
|
|
38386
|
+
proto.game.ActiveUserTournament.prototype.setPortraitImageCdn = function(value) {
|
|
38387
|
+
return jspb.Message.setField(this, 15, value);
|
|
38388
|
+
};
|
|
38389
|
+
|
|
38390
|
+
|
|
38391
|
+
/**
|
|
38392
|
+
* Clears the field making it undefined.
|
|
38393
|
+
* @return {!proto.game.ActiveUserTournament} returns this
|
|
38394
|
+
*/
|
|
38395
|
+
proto.game.ActiveUserTournament.prototype.clearPortraitImageCdn = function() {
|
|
38396
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
38397
|
+
};
|
|
38398
|
+
|
|
38399
|
+
|
|
38400
|
+
/**
|
|
38401
|
+
* Returns whether this field is set.
|
|
38402
|
+
* @return {boolean}
|
|
38403
|
+
*/
|
|
38404
|
+
proto.game.ActiveUserTournament.prototype.hasPortraitImageCdn = function() {
|
|
38405
|
+
return jspb.Message.getField(this, 15) != null;
|
|
38406
|
+
};
|
|
38407
|
+
|
|
38408
|
+
|
|
38169
38409
|
|
|
38170
38410
|
/**
|
|
38171
38411
|
* List of repeated fields within this message type.
|
|
@@ -43139,7 +43379,8 @@ proto.game.GetMultiScopeRequest.prototype.toObject = function(opt_includeInstanc
|
|
|
43139
43379
|
*/
|
|
43140
43380
|
proto.game.GetMultiScopeRequest.toObject = function(includeInstance, msg) {
|
|
43141
43381
|
var f, obj = {
|
|
43142
|
-
id: jspb.Message.getFieldWithDefault(msg, 1, 0)
|
|
43382
|
+
id: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
43383
|
+
locale: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
43143
43384
|
};
|
|
43144
43385
|
|
|
43145
43386
|
if (includeInstance) {
|
|
@@ -43180,6 +43421,10 @@ proto.game.GetMultiScopeRequest.deserializeBinaryFromReader = function(msg, read
|
|
|
43180
43421
|
var value = /** @type {number} */ (reader.readInt32());
|
|
43181
43422
|
msg.setId(value);
|
|
43182
43423
|
break;
|
|
43424
|
+
case 2:
|
|
43425
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43426
|
+
msg.setLocale(value);
|
|
43427
|
+
break;
|
|
43183
43428
|
default:
|
|
43184
43429
|
reader.skipField();
|
|
43185
43430
|
break;
|
|
@@ -43216,6 +43461,13 @@ proto.game.GetMultiScopeRequest.serializeBinaryToWriter = function(message, writ
|
|
|
43216
43461
|
f
|
|
43217
43462
|
);
|
|
43218
43463
|
}
|
|
43464
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
43465
|
+
if (f != null) {
|
|
43466
|
+
writer.writeString(
|
|
43467
|
+
2,
|
|
43468
|
+
f
|
|
43469
|
+
);
|
|
43470
|
+
}
|
|
43219
43471
|
};
|
|
43220
43472
|
|
|
43221
43473
|
|
|
@@ -43237,6 +43489,42 @@ proto.game.GetMultiScopeRequest.prototype.setId = function(value) {
|
|
|
43237
43489
|
};
|
|
43238
43490
|
|
|
43239
43491
|
|
|
43492
|
+
/**
|
|
43493
|
+
* optional string locale = 2;
|
|
43494
|
+
* @return {string}
|
|
43495
|
+
*/
|
|
43496
|
+
proto.game.GetMultiScopeRequest.prototype.getLocale = function() {
|
|
43497
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
43498
|
+
};
|
|
43499
|
+
|
|
43500
|
+
|
|
43501
|
+
/**
|
|
43502
|
+
* @param {string} value
|
|
43503
|
+
* @return {!proto.game.GetMultiScopeRequest} returns this
|
|
43504
|
+
*/
|
|
43505
|
+
proto.game.GetMultiScopeRequest.prototype.setLocale = function(value) {
|
|
43506
|
+
return jspb.Message.setField(this, 2, value);
|
|
43507
|
+
};
|
|
43508
|
+
|
|
43509
|
+
|
|
43510
|
+
/**
|
|
43511
|
+
* Clears the field making it undefined.
|
|
43512
|
+
* @return {!proto.game.GetMultiScopeRequest} returns this
|
|
43513
|
+
*/
|
|
43514
|
+
proto.game.GetMultiScopeRequest.prototype.clearLocale = function() {
|
|
43515
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
43516
|
+
};
|
|
43517
|
+
|
|
43518
|
+
|
|
43519
|
+
/**
|
|
43520
|
+
* Returns whether this field is set.
|
|
43521
|
+
* @return {boolean}
|
|
43522
|
+
*/
|
|
43523
|
+
proto.game.GetMultiScopeRequest.prototype.hasLocale = function() {
|
|
43524
|
+
return jspb.Message.getField(this, 2) != null;
|
|
43525
|
+
};
|
|
43526
|
+
|
|
43527
|
+
|
|
43240
43528
|
|
|
43241
43529
|
/**
|
|
43242
43530
|
* List of repeated fields within this message type.
|