protobuf-platform 1.2.292 → 1.2.295
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 +19 -4
- package/game/game_grpc_pb.js +22 -0
- package/game/game_pb.js +448 -116
- package/package.json +1 -1
package/game/game.proto
CHANGED
|
@@ -71,6 +71,7 @@ service Game {
|
|
|
71
71
|
rpc parseGameImagesForProvider(ParseGameImagesForProviderRequest) returns (GameImagesParsingTechnicalResponse);
|
|
72
72
|
rpc parseGameImagesForAllInbound(ParseGameImagesForAllInboundRequest) returns (GameImagesParsingTechnicalResponse);
|
|
73
73
|
rpc syncGameImageUrls(SyncGameImageUrlsRequest) returns (GameImagesParsingTechnicalResponse);
|
|
74
|
+
rpc syncGameImageUrlsForProvider(SyncGameImageUrlsForProviderRequest) returns (GameImagesParsingTechnicalResponse);
|
|
74
75
|
rpc searchGames(PaginationRequest) returns (SearchGamesResponse);
|
|
75
76
|
//Vendor
|
|
76
77
|
rpc processedVendorActionCallback(VendorActionRequest) returns (VendorActionResponse);
|
|
@@ -424,6 +425,9 @@ message ParseGameImagesForProviderRequest {
|
|
|
424
425
|
}
|
|
425
426
|
message ParseGameImagesForAllInboundRequest {}
|
|
426
427
|
message SyncGameImageUrlsRequest {}
|
|
428
|
+
message SyncGameImageUrlsForProviderRequest {
|
|
429
|
+
string provider = 1;
|
|
430
|
+
}
|
|
427
431
|
message GameImagesParsingTechnicalResponse {
|
|
428
432
|
string status = 1;
|
|
429
433
|
int32 total = 2;
|
|
@@ -436,6 +440,18 @@ message IntegratorSettingsResponse { string data = 1; }
|
|
|
436
440
|
message IntegratorSelfValidationRequest { string vendor = 1; }
|
|
437
441
|
message IntegratorSelfValidationResponse { string data = 1; }
|
|
438
442
|
//Game CRUD
|
|
443
|
+
enum GameImageSlot {
|
|
444
|
+
GAME_IMAGE_SLOT_UNSPECIFIED = 0;
|
|
445
|
+
GAME_IMAGE_SLOT_REGULAR = 1;
|
|
446
|
+
GAME_IMAGE_SLOT_PORTRAIT = 2;
|
|
447
|
+
GAME_IMAGE_SLOT_LANDSCAPE = 3;
|
|
448
|
+
GAME_IMAGE_SLOT_SQUARE = 4;
|
|
449
|
+
}
|
|
450
|
+
message GameImageUploadMetadata {
|
|
451
|
+
GameImageSlot slot = 1;
|
|
452
|
+
string file_name = 2;
|
|
453
|
+
string file_type = 3;
|
|
454
|
+
}
|
|
439
455
|
message GameImages {
|
|
440
456
|
optional string portrait = 1;
|
|
441
457
|
optional string landscape = 2;
|
|
@@ -473,6 +489,7 @@ message GameRequest {
|
|
|
473
489
|
oneof request {
|
|
474
490
|
GameItemRequest game_data = 1;
|
|
475
491
|
File file = 2;
|
|
492
|
+
GameImageUploadMetadata game_image_metadata = 3;
|
|
476
493
|
}
|
|
477
494
|
}
|
|
478
495
|
message GameItemRequest {
|
|
@@ -487,10 +504,8 @@ message GameItemRequest {
|
|
|
487
504
|
optional int32 has_demo = 9;
|
|
488
505
|
optional int32 has_free_spins = 10;
|
|
489
506
|
optional string type = 11;
|
|
490
|
-
optional
|
|
491
|
-
optional
|
|
492
|
-
optional int32 is_top = 14;
|
|
493
|
-
optional int32 is_vip = 15;
|
|
507
|
+
optional int32 is_top = 12;
|
|
508
|
+
optional int32 is_vip = 13;
|
|
494
509
|
|
|
495
510
|
}
|
|
496
511
|
message GetGameRequest {
|
package/game/game_grpc_pb.js
CHANGED
|
@@ -928,6 +928,17 @@ function deserialize_game_SegmentedUserResponse(buffer_arg) {
|
|
|
928
928
|
return game_pb.SegmentedUserResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
929
929
|
}
|
|
930
930
|
|
|
931
|
+
function serialize_game_SyncGameImageUrlsForProviderRequest(arg) {
|
|
932
|
+
if (!(arg instanceof game_pb.SyncGameImageUrlsForProviderRequest)) {
|
|
933
|
+
throw new Error('Expected argument of type game.SyncGameImageUrlsForProviderRequest');
|
|
934
|
+
}
|
|
935
|
+
return Buffer.from(arg.serializeBinary());
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
function deserialize_game_SyncGameImageUrlsForProviderRequest(buffer_arg) {
|
|
939
|
+
return game_pb.SyncGameImageUrlsForProviderRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
940
|
+
}
|
|
941
|
+
|
|
931
942
|
function serialize_game_SyncGameImageUrlsRequest(arg) {
|
|
932
943
|
if (!(arg instanceof game_pb.SyncGameImageUrlsRequest)) {
|
|
933
944
|
throw new Error('Expected argument of type game.SyncGameImageUrlsRequest');
|
|
@@ -1785,6 +1796,17 @@ parseGameImagesForProvider: {
|
|
|
1785
1796
|
responseSerialize: serialize_game_GameImagesParsingTechnicalResponse,
|
|
1786
1797
|
responseDeserialize: deserialize_game_GameImagesParsingTechnicalResponse,
|
|
1787
1798
|
},
|
|
1799
|
+
syncGameImageUrlsForProvider: {
|
|
1800
|
+
path: '/game.Game/syncGameImageUrlsForProvider',
|
|
1801
|
+
requestStream: false,
|
|
1802
|
+
responseStream: false,
|
|
1803
|
+
requestType: game_pb.SyncGameImageUrlsForProviderRequest,
|
|
1804
|
+
responseType: game_pb.GameImagesParsingTechnicalResponse,
|
|
1805
|
+
requestSerialize: serialize_game_SyncGameImageUrlsForProviderRequest,
|
|
1806
|
+
requestDeserialize: deserialize_game_SyncGameImageUrlsForProviderRequest,
|
|
1807
|
+
responseSerialize: serialize_game_GameImagesParsingTechnicalResponse,
|
|
1808
|
+
responseDeserialize: deserialize_game_GameImagesParsingTechnicalResponse,
|
|
1809
|
+
},
|
|
1788
1810
|
searchGames: {
|
|
1789
1811
|
path: '/game.Game/searchGames',
|
|
1790
1812
|
requestStream: false,
|
package/game/game_pb.js
CHANGED
|
@@ -64,6 +64,8 @@ goog.exportSymbol('proto.game.FreeSpinSettingsResponse', null, global);
|
|
|
64
64
|
goog.exportSymbol('proto.game.FreeSpinStatusRequest', null, global);
|
|
65
65
|
goog.exportSymbol('proto.game.GameConfigCheckResponse', null, global);
|
|
66
66
|
goog.exportSymbol('proto.game.GameGeo', null, global);
|
|
67
|
+
goog.exportSymbol('proto.game.GameImageSlot', null, global);
|
|
68
|
+
goog.exportSymbol('proto.game.GameImageUploadMetadata', null, global);
|
|
67
69
|
goog.exportSymbol('proto.game.GameImages', null, global);
|
|
68
70
|
goog.exportSymbol('proto.game.GameImagesParsingTechnicalResponse', null, global);
|
|
69
71
|
goog.exportSymbol('proto.game.GameItem', null, global);
|
|
@@ -132,6 +134,7 @@ goog.exportSymbol('proto.game.SearchGamesIntoTagsRequest', null, global);
|
|
|
132
134
|
goog.exportSymbol('proto.game.SearchGamesResponse', null, global);
|
|
133
135
|
goog.exportSymbol('proto.game.SegmentedUserRequest', null, global);
|
|
134
136
|
goog.exportSymbol('proto.game.SegmentedUserResponse', null, global);
|
|
137
|
+
goog.exportSymbol('proto.game.SyncGameImageUrlsForProviderRequest', null, global);
|
|
135
138
|
goog.exportSymbol('proto.game.SyncGameImageUrlsRequest', null, global);
|
|
136
139
|
goog.exportSymbol('proto.game.SyncImagesRequest', null, global);
|
|
137
140
|
goog.exportSymbol('proto.game.TagGamesRequest', null, global);
|
|
@@ -1292,6 +1295,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
1292
1295
|
*/
|
|
1293
1296
|
proto.game.SyncGameImageUrlsRequest.displayName = 'proto.game.SyncGameImageUrlsRequest';
|
|
1294
1297
|
}
|
|
1298
|
+
/**
|
|
1299
|
+
* Generated by JsPbCodeGenerator.
|
|
1300
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1301
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1302
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1303
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1304
|
+
* valid.
|
|
1305
|
+
* @extends {jspb.Message}
|
|
1306
|
+
* @constructor
|
|
1307
|
+
*/
|
|
1308
|
+
proto.game.SyncGameImageUrlsForProviderRequest = function(opt_data) {
|
|
1309
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
1310
|
+
};
|
|
1311
|
+
goog.inherits(proto.game.SyncGameImageUrlsForProviderRequest, jspb.Message);
|
|
1312
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1313
|
+
/**
|
|
1314
|
+
* @public
|
|
1315
|
+
* @override
|
|
1316
|
+
*/
|
|
1317
|
+
proto.game.SyncGameImageUrlsForProviderRequest.displayName = 'proto.game.SyncGameImageUrlsForProviderRequest';
|
|
1318
|
+
}
|
|
1295
1319
|
/**
|
|
1296
1320
|
* Generated by JsPbCodeGenerator.
|
|
1297
1321
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -1397,6 +1421,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
1397
1421
|
*/
|
|
1398
1422
|
proto.game.IntegratorSelfValidationResponse.displayName = 'proto.game.IntegratorSelfValidationResponse';
|
|
1399
1423
|
}
|
|
1424
|
+
/**
|
|
1425
|
+
* Generated by JsPbCodeGenerator.
|
|
1426
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1427
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1428
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1429
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1430
|
+
* valid.
|
|
1431
|
+
* @extends {jspb.Message}
|
|
1432
|
+
* @constructor
|
|
1433
|
+
*/
|
|
1434
|
+
proto.game.GameImageUploadMetadata = function(opt_data) {
|
|
1435
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
1436
|
+
};
|
|
1437
|
+
goog.inherits(proto.game.GameImageUploadMetadata, jspb.Message);
|
|
1438
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1439
|
+
/**
|
|
1440
|
+
* @public
|
|
1441
|
+
* @override
|
|
1442
|
+
*/
|
|
1443
|
+
proto.game.GameImageUploadMetadata.displayName = 'proto.game.GameImageUploadMetadata';
|
|
1444
|
+
}
|
|
1400
1445
|
/**
|
|
1401
1446
|
* Generated by JsPbCodeGenerator.
|
|
1402
1447
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -17039,6 +17084,136 @@ proto.game.SyncGameImageUrlsRequest.serializeBinaryToWriter = function(message,
|
|
|
17039
17084
|
|
|
17040
17085
|
|
|
17041
17086
|
|
|
17087
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
17088
|
+
/**
|
|
17089
|
+
* Creates an object representation of this proto.
|
|
17090
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
17091
|
+
* Optional fields that are not set will be set to undefined.
|
|
17092
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
17093
|
+
* For the list of reserved names please see:
|
|
17094
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
17095
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
17096
|
+
* JSPB instance for transitional soy proto support:
|
|
17097
|
+
* http://goto/soy-param-migration
|
|
17098
|
+
* @return {!Object}
|
|
17099
|
+
*/
|
|
17100
|
+
proto.game.SyncGameImageUrlsForProviderRequest.prototype.toObject = function(opt_includeInstance) {
|
|
17101
|
+
return proto.game.SyncGameImageUrlsForProviderRequest.toObject(opt_includeInstance, this);
|
|
17102
|
+
};
|
|
17103
|
+
|
|
17104
|
+
|
|
17105
|
+
/**
|
|
17106
|
+
* Static version of the {@see toObject} method.
|
|
17107
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
17108
|
+
* the JSPB instance for transitional soy proto support:
|
|
17109
|
+
* http://goto/soy-param-migration
|
|
17110
|
+
* @param {!proto.game.SyncGameImageUrlsForProviderRequest} msg The msg instance to transform.
|
|
17111
|
+
* @return {!Object}
|
|
17112
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
17113
|
+
*/
|
|
17114
|
+
proto.game.SyncGameImageUrlsForProviderRequest.toObject = function(includeInstance, msg) {
|
|
17115
|
+
var f, obj = {
|
|
17116
|
+
provider: jspb.Message.getFieldWithDefault(msg, 1, "")
|
|
17117
|
+
};
|
|
17118
|
+
|
|
17119
|
+
if (includeInstance) {
|
|
17120
|
+
obj.$jspbMessageInstance = msg;
|
|
17121
|
+
}
|
|
17122
|
+
return obj;
|
|
17123
|
+
};
|
|
17124
|
+
}
|
|
17125
|
+
|
|
17126
|
+
|
|
17127
|
+
/**
|
|
17128
|
+
* Deserializes binary data (in protobuf wire format).
|
|
17129
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
17130
|
+
* @return {!proto.game.SyncGameImageUrlsForProviderRequest}
|
|
17131
|
+
*/
|
|
17132
|
+
proto.game.SyncGameImageUrlsForProviderRequest.deserializeBinary = function(bytes) {
|
|
17133
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
17134
|
+
var msg = new proto.game.SyncGameImageUrlsForProviderRequest;
|
|
17135
|
+
return proto.game.SyncGameImageUrlsForProviderRequest.deserializeBinaryFromReader(msg, reader);
|
|
17136
|
+
};
|
|
17137
|
+
|
|
17138
|
+
|
|
17139
|
+
/**
|
|
17140
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
17141
|
+
* given reader into the given message object.
|
|
17142
|
+
* @param {!proto.game.SyncGameImageUrlsForProviderRequest} msg The message object to deserialize into.
|
|
17143
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
17144
|
+
* @return {!proto.game.SyncGameImageUrlsForProviderRequest}
|
|
17145
|
+
*/
|
|
17146
|
+
proto.game.SyncGameImageUrlsForProviderRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
17147
|
+
while (reader.nextField()) {
|
|
17148
|
+
if (reader.isEndGroup()) {
|
|
17149
|
+
break;
|
|
17150
|
+
}
|
|
17151
|
+
var field = reader.getFieldNumber();
|
|
17152
|
+
switch (field) {
|
|
17153
|
+
case 1:
|
|
17154
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17155
|
+
msg.setProvider(value);
|
|
17156
|
+
break;
|
|
17157
|
+
default:
|
|
17158
|
+
reader.skipField();
|
|
17159
|
+
break;
|
|
17160
|
+
}
|
|
17161
|
+
}
|
|
17162
|
+
return msg;
|
|
17163
|
+
};
|
|
17164
|
+
|
|
17165
|
+
|
|
17166
|
+
/**
|
|
17167
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
17168
|
+
* @return {!Uint8Array}
|
|
17169
|
+
*/
|
|
17170
|
+
proto.game.SyncGameImageUrlsForProviderRequest.prototype.serializeBinary = function() {
|
|
17171
|
+
var writer = new jspb.BinaryWriter();
|
|
17172
|
+
proto.game.SyncGameImageUrlsForProviderRequest.serializeBinaryToWriter(this, writer);
|
|
17173
|
+
return writer.getResultBuffer();
|
|
17174
|
+
};
|
|
17175
|
+
|
|
17176
|
+
|
|
17177
|
+
/**
|
|
17178
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
17179
|
+
* format), writing to the given BinaryWriter.
|
|
17180
|
+
* @param {!proto.game.SyncGameImageUrlsForProviderRequest} message
|
|
17181
|
+
* @param {!jspb.BinaryWriter} writer
|
|
17182
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
17183
|
+
*/
|
|
17184
|
+
proto.game.SyncGameImageUrlsForProviderRequest.serializeBinaryToWriter = function(message, writer) {
|
|
17185
|
+
var f = undefined;
|
|
17186
|
+
f = message.getProvider();
|
|
17187
|
+
if (f.length > 0) {
|
|
17188
|
+
writer.writeString(
|
|
17189
|
+
1,
|
|
17190
|
+
f
|
|
17191
|
+
);
|
|
17192
|
+
}
|
|
17193
|
+
};
|
|
17194
|
+
|
|
17195
|
+
|
|
17196
|
+
/**
|
|
17197
|
+
* optional string provider = 1;
|
|
17198
|
+
* @return {string}
|
|
17199
|
+
*/
|
|
17200
|
+
proto.game.SyncGameImageUrlsForProviderRequest.prototype.getProvider = function() {
|
|
17201
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
17202
|
+
};
|
|
17203
|
+
|
|
17204
|
+
|
|
17205
|
+
/**
|
|
17206
|
+
* @param {string} value
|
|
17207
|
+
* @return {!proto.game.SyncGameImageUrlsForProviderRequest} returns this
|
|
17208
|
+
*/
|
|
17209
|
+
proto.game.SyncGameImageUrlsForProviderRequest.prototype.setProvider = function(value) {
|
|
17210
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
17211
|
+
};
|
|
17212
|
+
|
|
17213
|
+
|
|
17214
|
+
|
|
17215
|
+
|
|
17216
|
+
|
|
17042
17217
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
17043
17218
|
/**
|
|
17044
17219
|
* Creates an object representation of this proto.
|
|
@@ -17809,6 +17984,196 @@ proto.game.IntegratorSelfValidationResponse.prototype.setData = function(value)
|
|
|
17809
17984
|
|
|
17810
17985
|
|
|
17811
17986
|
|
|
17987
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
17988
|
+
/**
|
|
17989
|
+
* Creates an object representation of this proto.
|
|
17990
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
17991
|
+
* Optional fields that are not set will be set to undefined.
|
|
17992
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
17993
|
+
* For the list of reserved names please see:
|
|
17994
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
17995
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
17996
|
+
* JSPB instance for transitional soy proto support:
|
|
17997
|
+
* http://goto/soy-param-migration
|
|
17998
|
+
* @return {!Object}
|
|
17999
|
+
*/
|
|
18000
|
+
proto.game.GameImageUploadMetadata.prototype.toObject = function(opt_includeInstance) {
|
|
18001
|
+
return proto.game.GameImageUploadMetadata.toObject(opt_includeInstance, this);
|
|
18002
|
+
};
|
|
18003
|
+
|
|
18004
|
+
|
|
18005
|
+
/**
|
|
18006
|
+
* Static version of the {@see toObject} method.
|
|
18007
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
18008
|
+
* the JSPB instance for transitional soy proto support:
|
|
18009
|
+
* http://goto/soy-param-migration
|
|
18010
|
+
* @param {!proto.game.GameImageUploadMetadata} msg The msg instance to transform.
|
|
18011
|
+
* @return {!Object}
|
|
18012
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
18013
|
+
*/
|
|
18014
|
+
proto.game.GameImageUploadMetadata.toObject = function(includeInstance, msg) {
|
|
18015
|
+
var f, obj = {
|
|
18016
|
+
slot: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
18017
|
+
fileName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
18018
|
+
fileType: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
18019
|
+
};
|
|
18020
|
+
|
|
18021
|
+
if (includeInstance) {
|
|
18022
|
+
obj.$jspbMessageInstance = msg;
|
|
18023
|
+
}
|
|
18024
|
+
return obj;
|
|
18025
|
+
};
|
|
18026
|
+
}
|
|
18027
|
+
|
|
18028
|
+
|
|
18029
|
+
/**
|
|
18030
|
+
* Deserializes binary data (in protobuf wire format).
|
|
18031
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
18032
|
+
* @return {!proto.game.GameImageUploadMetadata}
|
|
18033
|
+
*/
|
|
18034
|
+
proto.game.GameImageUploadMetadata.deserializeBinary = function(bytes) {
|
|
18035
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
18036
|
+
var msg = new proto.game.GameImageUploadMetadata;
|
|
18037
|
+
return proto.game.GameImageUploadMetadata.deserializeBinaryFromReader(msg, reader);
|
|
18038
|
+
};
|
|
18039
|
+
|
|
18040
|
+
|
|
18041
|
+
/**
|
|
18042
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
18043
|
+
* given reader into the given message object.
|
|
18044
|
+
* @param {!proto.game.GameImageUploadMetadata} msg The message object to deserialize into.
|
|
18045
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
18046
|
+
* @return {!proto.game.GameImageUploadMetadata}
|
|
18047
|
+
*/
|
|
18048
|
+
proto.game.GameImageUploadMetadata.deserializeBinaryFromReader = function(msg, reader) {
|
|
18049
|
+
while (reader.nextField()) {
|
|
18050
|
+
if (reader.isEndGroup()) {
|
|
18051
|
+
break;
|
|
18052
|
+
}
|
|
18053
|
+
var field = reader.getFieldNumber();
|
|
18054
|
+
switch (field) {
|
|
18055
|
+
case 1:
|
|
18056
|
+
var value = /** @type {!proto.game.GameImageSlot} */ (reader.readEnum());
|
|
18057
|
+
msg.setSlot(value);
|
|
18058
|
+
break;
|
|
18059
|
+
case 2:
|
|
18060
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18061
|
+
msg.setFileName(value);
|
|
18062
|
+
break;
|
|
18063
|
+
case 3:
|
|
18064
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18065
|
+
msg.setFileType(value);
|
|
18066
|
+
break;
|
|
18067
|
+
default:
|
|
18068
|
+
reader.skipField();
|
|
18069
|
+
break;
|
|
18070
|
+
}
|
|
18071
|
+
}
|
|
18072
|
+
return msg;
|
|
18073
|
+
};
|
|
18074
|
+
|
|
18075
|
+
|
|
18076
|
+
/**
|
|
18077
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
18078
|
+
* @return {!Uint8Array}
|
|
18079
|
+
*/
|
|
18080
|
+
proto.game.GameImageUploadMetadata.prototype.serializeBinary = function() {
|
|
18081
|
+
var writer = new jspb.BinaryWriter();
|
|
18082
|
+
proto.game.GameImageUploadMetadata.serializeBinaryToWriter(this, writer);
|
|
18083
|
+
return writer.getResultBuffer();
|
|
18084
|
+
};
|
|
18085
|
+
|
|
18086
|
+
|
|
18087
|
+
/**
|
|
18088
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
18089
|
+
* format), writing to the given BinaryWriter.
|
|
18090
|
+
* @param {!proto.game.GameImageUploadMetadata} message
|
|
18091
|
+
* @param {!jspb.BinaryWriter} writer
|
|
18092
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
18093
|
+
*/
|
|
18094
|
+
proto.game.GameImageUploadMetadata.serializeBinaryToWriter = function(message, writer) {
|
|
18095
|
+
var f = undefined;
|
|
18096
|
+
f = message.getSlot();
|
|
18097
|
+
if (f !== 0.0) {
|
|
18098
|
+
writer.writeEnum(
|
|
18099
|
+
1,
|
|
18100
|
+
f
|
|
18101
|
+
);
|
|
18102
|
+
}
|
|
18103
|
+
f = message.getFileName();
|
|
18104
|
+
if (f.length > 0) {
|
|
18105
|
+
writer.writeString(
|
|
18106
|
+
2,
|
|
18107
|
+
f
|
|
18108
|
+
);
|
|
18109
|
+
}
|
|
18110
|
+
f = message.getFileType();
|
|
18111
|
+
if (f.length > 0) {
|
|
18112
|
+
writer.writeString(
|
|
18113
|
+
3,
|
|
18114
|
+
f
|
|
18115
|
+
);
|
|
18116
|
+
}
|
|
18117
|
+
};
|
|
18118
|
+
|
|
18119
|
+
|
|
18120
|
+
/**
|
|
18121
|
+
* optional GameImageSlot slot = 1;
|
|
18122
|
+
* @return {!proto.game.GameImageSlot}
|
|
18123
|
+
*/
|
|
18124
|
+
proto.game.GameImageUploadMetadata.prototype.getSlot = function() {
|
|
18125
|
+
return /** @type {!proto.game.GameImageSlot} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
18126
|
+
};
|
|
18127
|
+
|
|
18128
|
+
|
|
18129
|
+
/**
|
|
18130
|
+
* @param {!proto.game.GameImageSlot} value
|
|
18131
|
+
* @return {!proto.game.GameImageUploadMetadata} returns this
|
|
18132
|
+
*/
|
|
18133
|
+
proto.game.GameImageUploadMetadata.prototype.setSlot = function(value) {
|
|
18134
|
+
return jspb.Message.setProto3EnumField(this, 1, value);
|
|
18135
|
+
};
|
|
18136
|
+
|
|
18137
|
+
|
|
18138
|
+
/**
|
|
18139
|
+
* optional string file_name = 2;
|
|
18140
|
+
* @return {string}
|
|
18141
|
+
*/
|
|
18142
|
+
proto.game.GameImageUploadMetadata.prototype.getFileName = function() {
|
|
18143
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
18144
|
+
};
|
|
18145
|
+
|
|
18146
|
+
|
|
18147
|
+
/**
|
|
18148
|
+
* @param {string} value
|
|
18149
|
+
* @return {!proto.game.GameImageUploadMetadata} returns this
|
|
18150
|
+
*/
|
|
18151
|
+
proto.game.GameImageUploadMetadata.prototype.setFileName = function(value) {
|
|
18152
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
18153
|
+
};
|
|
18154
|
+
|
|
18155
|
+
|
|
18156
|
+
/**
|
|
18157
|
+
* optional string file_type = 3;
|
|
18158
|
+
* @return {string}
|
|
18159
|
+
*/
|
|
18160
|
+
proto.game.GameImageUploadMetadata.prototype.getFileType = function() {
|
|
18161
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
18162
|
+
};
|
|
18163
|
+
|
|
18164
|
+
|
|
18165
|
+
/**
|
|
18166
|
+
* @param {string} value
|
|
18167
|
+
* @return {!proto.game.GameImageUploadMetadata} returns this
|
|
18168
|
+
*/
|
|
18169
|
+
proto.game.GameImageUploadMetadata.prototype.setFileType = function(value) {
|
|
18170
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
18171
|
+
};
|
|
18172
|
+
|
|
18173
|
+
|
|
18174
|
+
|
|
18175
|
+
|
|
18176
|
+
|
|
17812
18177
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
17813
18178
|
/**
|
|
17814
18179
|
* Creates an object representation of this proto.
|
|
@@ -19373,7 +19738,7 @@ proto.game.GameItem.prototype.hasImages = function() {
|
|
|
19373
19738
|
* @private {!Array<!Array<number>>}
|
|
19374
19739
|
* @const
|
|
19375
19740
|
*/
|
|
19376
|
-
proto.game.GameRequest.oneofGroups_ = [[1,2]];
|
|
19741
|
+
proto.game.GameRequest.oneofGroups_ = [[1,2,3]];
|
|
19377
19742
|
|
|
19378
19743
|
/**
|
|
19379
19744
|
* @enum {number}
|
|
@@ -19381,7 +19746,8 @@ proto.game.GameRequest.oneofGroups_ = [[1,2]];
|
|
|
19381
19746
|
proto.game.GameRequest.RequestCase = {
|
|
19382
19747
|
REQUEST_NOT_SET: 0,
|
|
19383
19748
|
GAME_DATA: 1,
|
|
19384
|
-
FILE: 2
|
|
19749
|
+
FILE: 2,
|
|
19750
|
+
GAME_IMAGE_METADATA: 3
|
|
19385
19751
|
};
|
|
19386
19752
|
|
|
19387
19753
|
/**
|
|
@@ -19423,7 +19789,8 @@ proto.game.GameRequest.prototype.toObject = function(opt_includeInstance) {
|
|
|
19423
19789
|
proto.game.GameRequest.toObject = function(includeInstance, msg) {
|
|
19424
19790
|
var f, obj = {
|
|
19425
19791
|
gameData: (f = msg.getGameData()) && proto.game.GameItemRequest.toObject(includeInstance, f),
|
|
19426
|
-
file: (f = msg.getFile()) && proto.game.File.toObject(includeInstance, f)
|
|
19792
|
+
file: (f = msg.getFile()) && proto.game.File.toObject(includeInstance, f),
|
|
19793
|
+
gameImageMetadata: (f = msg.getGameImageMetadata()) && proto.game.GameImageUploadMetadata.toObject(includeInstance, f)
|
|
19427
19794
|
};
|
|
19428
19795
|
|
|
19429
19796
|
if (includeInstance) {
|
|
@@ -19470,6 +19837,11 @@ proto.game.GameRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
19470
19837
|
reader.readMessage(value,proto.game.File.deserializeBinaryFromReader);
|
|
19471
19838
|
msg.setFile(value);
|
|
19472
19839
|
break;
|
|
19840
|
+
case 3:
|
|
19841
|
+
var value = new proto.game.GameImageUploadMetadata;
|
|
19842
|
+
reader.readMessage(value,proto.game.GameImageUploadMetadata.deserializeBinaryFromReader);
|
|
19843
|
+
msg.setGameImageMetadata(value);
|
|
19844
|
+
break;
|
|
19473
19845
|
default:
|
|
19474
19846
|
reader.skipField();
|
|
19475
19847
|
break;
|
|
@@ -19515,6 +19887,14 @@ proto.game.GameRequest.serializeBinaryToWriter = function(message, writer) {
|
|
|
19515
19887
|
proto.game.File.serializeBinaryToWriter
|
|
19516
19888
|
);
|
|
19517
19889
|
}
|
|
19890
|
+
f = message.getGameImageMetadata();
|
|
19891
|
+
if (f != null) {
|
|
19892
|
+
writer.writeMessage(
|
|
19893
|
+
3,
|
|
19894
|
+
f,
|
|
19895
|
+
proto.game.GameImageUploadMetadata.serializeBinaryToWriter
|
|
19896
|
+
);
|
|
19897
|
+
}
|
|
19518
19898
|
};
|
|
19519
19899
|
|
|
19520
19900
|
|
|
@@ -19592,6 +19972,43 @@ proto.game.GameRequest.prototype.hasFile = function() {
|
|
|
19592
19972
|
};
|
|
19593
19973
|
|
|
19594
19974
|
|
|
19975
|
+
/**
|
|
19976
|
+
* optional GameImageUploadMetadata game_image_metadata = 3;
|
|
19977
|
+
* @return {?proto.game.GameImageUploadMetadata}
|
|
19978
|
+
*/
|
|
19979
|
+
proto.game.GameRequest.prototype.getGameImageMetadata = function() {
|
|
19980
|
+
return /** @type{?proto.game.GameImageUploadMetadata} */ (
|
|
19981
|
+
jspb.Message.getWrapperField(this, proto.game.GameImageUploadMetadata, 3));
|
|
19982
|
+
};
|
|
19983
|
+
|
|
19984
|
+
|
|
19985
|
+
/**
|
|
19986
|
+
* @param {?proto.game.GameImageUploadMetadata|undefined} value
|
|
19987
|
+
* @return {!proto.game.GameRequest} returns this
|
|
19988
|
+
*/
|
|
19989
|
+
proto.game.GameRequest.prototype.setGameImageMetadata = function(value) {
|
|
19990
|
+
return jspb.Message.setOneofWrapperField(this, 3, proto.game.GameRequest.oneofGroups_[0], value);
|
|
19991
|
+
};
|
|
19992
|
+
|
|
19993
|
+
|
|
19994
|
+
/**
|
|
19995
|
+
* Clears the message field making it undefined.
|
|
19996
|
+
* @return {!proto.game.GameRequest} returns this
|
|
19997
|
+
*/
|
|
19998
|
+
proto.game.GameRequest.prototype.clearGameImageMetadata = function() {
|
|
19999
|
+
return this.setGameImageMetadata(undefined);
|
|
20000
|
+
};
|
|
20001
|
+
|
|
20002
|
+
|
|
20003
|
+
/**
|
|
20004
|
+
* Returns whether this field is set.
|
|
20005
|
+
* @return {boolean}
|
|
20006
|
+
*/
|
|
20007
|
+
proto.game.GameRequest.prototype.hasGameImageMetadata = function() {
|
|
20008
|
+
return jspb.Message.getField(this, 3) != null;
|
|
20009
|
+
};
|
|
20010
|
+
|
|
20011
|
+
|
|
19595
20012
|
|
|
19596
20013
|
|
|
19597
20014
|
|
|
@@ -19635,10 +20052,8 @@ proto.game.GameItemRequest.toObject = function(includeInstance, msg) {
|
|
|
19635
20052
|
hasDemo: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
19636
20053
|
hasFreeSpins: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
19637
20054
|
type: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
19638
|
-
|
|
19639
|
-
|
|
19640
|
-
isTop: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
19641
|
-
isVip: jspb.Message.getFieldWithDefault(msg, 15, 0)
|
|
20055
|
+
isTop: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
20056
|
+
isVip: jspb.Message.getFieldWithDefault(msg, 13, 0)
|
|
19642
20057
|
};
|
|
19643
20058
|
|
|
19644
20059
|
if (includeInstance) {
|
|
@@ -19721,18 +20136,10 @@ proto.game.GameItemRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
19721
20136
|
msg.setType(value);
|
|
19722
20137
|
break;
|
|
19723
20138
|
case 12:
|
|
19724
|
-
var value = /** @type {string} */ (reader.readString());
|
|
19725
|
-
msg.setFileName(value);
|
|
19726
|
-
break;
|
|
19727
|
-
case 13:
|
|
19728
|
-
var value = /** @type {string} */ (reader.readString());
|
|
19729
|
-
msg.setFileType(value);
|
|
19730
|
-
break;
|
|
19731
|
-
case 14:
|
|
19732
20139
|
var value = /** @type {number} */ (reader.readInt32());
|
|
19733
20140
|
msg.setIsTop(value);
|
|
19734
20141
|
break;
|
|
19735
|
-
case
|
|
20142
|
+
case 13:
|
|
19736
20143
|
var value = /** @type {number} */ (reader.readInt32());
|
|
19737
20144
|
msg.setIsVip(value);
|
|
19738
20145
|
break;
|
|
@@ -19843,31 +20250,17 @@ proto.game.GameItemRequest.serializeBinaryToWriter = function(message, writer) {
|
|
|
19843
20250
|
f
|
|
19844
20251
|
);
|
|
19845
20252
|
}
|
|
19846
|
-
f = /** @type {
|
|
19847
|
-
if (f != null) {
|
|
19848
|
-
writer.writeString(
|
|
19849
|
-
12,
|
|
19850
|
-
f
|
|
19851
|
-
);
|
|
19852
|
-
}
|
|
19853
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
19854
|
-
if (f != null) {
|
|
19855
|
-
writer.writeString(
|
|
19856
|
-
13,
|
|
19857
|
-
f
|
|
19858
|
-
);
|
|
19859
|
-
}
|
|
19860
|
-
f = /** @type {number} */ (jspb.Message.getField(message, 14));
|
|
20253
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 12));
|
|
19861
20254
|
if (f != null) {
|
|
19862
20255
|
writer.writeInt32(
|
|
19863
|
-
|
|
20256
|
+
12,
|
|
19864
20257
|
f
|
|
19865
20258
|
);
|
|
19866
20259
|
}
|
|
19867
|
-
f = /** @type {number} */ (jspb.Message.getField(message,
|
|
20260
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 13));
|
|
19868
20261
|
if (f != null) {
|
|
19869
20262
|
writer.writeInt32(
|
|
19870
|
-
|
|
20263
|
+
13,
|
|
19871
20264
|
f
|
|
19872
20265
|
);
|
|
19873
20266
|
}
|
|
@@ -20272,83 +20665,11 @@ proto.game.GameItemRequest.prototype.hasType = function() {
|
|
|
20272
20665
|
|
|
20273
20666
|
|
|
20274
20667
|
/**
|
|
20275
|
-
* optional
|
|
20276
|
-
* @return {string}
|
|
20277
|
-
*/
|
|
20278
|
-
proto.game.GameItemRequest.prototype.getFileName = function() {
|
|
20279
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
20280
|
-
};
|
|
20281
|
-
|
|
20282
|
-
|
|
20283
|
-
/**
|
|
20284
|
-
* @param {string} value
|
|
20285
|
-
* @return {!proto.game.GameItemRequest} returns this
|
|
20286
|
-
*/
|
|
20287
|
-
proto.game.GameItemRequest.prototype.setFileName = function(value) {
|
|
20288
|
-
return jspb.Message.setField(this, 12, value);
|
|
20289
|
-
};
|
|
20290
|
-
|
|
20291
|
-
|
|
20292
|
-
/**
|
|
20293
|
-
* Clears the field making it undefined.
|
|
20294
|
-
* @return {!proto.game.GameItemRequest} returns this
|
|
20295
|
-
*/
|
|
20296
|
-
proto.game.GameItemRequest.prototype.clearFileName = function() {
|
|
20297
|
-
return jspb.Message.setField(this, 12, undefined);
|
|
20298
|
-
};
|
|
20299
|
-
|
|
20300
|
-
|
|
20301
|
-
/**
|
|
20302
|
-
* Returns whether this field is set.
|
|
20303
|
-
* @return {boolean}
|
|
20304
|
-
*/
|
|
20305
|
-
proto.game.GameItemRequest.prototype.hasFileName = function() {
|
|
20306
|
-
return jspb.Message.getField(this, 12) != null;
|
|
20307
|
-
};
|
|
20308
|
-
|
|
20309
|
-
|
|
20310
|
-
/**
|
|
20311
|
-
* optional string file_type = 13;
|
|
20312
|
-
* @return {string}
|
|
20313
|
-
*/
|
|
20314
|
-
proto.game.GameItemRequest.prototype.getFileType = function() {
|
|
20315
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
20316
|
-
};
|
|
20317
|
-
|
|
20318
|
-
|
|
20319
|
-
/**
|
|
20320
|
-
* @param {string} value
|
|
20321
|
-
* @return {!proto.game.GameItemRequest} returns this
|
|
20322
|
-
*/
|
|
20323
|
-
proto.game.GameItemRequest.prototype.setFileType = function(value) {
|
|
20324
|
-
return jspb.Message.setField(this, 13, value);
|
|
20325
|
-
};
|
|
20326
|
-
|
|
20327
|
-
|
|
20328
|
-
/**
|
|
20329
|
-
* Clears the field making it undefined.
|
|
20330
|
-
* @return {!proto.game.GameItemRequest} returns this
|
|
20331
|
-
*/
|
|
20332
|
-
proto.game.GameItemRequest.prototype.clearFileType = function() {
|
|
20333
|
-
return jspb.Message.setField(this, 13, undefined);
|
|
20334
|
-
};
|
|
20335
|
-
|
|
20336
|
-
|
|
20337
|
-
/**
|
|
20338
|
-
* Returns whether this field is set.
|
|
20339
|
-
* @return {boolean}
|
|
20340
|
-
*/
|
|
20341
|
-
proto.game.GameItemRequest.prototype.hasFileType = function() {
|
|
20342
|
-
return jspb.Message.getField(this, 13) != null;
|
|
20343
|
-
};
|
|
20344
|
-
|
|
20345
|
-
|
|
20346
|
-
/**
|
|
20347
|
-
* optional int32 is_top = 14;
|
|
20668
|
+
* optional int32 is_top = 12;
|
|
20348
20669
|
* @return {number}
|
|
20349
20670
|
*/
|
|
20350
20671
|
proto.game.GameItemRequest.prototype.getIsTop = function() {
|
|
20351
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
20672
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
20352
20673
|
};
|
|
20353
20674
|
|
|
20354
20675
|
|
|
@@ -20357,7 +20678,7 @@ proto.game.GameItemRequest.prototype.getIsTop = function() {
|
|
|
20357
20678
|
* @return {!proto.game.GameItemRequest} returns this
|
|
20358
20679
|
*/
|
|
20359
20680
|
proto.game.GameItemRequest.prototype.setIsTop = function(value) {
|
|
20360
|
-
return jspb.Message.setField(this,
|
|
20681
|
+
return jspb.Message.setField(this, 12, value);
|
|
20361
20682
|
};
|
|
20362
20683
|
|
|
20363
20684
|
|
|
@@ -20366,7 +20687,7 @@ proto.game.GameItemRequest.prototype.setIsTop = function(value) {
|
|
|
20366
20687
|
* @return {!proto.game.GameItemRequest} returns this
|
|
20367
20688
|
*/
|
|
20368
20689
|
proto.game.GameItemRequest.prototype.clearIsTop = function() {
|
|
20369
|
-
return jspb.Message.setField(this,
|
|
20690
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
20370
20691
|
};
|
|
20371
20692
|
|
|
20372
20693
|
|
|
@@ -20375,16 +20696,16 @@ proto.game.GameItemRequest.prototype.clearIsTop = function() {
|
|
|
20375
20696
|
* @return {boolean}
|
|
20376
20697
|
*/
|
|
20377
20698
|
proto.game.GameItemRequest.prototype.hasIsTop = function() {
|
|
20378
|
-
return jspb.Message.getField(this,
|
|
20699
|
+
return jspb.Message.getField(this, 12) != null;
|
|
20379
20700
|
};
|
|
20380
20701
|
|
|
20381
20702
|
|
|
20382
20703
|
/**
|
|
20383
|
-
* optional int32 is_vip =
|
|
20704
|
+
* optional int32 is_vip = 13;
|
|
20384
20705
|
* @return {number}
|
|
20385
20706
|
*/
|
|
20386
20707
|
proto.game.GameItemRequest.prototype.getIsVip = function() {
|
|
20387
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
20708
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
|
|
20388
20709
|
};
|
|
20389
20710
|
|
|
20390
20711
|
|
|
@@ -20393,7 +20714,7 @@ proto.game.GameItemRequest.prototype.getIsVip = function() {
|
|
|
20393
20714
|
* @return {!proto.game.GameItemRequest} returns this
|
|
20394
20715
|
*/
|
|
20395
20716
|
proto.game.GameItemRequest.prototype.setIsVip = function(value) {
|
|
20396
|
-
return jspb.Message.setField(this,
|
|
20717
|
+
return jspb.Message.setField(this, 13, value);
|
|
20397
20718
|
};
|
|
20398
20719
|
|
|
20399
20720
|
|
|
@@ -20402,7 +20723,7 @@ proto.game.GameItemRequest.prototype.setIsVip = function(value) {
|
|
|
20402
20723
|
* @return {!proto.game.GameItemRequest} returns this
|
|
20403
20724
|
*/
|
|
20404
20725
|
proto.game.GameItemRequest.prototype.clearIsVip = function() {
|
|
20405
|
-
return jspb.Message.setField(this,
|
|
20726
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
20406
20727
|
};
|
|
20407
20728
|
|
|
20408
20729
|
|
|
@@ -20411,7 +20732,7 @@ proto.game.GameItemRequest.prototype.clearIsVip = function() {
|
|
|
20411
20732
|
* @return {boolean}
|
|
20412
20733
|
*/
|
|
20413
20734
|
proto.game.GameItemRequest.prototype.hasIsVip = function() {
|
|
20414
|
-
return jspb.Message.getField(this,
|
|
20735
|
+
return jspb.Message.getField(this, 13) != null;
|
|
20415
20736
|
};
|
|
20416
20737
|
|
|
20417
20738
|
|
|
@@ -38417,4 +38738,15 @@ proto.game.GeoRestrictionResponse.prototype.clearGeoList = function() {
|
|
|
38417
38738
|
};
|
|
38418
38739
|
|
|
38419
38740
|
|
|
38741
|
+
/**
|
|
38742
|
+
* @enum {number}
|
|
38743
|
+
*/
|
|
38744
|
+
proto.game.GameImageSlot = {
|
|
38745
|
+
GAME_IMAGE_SLOT_UNSPECIFIED: 0,
|
|
38746
|
+
GAME_IMAGE_SLOT_REGULAR: 1,
|
|
38747
|
+
GAME_IMAGE_SLOT_PORTRAIT: 2,
|
|
38748
|
+
GAME_IMAGE_SLOT_LANDSCAPE: 3,
|
|
38749
|
+
GAME_IMAGE_SLOT_SQUARE: 4
|
|
38750
|
+
};
|
|
38751
|
+
|
|
38420
38752
|
goog.object.extend(exports, proto.game);
|