Skip to content

Commit 6e8445a

Browse files
gserena01gserena
and
gserena
authored
remove entity_ids response from patterns and mirrors (#888)
Co-authored-by: gserena <serena@zoo.dev>
1 parent 96a8eb0 commit 6e8445a

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

modeling-cmds/src/ok_response.rs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -796,9 +796,6 @@ define_ok_modeling_cmd_response_enum! {
796796
/// The response from the `EntityClone` command.
797797
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
798798
pub struct EntityClone {
799-
/// The UUIDs of the entities that were created.
800-
#[serde(default, skip_serializing_if = "Vec::is_empty")]
801-
pub entity_ids: Vec<Uuid>,
802799
/// The Face and Edge Ids of the cloned entity.
803800
#[serde(default, skip_serializing_if = "Vec::is_empty")]
804801
pub face_edge_ids: Vec<FaceEdgeInfo>,
@@ -807,9 +804,6 @@ define_ok_modeling_cmd_response_enum! {
807804
/// The response from the `EntityLinearPatternTransform` command.
808805
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
809806
pub struct EntityLinearPatternTransform {
810-
/// The UUIDs of the entities that were created.
811-
#[serde(default, skip_serializing_if = "Vec::is_empty")]
812-
pub entity_ids: Vec<Uuid>,
813807
/// The Face, edge, and entity ids of the patterned entities.
814808
#[serde(default, skip_serializing_if = "Vec::is_empty")]
815809
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
@@ -818,9 +812,6 @@ define_ok_modeling_cmd_response_enum! {
818812
/// The response from the `EntityLinearPattern` command.
819813
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
820814
pub struct EntityLinearPattern {
821-
/// The UUIDs of the entities that were created.
822-
#[serde(default, skip_serializing_if = "Vec::is_empty")]
823-
pub entity_ids: Vec<Uuid>,
824815
/// The Face, edge, and entity ids of the patterned entities.
825816
#[serde(default, skip_serializing_if = "Vec::is_empty")]
826817
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
@@ -829,9 +820,6 @@ define_ok_modeling_cmd_response_enum! {
829820
/// The response from the `EntityCircularPattern` command.
830821
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
831822
pub struct EntityCircularPattern {
832-
/// The UUIDs of the entities that were created.
833-
#[serde(default, skip_serializing_if = "Vec::is_empty")]
834-
pub entity_ids: Vec<Uuid>,
835823
/// The Face, edge, and entity ids of the patterned entities.
836824
#[serde(default, skip_serializing_if = "Vec::is_empty")]
837825
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
@@ -840,9 +828,6 @@ define_ok_modeling_cmd_response_enum! {
840828
/// The response from the `EntityMirror` endpoint.
841829
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
842830
pub struct EntityMirror {
843-
/// The UUIDs of the entities that were created.
844-
#[serde(default, skip_serializing_if = "Vec::is_empty")]
845-
pub entity_ids: Vec<Uuid>,
846831
/// The Face, edge, and entity ids of the patterned entities.
847832
#[serde(default, skip_serializing_if = "Vec::is_empty")]
848833
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
@@ -851,9 +836,6 @@ define_ok_modeling_cmd_response_enum! {
851836
/// The response from the `EntityMirrorAcrossEdge` endpoint.
852837
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
853838
pub struct EntityMirrorAcrossEdge {
854-
/// The UUIDs of the entities that were created.
855-
#[serde(default, skip_serializing_if = "Vec::is_empty")]
856-
pub entity_ids: Vec<Uuid>,
857839
/// The Face, edge, and entity ids of the patterned entities.
858840
#[serde(default, skip_serializing_if = "Vec::is_empty")]
859841
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,

0 commit comments

Comments
 (0)