Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ansys/api/geometry/v0/bodies.proto
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ service Bodies

rpc Copy(CopyRequest) returns (Body);

rpc GetUpdateState(EntityIdentifier) returns (UpdateState);
}

enum GetType{
Expand Down
2 changes: 2 additions & 0 deletions ansys/api/geometry/v0/components.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ service Components{
rpc GetRootComponent(Empty) returns (GetRootComponentResponse);

rpc GetName(EntityIdentifier) returns (GetComponentNameResponse);

rpc GetUpdateState(EntityIdentifier) returns (UpdateState);
}

message GetAllRequest{
Expand Down
8 changes: 8 additions & 0 deletions ansys/api/geometry/v0/designs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ service Designs{

rpc Export(ExportRequest) returns(ExportResponse);

rpc GetAsJson(GetAsJsonRequest) returns(GetAsJsonResponse);
}

message GetAllResponse{
Expand Down Expand Up @@ -58,4 +59,11 @@ message ExportRequest {

message ExportResponse {
bytes data=1;
}

message GetAsJsonRequest {
string id=1;
}
message GetAsJsonResponse {
string json=1;
}
3 changes: 3 additions & 0 deletions ansys/api/geometry/v0/edges.proto
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ service Edges{
rpc GetLength(EntityIdentifier) returns(GetLengthResponse);

rpc IsDeleted(EntityIdentifier) returns(IsDeletedResponse);

rpc GetUpdateState(EntityIdentifier) returns (UpdateState);

}

message GetAllRequest{
Expand Down
2 changes: 2 additions & 0 deletions ansys/api/geometry/v0/faces.proto
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ service Faces{

rpc GetLoops(EntityIdentifier) returns (GetLoopsResponse);

rpc GetUpdateState(EntityIdentifier) returns (UpdateState);

}

message GetAllRequest{
Expand Down
4 changes: 4 additions & 0 deletions ansys/api/geometry/v0/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -524,3 +524,7 @@ enum PartExportFormat {
PARTEXPORTFORMAT_STEP = 4;
PARTEXPORTFORMAT_FMD = 5;
}

message UpdateState {
int32 state=1;
}