benchling-api-client 2.0.415__py3-none-any.whl → 2.0.416__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.
- benchling_api_client/models/container_content.py +183 -26
- benchling_api_client/models/entity.py +19 -7
- benchling_api_client/models/entity_or_inaccessible_resource.py +19 -7
- benchling_api_client/models/molecule_with_entity_type.py +787 -0
- benchling_api_client/models/molecule_with_entity_type_entity_type.py +22 -0
- benchling_api_client/models/registered_entities_list.py +89 -32
- benchling_api_client/models/request_response_samples_item_entity.py +216 -74
- benchling_api_client/models/rna_sequence_with_entity_type.py +1151 -0
- benchling_api_client/models/rna_sequence_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/models/aa_sequence_with_entity_type.py +865 -0
- benchling_api_client/v2/beta/models/aa_sequence_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/models/container_content.py +183 -26
- benchling_api_client/v2/beta/models/custom_entity_creator.py +2 -100
- benchling_api_client/v2/beta/models/custom_entity_with_entity_type.py +747 -0
- benchling_api_client/v2/beta/models/custom_entity_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/models/dna_oligo_with_entity_type.py +972 -0
- benchling_api_client/v2/beta/models/dna_oligo_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/models/dna_sequence_with_entity_type.py +1102 -0
- benchling_api_client/v2/beta/models/dna_sequence_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/models/entity.py +19 -7
- benchling_api_client/v2/beta/models/entity_or_inaccessible_resource.py +19 -7
- benchling_api_client/v2/beta/models/mixture_creator.py +2 -100
- benchling_api_client/v2/beta/models/mixture_with_entity_type.py +867 -0
- benchling_api_client/v2/beta/models/mixture_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/models/molecule_with_entity_type.py +787 -0
- benchling_api_client/v2/beta/models/molecule_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/models/rna_oligo_with_entity_type.py +972 -0
- benchling_api_client/v2/beta/models/rna_oligo_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/models/rna_sequence.py +1109 -0
- benchling_api_client/v2/beta/models/rna_sequence_part.py +183 -0
- benchling_api_client/v2/beta/models/rna_sequence_with_entity_type.py +1151 -0
- benchling_api_client/v2/beta/models/rna_sequence_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/beta/openapi.yaml +216 -6
- benchling_api_client/v2/stable/models/container_content.py +183 -26
- benchling_api_client/v2/stable/models/entity.py +19 -7
- benchling_api_client/v2/stable/models/entity_or_inaccessible_resource.py +19 -7
- benchling_api_client/v2/stable/models/molecule_with_entity_type.py +787 -0
- benchling_api_client/v2/stable/models/molecule_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/stable/models/registered_entities_list.py +89 -32
- benchling_api_client/v2/stable/models/request_response_samples_item_entity.py +216 -74
- benchling_api_client/v2/stable/models/rna_sequence_with_entity_type.py +1151 -0
- benchling_api_client/v2/stable/models/rna_sequence_with_entity_type_entity_type.py +22 -0
- benchling_api_client/v2/stable/openapi.yaml +40 -22
- {benchling_api_client-2.0.415.dist-info → benchling_api_client-2.0.416.dist-info}/METADATA +1 -1
- {benchling_api_client-2.0.415.dist-info → benchling_api_client-2.0.416.dist-info}/RECORD +47 -21
- {benchling_api_client-2.0.415.dist-info → benchling_api_client-2.0.416.dist-info}/LICENSE +0 -0
- {benchling_api_client-2.0.415.dist-info → benchling_api_client-2.0.416.dist-info}/WHEEL +0 -0
|
@@ -1,16 +1,28 @@
|
|
|
1
1
|
from typing import Union
|
|
2
2
|
|
|
3
3
|
from ..extensions import UnknownType
|
|
4
|
-
from ..models.
|
|
5
|
-
from ..models.
|
|
6
|
-
from ..models.
|
|
7
|
-
from ..models.
|
|
4
|
+
from ..models.aa_sequence_with_entity_type import AaSequenceWithEntityType
|
|
5
|
+
from ..models.custom_entity_with_entity_type import CustomEntityWithEntityType
|
|
6
|
+
from ..models.dna_oligo_with_entity_type import DnaOligoWithEntityType
|
|
7
|
+
from ..models.dna_sequence_with_entity_type import DnaSequenceWithEntityType
|
|
8
8
|
from ..models.inaccessible_resource import InaccessibleResource
|
|
9
|
-
from ..models.
|
|
10
|
-
from ..models.
|
|
9
|
+
from ..models.mixture_with_entity_type import MixtureWithEntityType
|
|
10
|
+
from ..models.molecule_with_entity_type import MoleculeWithEntityType
|
|
11
|
+
from ..models.rna_oligo_with_entity_type import RnaOligoWithEntityType
|
|
12
|
+
from ..models.rna_sequence_with_entity_type import RnaSequenceWithEntityType
|
|
11
13
|
|
|
12
14
|
EntityOrInaccessibleResource = Union[
|
|
13
|
-
Union[
|
|
15
|
+
Union[
|
|
16
|
+
DnaSequenceWithEntityType,
|
|
17
|
+
RnaSequenceWithEntityType,
|
|
18
|
+
AaSequenceWithEntityType,
|
|
19
|
+
MixtureWithEntityType,
|
|
20
|
+
DnaOligoWithEntityType,
|
|
21
|
+
RnaOligoWithEntityType,
|
|
22
|
+
MoleculeWithEntityType,
|
|
23
|
+
CustomEntityWithEntityType,
|
|
24
|
+
UnknownType,
|
|
25
|
+
],
|
|
14
26
|
InaccessibleResource,
|
|
15
27
|
UnknownType,
|
|
16
28
|
]
|