protobuf-platform 1.2.370 → 1.2.372

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 CHANGED
@@ -279,6 +279,8 @@ message FreeSpinItem {
279
279
  optional string game_slug = 10;
280
280
  optional string game_provider_title = 11;
281
281
  optional string game_provider_slug = 12;
282
+ optional string provider_campaign_id = 13;
283
+ optional string provider_status = 14;
282
284
  }
283
285
  message GameItem {
284
286
  int32 game_id = 1;
package/bonus/bonus_pb.js CHANGED
@@ -11640,7 +11640,9 @@ proto.bonus.FreeSpinItem.toObject = function(includeInstance, msg) {
11640
11640
  gameTitle: jspb.Message.getFieldWithDefault(msg, 9, ""),
11641
11641
  gameSlug: jspb.Message.getFieldWithDefault(msg, 10, ""),
11642
11642
  gameProviderTitle: jspb.Message.getFieldWithDefault(msg, 11, ""),
11643
- gameProviderSlug: jspb.Message.getFieldWithDefault(msg, 12, "")
11643
+ gameProviderSlug: jspb.Message.getFieldWithDefault(msg, 12, ""),
11644
+ providerCampaignId: jspb.Message.getFieldWithDefault(msg, 13, ""),
11645
+ providerStatus: jspb.Message.getFieldWithDefault(msg, 14, "")
11644
11646
  };
11645
11647
 
11646
11648
  if (includeInstance) {
@@ -11725,6 +11727,14 @@ proto.bonus.FreeSpinItem.deserializeBinaryFromReader = function(msg, reader) {
11725
11727
  var value = /** @type {string} */ (reader.readString());
11726
11728
  msg.setGameProviderSlug(value);
11727
11729
  break;
11730
+ case 13:
11731
+ var value = /** @type {string} */ (reader.readString());
11732
+ msg.setProviderCampaignId(value);
11733
+ break;
11734
+ case 14:
11735
+ var value = /** @type {string} */ (reader.readString());
11736
+ msg.setProviderStatus(value);
11737
+ break;
11728
11738
  default:
11729
11739
  reader.skipField();
11730
11740
  break;
@@ -11838,6 +11848,20 @@ proto.bonus.FreeSpinItem.serializeBinaryToWriter = function(message, writer) {
11838
11848
  f
11839
11849
  );
11840
11850
  }
11851
+ f = /** @type {string} */ (jspb.Message.getField(message, 13));
11852
+ if (f != null) {
11853
+ writer.writeString(
11854
+ 13,
11855
+ f
11856
+ );
11857
+ }
11858
+ f = /** @type {string} */ (jspb.Message.getField(message, 14));
11859
+ if (f != null) {
11860
+ writer.writeString(
11861
+ 14,
11862
+ f
11863
+ );
11864
+ }
11841
11865
  };
11842
11866
 
11843
11867
 
@@ -12219,6 +12243,78 @@ proto.bonus.FreeSpinItem.prototype.hasGameProviderSlug = function() {
12219
12243
  };
12220
12244
 
12221
12245
 
12246
+ /**
12247
+ * optional string provider_campaign_id = 13;
12248
+ * @return {string}
12249
+ */
12250
+ proto.bonus.FreeSpinItem.prototype.getProviderCampaignId = function() {
12251
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
12252
+ };
12253
+
12254
+
12255
+ /**
12256
+ * @param {string} value
12257
+ * @return {!proto.bonus.FreeSpinItem} returns this
12258
+ */
12259
+ proto.bonus.FreeSpinItem.prototype.setProviderCampaignId = function(value) {
12260
+ return jspb.Message.setField(this, 13, value);
12261
+ };
12262
+
12263
+
12264
+ /**
12265
+ * Clears the field making it undefined.
12266
+ * @return {!proto.bonus.FreeSpinItem} returns this
12267
+ */
12268
+ proto.bonus.FreeSpinItem.prototype.clearProviderCampaignId = function() {
12269
+ return jspb.Message.setField(this, 13, undefined);
12270
+ };
12271
+
12272
+
12273
+ /**
12274
+ * Returns whether this field is set.
12275
+ * @return {boolean}
12276
+ */
12277
+ proto.bonus.FreeSpinItem.prototype.hasProviderCampaignId = function() {
12278
+ return jspb.Message.getField(this, 13) != null;
12279
+ };
12280
+
12281
+
12282
+ /**
12283
+ * optional string provider_status = 14;
12284
+ * @return {string}
12285
+ */
12286
+ proto.bonus.FreeSpinItem.prototype.getProviderStatus = function() {
12287
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
12288
+ };
12289
+
12290
+
12291
+ /**
12292
+ * @param {string} value
12293
+ * @return {!proto.bonus.FreeSpinItem} returns this
12294
+ */
12295
+ proto.bonus.FreeSpinItem.prototype.setProviderStatus = function(value) {
12296
+ return jspb.Message.setField(this, 14, value);
12297
+ };
12298
+
12299
+
12300
+ /**
12301
+ * Clears the field making it undefined.
12302
+ * @return {!proto.bonus.FreeSpinItem} returns this
12303
+ */
12304
+ proto.bonus.FreeSpinItem.prototype.clearProviderStatus = function() {
12305
+ return jspb.Message.setField(this, 14, undefined);
12306
+ };
12307
+
12308
+
12309
+ /**
12310
+ * Returns whether this field is set.
12311
+ * @return {boolean}
12312
+ */
12313
+ proto.bonus.FreeSpinItem.prototype.hasProviderStatus = function() {
12314
+ return jspb.Message.getField(this, 14) != null;
12315
+ };
12316
+
12317
+
12222
12318
 
12223
12319
 
12224
12320
 
package/game/game.proto CHANGED
@@ -592,8 +592,13 @@ message SearchGamesFullGameSection {
592
592
  optional int32 total_items = 2;
593
593
  optional int32 total_pages = 3;
594
594
  }
595
+ message SearchGamesFullProviderItem {
596
+ ProviderItem provider = 1;
597
+ repeated GameItem games = 2;
598
+ optional int32 total_games = 3;
599
+ }
595
600
  message SearchGamesFullProviderSection {
596
- repeated ProviderItem items = 1;
601
+ repeated SearchGamesFullProviderItem items = 1;
597
602
  optional int32 total_items = 2;
598
603
  optional int32 total_pages = 3;
599
604
  }
@@ -780,6 +785,16 @@ message ProviderPoorItemsResponse {
780
785
  repeated ProviderItem items = 1;
781
786
  }
782
787
  //Free Spins
788
+ message FreeSpinSettingsItem {
789
+ float spin_amount = 1;
790
+ optional int32 bet_id = 2;
791
+ optional float denomination = 3;
792
+ optional string label = 4;
793
+ optional string currency = 5;
794
+ optional string provider_extras = 6;
795
+ optional float min_win_amount = 7;
796
+ optional float max_win_amount = 8;
797
+ }
783
798
  message FreeSpinSettingsRequest {
784
799
  optional string game_uuid = 1;
785
800
  optional int32 game_id = 2;
@@ -787,6 +802,7 @@ message FreeSpinSettingsRequest {
787
802
  }
788
803
  message FreeSpinSettingsResponse {
789
804
  string data = 1;
805
+ repeated FreeSpinSettingsItem items = 2;
790
806
  }
791
807
  message FreeSpinCampaignRequest {
792
808
  optional string game_uuid = 1;
@@ -802,6 +818,9 @@ message FreeSpinCampaignRequest {
802
818
  optional float denomination = 11;
803
819
  optional int32 total_bet_id = 12;
804
820
  optional float spin_amount = 13;
821
+ optional float max_win_amount = 14;
822
+ optional string campaign_name = 15;
823
+ optional string provider_extras = 16;
805
824
  }
806
825
  message FreeSpinBonusCampaignRequest {
807
826
  int32 game_id = 1;
@@ -813,12 +832,17 @@ message FreeSpinBonusCampaignRequest {
813
832
  int32 quantity = 7;
814
833
  string freespin_id = 8;
815
834
  float spin_amount = 9;
835
+ optional float max_win_amount = 10;
836
+ optional string campaign_name = 11;
837
+ optional string provider_extras = 12;
816
838
  }
817
839
  message FreeSpinStatusRequest {
818
840
  string free_spin_id = 1;
819
841
  }
820
842
  message FreeSpinCampaignResponse {
821
843
  string data = 1;
844
+ optional string provider_campaign_id = 2;
845
+ optional string provider_status = 3;
822
846
  }
823
847
  //Wager Lists
824
848
  message GetWagerListRequest {