protobuf-platform 1.0.67 → 1.0.68
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_grpc_pb.js +22 -0
- package/package.json +1 -1
package/game/game.proto
CHANGED
@@ -18,6 +18,7 @@ service Game {
|
|
18
18
|
rpc deleteSingleCollection(GetCollectionRequest) returns (CollectionStatusResponse);
|
19
19
|
rpc readListCollections(PaginationRequest) returns (CollectionItemsResponse);
|
20
20
|
rpc addGamesToCollection(CollectionGamesRequest) returns (CollectionStatusResponse);
|
21
|
+
rpc removeGamesFromCollection(CollectionGamesRequest) returns (CollectionStatusResponse);
|
21
22
|
//Tags
|
22
23
|
rpc createSingleTag(stream TagRequest) returns (TagResponse);
|
23
24
|
rpc readSingleTag(GetTagRequest) returns (TagResponse);
|
@@ -25,6 +26,7 @@ service Game {
|
|
25
26
|
rpc deleteSingleTag(GetTagRequest) returns (TagStatusResponse);
|
26
27
|
rpc readListTags(PaginationRequest) returns (TagItemsResponse);
|
27
28
|
rpc addGamesToTag(TagGamesRequest) returns (TagStatusResponse);
|
29
|
+
rpc removeGamesFromTag(TagGamesRequest) returns (TagStatusResponse);
|
28
30
|
//Providers
|
29
31
|
rpc createSingleProvider(stream ProviderRequest) returns (ProviderResponse);
|
30
32
|
rpc readSingleProvider(GetProviderRequest) returns (ProviderResponse);
|
package/game/game_grpc_pb.js
CHANGED
@@ -547,6 +547,17 @@ createSingleCollection: {
|
|
547
547
|
responseSerialize: serialize_game_CollectionStatusResponse,
|
548
548
|
responseDeserialize: deserialize_game_CollectionStatusResponse,
|
549
549
|
},
|
550
|
+
removeGamesFromCollection: {
|
551
|
+
path: '/game.Game/removeGamesFromCollection',
|
552
|
+
requestStream: false,
|
553
|
+
responseStream: false,
|
554
|
+
requestType: game_pb.CollectionGamesRequest,
|
555
|
+
responseType: game_pb.CollectionStatusResponse,
|
556
|
+
requestSerialize: serialize_game_CollectionGamesRequest,
|
557
|
+
requestDeserialize: deserialize_game_CollectionGamesRequest,
|
558
|
+
responseSerialize: serialize_game_CollectionStatusResponse,
|
559
|
+
responseDeserialize: deserialize_game_CollectionStatusResponse,
|
560
|
+
},
|
550
561
|
// Tags
|
551
562
|
createSingleTag: {
|
552
563
|
path: '/game.Game/createSingleTag',
|
@@ -614,6 +625,17 @@ createSingleTag: {
|
|
614
625
|
responseSerialize: serialize_game_TagStatusResponse,
|
615
626
|
responseDeserialize: deserialize_game_TagStatusResponse,
|
616
627
|
},
|
628
|
+
removeGamesFromTag: {
|
629
|
+
path: '/game.Game/removeGamesFromTag',
|
630
|
+
requestStream: false,
|
631
|
+
responseStream: false,
|
632
|
+
requestType: game_pb.TagGamesRequest,
|
633
|
+
responseType: game_pb.TagStatusResponse,
|
634
|
+
requestSerialize: serialize_game_TagGamesRequest,
|
635
|
+
requestDeserialize: deserialize_game_TagGamesRequest,
|
636
|
+
responseSerialize: serialize_game_TagStatusResponse,
|
637
|
+
responseDeserialize: deserialize_game_TagStatusResponse,
|
638
|
+
},
|
617
639
|
// Providers
|
618
640
|
createSingleProvider: {
|
619
641
|
path: '/game.Game/createSingleProvider',
|