protobuf-platform 1.0.261 → 1.0.263
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/config/config.proto +16 -0
- package/config/config_grpc_pb.js +34 -0
- package/config/config_pb.js +604 -0
- package/game/game.proto +17 -0
- package/game/game_grpc_pb.js +45 -0
- package/game/game_pb.js +636 -0
- package/package.json +1 -1
package/game/game.proto
CHANGED
@@ -76,6 +76,9 @@ service Game {
|
|
76
76
|
rpc getPoorWagerLists(WagerSearchRequest) returns (WagerListItemsResponse);
|
77
77
|
//Dashboard
|
78
78
|
rpc getDashboardInfo(DashboardRequest) returns (DashboardResponse);
|
79
|
+
//SEO
|
80
|
+
rpc setSEOInstanceAttributes(SEOInstanceRequest) returns (GameStatusResponse);
|
81
|
+
rpc readSEOInstanceAttributes(SEOInstanceRequest) returns (SEOInstanceResponse);
|
79
82
|
}
|
80
83
|
|
81
84
|
message PingRequest { string ping = 1; }
|
@@ -548,4 +551,18 @@ message DashboardRequest {
|
|
548
551
|
message DashboardResponse {
|
549
552
|
int32 free_spins_total = 1;
|
550
553
|
int32 free_spins_played = 2;
|
554
|
+
}
|
555
|
+
//SEO
|
556
|
+
message SEOAttribute {
|
557
|
+
string key = 1;
|
558
|
+
string value = 2;
|
559
|
+
}
|
560
|
+
message SEOInstanceRequest {
|
561
|
+
int32 instance_id = 1;
|
562
|
+
string instance_type = 2;
|
563
|
+
string locale = 3;
|
564
|
+
repeated SEOAttribute attributes = 4;
|
565
|
+
}
|
566
|
+
message SEOInstanceResponse {
|
567
|
+
repeated SEOAttribute attributes = 1;
|
551
568
|
}
|
package/game/game_grpc_pb.js
CHANGED
@@ -576,6 +576,28 @@ function deserialize_game_ProviderStatusResponse(buffer_arg) {
|
|
576
576
|
return game_pb.ProviderStatusResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
577
577
|
}
|
578
578
|
|
579
|
+
function serialize_game_SEOInstanceRequest(arg) {
|
580
|
+
if (!(arg instanceof game_pb.SEOInstanceRequest)) {
|
581
|
+
throw new Error('Expected argument of type game.SEOInstanceRequest');
|
582
|
+
}
|
583
|
+
return Buffer.from(arg.serializeBinary());
|
584
|
+
}
|
585
|
+
|
586
|
+
function deserialize_game_SEOInstanceRequest(buffer_arg) {
|
587
|
+
return game_pb.SEOInstanceRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
588
|
+
}
|
589
|
+
|
590
|
+
function serialize_game_SEOInstanceResponse(arg) {
|
591
|
+
if (!(arg instanceof game_pb.SEOInstanceResponse)) {
|
592
|
+
throw new Error('Expected argument of type game.SEOInstanceResponse');
|
593
|
+
}
|
594
|
+
return Buffer.from(arg.serializeBinary());
|
595
|
+
}
|
596
|
+
|
597
|
+
function deserialize_game_SEOInstanceResponse(buffer_arg) {
|
598
|
+
return game_pb.SEOInstanceResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
599
|
+
}
|
600
|
+
|
579
601
|
function serialize_game_ScopeRequest(arg) {
|
580
602
|
if (!(arg instanceof game_pb.ScopeRequest)) {
|
581
603
|
throw new Error('Expected argument of type game.ScopeRequest');
|
@@ -1457,6 +1479,29 @@ getDashboardInfo: {
|
|
1457
1479
|
responseSerialize: serialize_game_DashboardResponse,
|
1458
1480
|
responseDeserialize: deserialize_game_DashboardResponse,
|
1459
1481
|
},
|
1482
|
+
// SEO
|
1483
|
+
setSEOInstanceAttributes: {
|
1484
|
+
path: '/game.Game/setSEOInstanceAttributes',
|
1485
|
+
requestStream: false,
|
1486
|
+
responseStream: false,
|
1487
|
+
requestType: game_pb.SEOInstanceRequest,
|
1488
|
+
responseType: game_pb.GameStatusResponse,
|
1489
|
+
requestSerialize: serialize_game_SEOInstanceRequest,
|
1490
|
+
requestDeserialize: deserialize_game_SEOInstanceRequest,
|
1491
|
+
responseSerialize: serialize_game_GameStatusResponse,
|
1492
|
+
responseDeserialize: deserialize_game_GameStatusResponse,
|
1493
|
+
},
|
1494
|
+
readSEOInstanceAttributes: {
|
1495
|
+
path: '/game.Game/readSEOInstanceAttributes',
|
1496
|
+
requestStream: false,
|
1497
|
+
responseStream: false,
|
1498
|
+
requestType: game_pb.SEOInstanceRequest,
|
1499
|
+
responseType: game_pb.SEOInstanceResponse,
|
1500
|
+
requestSerialize: serialize_game_SEOInstanceRequest,
|
1501
|
+
requestDeserialize: deserialize_game_SEOInstanceRequest,
|
1502
|
+
responseSerialize: serialize_game_SEOInstanceResponse,
|
1503
|
+
responseDeserialize: deserialize_game_SEOInstanceResponse,
|
1504
|
+
},
|
1460
1505
|
};
|
1461
1506
|
|
1462
1507
|
exports.GameClient = grpc.makeGenericClientConstructor(GameService);
|