label-studio-sdk 2.0.9__py3-none-any.whl → 2.0.11__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of label-studio-sdk might be problematic. Click here for more details.

Files changed (55) hide show
  1. label_studio_sdk/activity_logs/client.py +12 -0
  2. label_studio_sdk/annotation_history/client.py +36 -0
  3. label_studio_sdk/annotation_reviews/client.py +60 -0
  4. label_studio_sdk/billing/client.py +12 -0
  5. label_studio_sdk/comments/client.py +72 -0
  6. label_studio_sdk/export_storage/azure_spi/client.py +84 -0
  7. label_studio_sdk/export_storage/databricks/client.py +84 -0
  8. label_studio_sdk/export_storage/gcswif/client.py +84 -0
  9. label_studio_sdk/export_storage/s3s/client.py +84 -0
  10. label_studio_sdk/import_storage/azure_spi/client.py +84 -0
  11. label_studio_sdk/import_storage/databricks/client.py +84 -0
  12. label_studio_sdk/import_storage/gcswif/client.py +84 -0
  13. label_studio_sdk/import_storage/s3s/client.py +84 -0
  14. label_studio_sdk/label_interface/control_tags.py +12 -7
  15. label_studio_sdk/ml/client.py +14 -2
  16. label_studio_sdk/model_providers/client.py +72 -0
  17. label_studio_sdk/organizations/client.py +30 -6
  18. label_studio_sdk/organizations/invites/client.py +55 -6
  19. label_studio_sdk/organizations/members/client.py +24 -0
  20. label_studio_sdk/organizations/permissions/client.py +60 -0
  21. label_studio_sdk/project_templates/client.py +76 -4
  22. label_studio_sdk/projects/__init__.py +6 -0
  23. label_studio_sdk/projects/assignments/client.py +60 -0
  24. label_studio_sdk/projects/client.py +12 -0
  25. label_studio_sdk/projects/members/bulk/client.py +24 -0
  26. label_studio_sdk/projects/members/client.py +12 -0
  27. label_studio_sdk/projects/members/paginated/client.py +12 -0
  28. label_studio_sdk/projects/metrics/client.py +24 -0
  29. label_studio_sdk/projects/pauses/client.py +60 -0
  30. label_studio_sdk/projects/stats/__init__.py +6 -0
  31. label_studio_sdk/projects/stats/client.py +486 -1
  32. label_studio_sdk/projects/stats/types/__init__.py +6 -0
  33. label_studio_sdk/projects/stats/types/stats_model_version_annotator_agreement_response.py +19 -0
  34. label_studio_sdk/projects/stats/types/stats_model_version_ground_truth_agreement_response.py +19 -0
  35. label_studio_sdk/projects/stats/types/stats_model_version_prediction_agreement_response.py +19 -0
  36. label_studio_sdk/prompts/client.py +96 -0
  37. label_studio_sdk/prompts/indicators/client.py +24 -0
  38. label_studio_sdk/prompts/runs/client.py +36 -0
  39. label_studio_sdk/prompts/versions/client.py +84 -0
  40. label_studio_sdk/sso/saml/client.py +24 -0
  41. label_studio_sdk/sso/scim/client.py +24 -0
  42. label_studio_sdk/types/default_role.py +2 -2
  43. label_studio_sdk/types/lse_organization.py +1 -1
  44. label_studio_sdk/types/project_template.py +1 -1
  45. label_studio_sdk/types/project_template_request.py +1 -1
  46. label_studio_sdk/users/client.py +24 -0
  47. label_studio_sdk/versions/client.py +12 -0
  48. label_studio_sdk/workspaces/client.py +60 -0
  49. label_studio_sdk/workspaces/members/bulk/client.py +24 -0
  50. label_studio_sdk/workspaces/members/client.py +36 -0
  51. label_studio_sdk/workspaces/members/paginated/client.py +12 -0
  52. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/METADATA +1 -1
  53. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/RECORD +55 -52
  54. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/LICENSE +0 -0
  55. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/WHEEL +0 -0
@@ -13,7 +13,7 @@ class ProjectTemplate(UncheckedBaseModel):
13
13
  created_by: typing.Optional[int] = None
14
14
  custom_script: typing.Optional[str] = pydantic.Field(default=None)
15
15
  """
16
- custom script for projects created from this template
16
+ custom script (Plugin) for projects created from this template
17
17
  """
18
18
 
19
19
  description: typing.Optional[str] = None
@@ -11,7 +11,7 @@ class ProjectTemplateRequest(UncheckedBaseModel):
11
11
  created_by: typing.Optional[int] = None
12
12
  custom_script: typing.Optional[str] = pydantic.Field(default=None)
13
13
  """
14
- custom script for projects created from this template
14
+ custom script (Plugin) for projects created from this template
15
15
  """
16
16
 
17
17
  description: typing.Optional[str] = None
@@ -26,6 +26,12 @@ class UsersClient:
26
26
 
27
27
  def get_current_user(self, *, request_options: typing.Optional[RequestOptions] = None) -> LseUserApi:
28
28
  """
29
+ <Card href="https://humansignal.com/goenterprise">
30
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
31
+ <p style="margin-top: 10px; font-size: 14px;">
32
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
33
+ </p>
34
+ </Card>
29
35
  Get info about the currently authenticated user.
30
36
 
31
37
  Parameters
@@ -84,6 +90,12 @@ class UsersClient:
84
90
  request_options: typing.Optional[RequestOptions] = None,
85
91
  ) -> LseUserApi:
86
92
  """
93
+ <Card href="https://humansignal.com/goenterprise">
94
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
95
+ <p style="margin-top: 10px; font-size: 14px;">
96
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
97
+ </p>
98
+ </Card>
87
99
  Update details for the currently authenticated user.
88
100
 
89
101
  Parameters
@@ -739,6 +751,12 @@ class AsyncUsersClient:
739
751
 
740
752
  async def get_current_user(self, *, request_options: typing.Optional[RequestOptions] = None) -> LseUserApi:
741
753
  """
754
+ <Card href="https://humansignal.com/goenterprise">
755
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
756
+ <p style="margin-top: 10px; font-size: 14px;">
757
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
758
+ </p>
759
+ </Card>
742
760
  Get info about the currently authenticated user.
743
761
 
744
762
  Parameters
@@ -805,6 +823,12 @@ class AsyncUsersClient:
805
823
  request_options: typing.Optional[RequestOptions] = None,
806
824
  ) -> LseUserApi:
807
825
  """
826
+ <Card href="https://humansignal.com/goenterprise">
827
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
828
+ <p style="margin-top: 10px; font-size: 14px;">
829
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
830
+ </p>
831
+ </Card>
808
832
  Update details for the currently authenticated user.
809
833
 
810
834
  Parameters
@@ -16,6 +16,12 @@ class VersionsClient:
16
16
 
17
17
  def get(self, *, request_options: typing.Optional[RequestOptions] = None) -> VersionResponse:
18
18
  """
19
+ <Card href="https://humansignal.com/goenterprise">
20
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
21
+ <p style="margin-top: 10px; font-size: 14px;">
22
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
23
+ </p>
24
+ </Card>
19
25
  Get version information about the Label Studio instance.
20
26
 
21
27
  Parameters
@@ -63,6 +69,12 @@ class AsyncVersionsClient:
63
69
 
64
70
  async def get(self, *, request_options: typing.Optional[RequestOptions] = None) -> VersionResponse:
65
71
  """
72
+ <Card href="https://humansignal.com/goenterprise">
73
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
74
+ <p style="margin-top: 10px; font-size: 14px;">
75
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
76
+ </p>
77
+ </Card>
66
78
  Get version information about the Label Studio instance.
67
79
 
68
80
  Parameters
@@ -29,6 +29,12 @@ class WorkspacesClient:
29
29
  request_options: typing.Optional[RequestOptions] = None,
30
30
  ) -> typing.List[Workspace]:
31
31
  """
32
+ <Card href="https://humansignal.com/goenterprise">
33
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
34
+ <p style="margin-top: 10px; font-size: 14px;">
35
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
36
+ </p>
37
+ </Card>
32
38
  List all workspaces for your organization. Workspaces in Label Studio let you organize your projects and users into separate spaces. This is useful for managing different teams, departments, or projects within your organization. For more information, see the [Workspaces documentation](https://docs.humansignal.com/workspaces).
33
39
 
34
40
  Parameters
@@ -90,6 +96,12 @@ class WorkspacesClient:
90
96
  request_options: typing.Optional[RequestOptions] = None,
91
97
  ) -> Workspace:
92
98
  """
99
+ <Card href="https://humansignal.com/goenterprise">
100
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
101
+ <p style="margin-top: 10px; font-size: 14px;">
102
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
103
+ </p>
104
+ </Card>
93
105
  Create a new workspace. Workspaces in Label Studio let you organize your projects and users into separate spaces. This is useful for managing different teams, departments, or projects within your organization. For more information, see the [Workspaces documentation](https://docs.humansignal.com/workspaces).
94
106
 
95
107
  Parameters
@@ -159,6 +171,12 @@ class WorkspacesClient:
159
171
 
160
172
  def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> Workspace:
161
173
  """
174
+ <Card href="https://humansignal.com/goenterprise">
175
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
176
+ <p style="margin-top: 10px; font-size: 14px;">
177
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
178
+ </p>
179
+ </Card>
162
180
  Retrieve details for a specific workspace by ID.
163
181
 
164
182
  Parameters
@@ -205,6 +223,12 @@ class WorkspacesClient:
205
223
 
206
224
  def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
207
225
  """
226
+ <Card href="https://humansignal.com/goenterprise">
227
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
228
+ <p style="margin-top: 10px; font-size: 14px;">
229
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
230
+ </p>
231
+ </Card>
208
232
  Delete a specific workspace by ID.
209
233
 
210
234
  Parameters
@@ -254,6 +278,12 @@ class WorkspacesClient:
254
278
  request_options: typing.Optional[RequestOptions] = None,
255
279
  ) -> Workspace:
256
280
  """
281
+ <Card href="https://humansignal.com/goenterprise">
282
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
283
+ <p style="margin-top: 10px; font-size: 14px;">
284
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
285
+ </p>
286
+ </Card>
257
287
  Update settings for a specific workspace by ID.
258
288
 
259
289
  Parameters
@@ -337,6 +367,12 @@ class AsyncWorkspacesClient:
337
367
  request_options: typing.Optional[RequestOptions] = None,
338
368
  ) -> typing.List[Workspace]:
339
369
  """
370
+ <Card href="https://humansignal.com/goenterprise">
371
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
372
+ <p style="margin-top: 10px; font-size: 14px;">
373
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
374
+ </p>
375
+ </Card>
340
376
  List all workspaces for your organization. Workspaces in Label Studio let you organize your projects and users into separate spaces. This is useful for managing different teams, departments, or projects within your organization. For more information, see the [Workspaces documentation](https://docs.humansignal.com/workspaces).
341
377
 
342
378
  Parameters
@@ -406,6 +442,12 @@ class AsyncWorkspacesClient:
406
442
  request_options: typing.Optional[RequestOptions] = None,
407
443
  ) -> Workspace:
408
444
  """
445
+ <Card href="https://humansignal.com/goenterprise">
446
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
447
+ <p style="margin-top: 10px; font-size: 14px;">
448
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
449
+ </p>
450
+ </Card>
409
451
  Create a new workspace. Workspaces in Label Studio let you organize your projects and users into separate spaces. This is useful for managing different teams, departments, or projects within your organization. For more information, see the [Workspaces documentation](https://docs.humansignal.com/workspaces).
410
452
 
411
453
  Parameters
@@ -483,6 +525,12 @@ class AsyncWorkspacesClient:
483
525
 
484
526
  async def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> Workspace:
485
527
  """
528
+ <Card href="https://humansignal.com/goenterprise">
529
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
530
+ <p style="margin-top: 10px; font-size: 14px;">
531
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
532
+ </p>
533
+ </Card>
486
534
  Retrieve details for a specific workspace by ID.
487
535
 
488
536
  Parameters
@@ -537,6 +585,12 @@ class AsyncWorkspacesClient:
537
585
 
538
586
  async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
539
587
  """
588
+ <Card href="https://humansignal.com/goenterprise">
589
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
590
+ <p style="margin-top: 10px; font-size: 14px;">
591
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
592
+ </p>
593
+ </Card>
540
594
  Delete a specific workspace by ID.
541
595
 
542
596
  Parameters
@@ -594,6 +648,12 @@ class AsyncWorkspacesClient:
594
648
  request_options: typing.Optional[RequestOptions] = None,
595
649
  ) -> Workspace:
596
650
  """
651
+ <Card href="https://humansignal.com/goenterprise">
652
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
653
+ <p style="margin-top: 10px; font-size: 14px;">
654
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
655
+ </p>
656
+ </Card>
597
657
  Update settings for a specific workspace by ID.
598
658
 
599
659
  Parameters
@@ -29,6 +29,12 @@ class BulkClient:
29
29
  request_options: typing.Optional[RequestOptions] = None,
30
30
  ) -> BulkPostResponse:
31
31
  """
32
+ <Card href="https://humansignal.com/goenterprise">
33
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
34
+ <p style="margin-top: 10px; font-size: 14px;">
35
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
36
+ </p>
37
+ </Card>
32
38
  Assign workspace members in bulk.
33
39
 
34
40
  Parameters
@@ -91,6 +97,12 @@ class BulkClient:
91
97
 
92
98
  def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> BulkDeleteResponse:
93
99
  """
100
+ <Card href="https://humansignal.com/goenterprise">
101
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
102
+ <p style="margin-top: 10px; font-size: 14px;">
103
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
104
+ </p>
105
+ </Card>
94
106
  Unassign workspace members in bulk. Allows the same request body as bulk assign.
95
107
 
96
108
  Parameters
@@ -150,6 +162,12 @@ class AsyncBulkClient:
150
162
  request_options: typing.Optional[RequestOptions] = None,
151
163
  ) -> BulkPostResponse:
152
164
  """
165
+ <Card href="https://humansignal.com/goenterprise">
166
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
167
+ <p style="margin-top: 10px; font-size: 14px;">
168
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
169
+ </p>
170
+ </Card>
153
171
  Assign workspace members in bulk.
154
172
 
155
173
  Parameters
@@ -220,6 +238,12 @@ class AsyncBulkClient:
220
238
 
221
239
  async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> BulkDeleteResponse:
222
240
  """
241
+ <Card href="https://humansignal.com/goenterprise">
242
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
243
+ <p style="margin-top: 10px; font-size: 14px;">
244
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
245
+ </p>
246
+ </Card>
223
247
  Unassign workspace members in bulk. Allows the same request body as bulk assign.
224
248
 
225
249
  Parameters
@@ -29,6 +29,12 @@ class MembersClient:
29
29
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
30
30
  ) -> typing.List[WorkspaceMemberList]:
31
31
  """
32
+ <Card href="https://humansignal.com/goenterprise">
33
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
34
+ <p style="margin-top: 10px; font-size: 14px;">
35
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
36
+ </p>
37
+ </Card>
32
38
  Get a list of all members in a specific workspace.
33
39
 
34
40
  Parameters
@@ -82,6 +88,12 @@ class MembersClient:
82
88
  request_options: typing.Optional[RequestOptions] = None,
83
89
  ) -> WorkspaceMemberCreate:
84
90
  """
91
+ <Card href="https://humansignal.com/goenterprise">
92
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
93
+ <p style="margin-top: 10px; font-size: 14px;">
94
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
95
+ </p>
96
+ </Card>
85
97
  Add a new workspace member by user ID.
86
98
 
87
99
  Parameters
@@ -143,6 +155,12 @@ class MembersClient:
143
155
 
144
156
  def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
145
157
  """
158
+ <Card href="https://humansignal.com/goenterprise">
159
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
160
+ <p style="margin-top: 10px; font-size: 14px;">
161
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
162
+ </p>
163
+ </Card>
146
164
  Remove a specific member by ID from a workspace. This endpoint expects an object like `{"user_id": 123}`.
147
165
 
148
166
  Parameters
@@ -191,6 +209,12 @@ class AsyncMembersClient:
191
209
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
192
210
  ) -> typing.List[WorkspaceMemberList]:
193
211
  """
212
+ <Card href="https://humansignal.com/goenterprise">
213
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
214
+ <p style="margin-top: 10px; font-size: 14px;">
215
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
216
+ </p>
217
+ </Card>
194
218
  Get a list of all members in a specific workspace.
195
219
 
196
220
  Parameters
@@ -252,6 +276,12 @@ class AsyncMembersClient:
252
276
  request_options: typing.Optional[RequestOptions] = None,
253
277
  ) -> WorkspaceMemberCreate:
254
278
  """
279
+ <Card href="https://humansignal.com/goenterprise">
280
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
281
+ <p style="margin-top: 10px; font-size: 14px;">
282
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
283
+ </p>
284
+ </Card>
255
285
  Add a new workspace member by user ID.
256
286
 
257
287
  Parameters
@@ -321,6 +351,12 @@ class AsyncMembersClient:
321
351
 
322
352
  async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
323
353
  """
354
+ <Card href="https://humansignal.com/goenterprise">
355
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
356
+ <p style="margin-top: 10px; font-size: 14px;">
357
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
358
+ </p>
359
+ </Card>
324
360
  Remove a specific member by ID from a workspace. This endpoint expects an object like `{"user_id": 123}`.
325
361
 
326
362
  Parameters
@@ -29,6 +29,12 @@ class PaginatedClient:
29
29
  request_options: typing.Optional[RequestOptions] = None,
30
30
  ) -> SyncPager[LseUser]:
31
31
  """
32
+ <Card href="https://humansignal.com/goenterprise">
33
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
34
+ <p style="margin-top: 10px; font-size: 14px;">
35
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
36
+ </p>
37
+ </Card>
32
38
  Retrieve the members for a specific workspace.
33
39
 
34
40
  Parameters
@@ -124,6 +130,12 @@ class AsyncPaginatedClient:
124
130
  request_options: typing.Optional[RequestOptions] = None,
125
131
  ) -> AsyncPager[LseUser]:
126
132
  """
133
+ <Card href="https://humansignal.com/goenterprise">
134
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
135
+ <p style="margin-top: 10px; font-size: 14px;">
136
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
137
+ </p>
138
+ </Card>
127
139
  Retrieve the members for a specific workspace.
128
140
 
129
141
  Parameters
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: label-studio-sdk
3
- Version: 2.0.9
3
+ Version: 2.0.11
4
4
  Summary:
5
5
  Requires-Python: >=3.9,<4
6
6
  Classifier: Intended Audience :: Developers