benchling-sdk 1.17.0a0__py3-none-any.whl → 1.18.0__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_sdk/benchling.py +50 -0
- benchling_sdk/errors.py +2 -1
- benchling_sdk/models/__init__.py +159 -3
- benchling_sdk/models/webhooks/v0/__init__.py +27 -37
- benchling_sdk/services/v2/alpha/v2_alpha_assembly_service.py +62 -0
- benchling_sdk/services/v2/beta/v2_beta_analysis_service.py +46 -0
- benchling_sdk/services/v2/beta/v2_beta_app_definition_service.py +45 -0
- benchling_sdk/services/v2/beta/v2_beta_app_service.py +1 -1
- benchling_sdk/services/v2/beta/v2_beta_audit_service.py +41 -0
- benchling_sdk/services/v2/beta/v2_beta_entry_service.py +13 -8
- benchling_sdk/services/v2/stable/aa_sequence_service.py +63 -6
- benchling_sdk/services/v2/stable/codon_usage_table_service.py +73 -0
- benchling_sdk/services/v2/stable/dna_sequence_service.py +12 -0
- benchling_sdk/services/v2/stable/enzyme_service.py +72 -0
- benchling_sdk/services/v2/stable/instrument_query_service.py +28 -0
- benchling_sdk/services/v2/stable/monomer_service.py +144 -0
- benchling_sdk/services/v2/stable/organization_service.py +104 -2
- benchling_sdk/services/v2/stable/team_service.py +120 -2
- benchling_sdk/services/v2/v2_alpha_service.py +15 -0
- benchling_sdk/services/v2/v2_beta_service.py +43 -1
- benchling_sdk/services/v2/v2_stable_service.py +58 -0
- {benchling_sdk-1.17.0a0.dist-info → benchling_sdk-1.18.0.dist-info}/METADATA +3 -3
- {benchling_sdk-1.17.0a0.dist-info → benchling_sdk-1.18.0.dist-info}/RECORD +25 -19
- benchling_sdk/apps/config/helpers.py +0 -157
- benchling_sdk/apps/config/mock_config.py +0 -635
- {benchling_sdk-1.17.0a0.dist-info → benchling_sdk-1.18.0.dist-info}/LICENSE +0 -0
- {benchling_sdk-1.17.0a0.dist-info → benchling_sdk-1.18.0.dist-info}/WHEEL +0 -0
benchling_sdk/benchling.py
CHANGED
@@ -20,6 +20,7 @@ if TYPE_CHECKING:
|
|
20
20
|
from benchling_sdk.services.v2.stable.assay_run_service import AssayRunService
|
21
21
|
from benchling_sdk.services.v2.stable.blob_service import BlobService
|
22
22
|
from benchling_sdk.services.v2.stable.box_service import BoxService
|
23
|
+
from benchling_sdk.services.v2.stable.codon_usage_table_service import CodonUsageTableService
|
23
24
|
from benchling_sdk.services.v2.stable.container_service import ContainerService
|
24
25
|
from benchling_sdk.services.v2.stable.custom_entity_service import CustomEntityService
|
25
26
|
from benchling_sdk.services.v2.stable.custom_notation_service import CustomNotationService
|
@@ -29,16 +30,19 @@ if TYPE_CHECKING:
|
|
29
30
|
from benchling_sdk.services.v2.stable.dropdown_service import DropdownService
|
30
31
|
from benchling_sdk.services.v2.stable.entity_service import EntityService
|
31
32
|
from benchling_sdk.services.v2.stable.entry_service import EntryService
|
33
|
+
from benchling_sdk.services.v2.stable.enzyme_service import EnzymeService
|
32
34
|
from benchling_sdk.services.v2.stable.event_service import EventService
|
33
35
|
from benchling_sdk.services.v2.stable.export_service import ExportService
|
34
36
|
from benchling_sdk.services.v2.stable.feature_library_service import FeatureLibraryService
|
35
37
|
from benchling_sdk.services.v2.stable.folder_service import FolderService
|
38
|
+
from benchling_sdk.services.v2.stable.instrument_query_service import InstrumentQueryService
|
36
39
|
from benchling_sdk.services.v2.stable.inventory_service import InventoryService
|
37
40
|
from benchling_sdk.services.v2.stable.lab_automation_service import LabAutomationService
|
38
41
|
from benchling_sdk.services.v2.stable.label_template_service import LabelTemplateService
|
39
42
|
from benchling_sdk.services.v2.stable.location_service import LocationService
|
40
43
|
from benchling_sdk.services.v2.stable.mixture_service import MixtureService
|
41
44
|
from benchling_sdk.services.v2.stable.molecule_service import MoleculeService
|
45
|
+
from benchling_sdk.services.v2.stable.monomer_service import MonomerService
|
42
46
|
from benchling_sdk.services.v2.stable.nucleotide_alignments_service import NucleotideAlignmentsService
|
43
47
|
from benchling_sdk.services.v2.stable.oligo_service import OligoService
|
44
48
|
from benchling_sdk.services.v2.stable.organization_service import OrganizationService
|
@@ -265,6 +269,18 @@ class Benchling(object):
|
|
265
269
|
"""
|
266
270
|
return self.v2.stable.boxes
|
267
271
|
|
272
|
+
@property
|
273
|
+
def codon_usage_tables(self) -> CodonUsageTableService:
|
274
|
+
"""
|
275
|
+
Codon Usage Tables.
|
276
|
+
|
277
|
+
Benchling curates codon usage data for a variety of organisms to support operations such as Codon
|
278
|
+
Optimization and Back Translation.
|
279
|
+
|
280
|
+
See https://benchling.com/api/reference#/Codon%20Usage%20Tables
|
281
|
+
"""
|
282
|
+
return self.v2.stable.codon_usage_tables
|
283
|
+
|
268
284
|
@property
|
269
285
|
def containers(self) -> ContainerService:
|
270
286
|
"""
|
@@ -389,6 +405,17 @@ class Benchling(object):
|
|
389
405
|
"""
|
390
406
|
return self.v2.stable.entries
|
391
407
|
|
408
|
+
@property
|
409
|
+
def enzymes(self) -> EnzymeService:
|
410
|
+
"""
|
411
|
+
Enzymes.
|
412
|
+
|
413
|
+
Restriction enzymes are curated by Benchling for operations such as Digests and Codon Optimization.
|
414
|
+
|
415
|
+
See https://benchling.com/api/reference#/Enzymes
|
416
|
+
"""
|
417
|
+
return self.v2.stable.enzymes
|
418
|
+
|
392
419
|
@property
|
393
420
|
def events(self) -> EventService:
|
394
421
|
"""
|
@@ -435,6 +462,17 @@ class Benchling(object):
|
|
435
462
|
"""
|
436
463
|
return self.v2.stable.folders
|
437
464
|
|
465
|
+
@property
|
466
|
+
def instrument_queries(self) -> InstrumentQueryService:
|
467
|
+
"""
|
468
|
+
Instrument Queries.
|
469
|
+
|
470
|
+
Instrument Queries are used to query the instrument service.
|
471
|
+
|
472
|
+
See https://benchling.com/api/reference#/Instrument%20Queries
|
473
|
+
"""
|
474
|
+
return self.v2.stable.instrument_queries
|
475
|
+
|
438
476
|
@property
|
439
477
|
def inventory(self) -> InventoryService:
|
440
478
|
"""
|
@@ -492,6 +530,18 @@ class Benchling(object):
|
|
492
530
|
"""
|
493
531
|
return self.v2.stable.mixtures
|
494
532
|
|
533
|
+
@property
|
534
|
+
def monomers(self) -> MonomerService:
|
535
|
+
"""
|
536
|
+
Monomers.
|
537
|
+
|
538
|
+
Monomers are chemical building blocks with specified structures used to compose modified
|
539
|
+
nucleotides. Note that monomer write endpoints require tenant admin permissions.
|
540
|
+
|
541
|
+
See https://benchling.com/api/reference#/Monomers
|
542
|
+
"""
|
543
|
+
return self.v2.stable.monomers
|
544
|
+
|
495
545
|
@property
|
496
546
|
def molecules(self) -> MoleculeService:
|
497
547
|
"""
|
benchling_sdk/errors.py
CHANGED
@@ -204,7 +204,7 @@ class DataFrameInProgressError(Exception):
|
|
204
204
|
|
205
205
|
def raise_for_status(
|
206
206
|
response: Response, error_matchers: Optional[Iterable[ResponseErrorMatcher[E]]] = None
|
207
|
-
) ->
|
207
|
+
) -> Response:
|
208
208
|
"""
|
209
209
|
Evaluate a Response for a successful HTTP status code or raise a BenchlingError.
|
210
210
|
|
@@ -224,6 +224,7 @@ def raise_for_status(
|
|
224
224
|
check_matcher.raise_on_match(response)
|
225
225
|
# Raise a generalized error
|
226
226
|
raise BenchlingError.from_response(response)
|
227
|
+
return response
|
227
228
|
|
228
229
|
|
229
230
|
def _parse_error_body(content: bytes) -> Optional[Dict[str, str]]:
|
benchling_sdk/models/__init__.py
CHANGED
@@ -138,7 +138,12 @@ __all__ = [
|
|
138
138
|
"AssayResultsBulkCreateInTableRequest",
|
139
139
|
"AssayResultsBulkCreateRequest",
|
140
140
|
"AssayResultsBulkGet",
|
141
|
+
"AssayResultsCreateErrorResponse",
|
142
|
+
"AssayResultsCreateErrorResponseAssayResultsItem",
|
143
|
+
"AssayResultsCreateErrorResponseErrorsItem",
|
144
|
+
"AssayResultsCreateErrorResponseErrorsItemFields",
|
141
145
|
"AssayResultsCreateResponse",
|
146
|
+
"AssayResultsCreateResponseErrors",
|
142
147
|
"AssayResultsPaginatedList",
|
143
148
|
"AssayRun",
|
144
149
|
"AssayRunCreate",
|
@@ -158,8 +163,13 @@ __all__ = [
|
|
158
163
|
"AssayRunsArchivalChange",
|
159
164
|
"AssayRunsArchive",
|
160
165
|
"AssayRunsArchiveReason",
|
166
|
+
"AssayRunsBulkCreateErrorResponse",
|
167
|
+
"AssayRunsBulkCreateErrorResponseAssayRunsItem",
|
168
|
+
"AssayRunsBulkCreateErrorResponseErrorsItem",
|
169
|
+
"AssayRunsBulkCreateErrorResponseErrorsItemFields",
|
161
170
|
"AssayRunsBulkCreateRequest",
|
162
171
|
"AssayRunsBulkCreateResponse",
|
172
|
+
"AssayRunsBulkCreateResponseErrors",
|
163
173
|
"AssayRunsBulkGet",
|
164
174
|
"AssayRunsPaginatedList",
|
165
175
|
"AssayRunsUnarchive",
|
@@ -517,6 +527,8 @@ __all__ = [
|
|
517
527
|
"EventBaseSchema",
|
518
528
|
"EventsPaginatedList",
|
519
529
|
"ExecuteSampleGroups",
|
530
|
+
"ExperimentalWellRole",
|
531
|
+
"ExperimentalWellRolePrimaryRole",
|
520
532
|
"ExportAuditLogAsyncTask",
|
521
533
|
"ExportAuditLogAsyncTaskResponse",
|
522
534
|
"ExportItemRequest",
|
@@ -582,6 +594,9 @@ __all__ = [
|
|
582
594
|
"IngredientMeasurementUnits",
|
583
595
|
"IngredientWriteParams",
|
584
596
|
"InitialTable",
|
597
|
+
"InstrumentQuery",
|
598
|
+
"InstrumentQueryParams",
|
599
|
+
"InstrumentQueryValues",
|
585
600
|
"IntegerAppConfigItem",
|
586
601
|
"IntegerAppConfigItemType",
|
587
602
|
"IntegerFieldDefinition",
|
@@ -675,6 +690,13 @@ __all__ = [
|
|
675
690
|
"MatchBasesRequestArchiveReason",
|
676
691
|
"MatchBasesRequestSort",
|
677
692
|
"Measurement",
|
693
|
+
"Membership",
|
694
|
+
"MembershipCreate",
|
695
|
+
"MembershipCreateRole",
|
696
|
+
"MembershipRole",
|
697
|
+
"MembershipUpdate",
|
698
|
+
"MembershipUpdateRole",
|
699
|
+
"MembershipsPaginatedList",
|
678
700
|
"Mixture",
|
679
701
|
"MixtureBulkUpdate",
|
680
702
|
"MixtureCreate",
|
@@ -954,7 +976,9 @@ __all__ = [
|
|
954
976
|
"TableUiBlockType",
|
955
977
|
"TableUiBlockUpdate",
|
956
978
|
"Team",
|
979
|
+
"TeamCreate",
|
957
980
|
"TeamSummary",
|
981
|
+
"TeamUpdate",
|
958
982
|
"TeamsPaginatedList",
|
959
983
|
"TextAppConfigItem",
|
960
984
|
"TextAppConfigItemType",
|
@@ -996,6 +1020,7 @@ __all__ = [
|
|
996
1020
|
"WellOrInaccessibleResource",
|
997
1021
|
"WellResourceType",
|
998
1022
|
"WorkflowEndNodeDetails",
|
1023
|
+
"WorkflowEndNodeDetailsNodeType",
|
999
1024
|
"WorkflowFlowchart",
|
1000
1025
|
"WorkflowFlowchartConfigSummary",
|
1001
1026
|
"WorkflowFlowchartConfigVersion",
|
@@ -1013,6 +1038,7 @@ __all__ = [
|
|
1013
1038
|
"WorkflowOutputCreatedEvent",
|
1014
1039
|
"WorkflowOutputCreatedEventEventType",
|
1015
1040
|
"WorkflowOutputNodeDetails",
|
1041
|
+
"WorkflowOutputNodeDetailsNodeType",
|
1016
1042
|
"WorkflowOutputSchema",
|
1017
1043
|
"WorkflowOutputSummary",
|
1018
1044
|
"WorkflowOutputUpdate",
|
@@ -1027,8 +1053,10 @@ __all__ = [
|
|
1027
1053
|
"WorkflowOutputsUnarchive",
|
1028
1054
|
"WorkflowPatch",
|
1029
1055
|
"WorkflowRootNodeDetails",
|
1056
|
+
"WorkflowRootNodeDetailsNodeType",
|
1030
1057
|
"WorkflowRouterFunction",
|
1031
1058
|
"WorkflowRouterNodeDetails",
|
1059
|
+
"WorkflowRouterNodeDetailsNodeType",
|
1032
1060
|
"WorkflowSample",
|
1033
1061
|
"WorkflowSampleList",
|
1034
1062
|
"WorkflowStage",
|
@@ -1066,6 +1094,7 @@ __all__ = [
|
|
1066
1094
|
"WorkflowTaskGroupsPaginatedList",
|
1067
1095
|
"WorkflowTaskGroupsUnarchive",
|
1068
1096
|
"WorkflowTaskNodeDetails",
|
1097
|
+
"WorkflowTaskNodeDetailsNodeType",
|
1069
1098
|
"WorkflowTaskSchema",
|
1070
1099
|
"WorkflowTaskSchemaBase",
|
1071
1100
|
"WorkflowTaskSchemaExecutionType",
|
@@ -1225,7 +1254,12 @@ if TYPE_CHECKING:
|
|
1225
1254
|
import benchling_api_client.v2.stable.models.assay_results_bulk_create_in_table_request
|
1226
1255
|
import benchling_api_client.v2.stable.models.assay_results_bulk_create_request
|
1227
1256
|
import benchling_api_client.v2.stable.models.assay_results_bulk_get
|
1257
|
+
import benchling_api_client.v2.stable.models.assay_results_create_error_response
|
1258
|
+
import benchling_api_client.v2.stable.models.assay_results_create_error_response_assay_results_item
|
1259
|
+
import benchling_api_client.v2.stable.models.assay_results_create_error_response_errors_item
|
1260
|
+
import benchling_api_client.v2.stable.models.assay_results_create_error_response_errors_item_fields
|
1228
1261
|
import benchling_api_client.v2.stable.models.assay_results_create_response
|
1262
|
+
import benchling_api_client.v2.stable.models.assay_results_create_response_errors
|
1229
1263
|
import benchling_api_client.v2.stable.models.assay_results_paginated_list
|
1230
1264
|
import benchling_api_client.v2.stable.models.assay_run
|
1231
1265
|
import benchling_api_client.v2.stable.models.assay_run_create
|
@@ -1245,8 +1279,13 @@ if TYPE_CHECKING:
|
|
1245
1279
|
import benchling_api_client.v2.stable.models.assay_runs_archival_change
|
1246
1280
|
import benchling_api_client.v2.stable.models.assay_runs_archive
|
1247
1281
|
import benchling_api_client.v2.stable.models.assay_runs_archive_reason
|
1282
|
+
import benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response
|
1283
|
+
import benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_assay_runs_item
|
1284
|
+
import benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_errors_item
|
1285
|
+
import benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_errors_item_fields
|
1248
1286
|
import benchling_api_client.v2.stable.models.assay_runs_bulk_create_request
|
1249
1287
|
import benchling_api_client.v2.stable.models.assay_runs_bulk_create_response
|
1288
|
+
import benchling_api_client.v2.stable.models.assay_runs_bulk_create_response_errors
|
1250
1289
|
import benchling_api_client.v2.stable.models.assay_runs_bulk_get
|
1251
1290
|
import benchling_api_client.v2.stable.models.assay_runs_paginated_list
|
1252
1291
|
import benchling_api_client.v2.stable.models.assay_runs_unarchive
|
@@ -1604,6 +1643,8 @@ if TYPE_CHECKING:
|
|
1604
1643
|
import benchling_api_client.v2.stable.models.event_base_schema
|
1605
1644
|
import benchling_api_client.v2.stable.models.events_paginated_list
|
1606
1645
|
import benchling_api_client.v2.stable.models.execute_sample_groups
|
1646
|
+
import benchling_api_client.v2.stable.models.experimental_well_role
|
1647
|
+
import benchling_api_client.v2.stable.models.experimental_well_role_primary_role
|
1607
1648
|
import benchling_api_client.v2.stable.models.export_audit_log_async_task
|
1608
1649
|
import benchling_api_client.v2.stable.models.export_audit_log_async_task_response
|
1609
1650
|
import benchling_api_client.v2.stable.models.export_item_request
|
@@ -1669,6 +1710,9 @@ if TYPE_CHECKING:
|
|
1669
1710
|
import benchling_api_client.v2.stable.models.ingredient_measurement_units
|
1670
1711
|
import benchling_api_client.v2.stable.models.ingredient_write_params
|
1671
1712
|
import benchling_api_client.v2.stable.models.initial_table
|
1713
|
+
import benchling_api_client.v2.stable.models.instrument_query
|
1714
|
+
import benchling_api_client.v2.stable.models.instrument_query_params
|
1715
|
+
import benchling_api_client.v2.stable.models.instrument_query_values
|
1672
1716
|
import benchling_api_client.v2.stable.models.integer_app_config_item
|
1673
1717
|
import benchling_api_client.v2.stable.models.integer_app_config_item_type
|
1674
1718
|
import benchling_api_client.v2.stable.models.integer_field_definition
|
@@ -1762,6 +1806,13 @@ if TYPE_CHECKING:
|
|
1762
1806
|
import benchling_api_client.v2.stable.models.match_bases_request_archive_reason
|
1763
1807
|
import benchling_api_client.v2.stable.models.match_bases_request_sort
|
1764
1808
|
import benchling_api_client.v2.stable.models.measurement
|
1809
|
+
import benchling_api_client.v2.stable.models.membership
|
1810
|
+
import benchling_api_client.v2.stable.models.membership_create
|
1811
|
+
import benchling_api_client.v2.stable.models.membership_create_role
|
1812
|
+
import benchling_api_client.v2.stable.models.membership_role
|
1813
|
+
import benchling_api_client.v2.stable.models.membership_update
|
1814
|
+
import benchling_api_client.v2.stable.models.membership_update_role
|
1815
|
+
import benchling_api_client.v2.stable.models.memberships_paginated_list
|
1765
1816
|
import benchling_api_client.v2.stable.models.mixture
|
1766
1817
|
import benchling_api_client.v2.stable.models.mixture_bulk_update
|
1767
1818
|
import benchling_api_client.v2.stable.models.mixture_create
|
@@ -2041,7 +2092,9 @@ if TYPE_CHECKING:
|
|
2041
2092
|
import benchling_api_client.v2.stable.models.table_ui_block_type
|
2042
2093
|
import benchling_api_client.v2.stable.models.table_ui_block_update
|
2043
2094
|
import benchling_api_client.v2.stable.models.team
|
2095
|
+
import benchling_api_client.v2.stable.models.team_create
|
2044
2096
|
import benchling_api_client.v2.stable.models.team_summary
|
2097
|
+
import benchling_api_client.v2.stable.models.team_update
|
2045
2098
|
import benchling_api_client.v2.stable.models.teams_paginated_list
|
2046
2099
|
import benchling_api_client.v2.stable.models.text_app_config_item
|
2047
2100
|
import benchling_api_client.v2.stable.models.text_app_config_item_type
|
@@ -2083,6 +2136,7 @@ if TYPE_CHECKING:
|
|
2083
2136
|
import benchling_api_client.v2.stable.models.well_or_inaccessible_resource
|
2084
2137
|
import benchling_api_client.v2.stable.models.well_resource_type
|
2085
2138
|
import benchling_api_client.v2.stable.models.workflow_end_node_details
|
2139
|
+
import benchling_api_client.v2.stable.models.workflow_end_node_details_node_type
|
2086
2140
|
import benchling_api_client.v2.stable.models.workflow_flowchart
|
2087
2141
|
import benchling_api_client.v2.stable.models.workflow_flowchart_config_summary
|
2088
2142
|
import benchling_api_client.v2.stable.models.workflow_flowchart_config_version
|
@@ -2100,6 +2154,7 @@ if TYPE_CHECKING:
|
|
2100
2154
|
import benchling_api_client.v2.stable.models.workflow_output_created_event
|
2101
2155
|
import benchling_api_client.v2.stable.models.workflow_output_created_event_event_type
|
2102
2156
|
import benchling_api_client.v2.stable.models.workflow_output_node_details
|
2157
|
+
import benchling_api_client.v2.stable.models.workflow_output_node_details_node_type
|
2103
2158
|
import benchling_api_client.v2.stable.models.workflow_output_schema
|
2104
2159
|
import benchling_api_client.v2.stable.models.workflow_output_summary
|
2105
2160
|
import benchling_api_client.v2.stable.models.workflow_output_update
|
@@ -2114,8 +2169,10 @@ if TYPE_CHECKING:
|
|
2114
2169
|
import benchling_api_client.v2.stable.models.workflow_outputs_unarchive
|
2115
2170
|
import benchling_api_client.v2.stable.models.workflow_patch
|
2116
2171
|
import benchling_api_client.v2.stable.models.workflow_root_node_details
|
2172
|
+
import benchling_api_client.v2.stable.models.workflow_root_node_details_node_type
|
2117
2173
|
import benchling_api_client.v2.stable.models.workflow_router_function
|
2118
2174
|
import benchling_api_client.v2.stable.models.workflow_router_node_details
|
2175
|
+
import benchling_api_client.v2.stable.models.workflow_router_node_details_node_type
|
2119
2176
|
import benchling_api_client.v2.stable.models.workflow_sample
|
2120
2177
|
import benchling_api_client.v2.stable.models.workflow_sample_list
|
2121
2178
|
import benchling_api_client.v2.stable.models.workflow_stage
|
@@ -2153,6 +2210,7 @@ if TYPE_CHECKING:
|
|
2153
2210
|
import benchling_api_client.v2.stable.models.workflow_task_groups_paginated_list
|
2154
2211
|
import benchling_api_client.v2.stable.models.workflow_task_groups_unarchive
|
2155
2212
|
import benchling_api_client.v2.stable.models.workflow_task_node_details
|
2213
|
+
import benchling_api_client.v2.stable.models.workflow_task_node_details_node_type
|
2156
2214
|
import benchling_api_client.v2.stable.models.workflow_task_schema
|
2157
2215
|
import benchling_api_client.v2.stable.models.workflow_task_schema_base
|
2158
2216
|
import benchling_api_client.v2.stable.models.workflow_task_schema_execution_type
|
@@ -2486,9 +2544,24 @@ if TYPE_CHECKING:
|
|
2486
2544
|
benchling_api_client.v2.stable.models.assay_results_bulk_create_request.AssayResultsBulkCreateRequest
|
2487
2545
|
)
|
2488
2546
|
AssayResultsBulkGet = benchling_api_client.v2.stable.models.assay_results_bulk_get.AssayResultsBulkGet
|
2547
|
+
AssayResultsCreateErrorResponse = (
|
2548
|
+
benchling_api_client.v2.stable.models.assay_results_create_error_response.AssayResultsCreateErrorResponse
|
2549
|
+
)
|
2550
|
+
AssayResultsCreateErrorResponseAssayResultsItem = (
|
2551
|
+
benchling_api_client.v2.stable.models.assay_results_create_error_response_assay_results_item.AssayResultsCreateErrorResponseAssayResultsItem
|
2552
|
+
)
|
2553
|
+
AssayResultsCreateErrorResponseErrorsItem = (
|
2554
|
+
benchling_api_client.v2.stable.models.assay_results_create_error_response_errors_item.AssayResultsCreateErrorResponseErrorsItem
|
2555
|
+
)
|
2556
|
+
AssayResultsCreateErrorResponseErrorsItemFields = (
|
2557
|
+
benchling_api_client.v2.stable.models.assay_results_create_error_response_errors_item_fields.AssayResultsCreateErrorResponseErrorsItemFields
|
2558
|
+
)
|
2489
2559
|
AssayResultsCreateResponse = (
|
2490
2560
|
benchling_api_client.v2.stable.models.assay_results_create_response.AssayResultsCreateResponse
|
2491
2561
|
)
|
2562
|
+
AssayResultsCreateResponseErrors = (
|
2563
|
+
benchling_api_client.v2.stable.models.assay_results_create_response_errors.AssayResultsCreateResponseErrors
|
2564
|
+
)
|
2492
2565
|
AssayResultsPaginatedList = (
|
2493
2566
|
benchling_api_client.v2.stable.models.assay_results_paginated_list.AssayResultsPaginatedList
|
2494
2567
|
)
|
@@ -2528,12 +2601,27 @@ if TYPE_CHECKING:
|
|
2528
2601
|
AssayRunsArchiveReason = (
|
2529
2602
|
benchling_api_client.v2.stable.models.assay_runs_archive_reason.AssayRunsArchiveReason
|
2530
2603
|
)
|
2604
|
+
AssayRunsBulkCreateErrorResponse = (
|
2605
|
+
benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response.AssayRunsBulkCreateErrorResponse
|
2606
|
+
)
|
2607
|
+
AssayRunsBulkCreateErrorResponseAssayRunsItem = (
|
2608
|
+
benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_assay_runs_item.AssayRunsBulkCreateErrorResponseAssayRunsItem
|
2609
|
+
)
|
2610
|
+
AssayRunsBulkCreateErrorResponseErrorsItem = (
|
2611
|
+
benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_errors_item.AssayRunsBulkCreateErrorResponseErrorsItem
|
2612
|
+
)
|
2613
|
+
AssayRunsBulkCreateErrorResponseErrorsItemFields = (
|
2614
|
+
benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_errors_item_fields.AssayRunsBulkCreateErrorResponseErrorsItemFields
|
2615
|
+
)
|
2531
2616
|
AssayRunsBulkCreateRequest = (
|
2532
2617
|
benchling_api_client.v2.stable.models.assay_runs_bulk_create_request.AssayRunsBulkCreateRequest
|
2533
2618
|
)
|
2534
2619
|
AssayRunsBulkCreateResponse = (
|
2535
2620
|
benchling_api_client.v2.stable.models.assay_runs_bulk_create_response.AssayRunsBulkCreateResponse
|
2536
2621
|
)
|
2622
|
+
AssayRunsBulkCreateResponseErrors = (
|
2623
|
+
benchling_api_client.v2.stable.models.assay_runs_bulk_create_response_errors.AssayRunsBulkCreateResponseErrors
|
2624
|
+
)
|
2537
2625
|
AssayRunsBulkGet = benchling_api_client.v2.stable.models.assay_runs_bulk_get.AssayRunsBulkGet
|
2538
2626
|
AssayRunsPaginatedList = (
|
2539
2627
|
benchling_api_client.v2.stable.models.assay_runs_paginated_list.AssayRunsPaginatedList
|
@@ -3285,6 +3373,10 @@ if TYPE_CHECKING:
|
|
3285
3373
|
EventBaseSchema = benchling_api_client.v2.stable.models.event_base_schema.EventBaseSchema
|
3286
3374
|
EventsPaginatedList = benchling_api_client.v2.stable.models.events_paginated_list.EventsPaginatedList
|
3287
3375
|
ExecuteSampleGroups = benchling_api_client.v2.stable.models.execute_sample_groups.ExecuteSampleGroups
|
3376
|
+
ExperimentalWellRole = benchling_api_client.v2.stable.models.experimental_well_role.ExperimentalWellRole
|
3377
|
+
ExperimentalWellRolePrimaryRole = (
|
3378
|
+
benchling_api_client.v2.stable.models.experimental_well_role_primary_role.ExperimentalWellRolePrimaryRole
|
3379
|
+
)
|
3288
3380
|
ExportAuditLogAsyncTask = (
|
3289
3381
|
benchling_api_client.v2.stable.models.export_audit_log_async_task.ExportAuditLogAsyncTask
|
3290
3382
|
)
|
@@ -3408,6 +3500,13 @@ if TYPE_CHECKING:
|
|
3408
3500
|
benchling_api_client.v2.stable.models.ingredient_write_params.IngredientWriteParams
|
3409
3501
|
)
|
3410
3502
|
InitialTable = benchling_api_client.v2.stable.models.initial_table.InitialTable
|
3503
|
+
InstrumentQuery = benchling_api_client.v2.stable.models.instrument_query.InstrumentQuery
|
3504
|
+
InstrumentQueryParams = (
|
3505
|
+
benchling_api_client.v2.stable.models.instrument_query_params.InstrumentQueryParams
|
3506
|
+
)
|
3507
|
+
InstrumentQueryValues = (
|
3508
|
+
benchling_api_client.v2.stable.models.instrument_query_values.InstrumentQueryValues
|
3509
|
+
)
|
3411
3510
|
IntegerAppConfigItem = benchling_api_client.v2.stable.models.integer_app_config_item.IntegerAppConfigItem
|
3412
3511
|
IntegerAppConfigItemType = (
|
3413
3512
|
benchling_api_client.v2.stable.models.integer_app_config_item_type.IntegerAppConfigItemType
|
@@ -3595,6 +3694,15 @@ if TYPE_CHECKING:
|
|
3595
3694
|
benchling_api_client.v2.stable.models.match_bases_request_sort.MatchBasesRequestSort
|
3596
3695
|
)
|
3597
3696
|
Measurement = benchling_api_client.v2.stable.models.measurement.Measurement
|
3697
|
+
Membership = benchling_api_client.v2.stable.models.membership.Membership
|
3698
|
+
MembershipCreate = benchling_api_client.v2.stable.models.membership_create.MembershipCreate
|
3699
|
+
MembershipCreateRole = benchling_api_client.v2.stable.models.membership_create_role.MembershipCreateRole
|
3700
|
+
MembershipRole = benchling_api_client.v2.stable.models.membership_role.MembershipRole
|
3701
|
+
MembershipUpdate = benchling_api_client.v2.stable.models.membership_update.MembershipUpdate
|
3702
|
+
MembershipUpdateRole = benchling_api_client.v2.stable.models.membership_update_role.MembershipUpdateRole
|
3703
|
+
MembershipsPaginatedList = (
|
3704
|
+
benchling_api_client.v2.stable.models.memberships_paginated_list.MembershipsPaginatedList
|
3705
|
+
)
|
3598
3706
|
Mixture = benchling_api_client.v2.stable.models.mixture.Mixture
|
3599
3707
|
MixtureBulkUpdate = benchling_api_client.v2.stable.models.mixture_bulk_update.MixtureBulkUpdate
|
3600
3708
|
MixtureCreate = benchling_api_client.v2.stable.models.mixture_create.MixtureCreate
|
@@ -4170,7 +4278,9 @@ if TYPE_CHECKING:
|
|
4170
4278
|
TableUiBlockType = benchling_api_client.v2.stable.models.table_ui_block_type.TableUiBlockType
|
4171
4279
|
TableUiBlockUpdate = benchling_api_client.v2.stable.models.table_ui_block_update.TableUiBlockUpdate
|
4172
4280
|
Team = benchling_api_client.v2.stable.models.team.Team
|
4281
|
+
TeamCreate = benchling_api_client.v2.stable.models.team_create.TeamCreate
|
4173
4282
|
TeamSummary = benchling_api_client.v2.stable.models.team_summary.TeamSummary
|
4283
|
+
TeamUpdate = benchling_api_client.v2.stable.models.team_update.TeamUpdate
|
4174
4284
|
TeamsPaginatedList = benchling_api_client.v2.stable.models.teams_paginated_list.TeamsPaginatedList
|
4175
4285
|
TextAppConfigItem = benchling_api_client.v2.stable.models.text_app_config_item.TextAppConfigItem
|
4176
4286
|
TextAppConfigItemType = (
|
@@ -4242,6 +4352,9 @@ if TYPE_CHECKING:
|
|
4242
4352
|
WorkflowEndNodeDetails = (
|
4243
4353
|
benchling_api_client.v2.stable.models.workflow_end_node_details.WorkflowEndNodeDetails
|
4244
4354
|
)
|
4355
|
+
WorkflowEndNodeDetailsNodeType = (
|
4356
|
+
benchling_api_client.v2.stable.models.workflow_end_node_details_node_type.WorkflowEndNodeDetailsNodeType
|
4357
|
+
)
|
4245
4358
|
WorkflowFlowchart = benchling_api_client.v2.stable.models.workflow_flowchart.WorkflowFlowchart
|
4246
4359
|
WorkflowFlowchartConfigSummary = (
|
4247
4360
|
benchling_api_client.v2.stable.models.workflow_flowchart_config_summary.WorkflowFlowchartConfigSummary
|
@@ -4285,6 +4398,9 @@ if TYPE_CHECKING:
|
|
4285
4398
|
WorkflowOutputNodeDetails = (
|
4286
4399
|
benchling_api_client.v2.stable.models.workflow_output_node_details.WorkflowOutputNodeDetails
|
4287
4400
|
)
|
4401
|
+
WorkflowOutputNodeDetailsNodeType = (
|
4402
|
+
benchling_api_client.v2.stable.models.workflow_output_node_details_node_type.WorkflowOutputNodeDetailsNodeType
|
4403
|
+
)
|
4288
4404
|
WorkflowOutputSchema = benchling_api_client.v2.stable.models.workflow_output_schema.WorkflowOutputSchema
|
4289
4405
|
WorkflowOutputSummary = (
|
4290
4406
|
benchling_api_client.v2.stable.models.workflow_output_summary.WorkflowOutputSummary
|
@@ -4321,12 +4437,18 @@ if TYPE_CHECKING:
|
|
4321
4437
|
WorkflowRootNodeDetails = (
|
4322
4438
|
benchling_api_client.v2.stable.models.workflow_root_node_details.WorkflowRootNodeDetails
|
4323
4439
|
)
|
4440
|
+
WorkflowRootNodeDetailsNodeType = (
|
4441
|
+
benchling_api_client.v2.stable.models.workflow_root_node_details_node_type.WorkflowRootNodeDetailsNodeType
|
4442
|
+
)
|
4324
4443
|
WorkflowRouterFunction = (
|
4325
4444
|
benchling_api_client.v2.stable.models.workflow_router_function.WorkflowRouterFunction
|
4326
4445
|
)
|
4327
4446
|
WorkflowRouterNodeDetails = (
|
4328
4447
|
benchling_api_client.v2.stable.models.workflow_router_node_details.WorkflowRouterNodeDetails
|
4329
4448
|
)
|
4449
|
+
WorkflowRouterNodeDetailsNodeType = (
|
4450
|
+
benchling_api_client.v2.stable.models.workflow_router_node_details_node_type.WorkflowRouterNodeDetailsNodeType
|
4451
|
+
)
|
4330
4452
|
WorkflowSample = benchling_api_client.v2.stable.models.workflow_sample.WorkflowSample
|
4331
4453
|
WorkflowSampleList = benchling_api_client.v2.stable.models.workflow_sample_list.WorkflowSampleList
|
4332
4454
|
WorkflowStage = benchling_api_client.v2.stable.models.workflow_stage.WorkflowStage
|
@@ -4418,6 +4540,9 @@ if TYPE_CHECKING:
|
|
4418
4540
|
WorkflowTaskNodeDetails = (
|
4419
4541
|
benchling_api_client.v2.stable.models.workflow_task_node_details.WorkflowTaskNodeDetails
|
4420
4542
|
)
|
4543
|
+
WorkflowTaskNodeDetailsNodeType = (
|
4544
|
+
benchling_api_client.v2.stable.models.workflow_task_node_details_node_type.WorkflowTaskNodeDetailsNodeType
|
4545
|
+
)
|
4421
4546
|
WorkflowTaskSchema = benchling_api_client.v2.stable.models.workflow_task_schema.WorkflowTaskSchema
|
4422
4547
|
WorkflowTaskSchemaBase = (
|
4423
4548
|
benchling_api_client.v2.stable.models.workflow_task_schema_base.WorkflowTaskSchemaBase
|
@@ -4621,7 +4746,12 @@ else:
|
|
4621
4746
|
"AssayResultsBulkCreateInTableRequest": "benchling_api_client.v2.stable.models.assay_results_bulk_create_in_table_request",
|
4622
4747
|
"AssayResultsBulkCreateRequest": "benchling_api_client.v2.stable.models.assay_results_bulk_create_request",
|
4623
4748
|
"AssayResultsBulkGet": "benchling_api_client.v2.stable.models.assay_results_bulk_get",
|
4749
|
+
"AssayResultsCreateErrorResponse": "benchling_api_client.v2.stable.models.assay_results_create_error_response",
|
4750
|
+
"AssayResultsCreateErrorResponseAssayResultsItem": "benchling_api_client.v2.stable.models.assay_results_create_error_response_assay_results_item",
|
4751
|
+
"AssayResultsCreateErrorResponseErrorsItem": "benchling_api_client.v2.stable.models.assay_results_create_error_response_errors_item",
|
4752
|
+
"AssayResultsCreateErrorResponseErrorsItemFields": "benchling_api_client.v2.stable.models.assay_results_create_error_response_errors_item_fields",
|
4624
4753
|
"AssayResultsCreateResponse": "benchling_api_client.v2.stable.models.assay_results_create_response",
|
4754
|
+
"AssayResultsCreateResponseErrors": "benchling_api_client.v2.stable.models.assay_results_create_response_errors",
|
4625
4755
|
"AssayResultsPaginatedList": "benchling_api_client.v2.stable.models.assay_results_paginated_list",
|
4626
4756
|
"AssayRun": "benchling_api_client.v2.stable.models.assay_run",
|
4627
4757
|
"AssayRunCreate": "benchling_api_client.v2.stable.models.assay_run_create",
|
@@ -4641,8 +4771,13 @@ else:
|
|
4641
4771
|
"AssayRunsArchivalChange": "benchling_api_client.v2.stable.models.assay_runs_archival_change",
|
4642
4772
|
"AssayRunsArchive": "benchling_api_client.v2.stable.models.assay_runs_archive",
|
4643
4773
|
"AssayRunsArchiveReason": "benchling_api_client.v2.stable.models.assay_runs_archive_reason",
|
4774
|
+
"AssayRunsBulkCreateErrorResponse": "benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response",
|
4775
|
+
"AssayRunsBulkCreateErrorResponseAssayRunsItem": "benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_assay_runs_item",
|
4776
|
+
"AssayRunsBulkCreateErrorResponseErrorsItem": "benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_errors_item",
|
4777
|
+
"AssayRunsBulkCreateErrorResponseErrorsItemFields": "benchling_api_client.v2.stable.models.assay_runs_bulk_create_error_response_errors_item_fields",
|
4644
4778
|
"AssayRunsBulkCreateRequest": "benchling_api_client.v2.stable.models.assay_runs_bulk_create_request",
|
4645
4779
|
"AssayRunsBulkCreateResponse": "benchling_api_client.v2.stable.models.assay_runs_bulk_create_response",
|
4780
|
+
"AssayRunsBulkCreateResponseErrors": "benchling_api_client.v2.stable.models.assay_runs_bulk_create_response_errors",
|
4646
4781
|
"AssayRunsBulkGet": "benchling_api_client.v2.stable.models.assay_runs_bulk_get",
|
4647
4782
|
"AssayRunsPaginatedList": "benchling_api_client.v2.stable.models.assay_runs_paginated_list",
|
4648
4783
|
"AssayRunsUnarchive": "benchling_api_client.v2.stable.models.assay_runs_unarchive",
|
@@ -5000,6 +5135,8 @@ else:
|
|
5000
5135
|
"EventBaseSchema": "benchling_api_client.v2.stable.models.event_base_schema",
|
5001
5136
|
"EventsPaginatedList": "benchling_api_client.v2.stable.models.events_paginated_list",
|
5002
5137
|
"ExecuteSampleGroups": "benchling_api_client.v2.stable.models.execute_sample_groups",
|
5138
|
+
"ExperimentalWellRole": "benchling_api_client.v2.stable.models.experimental_well_role",
|
5139
|
+
"ExperimentalWellRolePrimaryRole": "benchling_api_client.v2.stable.models.experimental_well_role_primary_role",
|
5003
5140
|
"ExportAuditLogAsyncTask": "benchling_api_client.v2.stable.models.export_audit_log_async_task",
|
5004
5141
|
"ExportAuditLogAsyncTaskResponse": "benchling_api_client.v2.stable.models.export_audit_log_async_task_response",
|
5005
5142
|
"ExportItemRequest": "benchling_api_client.v2.stable.models.export_item_request",
|
@@ -5065,6 +5202,9 @@ else:
|
|
5065
5202
|
"IngredientMeasurementUnits": "benchling_api_client.v2.stable.models.ingredient_measurement_units",
|
5066
5203
|
"IngredientWriteParams": "benchling_api_client.v2.stable.models.ingredient_write_params",
|
5067
5204
|
"InitialTable": "benchling_api_client.v2.stable.models.initial_table",
|
5205
|
+
"InstrumentQuery": "benchling_api_client.v2.stable.models.instrument_query",
|
5206
|
+
"InstrumentQueryParams": "benchling_api_client.v2.stable.models.instrument_query_params",
|
5207
|
+
"InstrumentQueryValues": "benchling_api_client.v2.stable.models.instrument_query_values",
|
5068
5208
|
"IntegerAppConfigItem": "benchling_api_client.v2.stable.models.integer_app_config_item",
|
5069
5209
|
"IntegerAppConfigItemType": "benchling_api_client.v2.stable.models.integer_app_config_item_type",
|
5070
5210
|
"IntegerFieldDefinition": "benchling_api_client.v2.stable.models.integer_field_definition",
|
@@ -5158,6 +5298,13 @@ else:
|
|
5158
5298
|
"MatchBasesRequestArchiveReason": "benchling_api_client.v2.stable.models.match_bases_request_archive_reason",
|
5159
5299
|
"MatchBasesRequestSort": "benchling_api_client.v2.stable.models.match_bases_request_sort",
|
5160
5300
|
"Measurement": "benchling_api_client.v2.stable.models.measurement",
|
5301
|
+
"Membership": "benchling_api_client.v2.stable.models.membership",
|
5302
|
+
"MembershipCreate": "benchling_api_client.v2.stable.models.membership_create",
|
5303
|
+
"MembershipCreateRole": "benchling_api_client.v2.stable.models.membership_create_role",
|
5304
|
+
"MembershipRole": "benchling_api_client.v2.stable.models.membership_role",
|
5305
|
+
"MembershipUpdate": "benchling_api_client.v2.stable.models.membership_update",
|
5306
|
+
"MembershipUpdateRole": "benchling_api_client.v2.stable.models.membership_update_role",
|
5307
|
+
"MembershipsPaginatedList": "benchling_api_client.v2.stable.models.memberships_paginated_list",
|
5161
5308
|
"Mixture": "benchling_api_client.v2.stable.models.mixture",
|
5162
5309
|
"MixtureBulkUpdate": "benchling_api_client.v2.stable.models.mixture_bulk_update",
|
5163
5310
|
"MixtureCreate": "benchling_api_client.v2.stable.models.mixture_create",
|
@@ -5437,7 +5584,9 @@ else:
|
|
5437
5584
|
"TableUiBlockType": "benchling_api_client.v2.stable.models.table_ui_block_type",
|
5438
5585
|
"TableUiBlockUpdate": "benchling_api_client.v2.stable.models.table_ui_block_update",
|
5439
5586
|
"Team": "benchling_api_client.v2.stable.models.team",
|
5587
|
+
"TeamCreate": "benchling_api_client.v2.stable.models.team_create",
|
5440
5588
|
"TeamSummary": "benchling_api_client.v2.stable.models.team_summary",
|
5589
|
+
"TeamUpdate": "benchling_api_client.v2.stable.models.team_update",
|
5441
5590
|
"TeamsPaginatedList": "benchling_api_client.v2.stable.models.teams_paginated_list",
|
5442
5591
|
"TextAppConfigItem": "benchling_api_client.v2.stable.models.text_app_config_item",
|
5443
5592
|
"TextAppConfigItemType": "benchling_api_client.v2.stable.models.text_app_config_item_type",
|
@@ -5479,6 +5628,7 @@ else:
|
|
5479
5628
|
"WellOrInaccessibleResource": "benchling_api_client.v2.stable.models.well_or_inaccessible_resource",
|
5480
5629
|
"WellResourceType": "benchling_api_client.v2.stable.models.well_resource_type",
|
5481
5630
|
"WorkflowEndNodeDetails": "benchling_api_client.v2.stable.models.workflow_end_node_details",
|
5631
|
+
"WorkflowEndNodeDetailsNodeType": "benchling_api_client.v2.stable.models.workflow_end_node_details_node_type",
|
5482
5632
|
"WorkflowFlowchart": "benchling_api_client.v2.stable.models.workflow_flowchart",
|
5483
5633
|
"WorkflowFlowchartConfigSummary": "benchling_api_client.v2.stable.models.workflow_flowchart_config_summary",
|
5484
5634
|
"WorkflowFlowchartConfigVersion": "benchling_api_client.v2.stable.models.workflow_flowchart_config_version",
|
@@ -5496,6 +5646,7 @@ else:
|
|
5496
5646
|
"WorkflowOutputCreatedEvent": "benchling_api_client.v2.stable.models.workflow_output_created_event",
|
5497
5647
|
"WorkflowOutputCreatedEventEventType": "benchling_api_client.v2.stable.models.workflow_output_created_event_event_type",
|
5498
5648
|
"WorkflowOutputNodeDetails": "benchling_api_client.v2.stable.models.workflow_output_node_details",
|
5649
|
+
"WorkflowOutputNodeDetailsNodeType": "benchling_api_client.v2.stable.models.workflow_output_node_details_node_type",
|
5499
5650
|
"WorkflowOutputSchema": "benchling_api_client.v2.stable.models.workflow_output_schema",
|
5500
5651
|
"WorkflowOutputSummary": "benchling_api_client.v2.stable.models.workflow_output_summary",
|
5501
5652
|
"WorkflowOutputUpdate": "benchling_api_client.v2.stable.models.workflow_output_update",
|
@@ -5510,8 +5661,10 @@ else:
|
|
5510
5661
|
"WorkflowOutputsUnarchive": "benchling_api_client.v2.stable.models.workflow_outputs_unarchive",
|
5511
5662
|
"WorkflowPatch": "benchling_api_client.v2.stable.models.workflow_patch",
|
5512
5663
|
"WorkflowRootNodeDetails": "benchling_api_client.v2.stable.models.workflow_root_node_details",
|
5664
|
+
"WorkflowRootNodeDetailsNodeType": "benchling_api_client.v2.stable.models.workflow_root_node_details_node_type",
|
5513
5665
|
"WorkflowRouterFunction": "benchling_api_client.v2.stable.models.workflow_router_function",
|
5514
5666
|
"WorkflowRouterNodeDetails": "benchling_api_client.v2.stable.models.workflow_router_node_details",
|
5667
|
+
"WorkflowRouterNodeDetailsNodeType": "benchling_api_client.v2.stable.models.workflow_router_node_details_node_type",
|
5515
5668
|
"WorkflowSample": "benchling_api_client.v2.stable.models.workflow_sample",
|
5516
5669
|
"WorkflowSampleList": "benchling_api_client.v2.stable.models.workflow_sample_list",
|
5517
5670
|
"WorkflowStage": "benchling_api_client.v2.stable.models.workflow_stage",
|
@@ -5549,6 +5702,7 @@ else:
|
|
5549
5702
|
"WorkflowTaskGroupsPaginatedList": "benchling_api_client.v2.stable.models.workflow_task_groups_paginated_list",
|
5550
5703
|
"WorkflowTaskGroupsUnarchive": "benchling_api_client.v2.stable.models.workflow_task_groups_unarchive",
|
5551
5704
|
"WorkflowTaskNodeDetails": "benchling_api_client.v2.stable.models.workflow_task_node_details",
|
5705
|
+
"WorkflowTaskNodeDetailsNodeType": "benchling_api_client.v2.stable.models.workflow_task_node_details_node_type",
|
5552
5706
|
"WorkflowTaskSchema": "benchling_api_client.v2.stable.models.workflow_task_schema",
|
5553
5707
|
"WorkflowTaskSchemaBase": "benchling_api_client.v2.stable.models.workflow_task_schema_base",
|
5554
5708
|
"WorkflowTaskSchemaExecutionType": "benchling_api_client.v2.stable.models.workflow_task_schema_execution_type",
|
@@ -5583,9 +5737,11 @@ else:
|
|
5583
5737
|
# Custom module to allow for lazy loading of models
|
5584
5738
|
class _Models(ModuleType):
|
5585
5739
|
def __getattr__(self, name):
|
5586
|
-
|
5587
|
-
|
5588
|
-
|
5740
|
+
if module_name := model_to_module_mapping.get(name):
|
5741
|
+
module = __import__(module_name, None, None, [name])
|
5742
|
+
setattr(self, name, getattr(module, name))
|
5743
|
+
return ModuleType.__getattribute__(self, name)
|
5744
|
+
return ModuleType.__getattr__(self, name)
|
5589
5745
|
|
5590
5746
|
# keep a reference to this module so that it's not garbage collected
|
5591
5747
|
old_module = sys.modules[__name__]
|