protobuf-platform 1.2.67 → 1.2.69
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 +7 -5
- package/cms/cms_pb.js +130 -34
- package/game/game.proto +2 -1
- package/game/game_pb.js +56 -8
- package/package.json +1 -1
package/cms/cms.proto
CHANGED
|
@@ -203,11 +203,13 @@ message UserBannerItem {
|
|
|
203
203
|
optional string title = 1;
|
|
204
204
|
optional string content = 2;
|
|
205
205
|
optional string image_big = 3;
|
|
206
|
-
optional string
|
|
207
|
-
optional string
|
|
208
|
-
optional string
|
|
209
|
-
optional string
|
|
210
|
-
optional string
|
|
206
|
+
optional string image_big_cdn = 4;
|
|
207
|
+
optional string image_small = 5;
|
|
208
|
+
optional string image_small_cdn = 6;
|
|
209
|
+
optional string anchor = 7;
|
|
210
|
+
optional string cta_type = 8;
|
|
211
|
+
optional string cta_text = 9;
|
|
212
|
+
optional string note = 10;
|
|
211
213
|
}
|
|
212
214
|
message UserBannerGroupResponse {
|
|
213
215
|
repeated UserBannerItem items = 1;
|
package/cms/cms_pb.js
CHANGED
|
@@ -8372,11 +8372,13 @@ proto.cms.UserBannerItem.toObject = function(includeInstance, msg) {
|
|
|
8372
8372
|
title: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
8373
8373
|
content: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
8374
8374
|
imageBig: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
8375
|
-
|
|
8376
|
-
|
|
8377
|
-
|
|
8378
|
-
|
|
8379
|
-
|
|
8375
|
+
imageBigCdn: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
8376
|
+
imageSmall: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
8377
|
+
imageSmallCdn: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
8378
|
+
anchor: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
8379
|
+
ctaType: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
8380
|
+
ctaText: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
8381
|
+
note: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
8380
8382
|
};
|
|
8381
8383
|
|
|
8382
8384
|
if (includeInstance) {
|
|
@@ -8427,21 +8429,29 @@ proto.cms.UserBannerItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
8427
8429
|
break;
|
|
8428
8430
|
case 4:
|
|
8429
8431
|
var value = /** @type {string} */ (reader.readString());
|
|
8430
|
-
msg.
|
|
8432
|
+
msg.setImageBigCdn(value);
|
|
8431
8433
|
break;
|
|
8432
8434
|
case 5:
|
|
8433
8435
|
var value = /** @type {string} */ (reader.readString());
|
|
8434
|
-
msg.
|
|
8436
|
+
msg.setImageSmall(value);
|
|
8435
8437
|
break;
|
|
8436
8438
|
case 6:
|
|
8437
8439
|
var value = /** @type {string} */ (reader.readString());
|
|
8438
|
-
msg.
|
|
8440
|
+
msg.setImageSmallCdn(value);
|
|
8439
8441
|
break;
|
|
8440
8442
|
case 7:
|
|
8441
8443
|
var value = /** @type {string} */ (reader.readString());
|
|
8442
|
-
msg.
|
|
8444
|
+
msg.setAnchor(value);
|
|
8443
8445
|
break;
|
|
8444
8446
|
case 8:
|
|
8447
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8448
|
+
msg.setCtaType(value);
|
|
8449
|
+
break;
|
|
8450
|
+
case 9:
|
|
8451
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8452
|
+
msg.setCtaText(value);
|
|
8453
|
+
break;
|
|
8454
|
+
case 10:
|
|
8445
8455
|
var value = /** @type {string} */ (reader.readString());
|
|
8446
8456
|
msg.setNote(value);
|
|
8447
8457
|
break;
|
|
@@ -8530,6 +8540,20 @@ proto.cms.UserBannerItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
8530
8540
|
f
|
|
8531
8541
|
);
|
|
8532
8542
|
}
|
|
8543
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
8544
|
+
if (f != null) {
|
|
8545
|
+
writer.writeString(
|
|
8546
|
+
9,
|
|
8547
|
+
f
|
|
8548
|
+
);
|
|
8549
|
+
}
|
|
8550
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 10));
|
|
8551
|
+
if (f != null) {
|
|
8552
|
+
writer.writeString(
|
|
8553
|
+
10,
|
|
8554
|
+
f
|
|
8555
|
+
);
|
|
8556
|
+
}
|
|
8533
8557
|
};
|
|
8534
8558
|
|
|
8535
8559
|
|
|
@@ -8642,10 +8666,10 @@ proto.cms.UserBannerItem.prototype.hasImageBig = function() {
|
|
|
8642
8666
|
|
|
8643
8667
|
|
|
8644
8668
|
/**
|
|
8645
|
-
* optional string
|
|
8669
|
+
* optional string image_big_cdn = 4;
|
|
8646
8670
|
* @return {string}
|
|
8647
8671
|
*/
|
|
8648
|
-
proto.cms.UserBannerItem.prototype.
|
|
8672
|
+
proto.cms.UserBannerItem.prototype.getImageBigCdn = function() {
|
|
8649
8673
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
8650
8674
|
};
|
|
8651
8675
|
|
|
@@ -8654,7 +8678,7 @@ proto.cms.UserBannerItem.prototype.getImageSmall = function() {
|
|
|
8654
8678
|
* @param {string} value
|
|
8655
8679
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8656
8680
|
*/
|
|
8657
|
-
proto.cms.UserBannerItem.prototype.
|
|
8681
|
+
proto.cms.UserBannerItem.prototype.setImageBigCdn = function(value) {
|
|
8658
8682
|
return jspb.Message.setField(this, 4, value);
|
|
8659
8683
|
};
|
|
8660
8684
|
|
|
@@ -8663,7 +8687,7 @@ proto.cms.UserBannerItem.prototype.setImageSmall = function(value) {
|
|
|
8663
8687
|
* Clears the field making it undefined.
|
|
8664
8688
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8665
8689
|
*/
|
|
8666
|
-
proto.cms.UserBannerItem.prototype.
|
|
8690
|
+
proto.cms.UserBannerItem.prototype.clearImageBigCdn = function() {
|
|
8667
8691
|
return jspb.Message.setField(this, 4, undefined);
|
|
8668
8692
|
};
|
|
8669
8693
|
|
|
@@ -8672,16 +8696,16 @@ proto.cms.UserBannerItem.prototype.clearImageSmall = function() {
|
|
|
8672
8696
|
* Returns whether this field is set.
|
|
8673
8697
|
* @return {boolean}
|
|
8674
8698
|
*/
|
|
8675
|
-
proto.cms.UserBannerItem.prototype.
|
|
8699
|
+
proto.cms.UserBannerItem.prototype.hasImageBigCdn = function() {
|
|
8676
8700
|
return jspb.Message.getField(this, 4) != null;
|
|
8677
8701
|
};
|
|
8678
8702
|
|
|
8679
8703
|
|
|
8680
8704
|
/**
|
|
8681
|
-
* optional string
|
|
8705
|
+
* optional string image_small = 5;
|
|
8682
8706
|
* @return {string}
|
|
8683
8707
|
*/
|
|
8684
|
-
proto.cms.UserBannerItem.prototype.
|
|
8708
|
+
proto.cms.UserBannerItem.prototype.getImageSmall = function() {
|
|
8685
8709
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
8686
8710
|
};
|
|
8687
8711
|
|
|
@@ -8690,7 +8714,7 @@ proto.cms.UserBannerItem.prototype.getAnchor = function() {
|
|
|
8690
8714
|
* @param {string} value
|
|
8691
8715
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8692
8716
|
*/
|
|
8693
|
-
proto.cms.UserBannerItem.prototype.
|
|
8717
|
+
proto.cms.UserBannerItem.prototype.setImageSmall = function(value) {
|
|
8694
8718
|
return jspb.Message.setField(this, 5, value);
|
|
8695
8719
|
};
|
|
8696
8720
|
|
|
@@ -8699,7 +8723,7 @@ proto.cms.UserBannerItem.prototype.setAnchor = function(value) {
|
|
|
8699
8723
|
* Clears the field making it undefined.
|
|
8700
8724
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8701
8725
|
*/
|
|
8702
|
-
proto.cms.UserBannerItem.prototype.
|
|
8726
|
+
proto.cms.UserBannerItem.prototype.clearImageSmall = function() {
|
|
8703
8727
|
return jspb.Message.setField(this, 5, undefined);
|
|
8704
8728
|
};
|
|
8705
8729
|
|
|
@@ -8708,16 +8732,16 @@ proto.cms.UserBannerItem.prototype.clearAnchor = function() {
|
|
|
8708
8732
|
* Returns whether this field is set.
|
|
8709
8733
|
* @return {boolean}
|
|
8710
8734
|
*/
|
|
8711
|
-
proto.cms.UserBannerItem.prototype.
|
|
8735
|
+
proto.cms.UserBannerItem.prototype.hasImageSmall = function() {
|
|
8712
8736
|
return jspb.Message.getField(this, 5) != null;
|
|
8713
8737
|
};
|
|
8714
8738
|
|
|
8715
8739
|
|
|
8716
8740
|
/**
|
|
8717
|
-
* optional string
|
|
8741
|
+
* optional string image_small_cdn = 6;
|
|
8718
8742
|
* @return {string}
|
|
8719
8743
|
*/
|
|
8720
|
-
proto.cms.UserBannerItem.prototype.
|
|
8744
|
+
proto.cms.UserBannerItem.prototype.getImageSmallCdn = function() {
|
|
8721
8745
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
8722
8746
|
};
|
|
8723
8747
|
|
|
@@ -8726,7 +8750,7 @@ proto.cms.UserBannerItem.prototype.getCtaType = function() {
|
|
|
8726
8750
|
* @param {string} value
|
|
8727
8751
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8728
8752
|
*/
|
|
8729
|
-
proto.cms.UserBannerItem.prototype.
|
|
8753
|
+
proto.cms.UserBannerItem.prototype.setImageSmallCdn = function(value) {
|
|
8730
8754
|
return jspb.Message.setField(this, 6, value);
|
|
8731
8755
|
};
|
|
8732
8756
|
|
|
@@ -8735,7 +8759,7 @@ proto.cms.UserBannerItem.prototype.setCtaType = function(value) {
|
|
|
8735
8759
|
* Clears the field making it undefined.
|
|
8736
8760
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8737
8761
|
*/
|
|
8738
|
-
proto.cms.UserBannerItem.prototype.
|
|
8762
|
+
proto.cms.UserBannerItem.prototype.clearImageSmallCdn = function() {
|
|
8739
8763
|
return jspb.Message.setField(this, 6, undefined);
|
|
8740
8764
|
};
|
|
8741
8765
|
|
|
@@ -8744,16 +8768,16 @@ proto.cms.UserBannerItem.prototype.clearCtaType = function() {
|
|
|
8744
8768
|
* Returns whether this field is set.
|
|
8745
8769
|
* @return {boolean}
|
|
8746
8770
|
*/
|
|
8747
|
-
proto.cms.UserBannerItem.prototype.
|
|
8771
|
+
proto.cms.UserBannerItem.prototype.hasImageSmallCdn = function() {
|
|
8748
8772
|
return jspb.Message.getField(this, 6) != null;
|
|
8749
8773
|
};
|
|
8750
8774
|
|
|
8751
8775
|
|
|
8752
8776
|
/**
|
|
8753
|
-
* optional string
|
|
8777
|
+
* optional string anchor = 7;
|
|
8754
8778
|
* @return {string}
|
|
8755
8779
|
*/
|
|
8756
|
-
proto.cms.UserBannerItem.prototype.
|
|
8780
|
+
proto.cms.UserBannerItem.prototype.getAnchor = function() {
|
|
8757
8781
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
8758
8782
|
};
|
|
8759
8783
|
|
|
@@ -8762,7 +8786,7 @@ proto.cms.UserBannerItem.prototype.getCtaText = function() {
|
|
|
8762
8786
|
* @param {string} value
|
|
8763
8787
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8764
8788
|
*/
|
|
8765
|
-
proto.cms.UserBannerItem.prototype.
|
|
8789
|
+
proto.cms.UserBannerItem.prototype.setAnchor = function(value) {
|
|
8766
8790
|
return jspb.Message.setField(this, 7, value);
|
|
8767
8791
|
};
|
|
8768
8792
|
|
|
@@ -8771,7 +8795,7 @@ proto.cms.UserBannerItem.prototype.setCtaText = function(value) {
|
|
|
8771
8795
|
* Clears the field making it undefined.
|
|
8772
8796
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8773
8797
|
*/
|
|
8774
|
-
proto.cms.UserBannerItem.prototype.
|
|
8798
|
+
proto.cms.UserBannerItem.prototype.clearAnchor = function() {
|
|
8775
8799
|
return jspb.Message.setField(this, 7, undefined);
|
|
8776
8800
|
};
|
|
8777
8801
|
|
|
@@ -8780,16 +8804,16 @@ proto.cms.UserBannerItem.prototype.clearCtaText = function() {
|
|
|
8780
8804
|
* Returns whether this field is set.
|
|
8781
8805
|
* @return {boolean}
|
|
8782
8806
|
*/
|
|
8783
|
-
proto.cms.UserBannerItem.prototype.
|
|
8807
|
+
proto.cms.UserBannerItem.prototype.hasAnchor = function() {
|
|
8784
8808
|
return jspb.Message.getField(this, 7) != null;
|
|
8785
8809
|
};
|
|
8786
8810
|
|
|
8787
8811
|
|
|
8788
8812
|
/**
|
|
8789
|
-
* optional string
|
|
8813
|
+
* optional string cta_type = 8;
|
|
8790
8814
|
* @return {string}
|
|
8791
8815
|
*/
|
|
8792
|
-
proto.cms.UserBannerItem.prototype.
|
|
8816
|
+
proto.cms.UserBannerItem.prototype.getCtaType = function() {
|
|
8793
8817
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
8794
8818
|
};
|
|
8795
8819
|
|
|
@@ -8798,7 +8822,7 @@ proto.cms.UserBannerItem.prototype.getNote = function() {
|
|
|
8798
8822
|
* @param {string} value
|
|
8799
8823
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8800
8824
|
*/
|
|
8801
|
-
proto.cms.UserBannerItem.prototype.
|
|
8825
|
+
proto.cms.UserBannerItem.prototype.setCtaType = function(value) {
|
|
8802
8826
|
return jspb.Message.setField(this, 8, value);
|
|
8803
8827
|
};
|
|
8804
8828
|
|
|
@@ -8807,7 +8831,7 @@ proto.cms.UserBannerItem.prototype.setNote = function(value) {
|
|
|
8807
8831
|
* Clears the field making it undefined.
|
|
8808
8832
|
* @return {!proto.cms.UserBannerItem} returns this
|
|
8809
8833
|
*/
|
|
8810
|
-
proto.cms.UserBannerItem.prototype.
|
|
8834
|
+
proto.cms.UserBannerItem.prototype.clearCtaType = function() {
|
|
8811
8835
|
return jspb.Message.setField(this, 8, undefined);
|
|
8812
8836
|
};
|
|
8813
8837
|
|
|
@@ -8816,11 +8840,83 @@ proto.cms.UserBannerItem.prototype.clearNote = function() {
|
|
|
8816
8840
|
* Returns whether this field is set.
|
|
8817
8841
|
* @return {boolean}
|
|
8818
8842
|
*/
|
|
8819
|
-
proto.cms.UserBannerItem.prototype.
|
|
8843
|
+
proto.cms.UserBannerItem.prototype.hasCtaType = function() {
|
|
8820
8844
|
return jspb.Message.getField(this, 8) != null;
|
|
8821
8845
|
};
|
|
8822
8846
|
|
|
8823
8847
|
|
|
8848
|
+
/**
|
|
8849
|
+
* optional string cta_text = 9;
|
|
8850
|
+
* @return {string}
|
|
8851
|
+
*/
|
|
8852
|
+
proto.cms.UserBannerItem.prototype.getCtaText = function() {
|
|
8853
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
8854
|
+
};
|
|
8855
|
+
|
|
8856
|
+
|
|
8857
|
+
/**
|
|
8858
|
+
* @param {string} value
|
|
8859
|
+
* @return {!proto.cms.UserBannerItem} returns this
|
|
8860
|
+
*/
|
|
8861
|
+
proto.cms.UserBannerItem.prototype.setCtaText = function(value) {
|
|
8862
|
+
return jspb.Message.setField(this, 9, value);
|
|
8863
|
+
};
|
|
8864
|
+
|
|
8865
|
+
|
|
8866
|
+
/**
|
|
8867
|
+
* Clears the field making it undefined.
|
|
8868
|
+
* @return {!proto.cms.UserBannerItem} returns this
|
|
8869
|
+
*/
|
|
8870
|
+
proto.cms.UserBannerItem.prototype.clearCtaText = function() {
|
|
8871
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
8872
|
+
};
|
|
8873
|
+
|
|
8874
|
+
|
|
8875
|
+
/**
|
|
8876
|
+
* Returns whether this field is set.
|
|
8877
|
+
* @return {boolean}
|
|
8878
|
+
*/
|
|
8879
|
+
proto.cms.UserBannerItem.prototype.hasCtaText = function() {
|
|
8880
|
+
return jspb.Message.getField(this, 9) != null;
|
|
8881
|
+
};
|
|
8882
|
+
|
|
8883
|
+
|
|
8884
|
+
/**
|
|
8885
|
+
* optional string note = 10;
|
|
8886
|
+
* @return {string}
|
|
8887
|
+
*/
|
|
8888
|
+
proto.cms.UserBannerItem.prototype.getNote = function() {
|
|
8889
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
8890
|
+
};
|
|
8891
|
+
|
|
8892
|
+
|
|
8893
|
+
/**
|
|
8894
|
+
* @param {string} value
|
|
8895
|
+
* @return {!proto.cms.UserBannerItem} returns this
|
|
8896
|
+
*/
|
|
8897
|
+
proto.cms.UserBannerItem.prototype.setNote = function(value) {
|
|
8898
|
+
return jspb.Message.setField(this, 10, value);
|
|
8899
|
+
};
|
|
8900
|
+
|
|
8901
|
+
|
|
8902
|
+
/**
|
|
8903
|
+
* Clears the field making it undefined.
|
|
8904
|
+
* @return {!proto.cms.UserBannerItem} returns this
|
|
8905
|
+
*/
|
|
8906
|
+
proto.cms.UserBannerItem.prototype.clearNote = function() {
|
|
8907
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
8908
|
+
};
|
|
8909
|
+
|
|
8910
|
+
|
|
8911
|
+
/**
|
|
8912
|
+
* Returns whether this field is set.
|
|
8913
|
+
* @return {boolean}
|
|
8914
|
+
*/
|
|
8915
|
+
proto.cms.UserBannerItem.prototype.hasNote = function() {
|
|
8916
|
+
return jspb.Message.getField(this, 10) != null;
|
|
8917
|
+
};
|
|
8918
|
+
|
|
8919
|
+
|
|
8824
8920
|
|
|
8825
8921
|
/**
|
|
8826
8922
|
* List of repeated fields within this message type.
|
package/game/game.proto
CHANGED
|
@@ -328,7 +328,8 @@ message ProviderItem {
|
|
|
328
328
|
optional string description = 4;
|
|
329
329
|
optional int32 is_active = 5;
|
|
330
330
|
optional string image = 6;
|
|
331
|
-
optional
|
|
331
|
+
optional string image_cdn = 7;
|
|
332
|
+
optional int32 count_of_games = 8;
|
|
332
333
|
}
|
|
333
334
|
//Provider CRUD | Requests
|
|
334
335
|
message ProviderRequest {
|
package/game/game_pb.js
CHANGED
|
@@ -12252,7 +12252,8 @@ proto.game.ProviderItem.toObject = function(includeInstance, msg) {
|
|
|
12252
12252
|
description: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
12253
12253
|
isActive: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
12254
12254
|
image: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
12255
|
-
|
|
12255
|
+
imageCdn: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
12256
|
+
countOfGames: jspb.Message.getFieldWithDefault(msg, 8, 0)
|
|
12256
12257
|
};
|
|
12257
12258
|
|
|
12258
12259
|
if (includeInstance) {
|
|
@@ -12314,6 +12315,10 @@ proto.game.ProviderItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
12314
12315
|
msg.setImage(value);
|
|
12315
12316
|
break;
|
|
12316
12317
|
case 7:
|
|
12318
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12319
|
+
msg.setImageCdn(value);
|
|
12320
|
+
break;
|
|
12321
|
+
case 8:
|
|
12317
12322
|
var value = /** @type {number} */ (reader.readInt32());
|
|
12318
12323
|
msg.setCountOfGames(value);
|
|
12319
12324
|
break;
|
|
@@ -12388,13 +12393,20 @@ proto.game.ProviderItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
12388
12393
|
f
|
|
12389
12394
|
);
|
|
12390
12395
|
}
|
|
12391
|
-
f = /** @type {
|
|
12396
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
12392
12397
|
if (f != null) {
|
|
12393
|
-
writer.
|
|
12398
|
+
writer.writeString(
|
|
12394
12399
|
7,
|
|
12395
12400
|
f
|
|
12396
12401
|
);
|
|
12397
12402
|
}
|
|
12403
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 8));
|
|
12404
|
+
if (f != null) {
|
|
12405
|
+
writer.writeInt32(
|
|
12406
|
+
8,
|
|
12407
|
+
f
|
|
12408
|
+
);
|
|
12409
|
+
}
|
|
12398
12410
|
};
|
|
12399
12411
|
|
|
12400
12412
|
|
|
@@ -12615,11 +12627,47 @@ proto.game.ProviderItem.prototype.hasImage = function() {
|
|
|
12615
12627
|
|
|
12616
12628
|
|
|
12617
12629
|
/**
|
|
12618
|
-
* optional
|
|
12630
|
+
* optional string image_cdn = 7;
|
|
12631
|
+
* @return {string}
|
|
12632
|
+
*/
|
|
12633
|
+
proto.game.ProviderItem.prototype.getImageCdn = function() {
|
|
12634
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
12635
|
+
};
|
|
12636
|
+
|
|
12637
|
+
|
|
12638
|
+
/**
|
|
12639
|
+
* @param {string} value
|
|
12640
|
+
* @return {!proto.game.ProviderItem} returns this
|
|
12641
|
+
*/
|
|
12642
|
+
proto.game.ProviderItem.prototype.setImageCdn = function(value) {
|
|
12643
|
+
return jspb.Message.setField(this, 7, value);
|
|
12644
|
+
};
|
|
12645
|
+
|
|
12646
|
+
|
|
12647
|
+
/**
|
|
12648
|
+
* Clears the field making it undefined.
|
|
12649
|
+
* @return {!proto.game.ProviderItem} returns this
|
|
12650
|
+
*/
|
|
12651
|
+
proto.game.ProviderItem.prototype.clearImageCdn = function() {
|
|
12652
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
12653
|
+
};
|
|
12654
|
+
|
|
12655
|
+
|
|
12656
|
+
/**
|
|
12657
|
+
* Returns whether this field is set.
|
|
12658
|
+
* @return {boolean}
|
|
12659
|
+
*/
|
|
12660
|
+
proto.game.ProviderItem.prototype.hasImageCdn = function() {
|
|
12661
|
+
return jspb.Message.getField(this, 7) != null;
|
|
12662
|
+
};
|
|
12663
|
+
|
|
12664
|
+
|
|
12665
|
+
/**
|
|
12666
|
+
* optional int32 count_of_games = 8;
|
|
12619
12667
|
* @return {number}
|
|
12620
12668
|
*/
|
|
12621
12669
|
proto.game.ProviderItem.prototype.getCountOfGames = function() {
|
|
12622
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
12670
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
12623
12671
|
};
|
|
12624
12672
|
|
|
12625
12673
|
|
|
@@ -12628,7 +12676,7 @@ proto.game.ProviderItem.prototype.getCountOfGames = function() {
|
|
|
12628
12676
|
* @return {!proto.game.ProviderItem} returns this
|
|
12629
12677
|
*/
|
|
12630
12678
|
proto.game.ProviderItem.prototype.setCountOfGames = function(value) {
|
|
12631
|
-
return jspb.Message.setField(this,
|
|
12679
|
+
return jspb.Message.setField(this, 8, value);
|
|
12632
12680
|
};
|
|
12633
12681
|
|
|
12634
12682
|
|
|
@@ -12637,7 +12685,7 @@ proto.game.ProviderItem.prototype.setCountOfGames = function(value) {
|
|
|
12637
12685
|
* @return {!proto.game.ProviderItem} returns this
|
|
12638
12686
|
*/
|
|
12639
12687
|
proto.game.ProviderItem.prototype.clearCountOfGames = function() {
|
|
12640
|
-
return jspb.Message.setField(this,
|
|
12688
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
12641
12689
|
};
|
|
12642
12690
|
|
|
12643
12691
|
|
|
@@ -12646,7 +12694,7 @@ proto.game.ProviderItem.prototype.clearCountOfGames = function() {
|
|
|
12646
12694
|
* @return {boolean}
|
|
12647
12695
|
*/
|
|
12648
12696
|
proto.game.ProviderItem.prototype.hasCountOfGames = function() {
|
|
12649
|
-
return jspb.Message.getField(this,
|
|
12697
|
+
return jspb.Message.getField(this, 8) != null;
|
|
12650
12698
|
};
|
|
12651
12699
|
|
|
12652
12700
|
|