protobuf-platform 1.2.532 → 1.2.533
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/game/game.proto +2 -0
- package/game/game_pb.js +98 -2
- package/package.json +1 -1
package/game/game.proto
CHANGED
|
@@ -663,6 +663,7 @@ message SearchGamesIntoCollectionsRequest {
|
|
|
663
663
|
optional int32 offset = 4;
|
|
664
664
|
optional bool is_mobile = 5;
|
|
665
665
|
optional bool admin_side = 6;
|
|
666
|
+
optional string game_title = 7;
|
|
666
667
|
}
|
|
667
668
|
message SearchGamesIntoTagsRequest {
|
|
668
669
|
repeated string tag_slugs = 1;
|
|
@@ -671,6 +672,7 @@ message SearchGamesIntoTagsRequest {
|
|
|
671
672
|
optional int32 offset = 4;
|
|
672
673
|
optional bool is_mobile = 5;
|
|
673
674
|
optional bool admin_side = 6;
|
|
675
|
+
optional string game_title = 7;
|
|
674
676
|
}
|
|
675
677
|
message SearchGamesIntoProvidersRequest {
|
|
676
678
|
repeated string provider_slugs = 1;
|
package/game/game_pb.js
CHANGED
|
@@ -27753,7 +27753,8 @@ proto.game.SearchGamesIntoCollectionsRequest.toObject = function(includeInstance
|
|
|
27753
27753
|
limit: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
27754
27754
|
offset: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
27755
27755
|
isMobile: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
27756
|
-
adminSide: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
|
|
27756
|
+
adminSide: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
|
|
27757
|
+
gameTitle: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
27757
27758
|
};
|
|
27758
27759
|
|
|
27759
27760
|
if (includeInstance) {
|
|
@@ -27814,6 +27815,10 @@ proto.game.SearchGamesIntoCollectionsRequest.deserializeBinaryFromReader = funct
|
|
|
27814
27815
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
27815
27816
|
msg.setAdminSide(value);
|
|
27816
27817
|
break;
|
|
27818
|
+
case 7:
|
|
27819
|
+
var value = /** @type {string} */ (reader.readString());
|
|
27820
|
+
msg.setGameTitle(value);
|
|
27821
|
+
break;
|
|
27817
27822
|
default:
|
|
27818
27823
|
reader.skipField();
|
|
27819
27824
|
break;
|
|
@@ -27885,6 +27890,13 @@ proto.game.SearchGamesIntoCollectionsRequest.serializeBinaryToWriter = function(
|
|
|
27885
27890
|
f
|
|
27886
27891
|
);
|
|
27887
27892
|
}
|
|
27893
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
27894
|
+
if (f != null) {
|
|
27895
|
+
writer.writeString(
|
|
27896
|
+
7,
|
|
27897
|
+
f
|
|
27898
|
+
);
|
|
27899
|
+
}
|
|
27888
27900
|
};
|
|
27889
27901
|
|
|
27890
27902
|
|
|
@@ -28105,6 +28117,42 @@ proto.game.SearchGamesIntoCollectionsRequest.prototype.hasAdminSide = function()
|
|
|
28105
28117
|
};
|
|
28106
28118
|
|
|
28107
28119
|
|
|
28120
|
+
/**
|
|
28121
|
+
* optional string game_title = 7;
|
|
28122
|
+
* @return {string}
|
|
28123
|
+
*/
|
|
28124
|
+
proto.game.SearchGamesIntoCollectionsRequest.prototype.getGameTitle = function() {
|
|
28125
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
28126
|
+
};
|
|
28127
|
+
|
|
28128
|
+
|
|
28129
|
+
/**
|
|
28130
|
+
* @param {string} value
|
|
28131
|
+
* @return {!proto.game.SearchGamesIntoCollectionsRequest} returns this
|
|
28132
|
+
*/
|
|
28133
|
+
proto.game.SearchGamesIntoCollectionsRequest.prototype.setGameTitle = function(value) {
|
|
28134
|
+
return jspb.Message.setField(this, 7, value);
|
|
28135
|
+
};
|
|
28136
|
+
|
|
28137
|
+
|
|
28138
|
+
/**
|
|
28139
|
+
* Clears the field making it undefined.
|
|
28140
|
+
* @return {!proto.game.SearchGamesIntoCollectionsRequest} returns this
|
|
28141
|
+
*/
|
|
28142
|
+
proto.game.SearchGamesIntoCollectionsRequest.prototype.clearGameTitle = function() {
|
|
28143
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
28144
|
+
};
|
|
28145
|
+
|
|
28146
|
+
|
|
28147
|
+
/**
|
|
28148
|
+
* Returns whether this field is set.
|
|
28149
|
+
* @return {boolean}
|
|
28150
|
+
*/
|
|
28151
|
+
proto.game.SearchGamesIntoCollectionsRequest.prototype.hasGameTitle = function() {
|
|
28152
|
+
return jspb.Message.getField(this, 7) != null;
|
|
28153
|
+
};
|
|
28154
|
+
|
|
28155
|
+
|
|
28108
28156
|
|
|
28109
28157
|
/**
|
|
28110
28158
|
* List of repeated fields within this message type.
|
|
@@ -28149,7 +28197,8 @@ proto.game.SearchGamesIntoTagsRequest.toObject = function(includeInstance, msg)
|
|
|
28149
28197
|
limit: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
28150
28198
|
offset: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
28151
28199
|
isMobile: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
28152
|
-
adminSide: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
|
|
28200
|
+
adminSide: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
|
|
28201
|
+
gameTitle: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
28153
28202
|
};
|
|
28154
28203
|
|
|
28155
28204
|
if (includeInstance) {
|
|
@@ -28210,6 +28259,10 @@ proto.game.SearchGamesIntoTagsRequest.deserializeBinaryFromReader = function(msg
|
|
|
28210
28259
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
28211
28260
|
msg.setAdminSide(value);
|
|
28212
28261
|
break;
|
|
28262
|
+
case 7:
|
|
28263
|
+
var value = /** @type {string} */ (reader.readString());
|
|
28264
|
+
msg.setGameTitle(value);
|
|
28265
|
+
break;
|
|
28213
28266
|
default:
|
|
28214
28267
|
reader.skipField();
|
|
28215
28268
|
break;
|
|
@@ -28281,6 +28334,13 @@ proto.game.SearchGamesIntoTagsRequest.serializeBinaryToWriter = function(message
|
|
|
28281
28334
|
f
|
|
28282
28335
|
);
|
|
28283
28336
|
}
|
|
28337
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
28338
|
+
if (f != null) {
|
|
28339
|
+
writer.writeString(
|
|
28340
|
+
7,
|
|
28341
|
+
f
|
|
28342
|
+
);
|
|
28343
|
+
}
|
|
28284
28344
|
};
|
|
28285
28345
|
|
|
28286
28346
|
|
|
@@ -28501,6 +28561,42 @@ proto.game.SearchGamesIntoTagsRequest.prototype.hasAdminSide = function() {
|
|
|
28501
28561
|
};
|
|
28502
28562
|
|
|
28503
28563
|
|
|
28564
|
+
/**
|
|
28565
|
+
* optional string game_title = 7;
|
|
28566
|
+
* @return {string}
|
|
28567
|
+
*/
|
|
28568
|
+
proto.game.SearchGamesIntoTagsRequest.prototype.getGameTitle = function() {
|
|
28569
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
28570
|
+
};
|
|
28571
|
+
|
|
28572
|
+
|
|
28573
|
+
/**
|
|
28574
|
+
* @param {string} value
|
|
28575
|
+
* @return {!proto.game.SearchGamesIntoTagsRequest} returns this
|
|
28576
|
+
*/
|
|
28577
|
+
proto.game.SearchGamesIntoTagsRequest.prototype.setGameTitle = function(value) {
|
|
28578
|
+
return jspb.Message.setField(this, 7, value);
|
|
28579
|
+
};
|
|
28580
|
+
|
|
28581
|
+
|
|
28582
|
+
/**
|
|
28583
|
+
* Clears the field making it undefined.
|
|
28584
|
+
* @return {!proto.game.SearchGamesIntoTagsRequest} returns this
|
|
28585
|
+
*/
|
|
28586
|
+
proto.game.SearchGamesIntoTagsRequest.prototype.clearGameTitle = function() {
|
|
28587
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
28588
|
+
};
|
|
28589
|
+
|
|
28590
|
+
|
|
28591
|
+
/**
|
|
28592
|
+
* Returns whether this field is set.
|
|
28593
|
+
* @return {boolean}
|
|
28594
|
+
*/
|
|
28595
|
+
proto.game.SearchGamesIntoTagsRequest.prototype.hasGameTitle = function() {
|
|
28596
|
+
return jspb.Message.getField(this, 7) != null;
|
|
28597
|
+
};
|
|
28598
|
+
|
|
28599
|
+
|
|
28504
28600
|
|
|
28505
28601
|
/**
|
|
28506
28602
|
* List of repeated fields within this message type.
|