protobuf-platform 1.0.51 → 1.0.52
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 +1 -1
- package/game/game_grpc_pb.js +1 -1
- package/package.json +1 -1
package/game/game.proto
CHANGED
@@ -6,7 +6,7 @@ service Game {
|
|
6
6
|
rpc checkConnection(PingRequest) returns (PongResponse);
|
7
7
|
rpc getMediaResource(GetFileRequest) returns (stream File);
|
8
8
|
//Categories
|
9
|
-
rpc createSingleCategory(CategoryRequest) returns (CategoryResponse);
|
9
|
+
rpc createSingleCategory(stream CategoryRequest) returns (CategoryResponse);
|
10
10
|
rpc readSingleCategory(GetCategoryRequest) returns (CategoryResponse);
|
11
11
|
rpc updateSingleCategory(stream CategoryRequest) returns (CategoryResponse);
|
12
12
|
rpc deleteSingleCategory(GetCategoryRequest) returns (CategoryStatusResponse);
|
package/game/game_grpc_pb.js
CHANGED
@@ -141,7 +141,7 @@ var GameService = exports.GameService = {
|
|
141
141
|
// Categories
|
142
142
|
createSingleCategory: {
|
143
143
|
path: '/game.Game/createSingleCategory',
|
144
|
-
requestStream:
|
144
|
+
requestStream: true,
|
145
145
|
responseStream: false,
|
146
146
|
requestType: game_pb.CategoryRequest,
|
147
147
|
responseType: game_pb.CategoryResponse,
|