Skip to content

Commit 1e0f584

Browse files
authored
Merge branch 'develop' into FRIDAY_3678
2 parents 97c7f70 + f915c4d commit 1e0f584

32 files changed

+1827
-135
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ History
77
All release highlights of this project will be documented in this file.
88

99
4.4.32 - March 4, 2025
10-
_____________________
10+
______________________
1111

1212
**Fixed**
1313

14-
- ``SAClient.item_context`` Fixed an issue where setting a component value would overwrite existing comments and other associated data.
14+
- ``SAClient.item_context`` Fixed an issue where setting a component value would overwrite existing comments and other associated data.
1515

1616
4.4.31 - Feb 27, 2025
1717
_____________________

docs/source/api_reference/api_item.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Items
99
.. automethod:: superannotate.SAClient.search_items
1010
.. automethod:: superannotate.SAClient.attach_items
1111
.. automethod:: superannotate.SAClient.item_context
12+
.. autoclass:: superannotate.ItemContext
13+
:members: get_metadata, get_component_value, set_component_value
14+
:member-order: bysource
15+
1216
.. automethod:: superannotate.SAClient.copy_items
1317
.. automethod:: superannotate.SAClient.move_items
1418
.. automethod:: superannotate.SAClient.delete_items

docs/source/api_reference/api_team.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ Team
1212
.. automethod:: superannotate.SAClient.list_users
1313
.. automethod:: superannotate.SAClient.pause_user_activity
1414
.. automethod:: superannotate.SAClient.resume_user_activity
15+
.. automethod:: superannotate.SAClient.get_user_scores
16+
.. automethod:: superannotate.SAClient.set_user_scores

src/superannotate/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
import sys
44

55

6-
__version__ = "4.4.33b1"
6+
__version__ = "4.4.33dev4"
7+
78

89
os.environ.update({"sa_version": __version__})
910
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
@@ -20,6 +21,7 @@
2021
from superannotate.lib.app.input_converters import export_annotation
2122
from superannotate.lib.app.input_converters import import_annotation
2223
from superannotate.lib.app.interface.sdk_interface import SAClient
24+
from superannotate.lib.app.interface.sdk_interface import ItemContext
2325

2426

2527
SESSIONS = {}
@@ -28,6 +30,7 @@
2830
__all__ = [
2931
"__version__",
3032
"SAClient",
33+
"ItemContext",
3134
# Utils
3235
"enums",
3336
"AppException",

0 commit comments

Comments
 (0)