protobuf-platform 1.2.565 → 1.2.567
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 -0
- package/game/game_pb.js +930 -30
- package/package.json +1 -1
- package/tournament/tournament.proto +2 -0
- package/tournament/tournament_pb.js +97 -1
package/game/game.proto
CHANGED
|
@@ -247,6 +247,11 @@ message SyncImagesRequest {
|
|
|
247
247
|
}
|
|
248
248
|
//Media
|
|
249
249
|
message File { bytes media = 1; }
|
|
250
|
+
message EntityFileMetadata {
|
|
251
|
+
string type = 1;
|
|
252
|
+
string file_name = 2;
|
|
253
|
+
string file_type = 3;
|
|
254
|
+
}
|
|
250
255
|
message GetFileRequest { string file_name = 1; string instance_type = 2; }
|
|
251
256
|
//Category CRUD
|
|
252
257
|
message CategoryItem {
|
|
@@ -258,12 +263,15 @@ message CategoryItem {
|
|
|
258
263
|
optional string image = 6;
|
|
259
264
|
optional string image_cdn = 7;
|
|
260
265
|
optional int32 count_of_collections = 8;
|
|
266
|
+
optional string icon = 9;
|
|
267
|
+
optional string icon_cdn = 10;
|
|
261
268
|
}
|
|
262
269
|
//Category CRUD | Requests
|
|
263
270
|
message CategoryRequest {
|
|
264
271
|
oneof request {
|
|
265
272
|
CategoryItemRequest category_data = 1;
|
|
266
273
|
File file = 2;
|
|
274
|
+
EntityFileMetadata file_metadata = 3;
|
|
267
275
|
}
|
|
268
276
|
}
|
|
269
277
|
message CategoryItemRequest {
|
|
@@ -302,12 +310,15 @@ message CollectionItem {
|
|
|
302
310
|
optional string image = 7;
|
|
303
311
|
optional string image_cdn = 8;
|
|
304
312
|
optional int32 count_of_games = 9;
|
|
313
|
+
optional string icon = 10;
|
|
314
|
+
optional string icon_cdn = 11;
|
|
305
315
|
}
|
|
306
316
|
//Collection CRUD | Requests
|
|
307
317
|
message CollectionRequest {
|
|
308
318
|
oneof request {
|
|
309
319
|
CollectionItemRequest collection_data = 1;
|
|
310
320
|
File file = 2;
|
|
321
|
+
EntityFileMetadata file_metadata = 3;
|
|
311
322
|
}
|
|
312
323
|
}
|
|
313
324
|
message CollectionItemRequest {
|
|
@@ -351,12 +362,15 @@ message TagItem {
|
|
|
351
362
|
optional string image = 6;
|
|
352
363
|
optional string image_cdn = 7;
|
|
353
364
|
optional int32 count_of_games = 8;
|
|
365
|
+
optional string icon = 9;
|
|
366
|
+
optional string icon_cdn = 10;
|
|
354
367
|
}
|
|
355
368
|
//Tag CRUD | Requests
|
|
356
369
|
message TagRequest {
|
|
357
370
|
oneof request {
|
|
358
371
|
TagItemRequest tag_data = 1;
|
|
359
372
|
File file = 2;
|
|
373
|
+
EntityFileMetadata file_metadata = 3;
|
|
360
374
|
}
|
|
361
375
|
}
|
|
362
376
|
message TagItemRequest {
|
|
@@ -401,12 +415,15 @@ message ProviderItem {
|
|
|
401
415
|
optional int32 count_of_games = 8;
|
|
402
416
|
optional int32 is_popular = 9;
|
|
403
417
|
optional int32 is_deactivated = 10;
|
|
418
|
+
optional string icon = 11;
|
|
419
|
+
optional string icon_cdn = 12;
|
|
404
420
|
}
|
|
405
421
|
//Provider CRUD | Requests
|
|
406
422
|
message ProviderRequest {
|
|
407
423
|
oneof request {
|
|
408
424
|
ProviderItemRequest provider_data = 1;
|
|
409
425
|
File file = 2;
|
|
426
|
+
EntityFileMetadata file_metadata = 3;
|
|
410
427
|
}
|
|
411
428
|
}
|
|
412
429
|
message ProviderItemRequest {
|
|
@@ -580,6 +597,8 @@ message GameRelationItem {
|
|
|
580
597
|
optional string title = 3;
|
|
581
598
|
optional string image = 4;
|
|
582
599
|
repeated GameGeo game_geo = 5;
|
|
600
|
+
optional string icon = 6;
|
|
601
|
+
optional string icon_cdn = 7;
|
|
583
602
|
}
|
|
584
603
|
message GameGeo {
|
|
585
604
|
string geo = 1;
|