@@ -3,6 +3,7 @@ syntax = "proto3";
33package ansys.api.geometry.v0.preparetools ;
44
55import "ansys/api/dbu/v0/dbumodels.proto" ;
6+ import "ansys/api/geometry/v0/commands.proto" ;
67import "ansys/api/geometry/v0/models.proto" ;
78import "google/protobuf/wrappers.proto" ;
89
@@ -47,6 +48,7 @@ message CreateEnclosureResponse{
4748 bool success = 1 ;
4849 // The bodies representing the enclosure.
4950 repeated Body created_bodies = 2 ;
51+ TrackerCommandResponse command_response = 3 ;
5052}
5153
5254message FixInterferenceRequest {
@@ -57,6 +59,7 @@ message FixInterferenceRequest{
5759
5860message FixInterferenceResponse {
5961 bool result = 1 ;
62+ TrackerCommandResponse changes = 2 ;
6063}
6164
6265message FixShortEdgesRequest {
@@ -67,6 +70,7 @@ message FixShortEdgesRequest{
6770
6871message FixShortEdgesResponse {
6972 bool result = 1 ;
73+ TrackerCommandResponse changes = 2 ;
7074}
7175
7276message ShareTopologyRequest {
@@ -101,6 +105,7 @@ message RemoveRoundsRequest{
101105
102106message RemoveRoundsResponse {
103107 bool result = 1 ;
108+ TrackerCommandResponse changes = 2 ;
104109}
105110
106111message RemoveFacesRequest {
@@ -110,6 +115,7 @@ message RemoveFacesRequest{
110115
111116message RemoveFacesResponse {
112117 bool result = 1 ;
118+ TrackerCommandResponse changes = 2 ;
113119}
114120
115121message ExtractVolumeFromFacesRequest {
@@ -131,4 +137,5 @@ message VolumeExtractionResponse{
131137 bool success = 1 ;
132138 // The bodies created from the volume extraction.
133139 repeated Body created_bodies = 2 ;
140+ TrackerCommandResponse changes = 3 ;
134141}
0 commit comments