benchling-api-client 2.0.331__py3-none-any.whl → 2.0.332__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.
@@ -10,6 +10,7 @@ from ..models.checkout_record import CheckoutRecord
10
10
  from ..models.container_content import ContainerContent
11
11
  from ..models.container_quantity import ContainerQuantity
12
12
  from ..models.deprecated_container_volume_for_response import DeprecatedContainerVolumeForResponse
13
+ from ..models.experimental_well_role import ExperimentalWellRole
13
14
  from ..models.fields import Fields
14
15
  from ..models.sample_restriction_status import SampleRestrictionStatus
15
16
  from ..models.schema_summary import SchemaSummary
@@ -42,6 +43,7 @@ class Well:
42
43
  _resource_type: Union[Unset, WellResourceType] = UNSET
43
44
  _restricted_sample_parties: Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]] = UNSET
44
45
  _restriction_status: Union[Unset, SampleRestrictionStatus] = UNSET
46
+ _role: Union[Unset, None, ExperimentalWellRole] = UNSET
45
47
  _sample_owners: Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]] = UNSET
46
48
  _schema: Union[Unset, None, SchemaSummary] = UNSET
47
49
  _volume: Union[Unset, DeprecatedContainerVolumeForResponse] = UNSET
@@ -66,6 +68,7 @@ class Well:
66
68
  fields.append("resource_type={}".format(repr(self._resource_type)))
67
69
  fields.append("restricted_sample_parties={}".format(repr(self._restricted_sample_parties)))
68
70
  fields.append("restriction_status={}".format(repr(self._restriction_status)))
71
+ fields.append("role={}".format(repr(self._role)))
69
72
  fields.append("sample_owners={}".format(repr(self._sample_owners)))
70
73
  fields.append("schema={}".format(repr(self._schema)))
71
74
  fields.append("volume={}".format(repr(self._volume)))
@@ -140,6 +143,10 @@ class Well:
140
143
  if not isinstance(self._restriction_status, Unset):
141
144
  restriction_status = self._restriction_status.value
142
145
 
146
+ role: Union[Unset, None, Dict[str, Any]] = UNSET
147
+ if not isinstance(self._role, Unset):
148
+ role = self._role.to_dict() if self._role else None
149
+
143
150
  sample_owners: Union[Unset, List[Any]] = UNSET
144
151
  if not isinstance(self._sample_owners, Unset):
145
152
  sample_owners = []
@@ -200,6 +207,8 @@ class Well:
200
207
  field_dict["restrictedSampleParties"] = restricted_sample_parties
201
208
  if restriction_status is not UNSET:
202
209
  field_dict["restrictionStatus"] = restriction_status
210
+ if role is not UNSET:
211
+ field_dict["role"] = role
203
212
  if sample_owners is not UNSET:
204
213
  field_dict["sampleOwners"] = sample_owners
205
214
  if schema is not UNSET:
@@ -495,6 +504,22 @@ class Well:
495
504
  raise
496
505
  restriction_status = cast(Union[Unset, SampleRestrictionStatus], UNSET)
497
506
 
507
+ def get_role() -> Union[Unset, None, ExperimentalWellRole]:
508
+ role = None
509
+ _role = d.pop("role")
510
+
511
+ if _role is not None and not isinstance(_role, Unset):
512
+ role = ExperimentalWellRole.from_dict(_role)
513
+
514
+ return role
515
+
516
+ try:
517
+ role = get_role()
518
+ except KeyError:
519
+ if strict:
520
+ raise
521
+ role = cast(Union[Unset, None, ExperimentalWellRole], UNSET)
522
+
498
523
  def get_sample_owners() -> Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]]:
499
524
  sample_owners = []
500
525
  _sample_owners = d.pop("sampleOwners")
@@ -596,6 +621,7 @@ class Well:
596
621
  resource_type=resource_type,
597
622
  restricted_sample_parties=restricted_sample_parties,
598
623
  restriction_status=restriction_status,
624
+ role=role,
599
625
  sample_owners=sample_owners,
600
626
  schema=schema,
601
627
  volume=volume,
@@ -859,6 +885,20 @@ class Well:
859
885
  def restriction_status(self) -> None:
860
886
  self._restriction_status = UNSET
861
887
 
888
+ @property
889
+ def role(self) -> Optional[ExperimentalWellRole]:
890
+ if isinstance(self._role, Unset):
891
+ raise NotPresentError(self, "role")
892
+ return self._role
893
+
894
+ @role.setter
895
+ def role(self, value: Optional[ExperimentalWellRole]) -> None:
896
+ self._role = value
897
+
898
+ @role.deleter
899
+ def role(self) -> None:
900
+ self._role = UNSET
901
+
862
902
  @property
863
903
  def sample_owners(self) -> List[Union[UserSummary, TeamSummary, UnknownType]]:
864
904
  """ Not applicable for fixed plate wells. """
@@ -10,6 +10,7 @@ from ..models.checkout_record import CheckoutRecord
10
10
  from ..models.container_content import ContainerContent
11
11
  from ..models.container_quantity import ContainerQuantity
12
12
  from ..models.deprecated_container_volume_for_response import DeprecatedContainerVolumeForResponse
13
+ from ..models.experimental_well_role import ExperimentalWellRole
13
14
  from ..models.fields import Fields
14
15
  from ..models.sample_restriction_status import SampleRestrictionStatus
15
16
  from ..models.schema_summary import SchemaSummary
@@ -42,6 +43,7 @@ class Well:
42
43
  _resource_type: Union[Unset, WellResourceType] = UNSET
43
44
  _restricted_sample_parties: Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]] = UNSET
44
45
  _restriction_status: Union[Unset, SampleRestrictionStatus] = UNSET
46
+ _role: Union[Unset, None, ExperimentalWellRole] = UNSET
45
47
  _sample_owners: Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]] = UNSET
46
48
  _schema: Union[Unset, None, SchemaSummary] = UNSET
47
49
  _volume: Union[Unset, DeprecatedContainerVolumeForResponse] = UNSET
@@ -66,6 +68,7 @@ class Well:
66
68
  fields.append("resource_type={}".format(repr(self._resource_type)))
67
69
  fields.append("restricted_sample_parties={}".format(repr(self._restricted_sample_parties)))
68
70
  fields.append("restriction_status={}".format(repr(self._restriction_status)))
71
+ fields.append("role={}".format(repr(self._role)))
69
72
  fields.append("sample_owners={}".format(repr(self._sample_owners)))
70
73
  fields.append("schema={}".format(repr(self._schema)))
71
74
  fields.append("volume={}".format(repr(self._volume)))
@@ -140,6 +143,10 @@ class Well:
140
143
  if not isinstance(self._restriction_status, Unset):
141
144
  restriction_status = self._restriction_status.value
142
145
 
146
+ role: Union[Unset, None, Dict[str, Any]] = UNSET
147
+ if not isinstance(self._role, Unset):
148
+ role = self._role.to_dict() if self._role else None
149
+
143
150
  sample_owners: Union[Unset, List[Any]] = UNSET
144
151
  if not isinstance(self._sample_owners, Unset):
145
152
  sample_owners = []
@@ -200,6 +207,8 @@ class Well:
200
207
  field_dict["restrictedSampleParties"] = restricted_sample_parties
201
208
  if restriction_status is not UNSET:
202
209
  field_dict["restrictionStatus"] = restriction_status
210
+ if role is not UNSET:
211
+ field_dict["role"] = role
203
212
  if sample_owners is not UNSET:
204
213
  field_dict["sampleOwners"] = sample_owners
205
214
  if schema is not UNSET:
@@ -495,6 +504,22 @@ class Well:
495
504
  raise
496
505
  restriction_status = cast(Union[Unset, SampleRestrictionStatus], UNSET)
497
506
 
507
+ def get_role() -> Union[Unset, None, ExperimentalWellRole]:
508
+ role = None
509
+ _role = d.pop("role")
510
+
511
+ if _role is not None and not isinstance(_role, Unset):
512
+ role = ExperimentalWellRole.from_dict(_role)
513
+
514
+ return role
515
+
516
+ try:
517
+ role = get_role()
518
+ except KeyError:
519
+ if strict:
520
+ raise
521
+ role = cast(Union[Unset, None, ExperimentalWellRole], UNSET)
522
+
498
523
  def get_sample_owners() -> Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]]:
499
524
  sample_owners = []
500
525
  _sample_owners = d.pop("sampleOwners")
@@ -596,6 +621,7 @@ class Well:
596
621
  resource_type=resource_type,
597
622
  restricted_sample_parties=restricted_sample_parties,
598
623
  restriction_status=restriction_status,
624
+ role=role,
599
625
  sample_owners=sample_owners,
600
626
  schema=schema,
601
627
  volume=volume,
@@ -859,6 +885,20 @@ class Well:
859
885
  def restriction_status(self) -> None:
860
886
  self._restriction_status = UNSET
861
887
 
888
+ @property
889
+ def role(self) -> Optional[ExperimentalWellRole]:
890
+ if isinstance(self._role, Unset):
891
+ raise NotPresentError(self, "role")
892
+ return self._role
893
+
894
+ @role.setter
895
+ def role(self, value: Optional[ExperimentalWellRole]) -> None:
896
+ self._role = value
897
+
898
+ @role.deleter
899
+ def role(self) -> None:
900
+ self._role = UNSET
901
+
862
902
  @property
863
903
  def sample_owners(self) -> List[Union[UserSummary, TeamSummary, UnknownType]]:
864
904
  """ Not applicable for fixed plate wells. """
@@ -8950,6 +8950,11 @@ components:
8950
8950
  allOf:
8951
8951
  - $ref: '#/components/schemas/SampleRestrictionStatus'
8952
8952
  description: Not applicable for fixed plate wells.
8953
+ role:
8954
+ allOf:
8955
+ - $ref: '#/components/schemas/ExperimentalWellRole'
8956
+ description: Not applicable for matrix plate wells.
8957
+ nullable: true
8953
8958
  sampleOwners:
8954
8959
  description: Not applicable for fixed plate wells.
8955
8960
  items:
@@ -10,6 +10,7 @@ from ..models.checkout_record import CheckoutRecord
10
10
  from ..models.container_content import ContainerContent
11
11
  from ..models.container_quantity import ContainerQuantity
12
12
  from ..models.deprecated_container_volume_for_response import DeprecatedContainerVolumeForResponse
13
+ from ..models.experimental_well_role import ExperimentalWellRole
13
14
  from ..models.fields import Fields
14
15
  from ..models.sample_restriction_status import SampleRestrictionStatus
15
16
  from ..models.schema_summary import SchemaSummary
@@ -42,6 +43,7 @@ class Well:
42
43
  _resource_type: Union[Unset, WellResourceType] = UNSET
43
44
  _restricted_sample_parties: Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]] = UNSET
44
45
  _restriction_status: Union[Unset, SampleRestrictionStatus] = UNSET
46
+ _role: Union[Unset, None, ExperimentalWellRole] = UNSET
45
47
  _sample_owners: Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]] = UNSET
46
48
  _schema: Union[Unset, None, SchemaSummary] = UNSET
47
49
  _volume: Union[Unset, DeprecatedContainerVolumeForResponse] = UNSET
@@ -66,6 +68,7 @@ class Well:
66
68
  fields.append("resource_type={}".format(repr(self._resource_type)))
67
69
  fields.append("restricted_sample_parties={}".format(repr(self._restricted_sample_parties)))
68
70
  fields.append("restriction_status={}".format(repr(self._restriction_status)))
71
+ fields.append("role={}".format(repr(self._role)))
69
72
  fields.append("sample_owners={}".format(repr(self._sample_owners)))
70
73
  fields.append("schema={}".format(repr(self._schema)))
71
74
  fields.append("volume={}".format(repr(self._volume)))
@@ -140,6 +143,10 @@ class Well:
140
143
  if not isinstance(self._restriction_status, Unset):
141
144
  restriction_status = self._restriction_status.value
142
145
 
146
+ role: Union[Unset, None, Dict[str, Any]] = UNSET
147
+ if not isinstance(self._role, Unset):
148
+ role = self._role.to_dict() if self._role else None
149
+
143
150
  sample_owners: Union[Unset, List[Any]] = UNSET
144
151
  if not isinstance(self._sample_owners, Unset):
145
152
  sample_owners = []
@@ -200,6 +207,8 @@ class Well:
200
207
  field_dict["restrictedSampleParties"] = restricted_sample_parties
201
208
  if restriction_status is not UNSET:
202
209
  field_dict["restrictionStatus"] = restriction_status
210
+ if role is not UNSET:
211
+ field_dict["role"] = role
203
212
  if sample_owners is not UNSET:
204
213
  field_dict["sampleOwners"] = sample_owners
205
214
  if schema is not UNSET:
@@ -495,6 +504,22 @@ class Well:
495
504
  raise
496
505
  restriction_status = cast(Union[Unset, SampleRestrictionStatus], UNSET)
497
506
 
507
+ def get_role() -> Union[Unset, None, ExperimentalWellRole]:
508
+ role = None
509
+ _role = d.pop("role")
510
+
511
+ if _role is not None and not isinstance(_role, Unset):
512
+ role = ExperimentalWellRole.from_dict(_role)
513
+
514
+ return role
515
+
516
+ try:
517
+ role = get_role()
518
+ except KeyError:
519
+ if strict:
520
+ raise
521
+ role = cast(Union[Unset, None, ExperimentalWellRole], UNSET)
522
+
498
523
  def get_sample_owners() -> Union[Unset, List[Union[UserSummary, TeamSummary, UnknownType]]]:
499
524
  sample_owners = []
500
525
  _sample_owners = d.pop("sampleOwners")
@@ -596,6 +621,7 @@ class Well:
596
621
  resource_type=resource_type,
597
622
  restricted_sample_parties=restricted_sample_parties,
598
623
  restriction_status=restriction_status,
624
+ role=role,
599
625
  sample_owners=sample_owners,
600
626
  schema=schema,
601
627
  volume=volume,
@@ -859,6 +885,20 @@ class Well:
859
885
  def restriction_status(self) -> None:
860
886
  self._restriction_status = UNSET
861
887
 
888
+ @property
889
+ def role(self) -> Optional[ExperimentalWellRole]:
890
+ if isinstance(self._role, Unset):
891
+ raise NotPresentError(self, "role")
892
+ return self._role
893
+
894
+ @role.setter
895
+ def role(self, value: Optional[ExperimentalWellRole]) -> None:
896
+ self._role = value
897
+
898
+ @role.deleter
899
+ def role(self) -> None:
900
+ self._role = UNSET
901
+
862
902
  @property
863
903
  def sample_owners(self) -> List[Union[UserSummary, TeamSummary, UnknownType]]:
864
904
  """ Not applicable for fixed plate wells. """
@@ -31794,6 +31794,11 @@ components:
31794
31794
  allOf:
31795
31795
  - $ref: '#/components/schemas/SampleRestrictionStatus'
31796
31796
  description: Not applicable for fixed plate wells.
31797
+ role:
31798
+ allOf:
31799
+ - $ref: '#/components/schemas/ExperimentalWellRole'
31800
+ description: Not applicable for matrix plate wells.
31801
+ nullable: true
31797
31802
  sampleOwners:
31798
31803
  description: Not applicable for fixed plate wells.
31799
31804
  items:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: benchling-api-client
3
- Version: 2.0.331
3
+ Version: 2.0.332
4
4
  Summary: Autogenerated Python client from OpenAPI Python Client generator
5
5
  License: Apache-2.0
6
6
  Author: Benchling Support
@@ -1449,7 +1449,7 @@ benchling_api_client/models/users_paginated_list.py,sha256=5XePxGkx9onqPdP0m_Yy1
1449
1449
  benchling_api_client/models/warehouse_credential_summary.py,sha256=4wvQSM2CMJ0XOe8JVXsBKMTUNOw-ZVtNmZoBBxrropU,7965
1450
1450
  benchling_api_client/models/warehouse_credentials.py,sha256=lHACOZRqO4EeQdmYg9dOuqKY5jYRyWNGELm8kqzTIsk,5232
1451
1451
  benchling_api_client/models/warehouse_credentials_create.py,sha256=H8Muz_4ZPy2Viw0UwoYpecPsbdkn6sPLgtIAh-SHD4Y,1789
1452
- benchling_api_client/models/well.py,sha256=KaXJu_VdRTzM9KtA4hcwErccqCguCm9eqapelP-Rjyo,33289
1452
+ benchling_api_client/models/well.py,sha256=uCmSSuJV43tQaYr4tMUCvbP6ry3epgnlDy_RwQDzwOE,34570
1453
1453
  benchling_api_client/models/well_or_inaccessible_resource.py,sha256=UBpv4OiB9KsOs4UtX4RR0t5nX35TSzsyz-dahPJ7oZM,235
1454
1454
  benchling_api_client/models/well_resource_type.py,sha256=h_PNDZNpBRlBF4eIK7_ZBSZy8LQflD8EoYzAL8VVDcE,649
1455
1455
  benchling_api_client/models/workflow_end_node_details.py,sha256=4nhZvTTvdYiYwL7eygyuyuFSgJylGgnF7g_dvCA10dA,2498
@@ -2522,7 +2522,7 @@ benchling_api_client/v2/beta/models/unit_summary.py,sha256=zZlm_cRHI7QELDbQPzDMM
2522
2522
  benchling_api_client/v2/beta/models/user_collaborator.py,sha256=CRga9aDeOoW5h52pbWsTj7PMQJPfDA-JlBg-elQysf4,5409
2523
2523
  benchling_api_client/v2/beta/models/user_collaborator_type.py,sha256=48vEn_CxthGhnL1WvktPLmIOlRQBh4gizXUn9tsp_5c,659
2524
2524
  benchling_api_client/v2/beta/models/user_summary.py,sha256=KfKRaTxZB_5Ut3o1WByRU4dRi0M0bEGpiegWrjrCwWQ,4075
2525
- benchling_api_client/v2/beta/models/well.py,sha256=KaXJu_VdRTzM9KtA4hcwErccqCguCm9eqapelP-Rjyo,33289
2525
+ benchling_api_client/v2/beta/models/well.py,sha256=uCmSSuJV43tQaYr4tMUCvbP6ry3epgnlDy_RwQDzwOE,34570
2526
2526
  benchling_api_client/v2/beta/models/well_or_inaccessible_resource.py,sha256=UBpv4OiB9KsOs4UtX4RR0t5nX35TSzsyz-dahPJ7oZM,235
2527
2527
  benchling_api_client/v2/beta/models/well_resource_type.py,sha256=h_PNDZNpBRlBF4eIK7_ZBSZy8LQflD8EoYzAL8VVDcE,649
2528
2528
  benchling_api_client/v2/beta/models/workflow_end_node_details.py,sha256=4nhZvTTvdYiYwL7eygyuyuFSgJylGgnF7g_dvCA10dA,2498
@@ -2603,7 +2603,7 @@ benchling_api_client/v2/beta/models/worklist_items_paginated_list.py,sha256=zGBc
2603
2603
  benchling_api_client/v2/beta/models/worklist_type.py,sha256=b0zk9P1QlJrXOHnFBq2mcdzRghDZe8GXNg4Mriu5d2w,697
2604
2604
  benchling_api_client/v2/beta/models/worklist_update.py,sha256=kR8yNfIgKPOpTTxe2kCuInEayq7UqBLLWnuZP7Aqsgc,3261
2605
2605
  benchling_api_client/v2/beta/models/worklists_paginated_list.py,sha256=80I-eXYAiIRVjbDPsmJqWJl3RU8leXUL5dB5RY12V-A,3358
2606
- benchling_api_client/v2/beta/openapi.yaml,sha256=g9CLKXZU-58n59qmK2oiCaeXXAMoVl-0QefZrxXS48o,323325
2606
+ benchling_api_client/v2/beta/openapi.yaml,sha256=AyabGH1UznY-3dqDKXx3DDMcmfkrApquSMVuco-dPb0,323505
2607
2607
  benchling_api_client/v2/beta/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
2608
2608
  benchling_api_client/v2/client.py,sha256=-6Yzio8p22BaTJ_BEInEoUzmh4afxXlwceNFtn1vBLc,2241
2609
2609
  benchling_api_client/v2/extensions.py,sha256=4TSjnmlUquvmBu8up1vPXutEInf-oXDSZ58ciyBW7_E,1996
@@ -4057,7 +4057,7 @@ benchling_api_client/v2/stable/models/users_paginated_list.py,sha256=5XePxGkx9on
4057
4057
  benchling_api_client/v2/stable/models/warehouse_credential_summary.py,sha256=4wvQSM2CMJ0XOe8JVXsBKMTUNOw-ZVtNmZoBBxrropU,7965
4058
4058
  benchling_api_client/v2/stable/models/warehouse_credentials.py,sha256=lHACOZRqO4EeQdmYg9dOuqKY5jYRyWNGELm8kqzTIsk,5232
4059
4059
  benchling_api_client/v2/stable/models/warehouse_credentials_create.py,sha256=H8Muz_4ZPy2Viw0UwoYpecPsbdkn6sPLgtIAh-SHD4Y,1789
4060
- benchling_api_client/v2/stable/models/well.py,sha256=KaXJu_VdRTzM9KtA4hcwErccqCguCm9eqapelP-Rjyo,33289
4060
+ benchling_api_client/v2/stable/models/well.py,sha256=uCmSSuJV43tQaYr4tMUCvbP6ry3epgnlDy_RwQDzwOE,34570
4061
4061
  benchling_api_client/v2/stable/models/well_or_inaccessible_resource.py,sha256=UBpv4OiB9KsOs4UtX4RR0t5nX35TSzsyz-dahPJ7oZM,235
4062
4062
  benchling_api_client/v2/stable/models/well_resource_type.py,sha256=h_PNDZNpBRlBF4eIK7_ZBSZy8LQflD8EoYzAL8VVDcE,649
4063
4063
  benchling_api_client/v2/stable/models/workflow_end_node_details.py,sha256=4nhZvTTvdYiYwL7eygyuyuFSgJylGgnF7g_dvCA10dA,2498
@@ -4158,7 +4158,7 @@ benchling_api_client/v2/stable/models/workflow_tasks_bulk_create_request.py,sha2
4158
4158
  benchling_api_client/v2/stable/models/workflow_tasks_bulk_update_request.py,sha256=LQiruVawTaSZrQx1iKnsWx2eqaFrCCBQqCB8ILMWKGo,3638
4159
4159
  benchling_api_client/v2/stable/models/workflow_tasks_paginated_list.py,sha256=HXwVwlPV0x2r7sseX9EqysjM4VZIrFtnTghq2_To5Yw,4485
4160
4160
  benchling_api_client/v2/stable/models/workflow_tasks_unarchive.py,sha256=RliHQZbuyiQnTHxIWvMyR-zAn1G24wU9jGo5BfClCaQ,2777
4161
- benchling_api_client/v2/stable/openapi.yaml,sha256=QDaI9oP-zDFDcRmWvbQfFYm8twighGfH3-DtzCosjH4,1041997
4161
+ benchling_api_client/v2/stable/openapi.yaml,sha256=siRPrHGO5_7GKxqKmCzPCSrozDHUFa4Tx0ULC_dvmKQ,1042177
4162
4162
  benchling_api_client/v2/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
4163
4163
  benchling_api_client/v2/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
4164
4164
  benchling_api_client/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -4431,7 +4431,7 @@ benchling_api_client/webhooks/v0/stable/models/workflow_task_updated_status_webh
4431
4431
  benchling_api_client/webhooks/v0/stable/openapi.yaml,sha256=kJDPJmoX-kjFn3EBnx8l_Cc9UM21SwFpD4wnoZi3TSI,28437
4432
4432
  benchling_api_client/webhooks/v0/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
4433
4433
  benchling_api_client/webhooks/v0/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
4434
- benchling_api_client-2.0.331.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4435
- benchling_api_client-2.0.331.dist-info/WHEEL,sha256=vxFmldFsRN_Hx10GDvsdv1wroKq8r5Lzvjp6GZ4OO8c,88
4436
- benchling_api_client-2.0.331.dist-info/METADATA,sha256=Ke9ZiqS9nOcJ84K542rYsnTnW3_A_SoyBYmvmnXyCA0,1201
4437
- benchling_api_client-2.0.331.dist-info/RECORD,,
4434
+ benchling_api_client-2.0.332.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4435
+ benchling_api_client-2.0.332.dist-info/WHEEL,sha256=vxFmldFsRN_Hx10GDvsdv1wroKq8r5Lzvjp6GZ4OO8c,88
4436
+ benchling_api_client-2.0.332.dist-info/METADATA,sha256=cgpNFOm890G-fdON11ZQSTTyaB7fAYrgnD55oO5fQL0,1201
4437
+ benchling_api_client-2.0.332.dist-info/RECORD,,