File tree Expand file tree Collapse file tree 6 files changed +20
-0
lines changed Expand file tree Collapse file tree 6 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ service Bodies
4545
4646 rpc Copy (CopyRequest ) returns (Body );
4747
48+ rpc GetUpdateState (EntityIdentifier ) returns (UpdateState );
4849}
4950
5051enum GetType {
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ service Components{
2121 rpc GetRootComponent (Empty ) returns (GetRootComponentResponse );
2222
2323 rpc GetName (EntityIdentifier ) returns (GetComponentNameResponse );
24+
25+ rpc GetUpdateState (EntityIdentifier ) returns (UpdateState );
2426}
2527
2628message GetAllRequest {
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ service Designs{
2828
2929 rpc Export (ExportRequest ) returns (ExportResponse );
3030
31+ rpc GetAsJson (GetAsJsonRequest ) returns (GetAsJsonResponse );
3132}
3233
3334message GetAllResponse {
@@ -58,4 +59,11 @@ message ExportRequest {
5859
5960message ExportResponse {
6061 bytes data = 1 ;
62+ }
63+
64+ message GetAsJsonRequest {
65+ string id = 1 ;
66+ }
67+ message GetAsJsonResponse {
68+ string json = 1 ;
6169}
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ service Edges{
1515 rpc GetLength (EntityIdentifier ) returns (GetLengthResponse );
1616
1717 rpc IsDeleted (EntityIdentifier ) returns (IsDeletedResponse );
18+
19+ rpc GetUpdateState (EntityIdentifier ) returns (UpdateState );
20+
1821}
1922
2023message GetAllRequest {
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ service Faces{
2626
2727 rpc GetLoops (EntityIdentifier ) returns (GetLoopsResponse );
2828
29+ rpc GetUpdateState (EntityIdentifier ) returns (UpdateState );
30+
2931}
3032
3133message GetAllRequest {
Original file line number Diff line number Diff line change @@ -524,3 +524,7 @@ enum PartExportFormat {
524524 PARTEXPORTFORMAT_STEP = 4 ;
525525 PARTEXPORTFORMAT_FMD = 5 ;
526526}
527+
528+ message UpdateState {
529+ int32 state = 1 ;
530+ }
You can’t perform that action at this time.
0 commit comments