Skip to content
Open
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
21 changes: 21 additions & 0 deletions modeling-cmds/openapi/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1576,6 +1576,27 @@
"type"
]
},
{
"description": "A uuid referencing a helix.",
"type": "object",
"properties": {
"helix_id": {
"description": "Id of the helix object.",
"type": "string",
"format": "uuid"
},
"type": {
"type": "string",
"enum": [
"helix"
]
}
},
"required": [
"helix_id",
"type"
]
},
{
"description": "A uuid referencing an edge on a solid2d (profile) - used for raw sketch/profile edges. This is distinct from the face-based Edge reference which is used for BRep/swept body edges.",
"type": "object",
Expand Down
5 changes: 5 additions & 0 deletions modeling-cmds/src/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,11 @@ pub enum EntityReference {
#[serde(default, skip_serializing_if = "Option::is_none")]
topology_fallback: Option<PrimitiveTopologyFallback>,
},
/// A uuid referencing a helix.
Helix {
/// Id of the helix object.
helix_id: Uuid,
},
/// A uuid referencing an edge on a solid2d (profile) - used for raw sketch/profile edges.
/// This is distinct from the face-based Edge reference which is used for BRep/swept body edges.
Solid2dEdge {
Expand Down