From 46f15b608060db3a97d1a2ddc89787fd7ae2b554 Mon Sep 17 00:00:00 2001 From: Laura Bobillier Date: Tue, 28 Jul 2026 15:12:33 +0200 Subject: [PATCH] [API-606] Added DeleteItemFromNameList() method --- pyproject.toml | 2 +- src/attribute_controller/__init__.pyi | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8c8723a..8d7d3d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cwapi3d" -version = "33.318.0" +version = "33.324.0" authors = [{ name = "Cadwork", email = "it@cadwork.ca" }] requires-python = ">= 3.14" description = 'Python bindings for CwAPI3D' diff --git a/src/attribute_controller/__init__.pyi b/src/attribute_controller/__init__.pyi index a03bef9..4c83d00 100644 --- a/src/attribute_controller/__init__.pyi +++ b/src/attribute_controller/__init__.pyi @@ -1811,3 +1811,13 @@ def set_machine_calculation_set(element_ids: list[ElementId], name: str) -> bool Returns: True if the machine calculation set was successfully applied, false otherwise. """ + +def delete_item_from_name_list(item: str) -> bool: + """Delete item from name list. + + Parameters: + item: The item to delete from the name list. + + Returns: + True if the item was successfully deleted, false otherwise. + """