protobuf-platform 1.2.412 → 1.2.414
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/crypto/crypto.proto +111 -0
- package/crypto/crypto_grpc_pb.js +165 -0
- package/crypto/crypto_pb.js +3714 -0
- package/package.json +1 -1
- package/promocode/promocode.proto +3 -0
- package/promocode/promocode_pb.js +145 -1
package/package.json
CHANGED
|
@@ -162,6 +162,9 @@ message BonusMaskItem {
|
|
|
162
162
|
optional string image = 19;
|
|
163
163
|
optional string mobile_image = 20;
|
|
164
164
|
optional string deposit_static_amount = 21;
|
|
165
|
+
optional string free_spins_game_title = 22;
|
|
166
|
+
optional string free_spins_game_slug = 23;
|
|
167
|
+
optional string free_spins_game_image = 24;
|
|
165
168
|
}
|
|
166
169
|
message BonusMaskResponse {
|
|
167
170
|
BonusMaskItem data = 1;
|
|
@@ -5855,7 +5855,10 @@ proto.promocode.BonusMaskItem.toObject = function(includeInstance, msg) {
|
|
|
5855
5855
|
freeSpinsMaxWin: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
5856
5856
|
image: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
5857
5857
|
mobileImage: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
5858
|
-
depositStaticAmount: jspb.Message.getFieldWithDefault(msg, 21, "")
|
|
5858
|
+
depositStaticAmount: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
5859
|
+
freeSpinsGameTitle: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
5860
|
+
freeSpinsGameSlug: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
5861
|
+
freeSpinsGameImage: jspb.Message.getFieldWithDefault(msg, 24, "")
|
|
5859
5862
|
};
|
|
5860
5863
|
|
|
5861
5864
|
if (includeInstance) {
|
|
@@ -5976,6 +5979,18 @@ proto.promocode.BonusMaskItem.deserializeBinaryFromReader = function(msg, reader
|
|
|
5976
5979
|
var value = /** @type {string} */ (reader.readString());
|
|
5977
5980
|
msg.setDepositStaticAmount(value);
|
|
5978
5981
|
break;
|
|
5982
|
+
case 22:
|
|
5983
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5984
|
+
msg.setFreeSpinsGameTitle(value);
|
|
5985
|
+
break;
|
|
5986
|
+
case 23:
|
|
5987
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5988
|
+
msg.setFreeSpinsGameSlug(value);
|
|
5989
|
+
break;
|
|
5990
|
+
case 24:
|
|
5991
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5992
|
+
msg.setFreeSpinsGameImage(value);
|
|
5993
|
+
break;
|
|
5979
5994
|
default:
|
|
5980
5995
|
reader.skipField();
|
|
5981
5996
|
break;
|
|
@@ -6152,6 +6167,27 @@ proto.promocode.BonusMaskItem.serializeBinaryToWriter = function(message, writer
|
|
|
6152
6167
|
f
|
|
6153
6168
|
);
|
|
6154
6169
|
}
|
|
6170
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 22));
|
|
6171
|
+
if (f != null) {
|
|
6172
|
+
writer.writeString(
|
|
6173
|
+
22,
|
|
6174
|
+
f
|
|
6175
|
+
);
|
|
6176
|
+
}
|
|
6177
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 23));
|
|
6178
|
+
if (f != null) {
|
|
6179
|
+
writer.writeString(
|
|
6180
|
+
23,
|
|
6181
|
+
f
|
|
6182
|
+
);
|
|
6183
|
+
}
|
|
6184
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 24));
|
|
6185
|
+
if (f != null) {
|
|
6186
|
+
writer.writeString(
|
|
6187
|
+
24,
|
|
6188
|
+
f
|
|
6189
|
+
);
|
|
6190
|
+
}
|
|
6155
6191
|
};
|
|
6156
6192
|
|
|
6157
6193
|
|
|
@@ -6911,6 +6947,114 @@ proto.promocode.BonusMaskItem.prototype.hasDepositStaticAmount = function() {
|
|
|
6911
6947
|
};
|
|
6912
6948
|
|
|
6913
6949
|
|
|
6950
|
+
/**
|
|
6951
|
+
* optional string free_spins_game_title = 22;
|
|
6952
|
+
* @return {string}
|
|
6953
|
+
*/
|
|
6954
|
+
proto.promocode.BonusMaskItem.prototype.getFreeSpinsGameTitle = function() {
|
|
6955
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 22, ""));
|
|
6956
|
+
};
|
|
6957
|
+
|
|
6958
|
+
|
|
6959
|
+
/**
|
|
6960
|
+
* @param {string} value
|
|
6961
|
+
* @return {!proto.promocode.BonusMaskItem} returns this
|
|
6962
|
+
*/
|
|
6963
|
+
proto.promocode.BonusMaskItem.prototype.setFreeSpinsGameTitle = function(value) {
|
|
6964
|
+
return jspb.Message.setField(this, 22, value);
|
|
6965
|
+
};
|
|
6966
|
+
|
|
6967
|
+
|
|
6968
|
+
/**
|
|
6969
|
+
* Clears the field making it undefined.
|
|
6970
|
+
* @return {!proto.promocode.BonusMaskItem} returns this
|
|
6971
|
+
*/
|
|
6972
|
+
proto.promocode.BonusMaskItem.prototype.clearFreeSpinsGameTitle = function() {
|
|
6973
|
+
return jspb.Message.setField(this, 22, undefined);
|
|
6974
|
+
};
|
|
6975
|
+
|
|
6976
|
+
|
|
6977
|
+
/**
|
|
6978
|
+
* Returns whether this field is set.
|
|
6979
|
+
* @return {boolean}
|
|
6980
|
+
*/
|
|
6981
|
+
proto.promocode.BonusMaskItem.prototype.hasFreeSpinsGameTitle = function() {
|
|
6982
|
+
return jspb.Message.getField(this, 22) != null;
|
|
6983
|
+
};
|
|
6984
|
+
|
|
6985
|
+
|
|
6986
|
+
/**
|
|
6987
|
+
* optional string free_spins_game_slug = 23;
|
|
6988
|
+
* @return {string}
|
|
6989
|
+
*/
|
|
6990
|
+
proto.promocode.BonusMaskItem.prototype.getFreeSpinsGameSlug = function() {
|
|
6991
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 23, ""));
|
|
6992
|
+
};
|
|
6993
|
+
|
|
6994
|
+
|
|
6995
|
+
/**
|
|
6996
|
+
* @param {string} value
|
|
6997
|
+
* @return {!proto.promocode.BonusMaskItem} returns this
|
|
6998
|
+
*/
|
|
6999
|
+
proto.promocode.BonusMaskItem.prototype.setFreeSpinsGameSlug = function(value) {
|
|
7000
|
+
return jspb.Message.setField(this, 23, value);
|
|
7001
|
+
};
|
|
7002
|
+
|
|
7003
|
+
|
|
7004
|
+
/**
|
|
7005
|
+
* Clears the field making it undefined.
|
|
7006
|
+
* @return {!proto.promocode.BonusMaskItem} returns this
|
|
7007
|
+
*/
|
|
7008
|
+
proto.promocode.BonusMaskItem.prototype.clearFreeSpinsGameSlug = function() {
|
|
7009
|
+
return jspb.Message.setField(this, 23, undefined);
|
|
7010
|
+
};
|
|
7011
|
+
|
|
7012
|
+
|
|
7013
|
+
/**
|
|
7014
|
+
* Returns whether this field is set.
|
|
7015
|
+
* @return {boolean}
|
|
7016
|
+
*/
|
|
7017
|
+
proto.promocode.BonusMaskItem.prototype.hasFreeSpinsGameSlug = function() {
|
|
7018
|
+
return jspb.Message.getField(this, 23) != null;
|
|
7019
|
+
};
|
|
7020
|
+
|
|
7021
|
+
|
|
7022
|
+
/**
|
|
7023
|
+
* optional string free_spins_game_image = 24;
|
|
7024
|
+
* @return {string}
|
|
7025
|
+
*/
|
|
7026
|
+
proto.promocode.BonusMaskItem.prototype.getFreeSpinsGameImage = function() {
|
|
7027
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 24, ""));
|
|
7028
|
+
};
|
|
7029
|
+
|
|
7030
|
+
|
|
7031
|
+
/**
|
|
7032
|
+
* @param {string} value
|
|
7033
|
+
* @return {!proto.promocode.BonusMaskItem} returns this
|
|
7034
|
+
*/
|
|
7035
|
+
proto.promocode.BonusMaskItem.prototype.setFreeSpinsGameImage = function(value) {
|
|
7036
|
+
return jspb.Message.setField(this, 24, value);
|
|
7037
|
+
};
|
|
7038
|
+
|
|
7039
|
+
|
|
7040
|
+
/**
|
|
7041
|
+
* Clears the field making it undefined.
|
|
7042
|
+
* @return {!proto.promocode.BonusMaskItem} returns this
|
|
7043
|
+
*/
|
|
7044
|
+
proto.promocode.BonusMaskItem.prototype.clearFreeSpinsGameImage = function() {
|
|
7045
|
+
return jspb.Message.setField(this, 24, undefined);
|
|
7046
|
+
};
|
|
7047
|
+
|
|
7048
|
+
|
|
7049
|
+
/**
|
|
7050
|
+
* Returns whether this field is set.
|
|
7051
|
+
* @return {boolean}
|
|
7052
|
+
*/
|
|
7053
|
+
proto.promocode.BonusMaskItem.prototype.hasFreeSpinsGameImage = function() {
|
|
7054
|
+
return jspb.Message.getField(this, 24) != null;
|
|
7055
|
+
};
|
|
7056
|
+
|
|
7057
|
+
|
|
6914
7058
|
|
|
6915
7059
|
|
|
6916
7060
|
|