Skip to content

Commit a4c1228

Browse files
[API-482] [API-560] Updated api version and removed irrelevant C++ oriented method
1 parent 665c96a commit a4c1228

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cwapi3d"
3-
version = "32.302.0"
3+
version = "32.401.0"
44
authors = [{ name = "Cadwork", email = "it@cadwork.ca" }]
55
requires-python = ">= 3.12"
66
description = 'Python bindings for CwAPI3D'

src/multi_layer_cover_controller/__init__.pyi

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ def set_cover_color(set_id: MultiLayerSetId, cover_color: ColorId) -> None:
171171

172172
def get_multi_layer_walls() -> List[MultiLayerSetId]:
173173
"""Gets all multi layer wall ids.
174-
This function is not ABI stable. Use getMultiLayerWallsEx() for ABI stable code.
175174
176175
Examples:
177176
>>> wall_ids = mlc.get_multi_layer_walls()
@@ -511,19 +510,6 @@ def get_multi_layer_sets_for_cover_type(cover_type: multi_layer_cover_type) -> L
511510
The multi layer set ids.
512511
"""
513512

514-
def get_multi_layer_walls_ex() -> List[MultiLayerSetId]:
515-
"""Gets all multi layer wall ids (ABI stable).
516-
517-
Examples:
518-
>>> wall_ids = mlc.get_multi_layer_walls_ex()
519-
>>> print(f"Found {len(wall_ids)} multi-layer wall definitions")
520-
>>> for wall_id in wall_ids:
521-
... name = mlc.get_multi_layer_set_name(wall_id)
522-
... print(f"Wall ID: {wall_id}, Name: {name}")
523-
524-
Returns:
525-
The multi layer wall ids.
526-
"""
527513

528514
def get_multi_layer_log_walls() -> List[MultiLayerSetId]:
529515
"""Gets all multi layer log wall ids.

0 commit comments

Comments
 (0)