protobuf-platform 1.2.462 → 1.2.464
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 +15 -0
- package/game/game_grpc_pb.js +34 -0
- package/game/game_pb.js +684 -0
- package/package.json +1 -1
package/game/game.proto
CHANGED
|
@@ -93,6 +93,8 @@ service Game {
|
|
|
93
93
|
rpc getCounterScopes(ScopeRequest) returns (ScopeResponse);
|
|
94
94
|
rpc getProvidersByIds(ProvidersIds) returns (ProviderPoorItemsResponse);
|
|
95
95
|
rpc getProvidersBySlugs(ProvidersSlugs) returns (ProviderItemsResponse);
|
|
96
|
+
// Lightweight UUID lookup for cross-service bet history filtering.
|
|
97
|
+
rpc resolveGameUuidsForBetHistoryFilter(ResolveGameUuidsForBetHistoryFilterRequest) returns (ResolveGameUuidsForBetHistoryFilterResponse);
|
|
96
98
|
//Wager lists
|
|
97
99
|
rpc readSingleWagerList(GetWagerListRequest) returns (WagerListResponse);
|
|
98
100
|
rpc createSingleWagerList(WagerListRequest) returns (WagerListResponse);
|
|
@@ -826,6 +828,19 @@ message ProvidersSlugs {
|
|
|
826
828
|
message ProviderPoorItemsResponse {
|
|
827
829
|
repeated ProviderItem items = 1;
|
|
828
830
|
}
|
|
831
|
+
message ResolveGameUuidsForBetHistoryFilterRequest {
|
|
832
|
+
optional int32 game_id = 1;
|
|
833
|
+
optional string game_title = 2; // Trimmed substring match.
|
|
834
|
+
optional string game_provider = 3; // Provider display title, not slug.
|
|
835
|
+
optional string provider_slug = 4; // Exact provider slug match.
|
|
836
|
+
optional bool admin_side = 5; // Skip catalog visibility exclusions when true.
|
|
837
|
+
optional int32 max_uuids = 6; // Safety cap; game-service enforces a default if unset.
|
|
838
|
+
}
|
|
839
|
+
message ResolveGameUuidsForBetHistoryFilterResponse {
|
|
840
|
+
repeated string game_uuids = 1;
|
|
841
|
+
optional int32 total_items = 2; // Total matches before max_uuids cap.
|
|
842
|
+
optional bool truncated = 3; // True when total_items exceeds max_uuids.
|
|
843
|
+
}
|
|
829
844
|
//Free Spins
|
|
830
845
|
message FreeSpinSettingsItem {
|
|
831
846
|
float spin_amount = 1;
|
package/game/game_grpc_pb.js
CHANGED
|
@@ -917,6 +917,28 @@ function deserialize_game_ProvidersSlugs(buffer_arg) {
|
|
|
917
917
|
return game_pb.ProvidersSlugs.deserializeBinary(new Uint8Array(buffer_arg));
|
|
918
918
|
}
|
|
919
919
|
|
|
920
|
+
function serialize_game_ResolveGameUuidsForBetHistoryFilterRequest(arg) {
|
|
921
|
+
if (!(arg instanceof game_pb.ResolveGameUuidsForBetHistoryFilterRequest)) {
|
|
922
|
+
throw new Error('Expected argument of type game.ResolveGameUuidsForBetHistoryFilterRequest');
|
|
923
|
+
}
|
|
924
|
+
return Buffer.from(arg.serializeBinary());
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
function deserialize_game_ResolveGameUuidsForBetHistoryFilterRequest(buffer_arg) {
|
|
928
|
+
return game_pb.ResolveGameUuidsForBetHistoryFilterRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
function serialize_game_ResolveGameUuidsForBetHistoryFilterResponse(arg) {
|
|
932
|
+
if (!(arg instanceof game_pb.ResolveGameUuidsForBetHistoryFilterResponse)) {
|
|
933
|
+
throw new Error('Expected argument of type game.ResolveGameUuidsForBetHistoryFilterResponse');
|
|
934
|
+
}
|
|
935
|
+
return Buffer.from(arg.serializeBinary());
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
function deserialize_game_ResolveGameUuidsForBetHistoryFilterResponse(buffer_arg) {
|
|
939
|
+
return game_pb.ResolveGameUuidsForBetHistoryFilterResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
940
|
+
}
|
|
941
|
+
|
|
920
942
|
function serialize_game_SEOInstanceRequest(arg) {
|
|
921
943
|
if (!(arg instanceof game_pb.SEOInstanceRequest)) {
|
|
922
944
|
throw new Error('Expected argument of type game.SEOInstanceRequest');
|
|
@@ -2151,6 +2173,18 @@ getGamesByUuids: {
|
|
|
2151
2173
|
responseSerialize: serialize_game_ProviderItemsResponse,
|
|
2152
2174
|
responseDeserialize: deserialize_game_ProviderItemsResponse,
|
|
2153
2175
|
},
|
|
2176
|
+
// Lightweight UUID lookup for cross-service bet history filtering.
|
|
2177
|
+
resolveGameUuidsForBetHistoryFilter: {
|
|
2178
|
+
path: '/game.Game/resolveGameUuidsForBetHistoryFilter',
|
|
2179
|
+
requestStream: false,
|
|
2180
|
+
responseStream: false,
|
|
2181
|
+
requestType: game_pb.ResolveGameUuidsForBetHistoryFilterRequest,
|
|
2182
|
+
responseType: game_pb.ResolveGameUuidsForBetHistoryFilterResponse,
|
|
2183
|
+
requestSerialize: serialize_game_ResolveGameUuidsForBetHistoryFilterRequest,
|
|
2184
|
+
requestDeserialize: deserialize_game_ResolveGameUuidsForBetHistoryFilterRequest,
|
|
2185
|
+
responseSerialize: serialize_game_ResolveGameUuidsForBetHistoryFilterResponse,
|
|
2186
|
+
responseDeserialize: deserialize_game_ResolveGameUuidsForBetHistoryFilterResponse,
|
|
2187
|
+
},
|
|
2154
2188
|
// Wager lists
|
|
2155
2189
|
readSingleWagerList: {
|
|
2156
2190
|
path: '/game.Game/readSingleWagerList',
|
package/game/game_pb.js
CHANGED
|
@@ -135,6 +135,8 @@ goog.exportSymbol('proto.game.ProviderSearchRequest', null, global);
|
|
|
135
135
|
goog.exportSymbol('proto.game.ProviderStatusResponse', null, global);
|
|
136
136
|
goog.exportSymbol('proto.game.ProvidersIds', null, global);
|
|
137
137
|
goog.exportSymbol('proto.game.ProvidersSlugs', null, global);
|
|
138
|
+
goog.exportSymbol('proto.game.ResolveGameUuidsForBetHistoryFilterRequest', null, global);
|
|
139
|
+
goog.exportSymbol('proto.game.ResolveGameUuidsForBetHistoryFilterResponse', null, global);
|
|
138
140
|
goog.exportSymbol('proto.game.SEOAttribute', null, global);
|
|
139
141
|
goog.exportSymbol('proto.game.SEOInstanceRelation', null, global);
|
|
140
142
|
goog.exportSymbol('proto.game.SEOInstanceRequest', null, global);
|
|
@@ -2537,6 +2539,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
2537
2539
|
*/
|
|
2538
2540
|
proto.game.ProviderPoorItemsResponse.displayName = 'proto.game.ProviderPoorItemsResponse';
|
|
2539
2541
|
}
|
|
2542
|
+
/**
|
|
2543
|
+
* Generated by JsPbCodeGenerator.
|
|
2544
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2545
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2546
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2547
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2548
|
+
* valid.
|
|
2549
|
+
* @extends {jspb.Message}
|
|
2550
|
+
* @constructor
|
|
2551
|
+
*/
|
|
2552
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest = function(opt_data) {
|
|
2553
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
2554
|
+
};
|
|
2555
|
+
goog.inherits(proto.game.ResolveGameUuidsForBetHistoryFilterRequest, jspb.Message);
|
|
2556
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2557
|
+
/**
|
|
2558
|
+
* @public
|
|
2559
|
+
* @override
|
|
2560
|
+
*/
|
|
2561
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.displayName = 'proto.game.ResolveGameUuidsForBetHistoryFilterRequest';
|
|
2562
|
+
}
|
|
2563
|
+
/**
|
|
2564
|
+
* Generated by JsPbCodeGenerator.
|
|
2565
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2566
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2567
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2568
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2569
|
+
* valid.
|
|
2570
|
+
* @extends {jspb.Message}
|
|
2571
|
+
* @constructor
|
|
2572
|
+
*/
|
|
2573
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse = function(opt_data) {
|
|
2574
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.game.ResolveGameUuidsForBetHistoryFilterResponse.repeatedFields_, null);
|
|
2575
|
+
};
|
|
2576
|
+
goog.inherits(proto.game.ResolveGameUuidsForBetHistoryFilterResponse, jspb.Message);
|
|
2577
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2578
|
+
/**
|
|
2579
|
+
* @public
|
|
2580
|
+
* @override
|
|
2581
|
+
*/
|
|
2582
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.displayName = 'proto.game.ResolveGameUuidsForBetHistoryFilterResponse';
|
|
2583
|
+
}
|
|
2540
2584
|
/**
|
|
2541
2585
|
* Generated by JsPbCodeGenerator.
|
|
2542
2586
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -35185,6 +35229,646 @@ proto.game.ProviderPoorItemsResponse.prototype.clearItemsList = function() {
|
|
|
35185
35229
|
|
|
35186
35230
|
|
|
35187
35231
|
|
|
35232
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
35233
|
+
/**
|
|
35234
|
+
* Creates an object representation of this proto.
|
|
35235
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
35236
|
+
* Optional fields that are not set will be set to undefined.
|
|
35237
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
35238
|
+
* For the list of reserved names please see:
|
|
35239
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
35240
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
35241
|
+
* JSPB instance for transitional soy proto support:
|
|
35242
|
+
* http://goto/soy-param-migration
|
|
35243
|
+
* @return {!Object}
|
|
35244
|
+
*/
|
|
35245
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.toObject = function(opt_includeInstance) {
|
|
35246
|
+
return proto.game.ResolveGameUuidsForBetHistoryFilterRequest.toObject(opt_includeInstance, this);
|
|
35247
|
+
};
|
|
35248
|
+
|
|
35249
|
+
|
|
35250
|
+
/**
|
|
35251
|
+
* Static version of the {@see toObject} method.
|
|
35252
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
35253
|
+
* the JSPB instance for transitional soy proto support:
|
|
35254
|
+
* http://goto/soy-param-migration
|
|
35255
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} msg The msg instance to transform.
|
|
35256
|
+
* @return {!Object}
|
|
35257
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
35258
|
+
*/
|
|
35259
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.toObject = function(includeInstance, msg) {
|
|
35260
|
+
var f, obj = {
|
|
35261
|
+
gameId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
35262
|
+
gameTitle: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
35263
|
+
gameProvider: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
35264
|
+
providerSlug: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
35265
|
+
adminSide: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
35266
|
+
maxUuids: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
35267
|
+
};
|
|
35268
|
+
|
|
35269
|
+
if (includeInstance) {
|
|
35270
|
+
obj.$jspbMessageInstance = msg;
|
|
35271
|
+
}
|
|
35272
|
+
return obj;
|
|
35273
|
+
};
|
|
35274
|
+
}
|
|
35275
|
+
|
|
35276
|
+
|
|
35277
|
+
/**
|
|
35278
|
+
* Deserializes binary data (in protobuf wire format).
|
|
35279
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
35280
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest}
|
|
35281
|
+
*/
|
|
35282
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.deserializeBinary = function(bytes) {
|
|
35283
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
35284
|
+
var msg = new proto.game.ResolveGameUuidsForBetHistoryFilterRequest;
|
|
35285
|
+
return proto.game.ResolveGameUuidsForBetHistoryFilterRequest.deserializeBinaryFromReader(msg, reader);
|
|
35286
|
+
};
|
|
35287
|
+
|
|
35288
|
+
|
|
35289
|
+
/**
|
|
35290
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
35291
|
+
* given reader into the given message object.
|
|
35292
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} msg The message object to deserialize into.
|
|
35293
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
35294
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest}
|
|
35295
|
+
*/
|
|
35296
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
35297
|
+
while (reader.nextField()) {
|
|
35298
|
+
if (reader.isEndGroup()) {
|
|
35299
|
+
break;
|
|
35300
|
+
}
|
|
35301
|
+
var field = reader.getFieldNumber();
|
|
35302
|
+
switch (field) {
|
|
35303
|
+
case 1:
|
|
35304
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
35305
|
+
msg.setGameId(value);
|
|
35306
|
+
break;
|
|
35307
|
+
case 2:
|
|
35308
|
+
var value = /** @type {string} */ (reader.readString());
|
|
35309
|
+
msg.setGameTitle(value);
|
|
35310
|
+
break;
|
|
35311
|
+
case 3:
|
|
35312
|
+
var value = /** @type {string} */ (reader.readString());
|
|
35313
|
+
msg.setGameProvider(value);
|
|
35314
|
+
break;
|
|
35315
|
+
case 4:
|
|
35316
|
+
var value = /** @type {string} */ (reader.readString());
|
|
35317
|
+
msg.setProviderSlug(value);
|
|
35318
|
+
break;
|
|
35319
|
+
case 5:
|
|
35320
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
35321
|
+
msg.setAdminSide(value);
|
|
35322
|
+
break;
|
|
35323
|
+
case 6:
|
|
35324
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
35325
|
+
msg.setMaxUuids(value);
|
|
35326
|
+
break;
|
|
35327
|
+
default:
|
|
35328
|
+
reader.skipField();
|
|
35329
|
+
break;
|
|
35330
|
+
}
|
|
35331
|
+
}
|
|
35332
|
+
return msg;
|
|
35333
|
+
};
|
|
35334
|
+
|
|
35335
|
+
|
|
35336
|
+
/**
|
|
35337
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
35338
|
+
* @return {!Uint8Array}
|
|
35339
|
+
*/
|
|
35340
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.serializeBinary = function() {
|
|
35341
|
+
var writer = new jspb.BinaryWriter();
|
|
35342
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.serializeBinaryToWriter(this, writer);
|
|
35343
|
+
return writer.getResultBuffer();
|
|
35344
|
+
};
|
|
35345
|
+
|
|
35346
|
+
|
|
35347
|
+
/**
|
|
35348
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
35349
|
+
* format), writing to the given BinaryWriter.
|
|
35350
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} message
|
|
35351
|
+
* @param {!jspb.BinaryWriter} writer
|
|
35352
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
35353
|
+
*/
|
|
35354
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.serializeBinaryToWriter = function(message, writer) {
|
|
35355
|
+
var f = undefined;
|
|
35356
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
35357
|
+
if (f != null) {
|
|
35358
|
+
writer.writeInt32(
|
|
35359
|
+
1,
|
|
35360
|
+
f
|
|
35361
|
+
);
|
|
35362
|
+
}
|
|
35363
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
35364
|
+
if (f != null) {
|
|
35365
|
+
writer.writeString(
|
|
35366
|
+
2,
|
|
35367
|
+
f
|
|
35368
|
+
);
|
|
35369
|
+
}
|
|
35370
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
35371
|
+
if (f != null) {
|
|
35372
|
+
writer.writeString(
|
|
35373
|
+
3,
|
|
35374
|
+
f
|
|
35375
|
+
);
|
|
35376
|
+
}
|
|
35377
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
35378
|
+
if (f != null) {
|
|
35379
|
+
writer.writeString(
|
|
35380
|
+
4,
|
|
35381
|
+
f
|
|
35382
|
+
);
|
|
35383
|
+
}
|
|
35384
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 5));
|
|
35385
|
+
if (f != null) {
|
|
35386
|
+
writer.writeBool(
|
|
35387
|
+
5,
|
|
35388
|
+
f
|
|
35389
|
+
);
|
|
35390
|
+
}
|
|
35391
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 6));
|
|
35392
|
+
if (f != null) {
|
|
35393
|
+
writer.writeInt32(
|
|
35394
|
+
6,
|
|
35395
|
+
f
|
|
35396
|
+
);
|
|
35397
|
+
}
|
|
35398
|
+
};
|
|
35399
|
+
|
|
35400
|
+
|
|
35401
|
+
/**
|
|
35402
|
+
* optional int32 game_id = 1;
|
|
35403
|
+
* @return {number}
|
|
35404
|
+
*/
|
|
35405
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getGameId = function() {
|
|
35406
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
35407
|
+
};
|
|
35408
|
+
|
|
35409
|
+
|
|
35410
|
+
/**
|
|
35411
|
+
* @param {number} value
|
|
35412
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35413
|
+
*/
|
|
35414
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setGameId = function(value) {
|
|
35415
|
+
return jspb.Message.setField(this, 1, value);
|
|
35416
|
+
};
|
|
35417
|
+
|
|
35418
|
+
|
|
35419
|
+
/**
|
|
35420
|
+
* Clears the field making it undefined.
|
|
35421
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35422
|
+
*/
|
|
35423
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearGameId = function() {
|
|
35424
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
35425
|
+
};
|
|
35426
|
+
|
|
35427
|
+
|
|
35428
|
+
/**
|
|
35429
|
+
* Returns whether this field is set.
|
|
35430
|
+
* @return {boolean}
|
|
35431
|
+
*/
|
|
35432
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasGameId = function() {
|
|
35433
|
+
return jspb.Message.getField(this, 1) != null;
|
|
35434
|
+
};
|
|
35435
|
+
|
|
35436
|
+
|
|
35437
|
+
/**
|
|
35438
|
+
* optional string game_title = 2;
|
|
35439
|
+
* @return {string}
|
|
35440
|
+
*/
|
|
35441
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getGameTitle = function() {
|
|
35442
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
35443
|
+
};
|
|
35444
|
+
|
|
35445
|
+
|
|
35446
|
+
/**
|
|
35447
|
+
* @param {string} value
|
|
35448
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35449
|
+
*/
|
|
35450
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setGameTitle = function(value) {
|
|
35451
|
+
return jspb.Message.setField(this, 2, value);
|
|
35452
|
+
};
|
|
35453
|
+
|
|
35454
|
+
|
|
35455
|
+
/**
|
|
35456
|
+
* Clears the field making it undefined.
|
|
35457
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35458
|
+
*/
|
|
35459
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearGameTitle = function() {
|
|
35460
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
35461
|
+
};
|
|
35462
|
+
|
|
35463
|
+
|
|
35464
|
+
/**
|
|
35465
|
+
* Returns whether this field is set.
|
|
35466
|
+
* @return {boolean}
|
|
35467
|
+
*/
|
|
35468
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasGameTitle = function() {
|
|
35469
|
+
return jspb.Message.getField(this, 2) != null;
|
|
35470
|
+
};
|
|
35471
|
+
|
|
35472
|
+
|
|
35473
|
+
/**
|
|
35474
|
+
* optional string game_provider = 3;
|
|
35475
|
+
* @return {string}
|
|
35476
|
+
*/
|
|
35477
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getGameProvider = function() {
|
|
35478
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
35479
|
+
};
|
|
35480
|
+
|
|
35481
|
+
|
|
35482
|
+
/**
|
|
35483
|
+
* @param {string} value
|
|
35484
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35485
|
+
*/
|
|
35486
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setGameProvider = function(value) {
|
|
35487
|
+
return jspb.Message.setField(this, 3, value);
|
|
35488
|
+
};
|
|
35489
|
+
|
|
35490
|
+
|
|
35491
|
+
/**
|
|
35492
|
+
* Clears the field making it undefined.
|
|
35493
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35494
|
+
*/
|
|
35495
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearGameProvider = function() {
|
|
35496
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
35497
|
+
};
|
|
35498
|
+
|
|
35499
|
+
|
|
35500
|
+
/**
|
|
35501
|
+
* Returns whether this field is set.
|
|
35502
|
+
* @return {boolean}
|
|
35503
|
+
*/
|
|
35504
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasGameProvider = function() {
|
|
35505
|
+
return jspb.Message.getField(this, 3) != null;
|
|
35506
|
+
};
|
|
35507
|
+
|
|
35508
|
+
|
|
35509
|
+
/**
|
|
35510
|
+
* optional string provider_slug = 4;
|
|
35511
|
+
* @return {string}
|
|
35512
|
+
*/
|
|
35513
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getProviderSlug = function() {
|
|
35514
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
35515
|
+
};
|
|
35516
|
+
|
|
35517
|
+
|
|
35518
|
+
/**
|
|
35519
|
+
* @param {string} value
|
|
35520
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35521
|
+
*/
|
|
35522
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setProviderSlug = function(value) {
|
|
35523
|
+
return jspb.Message.setField(this, 4, value);
|
|
35524
|
+
};
|
|
35525
|
+
|
|
35526
|
+
|
|
35527
|
+
/**
|
|
35528
|
+
* Clears the field making it undefined.
|
|
35529
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35530
|
+
*/
|
|
35531
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearProviderSlug = function() {
|
|
35532
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
35533
|
+
};
|
|
35534
|
+
|
|
35535
|
+
|
|
35536
|
+
/**
|
|
35537
|
+
* Returns whether this field is set.
|
|
35538
|
+
* @return {boolean}
|
|
35539
|
+
*/
|
|
35540
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasProviderSlug = function() {
|
|
35541
|
+
return jspb.Message.getField(this, 4) != null;
|
|
35542
|
+
};
|
|
35543
|
+
|
|
35544
|
+
|
|
35545
|
+
/**
|
|
35546
|
+
* optional bool admin_side = 5;
|
|
35547
|
+
* @return {boolean}
|
|
35548
|
+
*/
|
|
35549
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getAdminSide = function() {
|
|
35550
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
35551
|
+
};
|
|
35552
|
+
|
|
35553
|
+
|
|
35554
|
+
/**
|
|
35555
|
+
* @param {boolean} value
|
|
35556
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35557
|
+
*/
|
|
35558
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setAdminSide = function(value) {
|
|
35559
|
+
return jspb.Message.setField(this, 5, value);
|
|
35560
|
+
};
|
|
35561
|
+
|
|
35562
|
+
|
|
35563
|
+
/**
|
|
35564
|
+
* Clears the field making it undefined.
|
|
35565
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35566
|
+
*/
|
|
35567
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearAdminSide = function() {
|
|
35568
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
35569
|
+
};
|
|
35570
|
+
|
|
35571
|
+
|
|
35572
|
+
/**
|
|
35573
|
+
* Returns whether this field is set.
|
|
35574
|
+
* @return {boolean}
|
|
35575
|
+
*/
|
|
35576
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasAdminSide = function() {
|
|
35577
|
+
return jspb.Message.getField(this, 5) != null;
|
|
35578
|
+
};
|
|
35579
|
+
|
|
35580
|
+
|
|
35581
|
+
/**
|
|
35582
|
+
* optional int32 max_uuids = 6;
|
|
35583
|
+
* @return {number}
|
|
35584
|
+
*/
|
|
35585
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getMaxUuids = function() {
|
|
35586
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
35587
|
+
};
|
|
35588
|
+
|
|
35589
|
+
|
|
35590
|
+
/**
|
|
35591
|
+
* @param {number} value
|
|
35592
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35593
|
+
*/
|
|
35594
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setMaxUuids = function(value) {
|
|
35595
|
+
return jspb.Message.setField(this, 6, value);
|
|
35596
|
+
};
|
|
35597
|
+
|
|
35598
|
+
|
|
35599
|
+
/**
|
|
35600
|
+
* Clears the field making it undefined.
|
|
35601
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35602
|
+
*/
|
|
35603
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearMaxUuids = function() {
|
|
35604
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
35605
|
+
};
|
|
35606
|
+
|
|
35607
|
+
|
|
35608
|
+
/**
|
|
35609
|
+
* Returns whether this field is set.
|
|
35610
|
+
* @return {boolean}
|
|
35611
|
+
*/
|
|
35612
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasMaxUuids = function() {
|
|
35613
|
+
return jspb.Message.getField(this, 6) != null;
|
|
35614
|
+
};
|
|
35615
|
+
|
|
35616
|
+
|
|
35617
|
+
|
|
35618
|
+
/**
|
|
35619
|
+
* List of repeated fields within this message type.
|
|
35620
|
+
* @private {!Array<number>}
|
|
35621
|
+
* @const
|
|
35622
|
+
*/
|
|
35623
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.repeatedFields_ = [1];
|
|
35624
|
+
|
|
35625
|
+
|
|
35626
|
+
|
|
35627
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
35628
|
+
/**
|
|
35629
|
+
* Creates an object representation of this proto.
|
|
35630
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
35631
|
+
* Optional fields that are not set will be set to undefined.
|
|
35632
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
35633
|
+
* For the list of reserved names please see:
|
|
35634
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
35635
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
35636
|
+
* JSPB instance for transitional soy proto support:
|
|
35637
|
+
* http://goto/soy-param-migration
|
|
35638
|
+
* @return {!Object}
|
|
35639
|
+
*/
|
|
35640
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.toObject = function(opt_includeInstance) {
|
|
35641
|
+
return proto.game.ResolveGameUuidsForBetHistoryFilterResponse.toObject(opt_includeInstance, this);
|
|
35642
|
+
};
|
|
35643
|
+
|
|
35644
|
+
|
|
35645
|
+
/**
|
|
35646
|
+
* Static version of the {@see toObject} method.
|
|
35647
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
35648
|
+
* the JSPB instance for transitional soy proto support:
|
|
35649
|
+
* http://goto/soy-param-migration
|
|
35650
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} msg The msg instance to transform.
|
|
35651
|
+
* @return {!Object}
|
|
35652
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
35653
|
+
*/
|
|
35654
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.toObject = function(includeInstance, msg) {
|
|
35655
|
+
var f, obj = {
|
|
35656
|
+
gameUuidsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
35657
|
+
totalItems: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
35658
|
+
truncated: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
|
|
35659
|
+
};
|
|
35660
|
+
|
|
35661
|
+
if (includeInstance) {
|
|
35662
|
+
obj.$jspbMessageInstance = msg;
|
|
35663
|
+
}
|
|
35664
|
+
return obj;
|
|
35665
|
+
};
|
|
35666
|
+
}
|
|
35667
|
+
|
|
35668
|
+
|
|
35669
|
+
/**
|
|
35670
|
+
* Deserializes binary data (in protobuf wire format).
|
|
35671
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
35672
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse}
|
|
35673
|
+
*/
|
|
35674
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.deserializeBinary = function(bytes) {
|
|
35675
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
35676
|
+
var msg = new proto.game.ResolveGameUuidsForBetHistoryFilterResponse;
|
|
35677
|
+
return proto.game.ResolveGameUuidsForBetHistoryFilterResponse.deserializeBinaryFromReader(msg, reader);
|
|
35678
|
+
};
|
|
35679
|
+
|
|
35680
|
+
|
|
35681
|
+
/**
|
|
35682
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
35683
|
+
* given reader into the given message object.
|
|
35684
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} msg The message object to deserialize into.
|
|
35685
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
35686
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse}
|
|
35687
|
+
*/
|
|
35688
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
35689
|
+
while (reader.nextField()) {
|
|
35690
|
+
if (reader.isEndGroup()) {
|
|
35691
|
+
break;
|
|
35692
|
+
}
|
|
35693
|
+
var field = reader.getFieldNumber();
|
|
35694
|
+
switch (field) {
|
|
35695
|
+
case 1:
|
|
35696
|
+
var value = /** @type {string} */ (reader.readString());
|
|
35697
|
+
msg.addGameUuids(value);
|
|
35698
|
+
break;
|
|
35699
|
+
case 2:
|
|
35700
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
35701
|
+
msg.setTotalItems(value);
|
|
35702
|
+
break;
|
|
35703
|
+
case 3:
|
|
35704
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
35705
|
+
msg.setTruncated(value);
|
|
35706
|
+
break;
|
|
35707
|
+
default:
|
|
35708
|
+
reader.skipField();
|
|
35709
|
+
break;
|
|
35710
|
+
}
|
|
35711
|
+
}
|
|
35712
|
+
return msg;
|
|
35713
|
+
};
|
|
35714
|
+
|
|
35715
|
+
|
|
35716
|
+
/**
|
|
35717
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
35718
|
+
* @return {!Uint8Array}
|
|
35719
|
+
*/
|
|
35720
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.serializeBinary = function() {
|
|
35721
|
+
var writer = new jspb.BinaryWriter();
|
|
35722
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.serializeBinaryToWriter(this, writer);
|
|
35723
|
+
return writer.getResultBuffer();
|
|
35724
|
+
};
|
|
35725
|
+
|
|
35726
|
+
|
|
35727
|
+
/**
|
|
35728
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
35729
|
+
* format), writing to the given BinaryWriter.
|
|
35730
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} message
|
|
35731
|
+
* @param {!jspb.BinaryWriter} writer
|
|
35732
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
35733
|
+
*/
|
|
35734
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.serializeBinaryToWriter = function(message, writer) {
|
|
35735
|
+
var f = undefined;
|
|
35736
|
+
f = message.getGameUuidsList();
|
|
35737
|
+
if (f.length > 0) {
|
|
35738
|
+
writer.writeRepeatedString(
|
|
35739
|
+
1,
|
|
35740
|
+
f
|
|
35741
|
+
);
|
|
35742
|
+
}
|
|
35743
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
|
35744
|
+
if (f != null) {
|
|
35745
|
+
writer.writeInt32(
|
|
35746
|
+
2,
|
|
35747
|
+
f
|
|
35748
|
+
);
|
|
35749
|
+
}
|
|
35750
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 3));
|
|
35751
|
+
if (f != null) {
|
|
35752
|
+
writer.writeBool(
|
|
35753
|
+
3,
|
|
35754
|
+
f
|
|
35755
|
+
);
|
|
35756
|
+
}
|
|
35757
|
+
};
|
|
35758
|
+
|
|
35759
|
+
|
|
35760
|
+
/**
|
|
35761
|
+
* repeated string game_uuids = 1;
|
|
35762
|
+
* @return {!Array<string>}
|
|
35763
|
+
*/
|
|
35764
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.getGameUuidsList = function() {
|
|
35765
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 1));
|
|
35766
|
+
};
|
|
35767
|
+
|
|
35768
|
+
|
|
35769
|
+
/**
|
|
35770
|
+
* @param {!Array<string>} value
|
|
35771
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35772
|
+
*/
|
|
35773
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.setGameUuidsList = function(value) {
|
|
35774
|
+
return jspb.Message.setField(this, 1, value || []);
|
|
35775
|
+
};
|
|
35776
|
+
|
|
35777
|
+
|
|
35778
|
+
/**
|
|
35779
|
+
* @param {string} value
|
|
35780
|
+
* @param {number=} opt_index
|
|
35781
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35782
|
+
*/
|
|
35783
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.addGameUuids = function(value, opt_index) {
|
|
35784
|
+
return jspb.Message.addToRepeatedField(this, 1, value, opt_index);
|
|
35785
|
+
};
|
|
35786
|
+
|
|
35787
|
+
|
|
35788
|
+
/**
|
|
35789
|
+
* Clears the list making it empty but non-null.
|
|
35790
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35791
|
+
*/
|
|
35792
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.clearGameUuidsList = function() {
|
|
35793
|
+
return this.setGameUuidsList([]);
|
|
35794
|
+
};
|
|
35795
|
+
|
|
35796
|
+
|
|
35797
|
+
/**
|
|
35798
|
+
* optional int32 total_items = 2;
|
|
35799
|
+
* @return {number}
|
|
35800
|
+
*/
|
|
35801
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.getTotalItems = function() {
|
|
35802
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
35803
|
+
};
|
|
35804
|
+
|
|
35805
|
+
|
|
35806
|
+
/**
|
|
35807
|
+
* @param {number} value
|
|
35808
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35809
|
+
*/
|
|
35810
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.setTotalItems = function(value) {
|
|
35811
|
+
return jspb.Message.setField(this, 2, value);
|
|
35812
|
+
};
|
|
35813
|
+
|
|
35814
|
+
|
|
35815
|
+
/**
|
|
35816
|
+
* Clears the field making it undefined.
|
|
35817
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35818
|
+
*/
|
|
35819
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.clearTotalItems = function() {
|
|
35820
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
35821
|
+
};
|
|
35822
|
+
|
|
35823
|
+
|
|
35824
|
+
/**
|
|
35825
|
+
* Returns whether this field is set.
|
|
35826
|
+
* @return {boolean}
|
|
35827
|
+
*/
|
|
35828
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.hasTotalItems = function() {
|
|
35829
|
+
return jspb.Message.getField(this, 2) != null;
|
|
35830
|
+
};
|
|
35831
|
+
|
|
35832
|
+
|
|
35833
|
+
/**
|
|
35834
|
+
* optional bool truncated = 3;
|
|
35835
|
+
* @return {boolean}
|
|
35836
|
+
*/
|
|
35837
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.getTruncated = function() {
|
|
35838
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
35839
|
+
};
|
|
35840
|
+
|
|
35841
|
+
|
|
35842
|
+
/**
|
|
35843
|
+
* @param {boolean} value
|
|
35844
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35845
|
+
*/
|
|
35846
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.setTruncated = function(value) {
|
|
35847
|
+
return jspb.Message.setField(this, 3, value);
|
|
35848
|
+
};
|
|
35849
|
+
|
|
35850
|
+
|
|
35851
|
+
/**
|
|
35852
|
+
* Clears the field making it undefined.
|
|
35853
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35854
|
+
*/
|
|
35855
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.clearTruncated = function() {
|
|
35856
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
35857
|
+
};
|
|
35858
|
+
|
|
35859
|
+
|
|
35860
|
+
/**
|
|
35861
|
+
* Returns whether this field is set.
|
|
35862
|
+
* @return {boolean}
|
|
35863
|
+
*/
|
|
35864
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.hasTruncated = function() {
|
|
35865
|
+
return jspb.Message.getField(this, 3) != null;
|
|
35866
|
+
};
|
|
35867
|
+
|
|
35868
|
+
|
|
35869
|
+
|
|
35870
|
+
|
|
35871
|
+
|
|
35188
35872
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
35189
35873
|
/**
|
|
35190
35874
|
* Creates an object representation of this proto.
|