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
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
from functools import lru_cache
|
|
3
|
+
from typing import cast
|
|
4
|
+
|
|
5
|
+
from ..extensions import Enums
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class RnaSequenceWithEntityTypeEntityType(Enums.KnownString):
|
|
9
|
+
RNA_SEQUENCE = "rna_sequence"
|
|
10
|
+
|
|
11
|
+
def __str__(self) -> str:
|
|
12
|
+
return str(self.value)
|
|
13
|
+
|
|
14
|
+
@staticmethod
|
|
15
|
+
@lru_cache(maxsize=None)
|
|
16
|
+
def of_unknown(val: str) -> "RnaSequenceWithEntityTypeEntityType":
|
|
17
|
+
if not isinstance(val, str):
|
|
18
|
+
raise ValueError(
|
|
19
|
+
f"Value of RnaSequenceWithEntityTypeEntityType must be a string (encountered: {val})"
|
|
20
|
+
)
|
|
21
|
+
newcls = Enum("RnaSequenceWithEntityTypeEntityType", {"_UNKNOWN": val}, type=Enums.UnknownString) # type: ignore
|
|
22
|
+
return cast(RnaSequenceWithEntityTypeEntityType, getattr(newcls, "_UNKNOWN"))
|
|
@@ -27195,13 +27195,26 @@ components:
|
|
|
27195
27195
|
type: array
|
|
27196
27196
|
type: object
|
|
27197
27197
|
Entity:
|
|
27198
|
+
discriminator:
|
|
27199
|
+
mapping:
|
|
27200
|
+
aa_sequence: '#/components/schemas/AaSequenceWithEntityType'
|
|
27201
|
+
custom_entity: '#/components/schemas/CustomEntityWithEntityType'
|
|
27202
|
+
dna_oligo: '#/components/schemas/DnaOligoWithEntityType'
|
|
27203
|
+
dna_sequence: '#/components/schemas/DnaSequenceWithEntityType'
|
|
27204
|
+
mixture: '#/components/schemas/MixtureWithEntityType'
|
|
27205
|
+
molecule: '#/components/schemas/MoleculeWithEntityType'
|
|
27206
|
+
rna_oligo: '#/components/schemas/RnaOligoWithEntityType'
|
|
27207
|
+
rna_sequence: '#/components/schemas/RnaSequenceWithEntityType'
|
|
27208
|
+
propertyName: entityType
|
|
27198
27209
|
oneOf:
|
|
27199
|
-
- $ref: '#/components/schemas/
|
|
27200
|
-
- $ref: '#/components/schemas/
|
|
27201
|
-
- $ref: '#/components/schemas/
|
|
27202
|
-
- $ref: '#/components/schemas/
|
|
27203
|
-
- $ref: '#/components/schemas/
|
|
27204
|
-
- $ref: '#/components/schemas/
|
|
27210
|
+
- $ref: '#/components/schemas/DnaSequenceWithEntityType'
|
|
27211
|
+
- $ref: '#/components/schemas/RnaSequenceWithEntityType'
|
|
27212
|
+
- $ref: '#/components/schemas/AaSequenceWithEntityType'
|
|
27213
|
+
- $ref: '#/components/schemas/MixtureWithEntityType'
|
|
27214
|
+
- $ref: '#/components/schemas/DnaOligoWithEntityType'
|
|
27215
|
+
- $ref: '#/components/schemas/RnaOligoWithEntityType'
|
|
27216
|
+
- $ref: '#/components/schemas/MoleculeWithEntityType'
|
|
27217
|
+
- $ref: '#/components/schemas/CustomEntityWithEntityType'
|
|
27205
27218
|
type: object
|
|
27206
27219
|
EntityArchiveReason:
|
|
27207
27220
|
description: 'The reason for archiving the provided entities. Accepted reasons
|
|
@@ -30449,6 +30462,16 @@ components:
|
|
|
30449
30462
|
allOf:
|
|
30450
30463
|
- $ref: '#/components/schemas/EntityUpsertBaseRequest'
|
|
30451
30464
|
- $ref: '#/components/schemas/MoleculeBaseRequestForCreate'
|
|
30465
|
+
MoleculeWithEntityType:
|
|
30466
|
+
allOf:
|
|
30467
|
+
- $ref: '#/components/schemas/Molecule'
|
|
30468
|
+
- properties:
|
|
30469
|
+
entityType:
|
|
30470
|
+
enum:
|
|
30471
|
+
- molecule
|
|
30472
|
+
type: string
|
|
30473
|
+
type: object
|
|
30474
|
+
type: object
|
|
30452
30475
|
MoleculesArchivalChange:
|
|
30453
30476
|
additionalProperties: false
|
|
30454
30477
|
description: 'IDs of all items that were archived or unarchived, grouped by
|
|
@@ -31932,22 +31955,7 @@ components:
|
|
|
31932
31955
|
properties:
|
|
31933
31956
|
entities:
|
|
31934
31957
|
items:
|
|
31935
|
-
|
|
31936
|
-
mapping:
|
|
31937
|
-
aa_sequence: '#/components/schemas/AaSequenceWithEntityType'
|
|
31938
|
-
custom_entity: '#/components/schemas/CustomEntityWithEntityType'
|
|
31939
|
-
dna_oligo: '#/components/schemas/DnaOligoWithEntityType'
|
|
31940
|
-
dna_sequence: '#/components/schemas/DnaSequenceWithEntityType'
|
|
31941
|
-
mixture: '#/components/schemas/MixtureWithEntityType'
|
|
31942
|
-
rna_oligo: '#/components/schemas/RnaOligoWithEntityType'
|
|
31943
|
-
propertyName: entityType
|
|
31944
|
-
oneOf:
|
|
31945
|
-
- $ref: '#/components/schemas/DnaSequenceWithEntityType'
|
|
31946
|
-
- $ref: '#/components/schemas/CustomEntityWithEntityType'
|
|
31947
|
-
- $ref: '#/components/schemas/AaSequenceWithEntityType'
|
|
31948
|
-
- $ref: '#/components/schemas/MixtureWithEntityType'
|
|
31949
|
-
- $ref: '#/components/schemas/DnaOligoWithEntityType'
|
|
31950
|
-
- $ref: '#/components/schemas/RnaOligoWithEntityType'
|
|
31958
|
+
$ref: '#/components/schemas/Entity'
|
|
31951
31959
|
type: array
|
|
31952
31960
|
type: object
|
|
31953
31961
|
RegistrationOrigin:
|
|
@@ -33036,6 +33044,16 @@ components:
|
|
|
33036
33044
|
allOf:
|
|
33037
33045
|
- $ref: '#/components/schemas/RnaSequenceBaseRequest'
|
|
33038
33046
|
- $ref: '#/components/schemas/RnaSequenceRequestRegistryFields'
|
|
33047
|
+
RnaSequenceWithEntityType:
|
|
33048
|
+
allOf:
|
|
33049
|
+
- $ref: '#/components/schemas/RnaSequence'
|
|
33050
|
+
- properties:
|
|
33051
|
+
entityType:
|
|
33052
|
+
enum:
|
|
33053
|
+
- rna_sequence
|
|
33054
|
+
type: string
|
|
33055
|
+
type: object
|
|
33056
|
+
type: object
|
|
33039
33057
|
RnaSequencesArchivalChange:
|
|
33040
33058
|
description: 'IDs of all RNA Sequences that were archived or unarchived, grouped
|
|
33041
33059
|
by resource type.
|
|
@@ -806,7 +806,7 @@ benchling_api_client/models/conflict_error_error.py,sha256=F4xcn8d89_Ybw-JyXjTxj
|
|
|
806
806
|
benchling_api_client/models/conflict_error_error_conflicts_item.py,sha256=mgocO5NkTrRYat2sFSwsRUaM1cfQCzWHRf6sHpu5L-Y,1604
|
|
807
807
|
benchling_api_client/models/container.py,sha256=gz8-3uU2bjxa4WwcT5oPVO0PWXdYDHzxlqDThTcc3TY,33459
|
|
808
808
|
benchling_api_client/models/container_bulk_update_item.py,sha256=osBFRG24iEBx3do3krsVF1f98hBqB5826SY50BLr648,17648
|
|
809
|
-
benchling_api_client/models/container_content.py,sha256=
|
|
809
|
+
benchling_api_client/models/container_content.py,sha256=Ggt49g96plQzGNBbuBW8cQ7Uc1xqaw7hoTlS-OvJCGo,19934
|
|
810
810
|
benchling_api_client/models/container_content_update.py,sha256=Hwvze4CVwVrOzLDnEY5tors0r5qa4ulJfPrLQq4u_A0,1858
|
|
811
811
|
benchling_api_client/models/container_contents_list.py,sha256=sgRFKQi5mPrBfftMosd9U98BFvr6Q3nVyCDpZQ0fuU0,3284
|
|
812
812
|
benchling_api_client/models/container_create.py,sha256=YhX4GMuWpVHd7ygUKm4aKP-5MT2cR_33HCkNNzcwR10,11736
|
|
@@ -979,11 +979,11 @@ benchling_api_client/models/dropdown_update.py,sha256=rvCi2_EpdgNw0Tc2P4YljZ_F5e
|
|
|
979
979
|
benchling_api_client/models/dropdowns_registry_list.py,sha256=ZU-MNUaaBz15ZMe_iF71ozJ5AWxoEXCAkV7Hqj1Ebck,3317
|
|
980
980
|
benchling_api_client/models/empty_object.py,sha256=ETzW1OImD9aKzmTEGQa-8tgY9EFVwBpTx79lY7IpJbo,1475
|
|
981
981
|
benchling_api_client/models/entities_bulk_upsert_request.py,sha256=oIbkW0Wpq7gJ6Y7sOTK6oURa3u8z4E5Lbg4rbEPx4Dk,11442
|
|
982
|
-
benchling_api_client/models/entity.py,sha256=
|
|
982
|
+
benchling_api_client/models/entity.py,sha256=gX2mcnsx5BA1SrU87jfC9ZnJY45PqK2FofbLC16P_eY,922
|
|
983
983
|
benchling_api_client/models/entity_archive_reason.py,sha256=MXDLUr2DZs1pFL0ew31ElG8t45yjvGmyMgVm6cDZ1fo,848
|
|
984
984
|
benchling_api_client/models/entity_bulk_upsert_base_request.py,sha256=5ToThhiiha3tbOxnLfZTtJD3Pi3B_oCHKj10Bi7Rqvo,8102
|
|
985
985
|
benchling_api_client/models/entity_labels.py,sha256=Yu3VAQMGby-jxY5-RHbAIn-7KuA71PP1jTHAJk3jyx8,4439
|
|
986
|
-
benchling_api_client/models/entity_or_inaccessible_resource.py,sha256=
|
|
986
|
+
benchling_api_client/models/entity_or_inaccessible_resource.py,sha256=7FLaLqmf3ZkuEOQAqFwN7AdB1ChE8OQFFh1suHSfJIU,1105
|
|
987
987
|
benchling_api_client/models/entity_registered_event.py,sha256=H1whZhSjs0vr4WIBNrx0Xeh9XU-cNntNxVgo7cP5j1k,10473
|
|
988
988
|
benchling_api_client/models/entity_registered_event_event_type.py,sha256=8-tqrUsVAm8DJayyx9hlwCbweCIyHywT_v63H7IWAtA,740
|
|
989
989
|
benchling_api_client/models/entity_schema.py,sha256=EBROKs7hA4E3Ce2s1Q4cqJB1NJZp-bE5moqktGfo1lg,24666
|
|
@@ -1260,6 +1260,8 @@ benchling_api_client/models/molecule_structure.py,sha256=Awew80d5cM_w9KQgfGFQZfB
|
|
|
1260
1260
|
benchling_api_client/models/molecule_structure_structure_format.py,sha256=9_JDT5ISclWIPpWfpYn3WKsZuNDMgi1YYAUtrAPX4b0,777
|
|
1261
1261
|
benchling_api_client/models/molecule_update.py,sha256=DEK8q_zFrDq8bCsvZMFurjAm8WuOFYqy_d_nY7L_zsY,11337
|
|
1262
1262
|
benchling_api_client/models/molecule_upsert_request.py,sha256=Vmef2SNTZjC88JeeNNRsAcB_TrvKIH-0rafBubQp_08,13375
|
|
1263
|
+
benchling_api_client/models/molecule_with_entity_type.py,sha256=pjPaby9os55SGyXCBOuBTnfDIqCVLVzs17autwI0wuI,26738
|
|
1264
|
+
benchling_api_client/models/molecule_with_entity_type_entity_type.py,sha256=ZBxkWt3zRuU1WM0Vum_W5hziNlFB_2XUobqRC4oJ6ck,757
|
|
1263
1265
|
benchling_api_client/models/molecules_archival_change.py,sha256=h9UqTMbMvkfAmy4RAHk9utQAl-E1L1g3oPYMw4nL3hU,3281
|
|
1264
1266
|
benchling_api_client/models/molecules_archive.py,sha256=8byoCHEXKSLQsWMhUvRZjVVBk0TQxhcDklTsaMNkisA,2948
|
|
1265
1267
|
benchling_api_client/models/molecules_archive_reason.py,sha256=xpnInetOcj_I1bOfpHtm2d0unLje5-t_Qp3Ek31xGSc,863
|
|
@@ -1362,7 +1364,7 @@ benchling_api_client/models/projects_paginated_list.py,sha256=C-9i40BxT0zKTb0jgG
|
|
|
1362
1364
|
benchling_api_client/models/projects_unarchive.py,sha256=R61AsX4TE62BSY6PacV3UNw2Hx-s7giJXhxmywCqRg0,1754
|
|
1363
1365
|
benchling_api_client/models/reduced_pattern.py,sha256=4JPUe_LEPnJuWooSltEz8M_iE0NvvfxwDU02uM4_vZ4,3211
|
|
1364
1366
|
benchling_api_client/models/register_entities.py,sha256=dncNlk4wLj-trHWgLnz5jdz5WCJrdLqXYG_U5fHBALA,3652
|
|
1365
|
-
benchling_api_client/models/registered_entities_list.py,sha256=
|
|
1367
|
+
benchling_api_client/models/registered_entities_list.py,sha256=HMkMwmY0Bvjxh_nce2xOltdn9b0p4MnhaYJ1lPy8Jxk,13219
|
|
1366
1368
|
benchling_api_client/models/registration_origin.py,sha256=pIqNe11YL5MvFQ4ZDuWYP8eSn9WCkF4WKjkl3dlfJaw,4358
|
|
1367
1369
|
benchling_api_client/models/registration_table_note_part.py,sha256=fuE39UvsgvVXH4OowYKLLj6KTHWd-pRsCP_jnc1vA4M,7943
|
|
1368
1370
|
benchling_api_client/models/registration_table_note_part_type.py,sha256=iiP-mPtmBP99GZpij-3wyU3T63djrLBunzExMKc8cAU,732
|
|
@@ -1381,7 +1383,7 @@ benchling_api_client/models/request_requestor.py,sha256=j3x0c_nDk14Nq_yagJfTYFCd
|
|
|
1381
1383
|
benchling_api_client/models/request_response.py,sha256=_a0Sei1iJCgptSBL5ztcKq5n-b_uSrzZoBeyUioKBKc,4805
|
|
1382
1384
|
benchling_api_client/models/request_response_samples_item.py,sha256=CDbjrGNiTvKakFmnFbVVdSimLFcM6AB1ywPM16TDjgo,6221
|
|
1383
1385
|
benchling_api_client/models/request_response_samples_item_batch.py,sha256=7fK2EjBIk1V5NXbQTWkX3G8yZjoNBMolbNIGZvb_W3k,20647
|
|
1384
|
-
benchling_api_client/models/request_response_samples_item_entity.py,sha256=
|
|
1386
|
+
benchling_api_client/models/request_response_samples_item_entity.py,sha256=OUZdJkJh0qqWkm6PwxWcNPlhLlrQ1F9JKZ5qU_tPBUM,56134
|
|
1385
1387
|
benchling_api_client/models/request_response_samples_item_status.py,sha256=XOoJTwLn071e7SITmzQ7Xi7lWKYxrpzWwEHWqQnelAk,787
|
|
1386
1388
|
benchling_api_client/models/request_sample_group.py,sha256=nWJd8FZIMIoFa5-ah1XrX7iag18PX2k1TrkiQkwAspg,3997
|
|
1387
1389
|
benchling_api_client/models/request_sample_group_create.py,sha256=IMKGm_t1l0WvFV6g5CjuGPGB7JE6Oht7VitZ-ZQcraU,2893
|
|
@@ -1445,6 +1447,8 @@ benchling_api_client/models/rna_sequence_create.py,sha256=XpiUcP3k4vC-ajv-mHch2o
|
|
|
1445
1447
|
benchling_api_client/models/rna_sequence_part.py,sha256=gWLlH-1Dc1U0uV-Q-jLICcGX23eAEY52VeDKrLWoDDg,5283
|
|
1446
1448
|
benchling_api_client/models/rna_sequence_request_registry_fields.py,sha256=GQQ5kKyQIb3OrAthHqZ85M8KejTvkrRmCmJcfxwI6H8,2992
|
|
1447
1449
|
benchling_api_client/models/rna_sequence_update.py,sha256=38UQYsLw-eaagHoxqwujBgXNJXYDD01lcA28g0pHhhU,21375
|
|
1450
|
+
benchling_api_client/models/rna_sequence_with_entity_type.py,sha256=WcSz_ZITSj--_w5HKsYUibLqvwVLnavi6lEnp0xDPIk,38252
|
|
1451
|
+
benchling_api_client/models/rna_sequence_with_entity_type_entity_type.py,sha256=wH2M3ZQuFDnU7c1aSf6ieNyBgGcd8E3ftSfR4whZxLQ,780
|
|
1448
1452
|
benchling_api_client/models/rna_sequences_archival_change.py,sha256=l5Q7D_4oAUdGCihkEZ9w1UZRaNNOmuvjNQ2jwG4piG0,3149
|
|
1449
1453
|
benchling_api_client/models/rna_sequences_archive.py,sha256=20_Go9GI-CY7x4ZTXwGYp5YIJkgpEt4URULef2zLaQc,3035
|
|
1450
1454
|
benchling_api_client/models/rna_sequences_bulk_create_request.py,sha256=2H08bdr5Jujh8SI-I5Gog7J99cn6j-2g98wuHe4kkkw,2668
|
|
@@ -2201,6 +2205,8 @@ benchling_api_client/v2/beta/models/aa_sequence_base_request_for_create.py,sha25
|
|
|
2201
2205
|
benchling_api_client/v2/beta/models/aa_sequence_bulk_upsert_request.py,sha256=Rls3XRad7_cqpdoIFRBxGb8wElWGjh60Std7q9RJMhc,15689
|
|
2202
2206
|
benchling_api_client/v2/beta/models/aa_sequence_summary.py,sha256=XFPhjcGFnWDBGFRFAnW1UUKDRcY7IPEPOvApraGZz8M,4883
|
|
2203
2207
|
benchling_api_client/v2/beta/models/aa_sequence_summary_entity_type.py,sha256=5MOvu3bWZfiM_L_dQpIElS4j3PUi0ehPxQu707b2jNo,708
|
|
2208
|
+
benchling_api_client/v2/beta/models/aa_sequence_with_entity_type.py,sha256=rHW1pfUAIf9W0oHcKsZjur6YHGA-kCA_l8QUoXxn9Ww,28696
|
|
2209
|
+
benchling_api_client/v2/beta/models/aa_sequence_with_entity_type_entity_type.py,sha256=K7_d9S3QTlQlNxiqI8We_Ej1oRYvbyfYQ533bgkv9tU,773
|
|
2204
2210
|
benchling_api_client/v2/beta/models/access_policies_paginated_list.py,sha256=otC1NOHSJtu0DJCJ-cqm8b78DjPW16ypHM6eFfSrCsk,3335
|
|
2205
2211
|
benchling_api_client/v2/beta/models/access_policy.py,sha256=TlHRtNV3Mr9HiMEJ1H_nbr8B2vYhQT51Op-ml8i5Kx0,2330
|
|
2206
2212
|
benchling_api_client/v2/beta/models/analysis.py,sha256=-Q_UcfTRyiZL2nRyyLh6Er91h0RuaYQGs4AxhrKqIU4,5679
|
|
@@ -2254,7 +2260,7 @@ benchling_api_client/v2/beta/models/collaboration.py,sha256=aYgLc3M0MJkOiie-pLqm
|
|
|
2254
2260
|
benchling_api_client/v2/beta/models/collaboration_create.py,sha256=NoHmWGX3RIZzVC2fn3MCdtO2BXf89n8WkeE8bcvlJIA,274
|
|
2255
2261
|
benchling_api_client/v2/beta/models/collaborations_paginated_list.py,sha256=1YLTp7Fj511p9e9IfUboZc_TWIO9wwO7SvNW1vwHwv0,3587
|
|
2256
2262
|
benchling_api_client/v2/beta/models/container.py,sha256=OrZLSiOtCllNU-2jwyOCroaz-rBLwPhMf72yv6szox8,37139
|
|
2257
|
-
benchling_api_client/v2/beta/models/container_content.py,sha256=
|
|
2263
|
+
benchling_api_client/v2/beta/models/container_content.py,sha256=Ggt49g96plQzGNBbuBW8cQ7Uc1xqaw7hoTlS-OvJCGo,19934
|
|
2258
2264
|
benchling_api_client/v2/beta/models/container_labels.py,sha256=ucySzdn6RIuvXqt7EZ9x4DhECTPmZMWcDcgPU_fpQLM,4126
|
|
2259
2265
|
benchling_api_client/v2/beta/models/container_quantity.py,sha256=6fugws-qjktVpUMys-dTJqkMoPlewKVvGARTuE6_yfE,4109
|
|
2260
2266
|
benchling_api_client/v2/beta/models/container_quantity_units.py,sha256=5Q1sDug53LXlWC_A_xm95HQgnShwbVUd0OEl-cn-i2k,1262
|
|
@@ -2265,10 +2271,12 @@ benchling_api_client/v2/beta/models/custom_entity.py,sha256=fluk_zG_fpMb53ofmbIx
|
|
|
2265
2271
|
benchling_api_client/v2/beta/models/custom_entity_base_request.py,sha256=XD-tS2cTKfAHTEULxQpyGYJkmTLGsjoI-3g95mw8Qvs,9387
|
|
2266
2272
|
benchling_api_client/v2/beta/models/custom_entity_base_request_for_create.py,sha256=-59Uycz-fCWFBPCefjKHt2aTeUNnYzLx6BW0VnWf1y8,9447
|
|
2267
2273
|
benchling_api_client/v2/beta/models/custom_entity_bulk_upsert_request.py,sha256=PD4D3jbr33oRV9vTvpY6WJKZSGcA2UiODwPxIhz0c9c,12997
|
|
2268
|
-
benchling_api_client/v2/beta/models/custom_entity_creator.py,sha256=
|
|
2274
|
+
benchling_api_client/v2/beta/models/custom_entity_creator.py,sha256=0xAdzwVDcKnCNMOmpQ_Zc-hFNhrpk4rBo_kYlzOnzNg,1526
|
|
2269
2275
|
benchling_api_client/v2/beta/models/custom_entity_summary.py,sha256=Id1O9Air_dip4WcjWzfCf1Mktqskk0ov632A37CqQC8,4913
|
|
2270
2276
|
benchling_api_client/v2/beta/models/custom_entity_summary_entity_type.py,sha256=X_cwnwZG7yawHYJqe34Po1MIf7UVO6QlsOJRnuKAg9Q,722
|
|
2271
2277
|
benchling_api_client/v2/beta/models/custom_entity_upsert_request.py,sha256=GxaqMe4MAWQ-fxHzggSvrUN8ECXN8_HoXArTyutGTfA,11744
|
|
2278
|
+
benchling_api_client/v2/beta/models/custom_entity_with_entity_type.py,sha256=bp4nf9GnszdxqbxN5aUYv8HiBCahD0QPVy569GLDUJo,24770
|
|
2279
|
+
benchling_api_client/v2/beta/models/custom_entity_with_entity_type_entity_type.py,sha256=TOax4xgBNs7biTFiiDXnY3GB5Y2BvXmK0BZ6hJOP_TE,787
|
|
2272
2280
|
benchling_api_client/v2/beta/models/custom_field.py,sha256=23wjMdz3i_esB6e9d2CR2Ks0Cg5L6QqcUWjlMj4L9DE,2510
|
|
2273
2281
|
benchling_api_client/v2/beta/models/custom_fields.py,sha256=R6yO8Q3YJVx23zZbbQn7p39mDZa5-rEQfcBXubvL1KA,1876
|
|
2274
2282
|
benchling_api_client/v2/beta/models/custom_notation.py,sha256=9Rc3hJN2GDEnPs0onYKBX2FyzirE0MBRw9bDodkskGA,4762
|
|
@@ -2305,6 +2313,8 @@ benchling_api_client/v2/beta/models/delivery_method.py,sha256=tyeN0bNGEMQ_Jk69Ni
|
|
|
2305
2313
|
benchling_api_client/v2/beta/models/deprecated_container_volume_for_response.py,sha256=daRyS5OiI3mFygVC1J5s43h0vQ2L-Us1vbM3LXtAzos,4144
|
|
2306
2314
|
benchling_api_client/v2/beta/models/dna_annotation.py,sha256=QecfhQ1IwfawwZhVhwgzuLE5w41SU9-RQsQbP-osKnw,9457
|
|
2307
2315
|
benchling_api_client/v2/beta/models/dna_oligo.py,sha256=er0GSIYllQTe-fspyOCEYiDa4gAb33KRYNUZf8lTNOE,30979
|
|
2316
|
+
benchling_api_client/v2/beta/models/dna_oligo_with_entity_type.py,sha256=n9Upip6YHZzUm5OYHVKRlbF7SiGG63QN7AI5HrUPqPI,32838
|
|
2317
|
+
benchling_api_client/v2/beta/models/dna_oligo_with_entity_type_entity_type.py,sha256=rNz54KZG5LyJsqV4mR0ntktx-gp8Wn67vf3RREoe6pg,759
|
|
2308
2318
|
benchling_api_client/v2/beta/models/dna_sequence.py,sha256=4ayflBhhVlLofB2uxKAEVTrZxa8RgojjKdGEipTOEtg,34894
|
|
2309
2319
|
benchling_api_client/v2/beta/models/dna_sequence_base_request.py,sha256=yl8IuBJcZrsXssTxtAzUDlRyi0MpHGNOGuuq3rnzdwE,17734
|
|
2310
2320
|
benchling_api_client/v2/beta/models/dna_sequence_base_request_for_create.py,sha256=QH6gTqvQCe8LW0K9vSt6GsKFjLszINZSkGitVF7txQ0,16876
|
|
@@ -2313,13 +2323,15 @@ benchling_api_client/v2/beta/models/dna_sequence_part.py,sha256=dcMOisFScXnLird7
|
|
|
2313
2323
|
benchling_api_client/v2/beta/models/dna_sequence_summary.py,sha256=fEe91LeX85FMwwlo2BMtnnGYxCH5k3GgnkZZQUUuogc,4898
|
|
2314
2324
|
benchling_api_client/v2/beta/models/dna_sequence_summary_entity_type.py,sha256=HALqVCtD_UxpmbjyAGgyJKQRQhOpdR9mI6yOk1-H42E,715
|
|
2315
2325
|
benchling_api_client/v2/beta/models/dna_sequence_transcription.py,sha256=ozAC8gJEBjJUobZrbxSrrsL8-cBwUrYqbDmfMV5zjzw,5377
|
|
2326
|
+
benchling_api_client/v2/beta/models/dna_sequence_with_entity_type.py,sha256=rBJfIuLRCOKN8cFVvjRdijN8XdcroD675RnrAezRlBA,36680
|
|
2327
|
+
benchling_api_client/v2/beta/models/dna_sequence_with_entity_type_entity_type.py,sha256=g8WDD3W6sOmORd5mY9g1HCaCZH_QoQ3pehiI4D8xtaY,780
|
|
2316
2328
|
benchling_api_client/v2/beta/models/dropdown_dependency.py,sha256=TxuCLe1GsunPag2LDIdhozHEemq95yoRjOK6SflwhH4,6159
|
|
2317
2329
|
benchling_api_client/v2/beta/models/dropdown_dependency_types.py,sha256=DbNLSc6qdBi4OovIfytLDHp0DUefs2pUv2lzZSS0JUs,682
|
|
2318
2330
|
benchling_api_client/v2/beta/models/entities_bulk_upsert_request.py,sha256=oIbkW0Wpq7gJ6Y7sOTK6oURa3u8z4E5Lbg4rbEPx4Dk,11442
|
|
2319
|
-
benchling_api_client/v2/beta/models/entity.py,sha256=
|
|
2331
|
+
benchling_api_client/v2/beta/models/entity.py,sha256=gX2mcnsx5BA1SrU87jfC9ZnJY45PqK2FofbLC16P_eY,922
|
|
2320
2332
|
benchling_api_client/v2/beta/models/entity_bulk_upsert_base_request.py,sha256=5ToThhiiha3tbOxnLfZTtJD3Pi3B_oCHKj10Bi7Rqvo,8102
|
|
2321
2333
|
benchling_api_client/v2/beta/models/entity_labels.py,sha256=Yu3VAQMGby-jxY5-RHbAIn-7KuA71PP1jTHAJk3jyx8,4439
|
|
2322
|
-
benchling_api_client/v2/beta/models/entity_or_inaccessible_resource.py,sha256=
|
|
2334
|
+
benchling_api_client/v2/beta/models/entity_or_inaccessible_resource.py,sha256=7FLaLqmf3ZkuEOQAqFwN7AdB1ChE8OQFFh1suHSfJIU,1105
|
|
2323
2335
|
benchling_api_client/v2/beta/models/entity_schema_dependency.py,sha256=4WBDBV8kW-cyDO_cBJW2xCeOV1LWRIwECETQ5a_9D4Q,8151
|
|
2324
2336
|
benchling_api_client/v2/beta/models/entity_schema_dependency_type.py,sha256=P50bmP5MnJrAr7U_OJVwT7pRk2uSjzbFEHtRhB0V-uE,707
|
|
2325
2337
|
benchling_api_client/v2/beta/models/entity_upsert_base_request.py,sha256=WqdOpI6ZkSGfgRdkQqIrI-Zm6nKmvELZB7EcSlYym_Y,7015
|
|
@@ -2422,10 +2434,12 @@ benchling_api_client/v2/beta/models/member_collaborator_role.py,sha256=UJaduSZ4z
|
|
|
2422
2434
|
benchling_api_client/v2/beta/models/message_subscription_webhook_v2_beta.py,sha256=2dEYEv9Ojvs_jQR5gh-DQmARqCYjnq_6En5pwas_SVc,2901
|
|
2423
2435
|
benchling_api_client/v2/beta/models/message_type_webhook_v2_beta.py,sha256=U6GEQ7P9jxD2k3YT5dJ45_4RANaVAc2qFyFpuHm9xvg,3360
|
|
2424
2436
|
benchling_api_client/v2/beta/models/mixture.py,sha256=TLQvHXwXNxS4ykzwPSXw-dGqw2ODVnpYOx8sgVc19cs,27497
|
|
2425
|
-
benchling_api_client/v2/beta/models/mixture_creator.py,sha256=
|
|
2437
|
+
benchling_api_client/v2/beta/models/mixture_creator.py,sha256=K0SRM2kksxqvjgqHXAR9-qHdVSfzXHj14yjA12k0bDs,1493
|
|
2426
2438
|
benchling_api_client/v2/beta/models/mixture_measurement_units.py,sha256=z8JyzeH7nmH95vH1Ef_aJfuir1Va2KmafOe3Nrq5Y9M,784
|
|
2427
2439
|
benchling_api_client/v2/beta/models/mixture_prep_table_note_part.py,sha256=QaFGDy7Q7JA0Fn1Ui1CPULYM4RyCN2pD-FjWvfIK0WE,7957
|
|
2428
2440
|
benchling_api_client/v2/beta/models/mixture_prep_table_note_part_type.py,sha256=ieJKv8A2U6ycALRn0wm--Sg3a246a5F9za_LidFzaX4,727
|
|
2441
|
+
benchling_api_client/v2/beta/models/mixture_with_entity_type.py,sha256=BC7TEiQtAV8Fuz5hkBwZxNepz9CnN0Sxk56wbVebBPI,29246
|
|
2442
|
+
benchling_api_client/v2/beta/models/mixture_with_entity_type_entity_type.py,sha256=qrQB5HaBeRvT9v-jt6Zrb8EQaBRCSv_OMD84BJnaKSY,750
|
|
2429
2443
|
benchling_api_client/v2/beta/models/molecule.py,sha256=2ubJ0LJNiISrcEzlX68pAM5TYzZqAZsj3Hvjrc6Z8NM,24100
|
|
2430
2444
|
benchling_api_client/v2/beta/models/molecule_base_request.py,sha256=NjRlKEzHpcRNrPOKAmle_BUfLwFjVcYcyeAK6gBhaqE,10194
|
|
2431
2445
|
benchling_api_client/v2/beta/models/molecule_base_request_for_create.py,sha256=I__E1uXbGWv2CQ1pXVn3dcN0Cze5NhkmCxDL9IJOXa4,11157
|
|
@@ -2433,6 +2447,8 @@ benchling_api_client/v2/beta/models/molecule_bulk_upsert_request.py,sha256=DpFWk
|
|
|
2433
2447
|
benchling_api_client/v2/beta/models/molecule_structure.py,sha256=Awew80d5cM_w9KQgfGFQZfBo_rD3RDpW6xmHNwveZoo,3639
|
|
2434
2448
|
benchling_api_client/v2/beta/models/molecule_structure_structure_format.py,sha256=9_JDT5ISclWIPpWfpYn3WKsZuNDMgi1YYAUtrAPX4b0,777
|
|
2435
2449
|
benchling_api_client/v2/beta/models/molecule_upsert_request.py,sha256=Vmef2SNTZjC88JeeNNRsAcB_TrvKIH-0rafBubQp_08,13375
|
|
2450
|
+
benchling_api_client/v2/beta/models/molecule_with_entity_type.py,sha256=pjPaby9os55SGyXCBOuBTnfDIqCVLVzs17autwI0wuI,26738
|
|
2451
|
+
benchling_api_client/v2/beta/models/molecule_with_entity_type_entity_type.py,sha256=ZBxkWt3zRuU1WM0Vum_W5hziNlFB_2XUobqRC4oJ6ck,757
|
|
2436
2452
|
benchling_api_client/v2/beta/models/not_found_error.py,sha256=WSlTtDQMbxGsE0-wIT3Ud92hUHxfVtV8PAlUKNN_-CU,2959
|
|
2437
2453
|
benchling_api_client/v2/beta/models/not_found_error_error.py,sha256=YzRFnQGs_YrVz0Rx5nmlwW6MhoCmLcoP13Q3Q46dMxo,5902
|
|
2438
2454
|
benchling_api_client/v2/beta/models/not_found_error_error_type.py,sha256=qCMvNclOyzGHDjPYuCCQxWtEIZpgq27vUXZvcAS1T5s,703
|
|
@@ -2469,6 +2485,12 @@ benchling_api_client/v2/beta/models/review_snapshot.py,sha256=aYrGu8W_mk0bKSqHEc
|
|
|
2469
2485
|
benchling_api_client/v2/beta/models/review_snapshot_status.py,sha256=-6v_TXT1D94hAqNedCXzj-ck_gEgcWBaReO4Je8bYRU,739
|
|
2470
2486
|
benchling_api_client/v2/beta/models/rna_annotation.py,sha256=t9Be5jqfrNORv-uGg91fh-6ojwu_mu9gB2MpipqORe0,9457
|
|
2471
2487
|
benchling_api_client/v2/beta/models/rna_oligo.py,sha256=37snQmPfLc8Kx-t_l5c9QEslS7ZVfl180l6ysdQk-Ms,30335
|
|
2488
|
+
benchling_api_client/v2/beta/models/rna_oligo_with_entity_type.py,sha256=NCuRo_VXsMxA6ISdUlDcxjcYcCtl2oB6mxz_bxtRjbQ,32838
|
|
2489
|
+
benchling_api_client/v2/beta/models/rna_oligo_with_entity_type_entity_type.py,sha256=Av680jMNZ8QPkhGx_eyF8VlfQzYpcAfnlI8jrpQ97OY,759
|
|
2490
|
+
benchling_api_client/v2/beta/models/rna_sequence.py,sha256=QVhALirmlzxEU21DVtC_9hArkLGrs_0SqDbNlN4ypOI,36466
|
|
2491
|
+
benchling_api_client/v2/beta/models/rna_sequence_part.py,sha256=gWLlH-1Dc1U0uV-Q-jLICcGX23eAEY52VeDKrLWoDDg,5283
|
|
2492
|
+
benchling_api_client/v2/beta/models/rna_sequence_with_entity_type.py,sha256=WcSz_ZITSj--_w5HKsYUibLqvwVLnavi6lEnp0xDPIk,38252
|
|
2493
|
+
benchling_api_client/v2/beta/models/rna_sequence_with_entity_type_entity_type.py,sha256=wH2M3ZQuFDnU7c1aSf6ieNyBgGcd8E3ftSfR4whZxLQ,780
|
|
2472
2494
|
benchling_api_client/v2/beta/models/sample_restriction_status.py,sha256=IiFHE5qlCTqp7Bylkfdiv2aQU3SGJm0E12iwSUwvwwg,758
|
|
2473
2495
|
benchling_api_client/v2/beta/models/schema_base_dependency.py,sha256=ase2XF_oORfQafURneKiEIHMQtOl_og6XSIYMp7hyk8,5646
|
|
2474
2496
|
benchling_api_client/v2/beta/models/schema_dependency.py,sha256=Ku_nmoyGHOU6HMF27fAPRB5-Wp6TNneXLlNeBNeFy1w,6625
|
|
@@ -2516,7 +2538,7 @@ benchling_api_client/v2/beta/models/worksheet_review_changes.py,sha256=0MmkysLeA
|
|
|
2516
2538
|
benchling_api_client/v2/beta/models/worksheet_review_changes_by_id.py,sha256=UgTNMq3Q_ZcIumMhd8irgQAZjXCFFQeE33b_WiiYgDU,3344
|
|
2517
2539
|
benchling_api_client/v2/beta/models/worksheet_review_changes_review_record.py,sha256=vYjl1dskegWel0XUx2d0UEFhM5pQ_FKjGZNwKkYTHbQ,6202
|
|
2518
2540
|
benchling_api_client/v2/beta/models/worksheet_review_changes_review_record_status.py,sha256=9VKJkUCQCFCdkJnV8-JLRQObhO0cTJf2ZeZnBIEyPFA,1093
|
|
2519
|
-
benchling_api_client/v2/beta/openapi.yaml,sha256=
|
|
2541
|
+
benchling_api_client/v2/beta/openapi.yaml,sha256=7vLsaGqo9CSHfAz6SHvw8qpPuc4q59ZLWwOOPdJKJKg,249416
|
|
2520
2542
|
benchling_api_client/v2/beta/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
|
|
2521
2543
|
benchling_api_client/v2/client.py,sha256=-6Yzio8p22BaTJ_BEInEoUzmh4afxXlwceNFtn1vBLc,2241
|
|
2522
2544
|
benchling_api_client/v2/extensions.py,sha256=4TSjnmlUquvmBu8up1vPXutEInf-oXDSZ58ciyBW7_E,1996
|
|
@@ -3327,7 +3349,7 @@ benchling_api_client/v2/stable/models/conflict_error_error.py,sha256=F4xcn8d89_Y
|
|
|
3327
3349
|
benchling_api_client/v2/stable/models/conflict_error_error_conflicts_item.py,sha256=mgocO5NkTrRYat2sFSwsRUaM1cfQCzWHRf6sHpu5L-Y,1604
|
|
3328
3350
|
benchling_api_client/v2/stable/models/container.py,sha256=gz8-3uU2bjxa4WwcT5oPVO0PWXdYDHzxlqDThTcc3TY,33459
|
|
3329
3351
|
benchling_api_client/v2/stable/models/container_bulk_update_item.py,sha256=osBFRG24iEBx3do3krsVF1f98hBqB5826SY50BLr648,17648
|
|
3330
|
-
benchling_api_client/v2/stable/models/container_content.py,sha256=
|
|
3352
|
+
benchling_api_client/v2/stable/models/container_content.py,sha256=Ggt49g96plQzGNBbuBW8cQ7Uc1xqaw7hoTlS-OvJCGo,19934
|
|
3331
3353
|
benchling_api_client/v2/stable/models/container_content_update.py,sha256=Hwvze4CVwVrOzLDnEY5tors0r5qa4ulJfPrLQq4u_A0,1858
|
|
3332
3354
|
benchling_api_client/v2/stable/models/container_contents_list.py,sha256=sgRFKQi5mPrBfftMosd9U98BFvr6Q3nVyCDpZQ0fuU0,3284
|
|
3333
3355
|
benchling_api_client/v2/stable/models/container_create.py,sha256=YhX4GMuWpVHd7ygUKm4aKP-5MT2cR_33HCkNNzcwR10,11736
|
|
@@ -3500,11 +3522,11 @@ benchling_api_client/v2/stable/models/dropdown_update.py,sha256=rvCi2_EpdgNw0Tc2
|
|
|
3500
3522
|
benchling_api_client/v2/stable/models/dropdowns_registry_list.py,sha256=ZU-MNUaaBz15ZMe_iF71ozJ5AWxoEXCAkV7Hqj1Ebck,3317
|
|
3501
3523
|
benchling_api_client/v2/stable/models/empty_object.py,sha256=ETzW1OImD9aKzmTEGQa-8tgY9EFVwBpTx79lY7IpJbo,1475
|
|
3502
3524
|
benchling_api_client/v2/stable/models/entities_bulk_upsert_request.py,sha256=oIbkW0Wpq7gJ6Y7sOTK6oURa3u8z4E5Lbg4rbEPx4Dk,11442
|
|
3503
|
-
benchling_api_client/v2/stable/models/entity.py,sha256=
|
|
3525
|
+
benchling_api_client/v2/stable/models/entity.py,sha256=gX2mcnsx5BA1SrU87jfC9ZnJY45PqK2FofbLC16P_eY,922
|
|
3504
3526
|
benchling_api_client/v2/stable/models/entity_archive_reason.py,sha256=MXDLUr2DZs1pFL0ew31ElG8t45yjvGmyMgVm6cDZ1fo,848
|
|
3505
3527
|
benchling_api_client/v2/stable/models/entity_bulk_upsert_base_request.py,sha256=5ToThhiiha3tbOxnLfZTtJD3Pi3B_oCHKj10Bi7Rqvo,8102
|
|
3506
3528
|
benchling_api_client/v2/stable/models/entity_labels.py,sha256=Yu3VAQMGby-jxY5-RHbAIn-7KuA71PP1jTHAJk3jyx8,4439
|
|
3507
|
-
benchling_api_client/v2/stable/models/entity_or_inaccessible_resource.py,sha256=
|
|
3529
|
+
benchling_api_client/v2/stable/models/entity_or_inaccessible_resource.py,sha256=7FLaLqmf3ZkuEOQAqFwN7AdB1ChE8OQFFh1suHSfJIU,1105
|
|
3508
3530
|
benchling_api_client/v2/stable/models/entity_registered_event.py,sha256=H1whZhSjs0vr4WIBNrx0Xeh9XU-cNntNxVgo7cP5j1k,10473
|
|
3509
3531
|
benchling_api_client/v2/stable/models/entity_registered_event_event_type.py,sha256=8-tqrUsVAm8DJayyx9hlwCbweCIyHywT_v63H7IWAtA,740
|
|
3510
3532
|
benchling_api_client/v2/stable/models/entity_schema.py,sha256=EBROKs7hA4E3Ce2s1Q4cqJB1NJZp-bE5moqktGfo1lg,24666
|
|
@@ -3781,6 +3803,8 @@ benchling_api_client/v2/stable/models/molecule_structure.py,sha256=Awew80d5cM_w9
|
|
|
3781
3803
|
benchling_api_client/v2/stable/models/molecule_structure_structure_format.py,sha256=9_JDT5ISclWIPpWfpYn3WKsZuNDMgi1YYAUtrAPX4b0,777
|
|
3782
3804
|
benchling_api_client/v2/stable/models/molecule_update.py,sha256=DEK8q_zFrDq8bCsvZMFurjAm8WuOFYqy_d_nY7L_zsY,11337
|
|
3783
3805
|
benchling_api_client/v2/stable/models/molecule_upsert_request.py,sha256=Vmef2SNTZjC88JeeNNRsAcB_TrvKIH-0rafBubQp_08,13375
|
|
3806
|
+
benchling_api_client/v2/stable/models/molecule_with_entity_type.py,sha256=pjPaby9os55SGyXCBOuBTnfDIqCVLVzs17autwI0wuI,26738
|
|
3807
|
+
benchling_api_client/v2/stable/models/molecule_with_entity_type_entity_type.py,sha256=ZBxkWt3zRuU1WM0Vum_W5hziNlFB_2XUobqRC4oJ6ck,757
|
|
3784
3808
|
benchling_api_client/v2/stable/models/molecules_archival_change.py,sha256=h9UqTMbMvkfAmy4RAHk9utQAl-E1L1g3oPYMw4nL3hU,3281
|
|
3785
3809
|
benchling_api_client/v2/stable/models/molecules_archive.py,sha256=8byoCHEXKSLQsWMhUvRZjVVBk0TQxhcDklTsaMNkisA,2948
|
|
3786
3810
|
benchling_api_client/v2/stable/models/molecules_archive_reason.py,sha256=xpnInetOcj_I1bOfpHtm2d0unLje5-t_Qp3Ek31xGSc,863
|
|
@@ -3883,7 +3907,7 @@ benchling_api_client/v2/stable/models/projects_paginated_list.py,sha256=C-9i40Bx
|
|
|
3883
3907
|
benchling_api_client/v2/stable/models/projects_unarchive.py,sha256=R61AsX4TE62BSY6PacV3UNw2Hx-s7giJXhxmywCqRg0,1754
|
|
3884
3908
|
benchling_api_client/v2/stable/models/reduced_pattern.py,sha256=4JPUe_LEPnJuWooSltEz8M_iE0NvvfxwDU02uM4_vZ4,3211
|
|
3885
3909
|
benchling_api_client/v2/stable/models/register_entities.py,sha256=dncNlk4wLj-trHWgLnz5jdz5WCJrdLqXYG_U5fHBALA,3652
|
|
3886
|
-
benchling_api_client/v2/stable/models/registered_entities_list.py,sha256=
|
|
3910
|
+
benchling_api_client/v2/stable/models/registered_entities_list.py,sha256=HMkMwmY0Bvjxh_nce2xOltdn9b0p4MnhaYJ1lPy8Jxk,13219
|
|
3887
3911
|
benchling_api_client/v2/stable/models/registration_origin.py,sha256=pIqNe11YL5MvFQ4ZDuWYP8eSn9WCkF4WKjkl3dlfJaw,4358
|
|
3888
3912
|
benchling_api_client/v2/stable/models/registration_table_note_part.py,sha256=fuE39UvsgvVXH4OowYKLLj6KTHWd-pRsCP_jnc1vA4M,7943
|
|
3889
3913
|
benchling_api_client/v2/stable/models/registration_table_note_part_type.py,sha256=iiP-mPtmBP99GZpij-3wyU3T63djrLBunzExMKc8cAU,732
|
|
@@ -3902,7 +3926,7 @@ benchling_api_client/v2/stable/models/request_requestor.py,sha256=j3x0c_nDk14Nq_
|
|
|
3902
3926
|
benchling_api_client/v2/stable/models/request_response.py,sha256=_a0Sei1iJCgptSBL5ztcKq5n-b_uSrzZoBeyUioKBKc,4805
|
|
3903
3927
|
benchling_api_client/v2/stable/models/request_response_samples_item.py,sha256=CDbjrGNiTvKakFmnFbVVdSimLFcM6AB1ywPM16TDjgo,6221
|
|
3904
3928
|
benchling_api_client/v2/stable/models/request_response_samples_item_batch.py,sha256=7fK2EjBIk1V5NXbQTWkX3G8yZjoNBMolbNIGZvb_W3k,20647
|
|
3905
|
-
benchling_api_client/v2/stable/models/request_response_samples_item_entity.py,sha256=
|
|
3929
|
+
benchling_api_client/v2/stable/models/request_response_samples_item_entity.py,sha256=OUZdJkJh0qqWkm6PwxWcNPlhLlrQ1F9JKZ5qU_tPBUM,56134
|
|
3906
3930
|
benchling_api_client/v2/stable/models/request_response_samples_item_status.py,sha256=XOoJTwLn071e7SITmzQ7Xi7lWKYxrpzWwEHWqQnelAk,787
|
|
3907
3931
|
benchling_api_client/v2/stable/models/request_sample_group.py,sha256=nWJd8FZIMIoFa5-ah1XrX7iag18PX2k1TrkiQkwAspg,3997
|
|
3908
3932
|
benchling_api_client/v2/stable/models/request_sample_group_create.py,sha256=IMKGm_t1l0WvFV6g5CjuGPGB7JE6Oht7VitZ-ZQcraU,2893
|
|
@@ -3966,6 +3990,8 @@ benchling_api_client/v2/stable/models/rna_sequence_create.py,sha256=XpiUcP3k4vC-
|
|
|
3966
3990
|
benchling_api_client/v2/stable/models/rna_sequence_part.py,sha256=gWLlH-1Dc1U0uV-Q-jLICcGX23eAEY52VeDKrLWoDDg,5283
|
|
3967
3991
|
benchling_api_client/v2/stable/models/rna_sequence_request_registry_fields.py,sha256=GQQ5kKyQIb3OrAthHqZ85M8KejTvkrRmCmJcfxwI6H8,2992
|
|
3968
3992
|
benchling_api_client/v2/stable/models/rna_sequence_update.py,sha256=38UQYsLw-eaagHoxqwujBgXNJXYDD01lcA28g0pHhhU,21375
|
|
3993
|
+
benchling_api_client/v2/stable/models/rna_sequence_with_entity_type.py,sha256=WcSz_ZITSj--_w5HKsYUibLqvwVLnavi6lEnp0xDPIk,38252
|
|
3994
|
+
benchling_api_client/v2/stable/models/rna_sequence_with_entity_type_entity_type.py,sha256=wH2M3ZQuFDnU7c1aSf6ieNyBgGcd8E3ftSfR4whZxLQ,780
|
|
3969
3995
|
benchling_api_client/v2/stable/models/rna_sequences_archival_change.py,sha256=l5Q7D_4oAUdGCihkEZ9w1UZRaNNOmuvjNQ2jwG4piG0,3149
|
|
3970
3996
|
benchling_api_client/v2/stable/models/rna_sequences_archive.py,sha256=20_Go9GI-CY7x4ZTXwGYp5YIJkgpEt4URULef2zLaQc,3035
|
|
3971
3997
|
benchling_api_client/v2/stable/models/rna_sequences_bulk_create_request.py,sha256=2H08bdr5Jujh8SI-I5Gog7J99cn6j-2g98wuHe4kkkw,2668
|
|
@@ -4199,7 +4225,7 @@ benchling_api_client/v2/stable/models/worksheet_review_changes_review_record.py,
|
|
|
4199
4225
|
benchling_api_client/v2/stable/models/worksheet_review_changes_review_record_status.py,sha256=9VKJkUCQCFCdkJnV8-JLRQObhO0cTJf2ZeZnBIEyPFA,1093
|
|
4200
4226
|
benchling_api_client/v2/stable/models/worksheet_updated_review_snapshot_beta_event.py,sha256=omW47Bd5ghtsrw7DNYNsnMX_k7xw7JyJOJzw4FWn0oA,12046
|
|
4201
4227
|
benchling_api_client/v2/stable/models/worksheet_updated_review_snapshot_beta_event_event_type.py,sha256=sjbdp-hm8WO8sTocFgmYd_9zt6PpJdZz5tgws0W2cEg,898
|
|
4202
|
-
benchling_api_client/v2/stable/openapi.yaml,sha256=
|
|
4228
|
+
benchling_api_client/v2/stable/openapi.yaml,sha256=iU_amUJ95MTGf_mMmiGEryZyMr0IH6xdE2WPoW3drYM,1138840
|
|
4203
4229
|
benchling_api_client/v2/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
|
|
4204
4230
|
benchling_api_client/v2/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
|
|
4205
4231
|
benchling_api_client/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -4513,7 +4539,7 @@ benchling_api_client/webhooks/v0/stable/models/workflow_task_updated_status_webh
|
|
|
4513
4539
|
benchling_api_client/webhooks/v0/stable/openapi.yaml,sha256=Gvlve51cLq7Ws8ll_8Nx-6SGXuYEb8TWCoWzfg_YGnA,39400
|
|
4514
4540
|
benchling_api_client/webhooks/v0/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
|
|
4515
4541
|
benchling_api_client/webhooks/v0/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
|
|
4516
|
-
benchling_api_client-2.0.
|
|
4517
|
-
benchling_api_client-2.0.
|
|
4518
|
-
benchling_api_client-2.0.
|
|
4519
|
-
benchling_api_client-2.0.
|
|
4542
|
+
benchling_api_client-2.0.416.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
4543
|
+
benchling_api_client-2.0.416.dist-info/METADATA,sha256=0E98IePBa4R364AnysXVmBelLZIVfQXMcyCQ95-awGo,1253
|
|
4544
|
+
benchling_api_client-2.0.416.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
4545
|
+
benchling_api_client-2.0.416.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|