label-studio-sdk 2.0.9__py3-none-any.whl → 2.0.10__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.

@@ -8,6 +8,7 @@ from ...core.unchecked_base_model import construct_type
8
8
  from ...errors.forbidden_error import ForbiddenError
9
9
  from json.decoder import JSONDecodeError
10
10
  from ...core.api_error import ApiError
11
+ from ...types.role9e7enum import Role9E7Enum
11
12
  from ...core.client_wrapper import AsyncClientWrapper
12
13
 
13
14
  # this is used as the default value for optional parameters
@@ -117,7 +118,13 @@ class InvitesClient:
117
118
  raise ApiError(status_code=_response.status_code, body=_response_json)
118
119
 
119
120
  def send_email(
120
- self, *, emails: typing.Sequence[str], role: str, request_options: typing.Optional[RequestOptions] = None
121
+ self,
122
+ *,
123
+ emails: typing.Sequence[str],
124
+ role: Role9E7Enum,
125
+ projects: typing.Optional[typing.Sequence[int]] = OMIT,
126
+ workspaces: typing.Optional[typing.Sequence[int]] = OMIT,
127
+ request_options: typing.Optional[RequestOptions] = None,
121
128
  ) -> None:
122
129
  """
123
130
  Send email with invite to organization
@@ -126,7 +133,11 @@ class InvitesClient:
126
133
  ----------
127
134
  emails : typing.Sequence[str]
128
135
 
129
- role : str
136
+ role : Role9E7Enum
137
+
138
+ projects : typing.Optional[typing.Sequence[int]]
139
+
140
+ workspaces : typing.Optional[typing.Sequence[int]]
130
141
 
131
142
  request_options : typing.Optional[RequestOptions]
132
143
  Request-specific configuration.
@@ -144,7 +155,7 @@ class InvitesClient:
144
155
  )
145
156
  client.organizations.invites.send_email(
146
157
  emails=["emails"],
147
- role="role",
158
+ role="OW",
148
159
  )
149
160
  """
150
161
  _response = self._client_wrapper.httpx_client.request(
@@ -152,7 +163,9 @@ class InvitesClient:
152
163
  method="POST",
153
164
  json={
154
165
  "emails": emails,
166
+ "projects": projects,
155
167
  "role": role,
168
+ "workspaces": workspaces,
156
169
  },
157
170
  headers={
158
171
  "content-type": "application/json",
@@ -298,7 +311,13 @@ class AsyncInvitesClient:
298
311
  raise ApiError(status_code=_response.status_code, body=_response_json)
299
312
 
300
313
  async def send_email(
301
- self, *, emails: typing.Sequence[str], role: str, request_options: typing.Optional[RequestOptions] = None
314
+ self,
315
+ *,
316
+ emails: typing.Sequence[str],
317
+ role: Role9E7Enum,
318
+ projects: typing.Optional[typing.Sequence[int]] = OMIT,
319
+ workspaces: typing.Optional[typing.Sequence[int]] = OMIT,
320
+ request_options: typing.Optional[RequestOptions] = None,
302
321
  ) -> None:
303
322
  """
304
323
  Send email with invite to organization
@@ -307,7 +326,11 @@ class AsyncInvitesClient:
307
326
  ----------
308
327
  emails : typing.Sequence[str]
309
328
 
310
- role : str
329
+ role : Role9E7Enum
330
+
331
+ projects : typing.Optional[typing.Sequence[int]]
332
+
333
+ workspaces : typing.Optional[typing.Sequence[int]]
311
334
 
312
335
  request_options : typing.Optional[RequestOptions]
313
336
  Request-specific configuration.
@@ -330,7 +353,7 @@ class AsyncInvitesClient:
330
353
  async def main() -> None:
331
354
  await client.organizations.invites.send_email(
332
355
  emails=["emails"],
333
- role="role",
356
+ role="OW",
334
357
  )
335
358
 
336
359
 
@@ -341,7 +364,9 @@ class AsyncInvitesClient:
341
364
  method="POST",
342
365
  json={
343
366
  "emails": emails,
367
+ "projects": projects,
344
368
  "role": role,
369
+ "workspaces": workspaces,
345
370
  },
346
371
  headers={
347
372
  "content-type": "application/json",
@@ -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.10
4
4
  Summary:
5
5
  Requires-Python: >=3.9,<4
6
6
  Classifier: Intended Audience :: Developers
@@ -175,7 +175,7 @@ label_studio_sdk/model_providers/types/model_providers_list_model_provider_choic
175
175
  label_studio_sdk/organizations/__init__.py,sha256=zaatz_dOveQ-LLlIhPykE9zB2lhnbLenklYdPgdYsgk,278
176
176
  label_studio_sdk/organizations/client.py,sha256=tvy4wQOiGqI7KNqEnohDLmTvunVARk_-LR21m1rV_B4,31976
177
177
  label_studio_sdk/organizations/invites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
178
- label_studio_sdk/organizations/invites/client.py,sha256=BasHE22RFIpTnnCFRKGrpezyQg_YxzNDCOZhyDC35Mo,11103
178
+ label_studio_sdk/organizations/invites/client.py,sha256=8xpe_SpTv_37-eQ5bRCiw_-nHpXwzE3RwDTsBc_RJY0,11898
179
179
  label_studio_sdk/organizations/members/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
180
180
  label_studio_sdk/organizations/members/client.py,sha256=P7U1tmgOY_T1FfPQ5i4pDD8j_A3vNcwyfSZeAq2ZL8s,22677
181
181
  label_studio_sdk/organizations/permissions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -574,17 +574,17 @@ label_studio_sdk/webhooks/types/webhooks_info_response_reviews_deleted.py,sha256
574
574
  label_studio_sdk/webhooks/types/webhooks_info_response_tasks_created.py,sha256=ephgO22xdgWJUvzyj3sPgsVCsVhsKxVQvA0W0nXN2cE,785
575
575
  label_studio_sdk/webhooks/types/webhooks_info_response_tasks_deleted.py,sha256=_J0al_hFAXG7tqqVkBSqbpl6VB4H9DYCqDY07MjGIlE,785
576
576
  label_studio_sdk/workspaces/__init__.py,sha256=4IfkSXstAMN7sS3_Z6jV9m75h2ER0bpaX_J_TO0WTPU,110
577
- label_studio_sdk/workspaces/client.py,sha256=u3-tsfOqhi222pKdkgOEkr7tblhEJQS__zVbTTx-D4k,20578
577
+ label_studio_sdk/workspaces/client.py,sha256=C2KzA_n83EO75-4dEEPrj-g4dptfgmD-AWzNNUHr22Q,25658
578
578
  label_studio_sdk/workspaces/members/__init__.py,sha256=5TumCIWOTZDOZa5pJd-sg4BooYoPm9hqO0N3frUCGlo,225
579
579
  label_studio_sdk/workspaces/members/bulk/__init__.py,sha256=a9iYfTwhgtS3l_5HLym31_5xHD4G3jWA_T-ZLvoz2Qc,175
580
- label_studio_sdk/workspaces/members/bulk/client.py,sha256=mZXAV5GS862EhtplcT7vDpU-AJm1Y9UjzUVcsMPdlYo,8144
580
+ label_studio_sdk/workspaces/members/bulk/client.py,sha256=UrU156sRfI7Ju4XWwthT3zesro8b4x67zTEyK_eh5sA,10176
581
581
  label_studio_sdk/workspaces/members/bulk/types/__init__.py,sha256=mIdGHkaAbK1Mq6tVM0QA8IqefxknjU3zLZgbIaIOdhY,221
582
582
  label_studio_sdk/workspaces/members/bulk/types/bulk_delete_response.py,sha256=sUNqoGRnpxGxxx1i0lYuK5F_L0RzxlQ3rPDhxqih1hA,602
583
583
  label_studio_sdk/workspaces/members/bulk/types/bulk_post_response.py,sha256=LV0qxT81BaKqMdG4__k_tN3NmMCjMFIpjIsE5FJBuBk,598
584
- label_studio_sdk/workspaces/members/client.py,sha256=Ds8TC6jtUDovlFng5pEGwhdNPXLnNQMpgRQm3wVGuG0,11068
584
+ label_studio_sdk/workspaces/members/client.py,sha256=gOsdSU94L4H0yt5iJL9MHiFBfsfBZZ6BV-MTL1k0dew,14116
585
585
  label_studio_sdk/workspaces/members/paginated/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
586
- label_studio_sdk/workspaces/members/paginated/client.py,sha256=f9v8TheXrh50_O746Vz9WQ4ZW3UPc83faduHry2GptI,6815
587
- label_studio_sdk-2.0.9.dist-info/LICENSE,sha256=ymVrFcHiJGjHeY30NWZgdV-xzNEtfuC63oK9ZeMDjhs,11341
588
- label_studio_sdk-2.0.9.dist-info/METADATA,sha256=yJOLvytBeG6OmHLyv5_5Z64Iqu7v_lximscqtyivdKA,6981
589
- label_studio_sdk-2.0.9.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
590
- label_studio_sdk-2.0.9.dist-info/RECORD,,
586
+ label_studio_sdk/workspaces/members/paginated/client.py,sha256=vTyjdS30Mr09OAT06MgCeiXvVCKxJYtJFtb0odMgnZE,7831
587
+ label_studio_sdk-2.0.10.dist-info/LICENSE,sha256=ymVrFcHiJGjHeY30NWZgdV-xzNEtfuC63oK9ZeMDjhs,11341
588
+ label_studio_sdk-2.0.10.dist-info/METADATA,sha256=o_Hb646wqCObSJN9AnOs36OionIoFypLQbFfV-5LmKk,6982
589
+ label_studio_sdk-2.0.10.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
590
+ label_studio_sdk-2.0.10.dist-info/RECORD,,