Skip to content

Commit

Permalink
WebUI: Minor changes to proto file
Browse files Browse the repository at this point in the history
  • Loading branch information
sachinbjohn committed May 7, 2023
1 parent dc8ac2d commit 5292bad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/typescript/webui/protos/sudokubeRPC.proto
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ message GetAvailableCuboidsResponse {
repeated EncodedDimensionBits dimensions = 1;
bool isChosen = 2;
}
repeated CuboidDef cuboids = 1;
}

message ManuallyUpdateCuboidsArgs {
Expand Down Expand Up @@ -119,7 +120,7 @@ message IsRenamedQueryArgs {

message IsRenamedQueryResponse {
repeated uint32 result = 1;
repeated bool isRenamed = 2;
bool isRenamed = 2;
}


Expand Down Expand Up @@ -149,7 +150,7 @@ message TransformDimensionsArgs {
message SelectDataCubeForQueryResponse {
message DimHierarchy {
string dimName = 1;
string numBits = 2;
uint32 numBits = 2;
repeated string levels = 3;
}
repeated DimHierarchy dimensions = 1;
Expand Down

0 comments on commit 5292bad

Please sign in to comment.