protobuf-platform 1.2.407 → 1.2.408

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.407",
3
+ "version": "1.2.408",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -136,6 +136,7 @@ message BonusMaskItemRequest {
136
136
  optional string free_spins_spin_amount = 14;
137
137
  optional int32 free_spins_total_amount = 15;
138
138
  optional string free_spins_max_win = 16;
139
+ optional string deposit_static_amount = 17;
139
140
  }
140
141
  message BonusMaskItem {
141
142
  optional int32 id = 1;
@@ -159,6 +160,7 @@ message BonusMaskItem {
159
160
  optional string free_spins_max_win = 18;
160
161
  optional string image = 19;
161
162
  optional string mobile_image = 20;
163
+ optional string deposit_static_amount = 21;
162
164
  }
163
165
  message BonusMaskResponse {
164
166
  BonusMaskItem data = 1;
@@ -4886,7 +4886,8 @@ proto.promocode.BonusMaskItemRequest.toObject = function(includeInstance, msg) {
4886
4886
  freeSpinsGameId: jspb.Message.getFieldWithDefault(msg, 13, 0),
4887
4887
  freeSpinsSpinAmount: jspb.Message.getFieldWithDefault(msg, 14, ""),
4888
4888
  freeSpinsTotalAmount: jspb.Message.getFieldWithDefault(msg, 15, 0),
4889
- freeSpinsMaxWin: jspb.Message.getFieldWithDefault(msg, 16, "")
4889
+ freeSpinsMaxWin: jspb.Message.getFieldWithDefault(msg, 16, ""),
4890
+ depositStaticAmount: jspb.Message.getFieldWithDefault(msg, 17, "")
4890
4891
  };
4891
4892
 
4892
4893
  if (includeInstance) {
@@ -4987,6 +4988,10 @@ proto.promocode.BonusMaskItemRequest.deserializeBinaryFromReader = function(msg,
4987
4988
  var value = /** @type {string} */ (reader.readString());
4988
4989
  msg.setFreeSpinsMaxWin(value);
4989
4990
  break;
4991
+ case 17:
4992
+ var value = /** @type {string} */ (reader.readString());
4993
+ msg.setDepositStaticAmount(value);
4994
+ break;
4990
4995
  default:
4991
4996
  reader.skipField();
4992
4997
  break;
@@ -5128,6 +5133,13 @@ proto.promocode.BonusMaskItemRequest.serializeBinaryToWriter = function(message,
5128
5133
  f
5129
5134
  );
5130
5135
  }
5136
+ f = /** @type {string} */ (jspb.Message.getField(message, 17));
5137
+ if (f != null) {
5138
+ writer.writeString(
5139
+ 17,
5140
+ f
5141
+ );
5142
+ }
5131
5143
  };
5132
5144
 
5133
5145
 
@@ -5707,6 +5719,42 @@ proto.promocode.BonusMaskItemRequest.prototype.hasFreeSpinsMaxWin = function() {
5707
5719
  };
5708
5720
 
5709
5721
 
5722
+ /**
5723
+ * optional string deposit_static_amount = 17;
5724
+ * @return {string}
5725
+ */
5726
+ proto.promocode.BonusMaskItemRequest.prototype.getDepositStaticAmount = function() {
5727
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
5728
+ };
5729
+
5730
+
5731
+ /**
5732
+ * @param {string} value
5733
+ * @return {!proto.promocode.BonusMaskItemRequest} returns this
5734
+ */
5735
+ proto.promocode.BonusMaskItemRequest.prototype.setDepositStaticAmount = function(value) {
5736
+ return jspb.Message.setField(this, 17, value);
5737
+ };
5738
+
5739
+
5740
+ /**
5741
+ * Clears the field making it undefined.
5742
+ * @return {!proto.promocode.BonusMaskItemRequest} returns this
5743
+ */
5744
+ proto.promocode.BonusMaskItemRequest.prototype.clearDepositStaticAmount = function() {
5745
+ return jspb.Message.setField(this, 17, undefined);
5746
+ };
5747
+
5748
+
5749
+ /**
5750
+ * Returns whether this field is set.
5751
+ * @return {boolean}
5752
+ */
5753
+ proto.promocode.BonusMaskItemRequest.prototype.hasDepositStaticAmount = function() {
5754
+ return jspb.Message.getField(this, 17) != null;
5755
+ };
5756
+
5757
+
5710
5758
 
5711
5759
 
5712
5760
 
@@ -5758,7 +5806,8 @@ proto.promocode.BonusMaskItem.toObject = function(includeInstance, msg) {
5758
5806
  freeSpinsTotalAmount: jspb.Message.getFieldWithDefault(msg, 17, 0),
5759
5807
  freeSpinsMaxWin: jspb.Message.getFieldWithDefault(msg, 18, ""),
5760
5808
  image: jspb.Message.getFieldWithDefault(msg, 19, ""),
5761
- mobileImage: jspb.Message.getFieldWithDefault(msg, 20, "")
5809
+ mobileImage: jspb.Message.getFieldWithDefault(msg, 20, ""),
5810
+ depositStaticAmount: jspb.Message.getFieldWithDefault(msg, 21, "")
5762
5811
  };
5763
5812
 
5764
5813
  if (includeInstance) {
@@ -5875,6 +5924,10 @@ proto.promocode.BonusMaskItem.deserializeBinaryFromReader = function(msg, reader
5875
5924
  var value = /** @type {string} */ (reader.readString());
5876
5925
  msg.setMobileImage(value);
5877
5926
  break;
5927
+ case 21:
5928
+ var value = /** @type {string} */ (reader.readString());
5929
+ msg.setDepositStaticAmount(value);
5930
+ break;
5878
5931
  default:
5879
5932
  reader.skipField();
5880
5933
  break;
@@ -6044,6 +6097,13 @@ proto.promocode.BonusMaskItem.serializeBinaryToWriter = function(message, writer
6044
6097
  f
6045
6098
  );
6046
6099
  }
6100
+ f = /** @type {string} */ (jspb.Message.getField(message, 21));
6101
+ if (f != null) {
6102
+ writer.writeString(
6103
+ 21,
6104
+ f
6105
+ );
6106
+ }
6047
6107
  };
6048
6108
 
6049
6109
 
@@ -6767,6 +6827,42 @@ proto.promocode.BonusMaskItem.prototype.hasMobileImage = function() {
6767
6827
  };
6768
6828
 
6769
6829
 
6830
+ /**
6831
+ * optional string deposit_static_amount = 21;
6832
+ * @return {string}
6833
+ */
6834
+ proto.promocode.BonusMaskItem.prototype.getDepositStaticAmount = function() {
6835
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 21, ""));
6836
+ };
6837
+
6838
+
6839
+ /**
6840
+ * @param {string} value
6841
+ * @return {!proto.promocode.BonusMaskItem} returns this
6842
+ */
6843
+ proto.promocode.BonusMaskItem.prototype.setDepositStaticAmount = function(value) {
6844
+ return jspb.Message.setField(this, 21, value);
6845
+ };
6846
+
6847
+
6848
+ /**
6849
+ * Clears the field making it undefined.
6850
+ * @return {!proto.promocode.BonusMaskItem} returns this
6851
+ */
6852
+ proto.promocode.BonusMaskItem.prototype.clearDepositStaticAmount = function() {
6853
+ return jspb.Message.setField(this, 21, undefined);
6854
+ };
6855
+
6856
+
6857
+ /**
6858
+ * Returns whether this field is set.
6859
+ * @return {boolean}
6860
+ */
6861
+ proto.promocode.BonusMaskItem.prototype.hasDepositStaticAmount = function() {
6862
+ return jspb.Message.getField(this, 21) != null;
6863
+ };
6864
+
6865
+
6770
6866
 
6771
6867
 
6772
6868