protobuf-platform 1.2.574 → 1.2.577
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/bonus/bonus.proto +10 -0
- package/bonus/bonus_pb.js +262 -2
- package/game/game.proto +4 -0
- package/game/game_pb.js +204 -8
- package/package.json +1 -1
- package/sport/sport.proto +67 -0
- package/sport/sport_grpc_pb.js +72 -2
- package/sport/sport_pb.js +1938 -0
package/bonus/bonus.proto
CHANGED
|
@@ -100,6 +100,14 @@ message BonusActivationRulesRequest {
|
|
|
100
100
|
optional float cancellation_amount = 7;
|
|
101
101
|
optional string promo_code = 8;
|
|
102
102
|
}
|
|
103
|
+
// Write-side reward payload for a single semantic reward type (e.g. "freebet", "comboboost").
|
|
104
|
+
message BonusRewardWriteItem {
|
|
105
|
+
string type = 1;
|
|
106
|
+
optional string config = 2;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// Legacy scalar/config fields (1–10) remain for backward compatibility.
|
|
110
|
+
// New reward types must use `rewards`; do not add per-type top-level fields (e.g. combo_boost_config).
|
|
103
111
|
message BonusRewardsRequest {
|
|
104
112
|
int32 bonus_id = 1;
|
|
105
113
|
string currency = 2;
|
|
@@ -111,6 +119,8 @@ message BonusRewardsRequest {
|
|
|
111
119
|
optional float ranking = 8;
|
|
112
120
|
optional string free_spins_config = 9;
|
|
113
121
|
optional string free_bet_config = 10;
|
|
122
|
+
// Extensible write path for new reward types; currency is inherited from this request.
|
|
123
|
+
repeated BonusRewardWriteItem rewards = 11;
|
|
114
124
|
}
|
|
115
125
|
message BonusBetRangesRequest {
|
|
116
126
|
int32 bonus_id = 1;
|
package/bonus/bonus_pb.js
CHANGED
|
@@ -40,6 +40,7 @@ goog.exportSymbol('proto.bonus.BonusRequest', null, global);
|
|
|
40
40
|
goog.exportSymbol('proto.bonus.BonusRequest.RequestCase', null, global);
|
|
41
41
|
goog.exportSymbol('proto.bonus.BonusResponse', null, global);
|
|
42
42
|
goog.exportSymbol('proto.bonus.BonusReward', null, global);
|
|
43
|
+
goog.exportSymbol('proto.bonus.BonusRewardWriteItem', null, global);
|
|
43
44
|
goog.exportSymbol('proto.bonus.BonusRewardsRequest', null, global);
|
|
44
45
|
goog.exportSymbol('proto.bonus.BonusSnapshotItem', null, global);
|
|
45
46
|
goog.exportSymbol('proto.bonus.BonusSnapshotItemsResponse', null, global);
|
|
@@ -289,9 +290,30 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
289
290
|
* @extends {jspb.Message}
|
|
290
291
|
* @constructor
|
|
291
292
|
*/
|
|
292
|
-
proto.bonus.
|
|
293
|
+
proto.bonus.BonusRewardWriteItem = function(opt_data) {
|
|
293
294
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
294
295
|
};
|
|
296
|
+
goog.inherits(proto.bonus.BonusRewardWriteItem, jspb.Message);
|
|
297
|
+
if (goog.DEBUG && !COMPILED) {
|
|
298
|
+
/**
|
|
299
|
+
* @public
|
|
300
|
+
* @override
|
|
301
|
+
*/
|
|
302
|
+
proto.bonus.BonusRewardWriteItem.displayName = 'proto.bonus.BonusRewardWriteItem';
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
* Generated by JsPbCodeGenerator.
|
|
306
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
307
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
308
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
309
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
310
|
+
* valid.
|
|
311
|
+
* @extends {jspb.Message}
|
|
312
|
+
* @constructor
|
|
313
|
+
*/
|
|
314
|
+
proto.bonus.BonusRewardsRequest = function(opt_data) {
|
|
315
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.bonus.BonusRewardsRequest.repeatedFields_, null);
|
|
316
|
+
};
|
|
295
317
|
goog.inherits(proto.bonus.BonusRewardsRequest, jspb.Message);
|
|
296
318
|
if (goog.DEBUG && !COMPILED) {
|
|
297
319
|
/**
|
|
@@ -3833,6 +3855,191 @@ proto.bonus.BonusActivationRulesRequest.prototype.hasPromoCode = function() {
|
|
|
3833
3855
|
|
|
3834
3856
|
|
|
3835
3857
|
|
|
3858
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
3859
|
+
/**
|
|
3860
|
+
* Creates an object representation of this proto.
|
|
3861
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
3862
|
+
* Optional fields that are not set will be set to undefined.
|
|
3863
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
3864
|
+
* For the list of reserved names please see:
|
|
3865
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
3866
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
3867
|
+
* JSPB instance for transitional soy proto support:
|
|
3868
|
+
* http://goto/soy-param-migration
|
|
3869
|
+
* @return {!Object}
|
|
3870
|
+
*/
|
|
3871
|
+
proto.bonus.BonusRewardWriteItem.prototype.toObject = function(opt_includeInstance) {
|
|
3872
|
+
return proto.bonus.BonusRewardWriteItem.toObject(opt_includeInstance, this);
|
|
3873
|
+
};
|
|
3874
|
+
|
|
3875
|
+
|
|
3876
|
+
/**
|
|
3877
|
+
* Static version of the {@see toObject} method.
|
|
3878
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
3879
|
+
* the JSPB instance for transitional soy proto support:
|
|
3880
|
+
* http://goto/soy-param-migration
|
|
3881
|
+
* @param {!proto.bonus.BonusRewardWriteItem} msg The msg instance to transform.
|
|
3882
|
+
* @return {!Object}
|
|
3883
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
3884
|
+
*/
|
|
3885
|
+
proto.bonus.BonusRewardWriteItem.toObject = function(includeInstance, msg) {
|
|
3886
|
+
var f, obj = {
|
|
3887
|
+
type: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
3888
|
+
config: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
3889
|
+
};
|
|
3890
|
+
|
|
3891
|
+
if (includeInstance) {
|
|
3892
|
+
obj.$jspbMessageInstance = msg;
|
|
3893
|
+
}
|
|
3894
|
+
return obj;
|
|
3895
|
+
};
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
|
|
3899
|
+
/**
|
|
3900
|
+
* Deserializes binary data (in protobuf wire format).
|
|
3901
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
3902
|
+
* @return {!proto.bonus.BonusRewardWriteItem}
|
|
3903
|
+
*/
|
|
3904
|
+
proto.bonus.BonusRewardWriteItem.deserializeBinary = function(bytes) {
|
|
3905
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
3906
|
+
var msg = new proto.bonus.BonusRewardWriteItem;
|
|
3907
|
+
return proto.bonus.BonusRewardWriteItem.deserializeBinaryFromReader(msg, reader);
|
|
3908
|
+
};
|
|
3909
|
+
|
|
3910
|
+
|
|
3911
|
+
/**
|
|
3912
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
3913
|
+
* given reader into the given message object.
|
|
3914
|
+
* @param {!proto.bonus.BonusRewardWriteItem} msg The message object to deserialize into.
|
|
3915
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
3916
|
+
* @return {!proto.bonus.BonusRewardWriteItem}
|
|
3917
|
+
*/
|
|
3918
|
+
proto.bonus.BonusRewardWriteItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
3919
|
+
while (reader.nextField()) {
|
|
3920
|
+
if (reader.isEndGroup()) {
|
|
3921
|
+
break;
|
|
3922
|
+
}
|
|
3923
|
+
var field = reader.getFieldNumber();
|
|
3924
|
+
switch (field) {
|
|
3925
|
+
case 1:
|
|
3926
|
+
var value = /** @type {string} */ (reader.readString());
|
|
3927
|
+
msg.setType(value);
|
|
3928
|
+
break;
|
|
3929
|
+
case 2:
|
|
3930
|
+
var value = /** @type {string} */ (reader.readString());
|
|
3931
|
+
msg.setConfig(value);
|
|
3932
|
+
break;
|
|
3933
|
+
default:
|
|
3934
|
+
reader.skipField();
|
|
3935
|
+
break;
|
|
3936
|
+
}
|
|
3937
|
+
}
|
|
3938
|
+
return msg;
|
|
3939
|
+
};
|
|
3940
|
+
|
|
3941
|
+
|
|
3942
|
+
/**
|
|
3943
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
3944
|
+
* @return {!Uint8Array}
|
|
3945
|
+
*/
|
|
3946
|
+
proto.bonus.BonusRewardWriteItem.prototype.serializeBinary = function() {
|
|
3947
|
+
var writer = new jspb.BinaryWriter();
|
|
3948
|
+
proto.bonus.BonusRewardWriteItem.serializeBinaryToWriter(this, writer);
|
|
3949
|
+
return writer.getResultBuffer();
|
|
3950
|
+
};
|
|
3951
|
+
|
|
3952
|
+
|
|
3953
|
+
/**
|
|
3954
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
3955
|
+
* format), writing to the given BinaryWriter.
|
|
3956
|
+
* @param {!proto.bonus.BonusRewardWriteItem} message
|
|
3957
|
+
* @param {!jspb.BinaryWriter} writer
|
|
3958
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
3959
|
+
*/
|
|
3960
|
+
proto.bonus.BonusRewardWriteItem.serializeBinaryToWriter = function(message, writer) {
|
|
3961
|
+
var f = undefined;
|
|
3962
|
+
f = message.getType();
|
|
3963
|
+
if (f.length > 0) {
|
|
3964
|
+
writer.writeString(
|
|
3965
|
+
1,
|
|
3966
|
+
f
|
|
3967
|
+
);
|
|
3968
|
+
}
|
|
3969
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
3970
|
+
if (f != null) {
|
|
3971
|
+
writer.writeString(
|
|
3972
|
+
2,
|
|
3973
|
+
f
|
|
3974
|
+
);
|
|
3975
|
+
}
|
|
3976
|
+
};
|
|
3977
|
+
|
|
3978
|
+
|
|
3979
|
+
/**
|
|
3980
|
+
* optional string type = 1;
|
|
3981
|
+
* @return {string}
|
|
3982
|
+
*/
|
|
3983
|
+
proto.bonus.BonusRewardWriteItem.prototype.getType = function() {
|
|
3984
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
3985
|
+
};
|
|
3986
|
+
|
|
3987
|
+
|
|
3988
|
+
/**
|
|
3989
|
+
* @param {string} value
|
|
3990
|
+
* @return {!proto.bonus.BonusRewardWriteItem} returns this
|
|
3991
|
+
*/
|
|
3992
|
+
proto.bonus.BonusRewardWriteItem.prototype.setType = function(value) {
|
|
3993
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
3994
|
+
};
|
|
3995
|
+
|
|
3996
|
+
|
|
3997
|
+
/**
|
|
3998
|
+
* optional string config = 2;
|
|
3999
|
+
* @return {string}
|
|
4000
|
+
*/
|
|
4001
|
+
proto.bonus.BonusRewardWriteItem.prototype.getConfig = function() {
|
|
4002
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
4003
|
+
};
|
|
4004
|
+
|
|
4005
|
+
|
|
4006
|
+
/**
|
|
4007
|
+
* @param {string} value
|
|
4008
|
+
* @return {!proto.bonus.BonusRewardWriteItem} returns this
|
|
4009
|
+
*/
|
|
4010
|
+
proto.bonus.BonusRewardWriteItem.prototype.setConfig = function(value) {
|
|
4011
|
+
return jspb.Message.setField(this, 2, value);
|
|
4012
|
+
};
|
|
4013
|
+
|
|
4014
|
+
|
|
4015
|
+
/**
|
|
4016
|
+
* Clears the field making it undefined.
|
|
4017
|
+
* @return {!proto.bonus.BonusRewardWriteItem} returns this
|
|
4018
|
+
*/
|
|
4019
|
+
proto.bonus.BonusRewardWriteItem.prototype.clearConfig = function() {
|
|
4020
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
4021
|
+
};
|
|
4022
|
+
|
|
4023
|
+
|
|
4024
|
+
/**
|
|
4025
|
+
* Returns whether this field is set.
|
|
4026
|
+
* @return {boolean}
|
|
4027
|
+
*/
|
|
4028
|
+
proto.bonus.BonusRewardWriteItem.prototype.hasConfig = function() {
|
|
4029
|
+
return jspb.Message.getField(this, 2) != null;
|
|
4030
|
+
};
|
|
4031
|
+
|
|
4032
|
+
|
|
4033
|
+
|
|
4034
|
+
/**
|
|
4035
|
+
* List of repeated fields within this message type.
|
|
4036
|
+
* @private {!Array<number>}
|
|
4037
|
+
* @const
|
|
4038
|
+
*/
|
|
4039
|
+
proto.bonus.BonusRewardsRequest.repeatedFields_ = [11];
|
|
4040
|
+
|
|
4041
|
+
|
|
4042
|
+
|
|
3836
4043
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
3837
4044
|
/**
|
|
3838
4045
|
* Creates an object representation of this proto.
|
|
@@ -3871,7 +4078,9 @@ proto.bonus.BonusRewardsRequest.toObject = function(includeInstance, msg) {
|
|
|
3871
4078
|
loyalty: jspb.Message.getFloatingPointFieldWithDefault(msg, 7, 0.0),
|
|
3872
4079
|
ranking: jspb.Message.getFloatingPointFieldWithDefault(msg, 8, 0.0),
|
|
3873
4080
|
freeSpinsConfig: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
3874
|
-
freeBetConfig: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
4081
|
+
freeBetConfig: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
4082
|
+
rewardsList: jspb.Message.toObjectList(msg.getRewardsList(),
|
|
4083
|
+
proto.bonus.BonusRewardWriteItem.toObject, includeInstance)
|
|
3875
4084
|
};
|
|
3876
4085
|
|
|
3877
4086
|
if (includeInstance) {
|
|
@@ -3948,6 +4157,11 @@ proto.bonus.BonusRewardsRequest.deserializeBinaryFromReader = function(msg, read
|
|
|
3948
4157
|
var value = /** @type {string} */ (reader.readString());
|
|
3949
4158
|
msg.setFreeBetConfig(value);
|
|
3950
4159
|
break;
|
|
4160
|
+
case 11:
|
|
4161
|
+
var value = new proto.bonus.BonusRewardWriteItem;
|
|
4162
|
+
reader.readMessage(value,proto.bonus.BonusRewardWriteItem.deserializeBinaryFromReader);
|
|
4163
|
+
msg.addRewards(value);
|
|
4164
|
+
break;
|
|
3951
4165
|
default:
|
|
3952
4166
|
reader.skipField();
|
|
3953
4167
|
break;
|
|
@@ -4047,6 +4261,14 @@ proto.bonus.BonusRewardsRequest.serializeBinaryToWriter = function(message, writ
|
|
|
4047
4261
|
f
|
|
4048
4262
|
);
|
|
4049
4263
|
}
|
|
4264
|
+
f = message.getRewardsList();
|
|
4265
|
+
if (f.length > 0) {
|
|
4266
|
+
writer.writeRepeatedMessage(
|
|
4267
|
+
11,
|
|
4268
|
+
f,
|
|
4269
|
+
proto.bonus.BonusRewardWriteItem.serializeBinaryToWriter
|
|
4270
|
+
);
|
|
4271
|
+
}
|
|
4050
4272
|
};
|
|
4051
4273
|
|
|
4052
4274
|
|
|
@@ -4374,6 +4596,44 @@ proto.bonus.BonusRewardsRequest.prototype.hasFreeBetConfig = function() {
|
|
|
4374
4596
|
};
|
|
4375
4597
|
|
|
4376
4598
|
|
|
4599
|
+
/**
|
|
4600
|
+
* repeated BonusRewardWriteItem rewards = 11;
|
|
4601
|
+
* @return {!Array<!proto.bonus.BonusRewardWriteItem>}
|
|
4602
|
+
*/
|
|
4603
|
+
proto.bonus.BonusRewardsRequest.prototype.getRewardsList = function() {
|
|
4604
|
+
return /** @type{!Array<!proto.bonus.BonusRewardWriteItem>} */ (
|
|
4605
|
+
jspb.Message.getRepeatedWrapperField(this, proto.bonus.BonusRewardWriteItem, 11));
|
|
4606
|
+
};
|
|
4607
|
+
|
|
4608
|
+
|
|
4609
|
+
/**
|
|
4610
|
+
* @param {!Array<!proto.bonus.BonusRewardWriteItem>} value
|
|
4611
|
+
* @return {!proto.bonus.BonusRewardsRequest} returns this
|
|
4612
|
+
*/
|
|
4613
|
+
proto.bonus.BonusRewardsRequest.prototype.setRewardsList = function(value) {
|
|
4614
|
+
return jspb.Message.setRepeatedWrapperField(this, 11, value);
|
|
4615
|
+
};
|
|
4616
|
+
|
|
4617
|
+
|
|
4618
|
+
/**
|
|
4619
|
+
* @param {!proto.bonus.BonusRewardWriteItem=} opt_value
|
|
4620
|
+
* @param {number=} opt_index
|
|
4621
|
+
* @return {!proto.bonus.BonusRewardWriteItem}
|
|
4622
|
+
*/
|
|
4623
|
+
proto.bonus.BonusRewardsRequest.prototype.addRewards = function(opt_value, opt_index) {
|
|
4624
|
+
return jspb.Message.addToRepeatedWrapperField(this, 11, opt_value, proto.bonus.BonusRewardWriteItem, opt_index);
|
|
4625
|
+
};
|
|
4626
|
+
|
|
4627
|
+
|
|
4628
|
+
/**
|
|
4629
|
+
* Clears the list making it empty but non-null.
|
|
4630
|
+
* @return {!proto.bonus.BonusRewardsRequest} returns this
|
|
4631
|
+
*/
|
|
4632
|
+
proto.bonus.BonusRewardsRequest.prototype.clearRewardsList = function() {
|
|
4633
|
+
return this.setRewardsList([]);
|
|
4634
|
+
};
|
|
4635
|
+
|
|
4636
|
+
|
|
4377
4637
|
|
|
4378
4638
|
|
|
4379
4639
|
|
package/game/game.proto
CHANGED
|
@@ -229,12 +229,14 @@ message ProviderSearchRequest {
|
|
|
229
229
|
optional string geo = 3;
|
|
230
230
|
repeated int32 ids = 4;
|
|
231
231
|
optional string locale = 5;
|
|
232
|
+
repeated string slugs = 6;
|
|
232
233
|
}
|
|
233
234
|
message CategorySearchRequest {
|
|
234
235
|
optional string category_title = 1;
|
|
235
236
|
optional int32 is_active = 2;
|
|
236
237
|
repeated int32 ids = 3;
|
|
237
238
|
optional string locale = 4;
|
|
239
|
+
repeated string slugs = 5;
|
|
238
240
|
}
|
|
239
241
|
message CollectionSearchRequest {
|
|
240
242
|
optional string collection_title = 1;
|
|
@@ -242,12 +244,14 @@ message CollectionSearchRequest {
|
|
|
242
244
|
repeated int32 category_ids = 3;
|
|
243
245
|
repeated int32 ids = 4;
|
|
244
246
|
optional string locale = 5;
|
|
247
|
+
repeated string slugs = 6;
|
|
245
248
|
}
|
|
246
249
|
message TagSearchRequest {
|
|
247
250
|
optional string tag_title = 1;
|
|
248
251
|
optional int32 is_active = 2;
|
|
249
252
|
repeated int32 ids = 3;
|
|
250
253
|
optional string locale = 4;
|
|
254
|
+
repeated string slugs = 5;
|
|
251
255
|
}
|
|
252
256
|
message ItemsBunchRequest {
|
|
253
257
|
repeated int32 ids = 1;
|
package/game/game_pb.js
CHANGED
|
@@ -7799,7 +7799,7 @@ proto.game.TournamentGamesPreviewItem.prototype.hasTotal = function() {
|
|
|
7799
7799
|
* @private {!Array<number>}
|
|
7800
7800
|
* @const
|
|
7801
7801
|
*/
|
|
7802
|
-
proto.game.ProviderSearchRequest.repeatedFields_ = [4];
|
|
7802
|
+
proto.game.ProviderSearchRequest.repeatedFields_ = [4,6];
|
|
7803
7803
|
|
|
7804
7804
|
|
|
7805
7805
|
|
|
@@ -7836,7 +7836,8 @@ proto.game.ProviderSearchRequest.toObject = function(includeInstance, msg) {
|
|
|
7836
7836
|
isActive: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
7837
7837
|
geo: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
7838
7838
|
idsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
7839
|
-
locale: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
7839
|
+
locale: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
7840
|
+
slugsList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f
|
|
7840
7841
|
};
|
|
7841
7842
|
|
|
7842
7843
|
if (includeInstance) {
|
|
@@ -7895,6 +7896,10 @@ proto.game.ProviderSearchRequest.deserializeBinaryFromReader = function(msg, rea
|
|
|
7895
7896
|
var value = /** @type {string} */ (reader.readString());
|
|
7896
7897
|
msg.setLocale(value);
|
|
7897
7898
|
break;
|
|
7899
|
+
case 6:
|
|
7900
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7901
|
+
msg.addSlugs(value);
|
|
7902
|
+
break;
|
|
7898
7903
|
default:
|
|
7899
7904
|
reader.skipField();
|
|
7900
7905
|
break;
|
|
@@ -7959,6 +7964,13 @@ proto.game.ProviderSearchRequest.serializeBinaryToWriter = function(message, wri
|
|
|
7959
7964
|
f
|
|
7960
7965
|
);
|
|
7961
7966
|
}
|
|
7967
|
+
f = message.getSlugsList();
|
|
7968
|
+
if (f.length > 0) {
|
|
7969
|
+
writer.writeRepeatedString(
|
|
7970
|
+
6,
|
|
7971
|
+
f
|
|
7972
|
+
);
|
|
7973
|
+
}
|
|
7962
7974
|
};
|
|
7963
7975
|
|
|
7964
7976
|
|
|
@@ -8143,13 +8155,50 @@ proto.game.ProviderSearchRequest.prototype.hasLocale = function() {
|
|
|
8143
8155
|
};
|
|
8144
8156
|
|
|
8145
8157
|
|
|
8158
|
+
/**
|
|
8159
|
+
* repeated string slugs = 6;
|
|
8160
|
+
* @return {!Array<string>}
|
|
8161
|
+
*/
|
|
8162
|
+
proto.game.ProviderSearchRequest.prototype.getSlugsList = function() {
|
|
8163
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
|
|
8164
|
+
};
|
|
8165
|
+
|
|
8166
|
+
|
|
8167
|
+
/**
|
|
8168
|
+
* @param {!Array<string>} value
|
|
8169
|
+
* @return {!proto.game.ProviderSearchRequest} returns this
|
|
8170
|
+
*/
|
|
8171
|
+
proto.game.ProviderSearchRequest.prototype.setSlugsList = function(value) {
|
|
8172
|
+
return jspb.Message.setField(this, 6, value || []);
|
|
8173
|
+
};
|
|
8174
|
+
|
|
8175
|
+
|
|
8176
|
+
/**
|
|
8177
|
+
* @param {string} value
|
|
8178
|
+
* @param {number=} opt_index
|
|
8179
|
+
* @return {!proto.game.ProviderSearchRequest} returns this
|
|
8180
|
+
*/
|
|
8181
|
+
proto.game.ProviderSearchRequest.prototype.addSlugs = function(value, opt_index) {
|
|
8182
|
+
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
|
|
8183
|
+
};
|
|
8184
|
+
|
|
8185
|
+
|
|
8186
|
+
/**
|
|
8187
|
+
* Clears the list making it empty but non-null.
|
|
8188
|
+
* @return {!proto.game.ProviderSearchRequest} returns this
|
|
8189
|
+
*/
|
|
8190
|
+
proto.game.ProviderSearchRequest.prototype.clearSlugsList = function() {
|
|
8191
|
+
return this.setSlugsList([]);
|
|
8192
|
+
};
|
|
8193
|
+
|
|
8194
|
+
|
|
8146
8195
|
|
|
8147
8196
|
/**
|
|
8148
8197
|
* List of repeated fields within this message type.
|
|
8149
8198
|
* @private {!Array<number>}
|
|
8150
8199
|
* @const
|
|
8151
8200
|
*/
|
|
8152
|
-
proto.game.CategorySearchRequest.repeatedFields_ = [3];
|
|
8201
|
+
proto.game.CategorySearchRequest.repeatedFields_ = [3,5];
|
|
8153
8202
|
|
|
8154
8203
|
|
|
8155
8204
|
|
|
@@ -8185,7 +8234,8 @@ proto.game.CategorySearchRequest.toObject = function(includeInstance, msg) {
|
|
|
8185
8234
|
categoryTitle: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
8186
8235
|
isActive: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
8187
8236
|
idsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
8188
|
-
locale: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
8237
|
+
locale: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
8238
|
+
slugsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f
|
|
8189
8239
|
};
|
|
8190
8240
|
|
|
8191
8241
|
if (includeInstance) {
|
|
@@ -8240,6 +8290,10 @@ proto.game.CategorySearchRequest.deserializeBinaryFromReader = function(msg, rea
|
|
|
8240
8290
|
var value = /** @type {string} */ (reader.readString());
|
|
8241
8291
|
msg.setLocale(value);
|
|
8242
8292
|
break;
|
|
8293
|
+
case 5:
|
|
8294
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8295
|
+
msg.addSlugs(value);
|
|
8296
|
+
break;
|
|
8243
8297
|
default:
|
|
8244
8298
|
reader.skipField();
|
|
8245
8299
|
break;
|
|
@@ -8297,6 +8351,13 @@ proto.game.CategorySearchRequest.serializeBinaryToWriter = function(message, wri
|
|
|
8297
8351
|
f
|
|
8298
8352
|
);
|
|
8299
8353
|
}
|
|
8354
|
+
f = message.getSlugsList();
|
|
8355
|
+
if (f.length > 0) {
|
|
8356
|
+
writer.writeRepeatedString(
|
|
8357
|
+
5,
|
|
8358
|
+
f
|
|
8359
|
+
);
|
|
8360
|
+
}
|
|
8300
8361
|
};
|
|
8301
8362
|
|
|
8302
8363
|
|
|
@@ -8445,13 +8506,50 @@ proto.game.CategorySearchRequest.prototype.hasLocale = function() {
|
|
|
8445
8506
|
};
|
|
8446
8507
|
|
|
8447
8508
|
|
|
8509
|
+
/**
|
|
8510
|
+
* repeated string slugs = 5;
|
|
8511
|
+
* @return {!Array<string>}
|
|
8512
|
+
*/
|
|
8513
|
+
proto.game.CategorySearchRequest.prototype.getSlugsList = function() {
|
|
8514
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
|
|
8515
|
+
};
|
|
8516
|
+
|
|
8517
|
+
|
|
8518
|
+
/**
|
|
8519
|
+
* @param {!Array<string>} value
|
|
8520
|
+
* @return {!proto.game.CategorySearchRequest} returns this
|
|
8521
|
+
*/
|
|
8522
|
+
proto.game.CategorySearchRequest.prototype.setSlugsList = function(value) {
|
|
8523
|
+
return jspb.Message.setField(this, 5, value || []);
|
|
8524
|
+
};
|
|
8525
|
+
|
|
8526
|
+
|
|
8527
|
+
/**
|
|
8528
|
+
* @param {string} value
|
|
8529
|
+
* @param {number=} opt_index
|
|
8530
|
+
* @return {!proto.game.CategorySearchRequest} returns this
|
|
8531
|
+
*/
|
|
8532
|
+
proto.game.CategorySearchRequest.prototype.addSlugs = function(value, opt_index) {
|
|
8533
|
+
return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
|
|
8534
|
+
};
|
|
8535
|
+
|
|
8536
|
+
|
|
8537
|
+
/**
|
|
8538
|
+
* Clears the list making it empty but non-null.
|
|
8539
|
+
* @return {!proto.game.CategorySearchRequest} returns this
|
|
8540
|
+
*/
|
|
8541
|
+
proto.game.CategorySearchRequest.prototype.clearSlugsList = function() {
|
|
8542
|
+
return this.setSlugsList([]);
|
|
8543
|
+
};
|
|
8544
|
+
|
|
8545
|
+
|
|
8448
8546
|
|
|
8449
8547
|
/**
|
|
8450
8548
|
* List of repeated fields within this message type.
|
|
8451
8549
|
* @private {!Array<number>}
|
|
8452
8550
|
* @const
|
|
8453
8551
|
*/
|
|
8454
|
-
proto.game.CollectionSearchRequest.repeatedFields_ = [3,4];
|
|
8552
|
+
proto.game.CollectionSearchRequest.repeatedFields_ = [3,4,6];
|
|
8455
8553
|
|
|
8456
8554
|
|
|
8457
8555
|
|
|
@@ -8488,7 +8586,8 @@ proto.game.CollectionSearchRequest.toObject = function(includeInstance, msg) {
|
|
|
8488
8586
|
isActive: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
8489
8587
|
categoryIdsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
8490
8588
|
idsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
8491
|
-
locale: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
8589
|
+
locale: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
8590
|
+
slugsList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f
|
|
8492
8591
|
};
|
|
8493
8592
|
|
|
8494
8593
|
if (includeInstance) {
|
|
@@ -8549,6 +8648,10 @@ proto.game.CollectionSearchRequest.deserializeBinaryFromReader = function(msg, r
|
|
|
8549
8648
|
var value = /** @type {string} */ (reader.readString());
|
|
8550
8649
|
msg.setLocale(value);
|
|
8551
8650
|
break;
|
|
8651
|
+
case 6:
|
|
8652
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8653
|
+
msg.addSlugs(value);
|
|
8654
|
+
break;
|
|
8552
8655
|
default:
|
|
8553
8656
|
reader.skipField();
|
|
8554
8657
|
break;
|
|
@@ -8613,6 +8716,13 @@ proto.game.CollectionSearchRequest.serializeBinaryToWriter = function(message, w
|
|
|
8613
8716
|
f
|
|
8614
8717
|
);
|
|
8615
8718
|
}
|
|
8719
|
+
f = message.getSlugsList();
|
|
8720
|
+
if (f.length > 0) {
|
|
8721
|
+
writer.writeRepeatedString(
|
|
8722
|
+
6,
|
|
8723
|
+
f
|
|
8724
|
+
);
|
|
8725
|
+
}
|
|
8616
8726
|
};
|
|
8617
8727
|
|
|
8618
8728
|
|
|
@@ -8798,13 +8908,50 @@ proto.game.CollectionSearchRequest.prototype.hasLocale = function() {
|
|
|
8798
8908
|
};
|
|
8799
8909
|
|
|
8800
8910
|
|
|
8911
|
+
/**
|
|
8912
|
+
* repeated string slugs = 6;
|
|
8913
|
+
* @return {!Array<string>}
|
|
8914
|
+
*/
|
|
8915
|
+
proto.game.CollectionSearchRequest.prototype.getSlugsList = function() {
|
|
8916
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
|
|
8917
|
+
};
|
|
8918
|
+
|
|
8919
|
+
|
|
8920
|
+
/**
|
|
8921
|
+
* @param {!Array<string>} value
|
|
8922
|
+
* @return {!proto.game.CollectionSearchRequest} returns this
|
|
8923
|
+
*/
|
|
8924
|
+
proto.game.CollectionSearchRequest.prototype.setSlugsList = function(value) {
|
|
8925
|
+
return jspb.Message.setField(this, 6, value || []);
|
|
8926
|
+
};
|
|
8927
|
+
|
|
8928
|
+
|
|
8929
|
+
/**
|
|
8930
|
+
* @param {string} value
|
|
8931
|
+
* @param {number=} opt_index
|
|
8932
|
+
* @return {!proto.game.CollectionSearchRequest} returns this
|
|
8933
|
+
*/
|
|
8934
|
+
proto.game.CollectionSearchRequest.prototype.addSlugs = function(value, opt_index) {
|
|
8935
|
+
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
|
|
8936
|
+
};
|
|
8937
|
+
|
|
8938
|
+
|
|
8939
|
+
/**
|
|
8940
|
+
* Clears the list making it empty but non-null.
|
|
8941
|
+
* @return {!proto.game.CollectionSearchRequest} returns this
|
|
8942
|
+
*/
|
|
8943
|
+
proto.game.CollectionSearchRequest.prototype.clearSlugsList = function() {
|
|
8944
|
+
return this.setSlugsList([]);
|
|
8945
|
+
};
|
|
8946
|
+
|
|
8947
|
+
|
|
8801
8948
|
|
|
8802
8949
|
/**
|
|
8803
8950
|
* List of repeated fields within this message type.
|
|
8804
8951
|
* @private {!Array<number>}
|
|
8805
8952
|
* @const
|
|
8806
8953
|
*/
|
|
8807
|
-
proto.game.TagSearchRequest.repeatedFields_ = [3];
|
|
8954
|
+
proto.game.TagSearchRequest.repeatedFields_ = [3,5];
|
|
8808
8955
|
|
|
8809
8956
|
|
|
8810
8957
|
|
|
@@ -8840,7 +8987,8 @@ proto.game.TagSearchRequest.toObject = function(includeInstance, msg) {
|
|
|
8840
8987
|
tagTitle: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
8841
8988
|
isActive: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
8842
8989
|
idsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
8843
|
-
locale: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
8990
|
+
locale: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
8991
|
+
slugsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f
|
|
8844
8992
|
};
|
|
8845
8993
|
|
|
8846
8994
|
if (includeInstance) {
|
|
@@ -8895,6 +9043,10 @@ proto.game.TagSearchRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
8895
9043
|
var value = /** @type {string} */ (reader.readString());
|
|
8896
9044
|
msg.setLocale(value);
|
|
8897
9045
|
break;
|
|
9046
|
+
case 5:
|
|
9047
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9048
|
+
msg.addSlugs(value);
|
|
9049
|
+
break;
|
|
8898
9050
|
default:
|
|
8899
9051
|
reader.skipField();
|
|
8900
9052
|
break;
|
|
@@ -8952,6 +9104,13 @@ proto.game.TagSearchRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
8952
9104
|
f
|
|
8953
9105
|
);
|
|
8954
9106
|
}
|
|
9107
|
+
f = message.getSlugsList();
|
|
9108
|
+
if (f.length > 0) {
|
|
9109
|
+
writer.writeRepeatedString(
|
|
9110
|
+
5,
|
|
9111
|
+
f
|
|
9112
|
+
);
|
|
9113
|
+
}
|
|
8955
9114
|
};
|
|
8956
9115
|
|
|
8957
9116
|
|
|
@@ -9100,6 +9259,43 @@ proto.game.TagSearchRequest.prototype.hasLocale = function() {
|
|
|
9100
9259
|
};
|
|
9101
9260
|
|
|
9102
9261
|
|
|
9262
|
+
/**
|
|
9263
|
+
* repeated string slugs = 5;
|
|
9264
|
+
* @return {!Array<string>}
|
|
9265
|
+
*/
|
|
9266
|
+
proto.game.TagSearchRequest.prototype.getSlugsList = function() {
|
|
9267
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
|
|
9268
|
+
};
|
|
9269
|
+
|
|
9270
|
+
|
|
9271
|
+
/**
|
|
9272
|
+
* @param {!Array<string>} value
|
|
9273
|
+
* @return {!proto.game.TagSearchRequest} returns this
|
|
9274
|
+
*/
|
|
9275
|
+
proto.game.TagSearchRequest.prototype.setSlugsList = function(value) {
|
|
9276
|
+
return jspb.Message.setField(this, 5, value || []);
|
|
9277
|
+
};
|
|
9278
|
+
|
|
9279
|
+
|
|
9280
|
+
/**
|
|
9281
|
+
* @param {string} value
|
|
9282
|
+
* @param {number=} opt_index
|
|
9283
|
+
* @return {!proto.game.TagSearchRequest} returns this
|
|
9284
|
+
*/
|
|
9285
|
+
proto.game.TagSearchRequest.prototype.addSlugs = function(value, opt_index) {
|
|
9286
|
+
return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
|
|
9287
|
+
};
|
|
9288
|
+
|
|
9289
|
+
|
|
9290
|
+
/**
|
|
9291
|
+
* Clears the list making it empty but non-null.
|
|
9292
|
+
* @return {!proto.game.TagSearchRequest} returns this
|
|
9293
|
+
*/
|
|
9294
|
+
proto.game.TagSearchRequest.prototype.clearSlugsList = function() {
|
|
9295
|
+
return this.setSlugsList([]);
|
|
9296
|
+
};
|
|
9297
|
+
|
|
9298
|
+
|
|
9103
9299
|
|
|
9104
9300
|
/**
|
|
9105
9301
|
* List of repeated fields within this message type.
|