protobuf-platform 1.2.390 → 1.2.391
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 +1 -0
- package/bonus/bonus_pb.js +49 -1
- package/package.json +1 -1
package/bonus/bonus.proto
CHANGED
package/bonus/bonus_pb.js
CHANGED
|
@@ -11642,7 +11642,8 @@ proto.bonus.FreeSpinItem.toObject = function(includeInstance, msg) {
|
|
|
11642
11642
|
gameProviderTitle: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
11643
11643
|
gameProviderSlug: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
11644
11644
|
providerCampaignId: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
11645
|
-
providerStatus: jspb.Message.getFieldWithDefault(msg, 14, "")
|
|
11645
|
+
providerStatus: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
11646
|
+
gameImage: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
11646
11647
|
};
|
|
11647
11648
|
|
|
11648
11649
|
if (includeInstance) {
|
|
@@ -11735,6 +11736,10 @@ proto.bonus.FreeSpinItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
11735
11736
|
var value = /** @type {string} */ (reader.readString());
|
|
11736
11737
|
msg.setProviderStatus(value);
|
|
11737
11738
|
break;
|
|
11739
|
+
case 15:
|
|
11740
|
+
var value = /** @type {string} */ (reader.readString());
|
|
11741
|
+
msg.setGameImage(value);
|
|
11742
|
+
break;
|
|
11738
11743
|
default:
|
|
11739
11744
|
reader.skipField();
|
|
11740
11745
|
break;
|
|
@@ -11862,6 +11867,13 @@ proto.bonus.FreeSpinItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
11862
11867
|
f
|
|
11863
11868
|
);
|
|
11864
11869
|
}
|
|
11870
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 15));
|
|
11871
|
+
if (f != null) {
|
|
11872
|
+
writer.writeString(
|
|
11873
|
+
15,
|
|
11874
|
+
f
|
|
11875
|
+
);
|
|
11876
|
+
}
|
|
11865
11877
|
};
|
|
11866
11878
|
|
|
11867
11879
|
|
|
@@ -12315,6 +12327,42 @@ proto.bonus.FreeSpinItem.prototype.hasProviderStatus = function() {
|
|
|
12315
12327
|
};
|
|
12316
12328
|
|
|
12317
12329
|
|
|
12330
|
+
/**
|
|
12331
|
+
* optional string game_image = 15;
|
|
12332
|
+
* @return {string}
|
|
12333
|
+
*/
|
|
12334
|
+
proto.bonus.FreeSpinItem.prototype.getGameImage = function() {
|
|
12335
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
12336
|
+
};
|
|
12337
|
+
|
|
12338
|
+
|
|
12339
|
+
/**
|
|
12340
|
+
* @param {string} value
|
|
12341
|
+
* @return {!proto.bonus.FreeSpinItem} returns this
|
|
12342
|
+
*/
|
|
12343
|
+
proto.bonus.FreeSpinItem.prototype.setGameImage = function(value) {
|
|
12344
|
+
return jspb.Message.setField(this, 15, value);
|
|
12345
|
+
};
|
|
12346
|
+
|
|
12347
|
+
|
|
12348
|
+
/**
|
|
12349
|
+
* Clears the field making it undefined.
|
|
12350
|
+
* @return {!proto.bonus.FreeSpinItem} returns this
|
|
12351
|
+
*/
|
|
12352
|
+
proto.bonus.FreeSpinItem.prototype.clearGameImage = function() {
|
|
12353
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
12354
|
+
};
|
|
12355
|
+
|
|
12356
|
+
|
|
12357
|
+
/**
|
|
12358
|
+
* Returns whether this field is set.
|
|
12359
|
+
* @return {boolean}
|
|
12360
|
+
*/
|
|
12361
|
+
proto.bonus.FreeSpinItem.prototype.hasGameImage = function() {
|
|
12362
|
+
return jspb.Message.getField(this, 15) != null;
|
|
12363
|
+
};
|
|
12364
|
+
|
|
12365
|
+
|
|
12318
12366
|
|
|
12319
12367
|
|
|
12320
12368
|
|